From 175d132328b6ca356ea3626ec8475fdde51c2627 Mon Sep 17 00:00:00 2001 From: Soumya624 Date: Tue, 13 Jun 2023 01:33:13 +0530 Subject: [PATCH 01/10] Submodule added and cleared old commits --- .Rbuildignore | 3 + .Rhistory | 3 + .../mingw64/c-definitions.h | 1568 + .../compilation-database/mingw64/config.json | 32 + .../mingw64/cpp-definitions.h | 1820 ++ .Rproj.user/CF1601EC/cpp-definition-cache | 23845 ++++++++++++++++ .../CF1601EC/pcs/debug-breakpoints.pper | 5 + .Rproj.user/CF1601EC/pcs/files-pane.pper | 9 + .Rproj.user/CF1601EC/pcs/source-pane.pper | 3 + .../CF1601EC/pcs/windowlayoutstate.pper | 14 + .Rproj.user/CF1601EC/pcs/workbench-pane.pper | 5 + .Rproj.user/CF1601EC/persistent-state | 8 + .Rproj.user/CF1601EC/rmd-outputs | 5 + .Rproj.user/CF1601EC/saved_source_markers | 1 + .../shared/notebooks/patch-chunk-names | 0 .gitignore | 10 + .gitmodules | 4 + DESCRIPTION | 24 + NAMESPACE | 35 + NEWS.md | 52 + R/HpolytopeClass.R | 42 + R/RcppExports.R | 323 + R/SpectrahedronClass.R | 33 + R/VpolytopeClass.R | 37 + R/VpolytopeIntersectionClass.R | 42 + R/ZonotopeClass.R | 37 + R/compute_indicators.R | 133 + R/gen_cross.R | 41 + R/gen_cube.R | 40 + R/gen_prod_simplex.R | 29 + R/gen_rand_hpoly.R | 45 + R/gen_rand_vpoly.R | 44 + R/gen_rand_zonotope.R | 48 + R/gen_simplex.R | 41 + R/gen_skinny_cube.R | 28 + R/read_sdpa_file.R | 26 + R/rotate_polytope.R | 75 + R/round_polytope.R | 62 + R/zonotope_approximation.R | 48 + README.md | 47 + inst/AUTHORS | 4 + inst/COPYRIGHTS | 6 + inst/checks/README.md | 31 + inst/extdata/birk10.ine | 106 + inst/extdata/birk11.ine | 127 + inst/extdata/birk3.ine | 15 + inst/extdata/birk4.ine | 22 + inst/extdata/birk5.ine | 31 + inst/extdata/birk6.ine | 42 + inst/extdata/birk7.ine | 55 + inst/extdata/birk8.ine | 70 + inst/extdata/birk9.ine | 87 + inst/extdata/cross_10.ext | 27 + inst/extdata/cross_10.ine | 1030 + inst/extdata/cube10.ine | 26 + inst/extdata/cube_10.ext | 1031 + inst/extdata/linear_extensions/simple.txt | 2 + .../linear_extensions/simple_poset.txt | 2 + inst/extdata/prod_simplex_10_10.ine | 28 + inst/extdata/sdpa_n2m3.txt | 13 + inst/extdata/simplex10.ext | 18 + inst/extdata/simplex10.ine | 17 + inst/extdata/skinny_cube10.ine | 26 + man/Hpolytope-class.Rd | 27 + man/Spectrahedron-class.Rd | 24 + man/Vpolytope-class.Rd | 24 + man/VpolytopeIntersection-class.Rd | 27 + man/Zonotope-class.Rd | 24 + man/compute_indicators.Rd | 43 + man/copula.Rd | 48 + man/direct_sampling.Rd | 36 + man/exact_vol.Rd | 38 + man/frustum_of_simplex.Rd | 32 + man/gen_cross.Rd | 26 + man/gen_cube.Rd | 26 + man/gen_prod_simplex.Rd | 21 + man/gen_rand_hpoly.Rd | 29 + man/gen_rand_vpoly.Rd | 29 + man/gen_rand_zonotope.Rd | 34 + man/gen_simplex.Rd | 26 + man/gen_skinny_cube.Rd | 21 + man/inner_ball.Rd | 27 + man/load_sdpa_format_file.Rd | 18 + man/poly_gen.Rd | 28 + man/read_sdpa_format_file.Rd | 24 + man/rotate_polytope.Rd | 41 + man/rotating.Rd | 22 + man/round_polytope.Rd | 46 + man/rounding.Rd | 22 + man/sample_points.Rd | 53 + man/volume.Rd | 54 + man/write_sdpa_format_file.Rd | 30 + man/zono_approx.Rd | 24 + man/zonotope_approximation.Rd | 42 + src/Makevars | 11 + src/Makevars.win | 12 + src/RcppExports.cpp | 203 + src/RcppExports.o | Bin 0 -> 164964 bytes src/copula.cpp | 113 + src/copula.o | Bin 0 -> 119294 bytes src/direct_sampling.cpp | 120 + src/direct_sampling.o | Bin 0 -> 145418 bytes src/exact_vol.cpp | 119 + src/exact_vol.o | Bin 0 -> 365926 bytes src/external/lpsolve/build/lp_solve/Makefile | 25 + src/external/lpsolve/build/lp_solve/colamd.c | 3469 +++ .../lpsolve/build/lp_solve/commonlib.c | 997 + src/external/lpsolve/build/lp_solve/ini.c | 85 + .../lpsolve/build/lp_solve/liblp_solve.a | Bin 0 -> 721588 bytes src/external/lpsolve/build/lp_solve/lp_BFP1.c | 206 + src/external/lpsolve/build/lp_solve/lp_BFP2.c | 184 + src/external/lpsolve/build/lp_solve/lp_Hash.c | 246 + .../lpsolve/build/lp_solve/lp_LUSOL.c | 735 + src/external/lpsolve/build/lp_solve/lp_MDO.c | 241 + src/external/lpsolve/build/lp_solve/lp_MPS.c | 1855 ++ src/external/lpsolve/build/lp_solve/lp_SOS.c | 1575 + .../lpsolve/build/lp_solve/lp_crash.c | 863 + src/external/lpsolve/build/lp_solve/lp_lib.c | 10039 +++++++ .../lpsolve/build/lp_solve/lp_matrix.c | 3828 +++ .../lpsolve/build/lp_solve/lp_mipbb.c | 1439 + .../lpsolve/build/lp_solve/lp_params.c | 700 + .../lpsolve/build/lp_solve/lp_presolve.c | 5901 ++++ .../lpsolve/build/lp_solve/lp_price.c | 2107 ++ .../lpsolve/build/lp_solve/lp_pricePSE.c | 539 + .../lpsolve/build/lp_solve/lp_report.c | 790 + src/external/lpsolve/build/lp_solve/lp_rlp.c | 2484 ++ .../lpsolve/build/lp_solve/lp_scale.c | 1075 + .../lpsolve/build/lp_solve/lp_simplex.c | 2206 ++ .../lpsolve/build/lp_solve/lp_utils.c | 1060 + src/external/lpsolve/build/lp_solve/lp_wlp.c | 370 + src/external/lpsolve/build/lp_solve/lusol.c | 808 + src/external/lpsolve/build/lp_solve/lusol1.c | 3725 +++ src/external/lpsolve/build/lp_solve/lusol2.c | 204 + src/external/lpsolve/build/lp_solve/lusol6a.c | 867 + .../lpsolve/build/lp_solve/lusol6l0.c | 171 + src/external/lpsolve/build/lp_solve/lusol6u.c | 184 + src/external/lpsolve/build/lp_solve/lusol7a.c | 704 + src/external/lpsolve/build/lp_solve/lusol8a.c | 279 + src/external/lpsolve/build/lp_solve/mmio.c | 496 + src/external/lpsolve/build/lp_solve/myblas.c | 101 + .../lpsolve/build/lp_solve/yacc_read.c | 1284 + src/external/lpsolve/headers/include/colamd.h | 286 + .../lpsolve/headers/include/commonlib.h | 344 + src/external/lpsolve/headers/include/ini.h | 26 + src/external/lpsolve/headers/include/lp_BFP.h | 90 + .../lpsolve/headers/include/lp_Hash.h | 52 + .../lpsolve/headers/include/lp_LUSOL.h | 72 + src/external/lpsolve/headers/include/lp_MDO.h | 27 + src/external/lpsolve/headers/include/lp_MPS.h | 42 + src/external/lpsolve/headers/include/lp_SOS.h | 117 + src/external/lpsolve/headers/include/lp_bit.h | 31 + .../lpsolve/headers/include/lp_crash.h | 35 + src/external/lpsolve/headers/include/lp_lib.h | 2302 ++ .../lpsolve/headers/include/lp_matrix.h | 266 + .../lpsolve/headers/include/lp_mipbb.h | 73 + .../lpsolve/headers/include/lp_presolve.h | 135 + .../lpsolve/headers/include/lp_price.h | 108 + .../lpsolve/headers/include/lp_pricePSE.h | 37 + .../lpsolve/headers/include/lp_report.h | 51 + src/external/lpsolve/headers/include/lp_rlp.h | 2460 ++ .../lpsolve/headers/include/lp_scale.h | 40 + .../lpsolve/headers/include/lp_simplex.h | 43 + .../lpsolve/headers/include/lp_types.h | 339 + .../lpsolve/headers/include/lp_utils.h | 155 + src/external/lpsolve/headers/include/lp_wlp.h | 30 + src/external/lpsolve/headers/include/lpkit.h | 41 + src/external/lpsolve/headers/include/lusol.h | 366 + src/external/lpsolve/headers/include/mmio.h | 142 + src/external/lpsolve/headers/include/myblas.h | 50 + .../lpsolve/headers/include/yacc_read.h | 66 + .../lpsolve/headers/run_headers/lp_Hash.h | 52 + .../lpsolve/headers/run_headers/lp_SOS.h | 117 + .../lpsolve/headers/run_headers/lp_lib.h | 2294 ++ .../lpsolve/headers/run_headers/lp_matrix.h | 266 + .../lpsolve/headers/run_headers/lp_mipbb.h | 73 + .../lpsolve/headers/run_headers/lp_types.h | 339 + .../lpsolve/headers/run_headers/lp_utils.h | 155 + src/external/minimum_ellipsoid/bnmin_main.h | 87 + src/external/minimum_ellipsoid/khach.h | 233 + src/external/minimum_ellipsoid/mcpoint.h | 477 + src/extractMatPoly.h | 37 + src/frustum_of_simplex.cpp | 43 + src/frustum_of_simplex.o | Bin 0 -> 55488 bytes src/inner_ball.cpp | 112 + src/inner_ball.o | Bin 0 -> 448620 bytes src/load_sdpa_format_file.cpp | 63 + src/load_sdpa_format_file.o | Bin 0 -> 115519 bytes src/poly_gen.cpp | 111 + src/poly_gen.o | Bin 0 -> 385833 bytes src/rotating.cpp | 121 + src/rotating.o | Bin 0 -> 433243 bytes src/rounding.cpp | 171 + src/rounding.o | Bin 0 -> 773516 bytes src/sample_points.cpp | 405 + src/sample_points.o | Bin 0 -> 872014 bytes src/volesti.dll | Bin 0 -> 3587584 bytes src/volume.cpp | 319 + src/volume.o | Bin 0 -> 2102614 bytes src/write_sdpa_format_file.cpp | 70 + src/write_sdpa_format_file.o | Bin 0 -> 103947 bytes src/zonotope_approximation.cpp | 111 + src/zonotope_approximation.o | Bin 0 -> 1139380 bytes tests/testthat.R | 3 + tests/testthat/test_Hvol.R | 67 + tests/testthat/test_InnerBall.R | 111 + tests/testthat/test_Vvol.R | 44 + tests/testthat/test_Zvol.R | 44 + tests/testthat/test_copulas.R | 23 + tests/testthat/test_rounding.R | 49 + tests/testthat/test_sampling.R | 78 + volesti.Rproj | 17 + 211 files changed, 98787 insertions(+) create mode 100644 .Rbuildignore create mode 100644 .Rhistory create mode 100644 .Rproj.user/CF1601EC/compilation-database/mingw64/c-definitions.h create mode 100644 .Rproj.user/CF1601EC/compilation-database/mingw64/config.json create mode 100644 .Rproj.user/CF1601EC/compilation-database/mingw64/cpp-definitions.h create mode 100644 .Rproj.user/CF1601EC/cpp-definition-cache create mode 100644 .Rproj.user/CF1601EC/pcs/debug-breakpoints.pper create mode 100644 .Rproj.user/CF1601EC/pcs/files-pane.pper create mode 100644 .Rproj.user/CF1601EC/pcs/source-pane.pper create mode 100644 .Rproj.user/CF1601EC/pcs/windowlayoutstate.pper create mode 100644 .Rproj.user/CF1601EC/pcs/workbench-pane.pper create mode 100644 .Rproj.user/CF1601EC/persistent-state create mode 100644 .Rproj.user/CF1601EC/rmd-outputs create mode 100644 .Rproj.user/CF1601EC/saved_source_markers create mode 100644 .Rproj.user/shared/notebooks/patch-chunk-names create mode 100644 .gitignore create mode 100644 .gitmodules create mode 100644 DESCRIPTION create mode 100644 NAMESPACE create mode 100644 NEWS.md create mode 100644 R/HpolytopeClass.R create mode 100644 R/RcppExports.R create mode 100644 R/SpectrahedronClass.R create mode 100644 R/VpolytopeClass.R create mode 100644 R/VpolytopeIntersectionClass.R create mode 100644 R/ZonotopeClass.R create mode 100644 R/compute_indicators.R create mode 100644 R/gen_cross.R create mode 100644 R/gen_cube.R create mode 100644 R/gen_prod_simplex.R create mode 100644 R/gen_rand_hpoly.R create mode 100644 R/gen_rand_vpoly.R create mode 100644 R/gen_rand_zonotope.R create mode 100644 R/gen_simplex.R create mode 100644 R/gen_skinny_cube.R create mode 100644 R/read_sdpa_file.R create mode 100644 R/rotate_polytope.R create mode 100644 R/round_polytope.R create mode 100644 R/zonotope_approximation.R create mode 100644 README.md create mode 100644 inst/AUTHORS create mode 100644 inst/COPYRIGHTS create mode 100644 inst/checks/README.md create mode 100644 inst/extdata/birk10.ine create mode 100644 inst/extdata/birk11.ine create mode 100644 inst/extdata/birk3.ine create mode 100644 inst/extdata/birk4.ine create mode 100644 inst/extdata/birk5.ine create mode 100644 inst/extdata/birk6.ine create mode 100644 inst/extdata/birk7.ine create mode 100644 inst/extdata/birk8.ine create mode 100644 inst/extdata/birk9.ine create mode 100644 inst/extdata/cross_10.ext create mode 100644 inst/extdata/cross_10.ine create mode 100644 inst/extdata/cube10.ine create mode 100644 inst/extdata/cube_10.ext create mode 100644 inst/extdata/linear_extensions/simple.txt create mode 100644 inst/extdata/linear_extensions/simple_poset.txt create mode 100644 inst/extdata/prod_simplex_10_10.ine create mode 100644 inst/extdata/sdpa_n2m3.txt create mode 100644 inst/extdata/simplex10.ext create mode 100644 inst/extdata/simplex10.ine create mode 100644 inst/extdata/skinny_cube10.ine create mode 100644 man/Hpolytope-class.Rd create mode 100644 man/Spectrahedron-class.Rd create mode 100644 man/Vpolytope-class.Rd create mode 100644 man/VpolytopeIntersection-class.Rd create mode 100644 man/Zonotope-class.Rd create mode 100644 man/compute_indicators.Rd create mode 100644 man/copula.Rd create mode 100644 man/direct_sampling.Rd create mode 100644 man/exact_vol.Rd create mode 100644 man/frustum_of_simplex.Rd create mode 100644 man/gen_cross.Rd create mode 100644 man/gen_cube.Rd create mode 100644 man/gen_prod_simplex.Rd create mode 100644 man/gen_rand_hpoly.Rd create mode 100644 man/gen_rand_vpoly.Rd create mode 100644 man/gen_rand_zonotope.Rd create mode 100644 man/gen_simplex.Rd create mode 100644 man/gen_skinny_cube.Rd create mode 100644 man/inner_ball.Rd create mode 100644 man/load_sdpa_format_file.Rd create mode 100644 man/poly_gen.Rd create mode 100644 man/read_sdpa_format_file.Rd create mode 100644 man/rotate_polytope.Rd create mode 100644 man/rotating.Rd create mode 100644 man/round_polytope.Rd create mode 100644 man/rounding.Rd create mode 100644 man/sample_points.Rd create mode 100644 man/volume.Rd create mode 100644 man/write_sdpa_format_file.Rd create mode 100644 man/zono_approx.Rd create mode 100644 man/zonotope_approximation.Rd create mode 100644 src/Makevars create mode 100644 src/Makevars.win create mode 100644 src/RcppExports.cpp create mode 100644 src/RcppExports.o create mode 100644 src/copula.cpp create mode 100644 src/copula.o create mode 100644 src/direct_sampling.cpp create mode 100644 src/direct_sampling.o create mode 100644 src/exact_vol.cpp create mode 100644 src/exact_vol.o create mode 100644 src/external/lpsolve/build/lp_solve/Makefile create mode 100644 src/external/lpsolve/build/lp_solve/colamd.c create mode 100644 src/external/lpsolve/build/lp_solve/commonlib.c create mode 100644 src/external/lpsolve/build/lp_solve/ini.c create mode 100644 src/external/lpsolve/build/lp_solve/liblp_solve.a create mode 100644 src/external/lpsolve/build/lp_solve/lp_BFP1.c create mode 100644 src/external/lpsolve/build/lp_solve/lp_BFP2.c create mode 100644 src/external/lpsolve/build/lp_solve/lp_Hash.c create mode 100644 src/external/lpsolve/build/lp_solve/lp_LUSOL.c create mode 100644 src/external/lpsolve/build/lp_solve/lp_MDO.c create mode 100644 src/external/lpsolve/build/lp_solve/lp_MPS.c create mode 100644 src/external/lpsolve/build/lp_solve/lp_SOS.c create mode 100644 src/external/lpsolve/build/lp_solve/lp_crash.c create mode 100644 src/external/lpsolve/build/lp_solve/lp_lib.c create mode 100644 src/external/lpsolve/build/lp_solve/lp_matrix.c create mode 100644 src/external/lpsolve/build/lp_solve/lp_mipbb.c create mode 100644 src/external/lpsolve/build/lp_solve/lp_params.c create mode 100644 src/external/lpsolve/build/lp_solve/lp_presolve.c create mode 100644 src/external/lpsolve/build/lp_solve/lp_price.c create mode 100644 src/external/lpsolve/build/lp_solve/lp_pricePSE.c create mode 100644 src/external/lpsolve/build/lp_solve/lp_report.c create mode 100644 src/external/lpsolve/build/lp_solve/lp_rlp.c create mode 100644 src/external/lpsolve/build/lp_solve/lp_scale.c create mode 100644 src/external/lpsolve/build/lp_solve/lp_simplex.c create mode 100644 src/external/lpsolve/build/lp_solve/lp_utils.c create mode 100644 src/external/lpsolve/build/lp_solve/lp_wlp.c create mode 100644 src/external/lpsolve/build/lp_solve/lusol.c create mode 100644 src/external/lpsolve/build/lp_solve/lusol1.c create mode 100644 src/external/lpsolve/build/lp_solve/lusol2.c create mode 100644 src/external/lpsolve/build/lp_solve/lusol6a.c create mode 100644 src/external/lpsolve/build/lp_solve/lusol6l0.c create mode 100644 src/external/lpsolve/build/lp_solve/lusol6u.c create mode 100644 src/external/lpsolve/build/lp_solve/lusol7a.c create mode 100644 src/external/lpsolve/build/lp_solve/lusol8a.c create mode 100644 src/external/lpsolve/build/lp_solve/mmio.c create mode 100644 src/external/lpsolve/build/lp_solve/myblas.c create mode 100644 src/external/lpsolve/build/lp_solve/yacc_read.c create mode 100644 src/external/lpsolve/headers/include/colamd.h create mode 100644 src/external/lpsolve/headers/include/commonlib.h create mode 100644 src/external/lpsolve/headers/include/ini.h create mode 100644 src/external/lpsolve/headers/include/lp_BFP.h create mode 100644 src/external/lpsolve/headers/include/lp_Hash.h create mode 100644 src/external/lpsolve/headers/include/lp_LUSOL.h create mode 100644 src/external/lpsolve/headers/include/lp_MDO.h create mode 100644 src/external/lpsolve/headers/include/lp_MPS.h create mode 100644 src/external/lpsolve/headers/include/lp_SOS.h create mode 100644 src/external/lpsolve/headers/include/lp_bit.h create mode 100644 src/external/lpsolve/headers/include/lp_crash.h create mode 100644 src/external/lpsolve/headers/include/lp_lib.h create mode 100644 src/external/lpsolve/headers/include/lp_matrix.h create mode 100644 src/external/lpsolve/headers/include/lp_mipbb.h create mode 100644 src/external/lpsolve/headers/include/lp_presolve.h create mode 100644 src/external/lpsolve/headers/include/lp_price.h create mode 100644 src/external/lpsolve/headers/include/lp_pricePSE.h create mode 100644 src/external/lpsolve/headers/include/lp_report.h create mode 100644 src/external/lpsolve/headers/include/lp_rlp.h create mode 100644 src/external/lpsolve/headers/include/lp_scale.h create mode 100644 src/external/lpsolve/headers/include/lp_simplex.h create mode 100644 src/external/lpsolve/headers/include/lp_types.h create mode 100644 src/external/lpsolve/headers/include/lp_utils.h create mode 100644 src/external/lpsolve/headers/include/lp_wlp.h create mode 100644 src/external/lpsolve/headers/include/lpkit.h create mode 100644 src/external/lpsolve/headers/include/lusol.h create mode 100644 src/external/lpsolve/headers/include/mmio.h create mode 100644 src/external/lpsolve/headers/include/myblas.h create mode 100644 src/external/lpsolve/headers/include/yacc_read.h create mode 100644 src/external/lpsolve/headers/run_headers/lp_Hash.h create mode 100644 src/external/lpsolve/headers/run_headers/lp_SOS.h create mode 100644 src/external/lpsolve/headers/run_headers/lp_lib.h create mode 100644 src/external/lpsolve/headers/run_headers/lp_matrix.h create mode 100644 src/external/lpsolve/headers/run_headers/lp_mipbb.h create mode 100644 src/external/lpsolve/headers/run_headers/lp_types.h create mode 100644 src/external/lpsolve/headers/run_headers/lp_utils.h create mode 100644 src/external/minimum_ellipsoid/bnmin_main.h create mode 100644 src/external/minimum_ellipsoid/khach.h create mode 100644 src/external/minimum_ellipsoid/mcpoint.h create mode 100644 src/extractMatPoly.h create mode 100644 src/frustum_of_simplex.cpp create mode 100644 src/frustum_of_simplex.o create mode 100644 src/inner_ball.cpp create mode 100644 src/inner_ball.o create mode 100644 src/load_sdpa_format_file.cpp create mode 100644 src/load_sdpa_format_file.o create mode 100644 src/poly_gen.cpp create mode 100644 src/poly_gen.o create mode 100644 src/rotating.cpp create mode 100644 src/rotating.o create mode 100644 src/rounding.cpp create mode 100644 src/rounding.o create mode 100644 src/sample_points.cpp create mode 100644 src/sample_points.o create mode 100644 src/volesti.dll create mode 100644 src/volume.cpp create mode 100644 src/volume.o create mode 100644 src/write_sdpa_format_file.cpp create mode 100644 src/write_sdpa_format_file.o create mode 100644 src/zonotope_approximation.cpp create mode 100644 src/zonotope_approximation.o create mode 100644 tests/testthat.R create mode 100644 tests/testthat/test_Hvol.R create mode 100644 tests/testthat/test_InnerBall.R create mode 100644 tests/testthat/test_Vvol.R create mode 100644 tests/testthat/test_Zvol.R create mode 100644 tests/testthat/test_copulas.R create mode 100644 tests/testthat/test_rounding.R create mode 100644 tests/testthat/test_sampling.R create mode 100644 volesti.Rproj diff --git a/.Rbuildignore b/.Rbuildignore new file mode 100644 index 00000000..465e701f --- /dev/null +++ b/.Rbuildignore @@ -0,0 +1,3 @@ +^.*\.Rproj$ +^\.Rproj\.user$ +^inst/checks$ diff --git a/.Rhistory b/.Rhistory new file mode 100644 index 00000000..246b1933 --- /dev/null +++ b/.Rhistory @@ -0,0 +1,3 @@ +remove.packages("volesti") +getwd() +library(volesti) diff --git a/.Rproj.user/CF1601EC/compilation-database/mingw64/c-definitions.h b/.Rproj.user/CF1601EC/compilation-database/mingw64/c-definitions.h new file mode 100644 index 00000000..8e4c956e --- /dev/null +++ b/.Rproj.user/CF1601EC/compilation-database/mingw64/c-definitions.h @@ -0,0 +1,1568 @@ +#ifndef __DBL_MIN_EXP__ +# define __DBL_MIN_EXP__ (-1021) +#endif + +#ifndef __UINT_LEAST16_MAX__ +# define __UINT_LEAST16_MAX__ 0xffff +#endif + +#ifndef __FLT16_HAS_QUIET_NAN__ +# define __FLT16_HAS_QUIET_NAN__ 1 +#endif + +#ifndef __ATOMIC_ACQUIRE +# define __ATOMIC_ACQUIRE 2 +#endif + +#ifndef __FLT128_MAX_10_EXP__ +# define __FLT128_MAX_10_EXP__ 4932 +#endif + +#ifndef __FLT_MIN__ +# define __FLT_MIN__ 1.17549435082228750796873653722224568e-38F +#endif + +#ifndef __GCC_IEC_559_COMPLEX +# define __GCC_IEC_559_COMPLEX 2 +#endif + +#ifndef __UINT_LEAST8_TYPE__ +# define __UINT_LEAST8_TYPE__ unsigned char +#endif + +#ifndef __SIZEOF_FLOAT80__ +# define __SIZEOF_FLOAT80__ 16 +#endif + +#ifndef __INTMAX_C +# define __INTMAX_C(c) c ## LL +#endif + +#ifndef __CHAR_BIT__ +# define __CHAR_BIT__ 8 +#endif + +#ifndef __MINGW32__ +# define __MINGW32__ 1 +#endif + +#ifndef __UINT8_MAX__ +# define __UINT8_MAX__ 0xff +#endif + +#ifndef __SCHAR_WIDTH__ +# define __SCHAR_WIDTH__ 8 +#endif + +#ifndef _WIN64 +# define _WIN64 1 +#endif + +#ifndef __WINT_MAX__ +# define __WINT_MAX__ 0xffff +#endif + +#ifndef __FLT32_MIN_EXP__ +# define __FLT32_MIN_EXP__ (-125) +#endif + +#ifndef __ORDER_LITTLE_ENDIAN__ +# define __ORDER_LITTLE_ENDIAN__ 1234 +#endif + +#ifndef __SIZE_MAX__ +# define __SIZE_MAX__ 0xffffffffffffffffULL +#endif + +#ifndef __WCHAR_MAX__ +# define __WCHAR_MAX__ 0xffff +#endif + +#ifndef __GCC_HAVE_SYNC_COMPARE_AND_SWAP_2 +# define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_2 1 +#endif + +#ifndef __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4 +# define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4 1 +#endif + +#ifndef __GCC_HAVE_SYNC_COMPARE_AND_SWAP_8 +# define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_8 1 +#endif + +#ifndef __GCC_ATOMIC_CHAR_LOCK_FREE +# define __GCC_ATOMIC_CHAR_LOCK_FREE 2 +#endif + +#ifndef __GCC_IEC_559 +# define __GCC_IEC_559 2 +#endif + +#ifndef __FLT32X_DECIMAL_DIG__ +# define __FLT32X_DECIMAL_DIG__ 17 +#endif + +#ifndef __FLT_EVAL_METHOD__ +# define __FLT_EVAL_METHOD__ 0 +#endif + +#ifndef __FLT64_DECIMAL_DIG__ +# define __FLT64_DECIMAL_DIG__ 17 +#endif + +#ifndef __GCC_ATOMIC_CHAR32_T_LOCK_FREE +# define __GCC_ATOMIC_CHAR32_T_LOCK_FREE 2 +#endif + +#ifndef __UINT_FAST64_MAX__ +# define __UINT_FAST64_MAX__ 0xffffffffffffffffULL +#endif + +#ifndef __SIG_ATOMIC_TYPE__ +# define __SIG_ATOMIC_TYPE__ int +#endif + +#ifndef __DBL_MIN_10_EXP__ +# define __DBL_MIN_10_EXP__ (-307) +#endif + +#ifndef __FINITE_MATH_ONLY__ +# define __FINITE_MATH_ONLY__ 0 +#endif + +#ifndef __FLT32X_MAX_EXP__ +# define __FLT32X_MAX_EXP__ 1024 +#endif + +#ifndef __GCC_HAVE_SYNC_COMPARE_AND_SWAP_1 +# define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_1 1 +#endif + +#ifndef __FLT32_HAS_DENORM__ +# define __FLT32_HAS_DENORM__ 1 +#endif + +#ifndef __UINT_FAST8_MAX__ +# define __UINT_FAST8_MAX__ 0xff +#endif + +#ifndef __FLT32_MAX_10_EXP__ +# define __FLT32_MAX_10_EXP__ 38 +#endif + +#ifndef _stdcall +# define _stdcall __attribute__((__stdcall__)) +#endif + +#ifndef __DEC64_MAX_EXP__ +# define __DEC64_MAX_EXP__ 385 +#endif + +#ifndef __INT8_C +# define __INT8_C(c) c +#endif + +#ifndef __INT_LEAST8_WIDTH__ +# define __INT_LEAST8_WIDTH__ 8 +#endif + +#ifndef __UINT_LEAST64_MAX__ +# define __UINT_LEAST64_MAX__ 0xffffffffffffffffULL +#endif + +#ifndef __SHRT_MAX__ +# define __SHRT_MAX__ 0x7fff +#endif + +#ifndef __LDBL_MAX__ +# define __LDBL_MAX__ 1.18973149535723176502126385303097021e+4932L +#endif + +#ifndef __FLT64X_MAX_10_EXP__ +# define __FLT64X_MAX_10_EXP__ 4932 +#endif + +#ifndef __LDBL_IS_IEC_60559__ +# define __LDBL_IS_IEC_60559__ 2 +#endif + +#ifndef __FLT64X_HAS_QUIET_NAN__ +# define __FLT64X_HAS_QUIET_NAN__ 1 +#endif + +#ifndef __UINT_LEAST8_MAX__ +# define __UINT_LEAST8_MAX__ 0xff +#endif + +#ifndef __GCC_ATOMIC_BOOL_LOCK_FREE +# define __GCC_ATOMIC_BOOL_LOCK_FREE 2 +#endif + +#ifndef __FLT128_DENORM_MIN__ +# define __FLT128_DENORM_MIN__ 6.47517511943802511092443895822764655e-4966F128 +#endif + +#ifndef __UINTMAX_TYPE__ +# define __UINTMAX_TYPE__ long long unsigned int +#endif + +#ifndef __DEC32_EPSILON__ +# define __DEC32_EPSILON__ 1E-6DF +#endif + +#ifndef __FLT_EVAL_METHOD_TS_18661_3__ +# define __FLT_EVAL_METHOD_TS_18661_3__ 0 +#endif + +#ifndef __UINT32_MAX__ +# define __UINT32_MAX__ 0xffffffffU +#endif + +#ifndef __DBL_DENORM_MIN__ +# define __DBL_DENORM_MIN__ ((double)4.94065645841246544176568792868221372e-324L) +#endif + +#ifndef __FLT128_MIN_EXP__ +# define __FLT128_MIN_EXP__ (-16381) +#endif + +#ifndef __WINT_MIN__ +# define __WINT_MIN__ 0 +#endif + +#ifndef __FLT128_MIN_10_EXP__ +# define __FLT128_MIN_10_EXP__ (-4931) +#endif + +#ifndef __FLT32X_IS_IEC_60559__ +# define __FLT32X_IS_IEC_60559__ 2 +#endif + +#ifndef __INT_LEAST16_WIDTH__ +# define __INT_LEAST16_WIDTH__ 16 +#endif + +#ifndef __SCHAR_MAX__ +# define __SCHAR_MAX__ 0x7f +#endif + +#ifndef __FLT128_MANT_DIG__ +# define __FLT128_MANT_DIG__ 113 +#endif + +#ifndef __WCHAR_MIN__ +# define __WCHAR_MIN__ 0 +#endif + +#ifndef __INT64_C +# define __INT64_C(c) c ## LL +#endif + +#ifndef __GCC_ATOMIC_POINTER_LOCK_FREE +# define __GCC_ATOMIC_POINTER_LOCK_FREE 2 +#endif + +#ifndef __FLT32X_MANT_DIG__ +# define __FLT32X_MANT_DIG__ 53 +#endif + +#ifndef __FLT64X_EPSILON__ +# define __FLT64X_EPSILON__ 1.08420217248550443400745280086994171e-19F64x +#endif + +#ifndef __STDC_HOSTED__ +# define __STDC_HOSTED__ 1 +#endif + +#ifndef __DEC64_MIN_EXP__ +# define __DEC64_MIN_EXP__ (-382) +#endif + +#ifndef __WIN64 +# define __WIN64 1 +#endif + +#ifndef __DBL_DIG__ +# define __DBL_DIG__ 15 +#endif + +#ifndef __FLT32_DIG__ +# define __FLT32_DIG__ 6 +#endif + +#ifndef __FLT_EPSILON__ +# define __FLT_EPSILON__ 1.19209289550781250000000000000000000e-7F +#endif + +#ifndef __SHRT_WIDTH__ +# define __SHRT_WIDTH__ 16 +#endif + +#ifndef __FLT32_IS_IEC_60559__ +# define __FLT32_IS_IEC_60559__ 2 +#endif + +#ifndef __LDBL_MIN__ +# define __LDBL_MIN__ 3.36210314311209350626267781732175260e-4932L +#endif + +#ifndef __STDC_UTF_16__ +# define __STDC_UTF_16__ 1 +#endif + +#ifndef __DBL_IS_IEC_60559__ +# define __DBL_IS_IEC_60559__ 2 +#endif + +#ifndef __DEC32_MAX__ +# define __DEC32_MAX__ 9.999999E96DF +#endif + +#ifndef __FLT64X_DENORM_MIN__ +# define __FLT64X_DENORM_MIN__ 3.64519953188247460252840593361941982e-4951F64x +#endif + +#ifndef __FLT32X_HAS_INFINITY__ +# define __FLT32X_HAS_INFINITY__ 1 +#endif + +#ifndef __INT32_MAX__ +# define __INT32_MAX__ 0x7fffffff +#endif + +#ifndef __FLT16_DIG__ +# define __FLT16_DIG__ 3 +#endif + +#ifndef __INT_WIDTH__ +# define __INT_WIDTH__ 32 +#endif + +#ifndef __SIZEOF_LONG__ +# define __SIZEOF_LONG__ 4 +#endif + +#ifndef __UINT16_C +# define __UINT16_C(c) c +#endif + +#ifndef __DECIMAL_DIG__ +# define __DECIMAL_DIG__ 21 +#endif + +#ifndef __FLT64_EPSILON__ +# define __FLT64_EPSILON__ 2.22044604925031308084726333618164062e-16F64 +#endif + +#ifndef __FLT128_IS_IEC_60559__ +# define __FLT128_IS_IEC_60559__ 2 +#endif + +#ifndef __FLT64X_MIN_10_EXP__ +# define __FLT64X_MIN_10_EXP__ (-4931) +#endif + +#ifndef __LDBL_HAS_QUIET_NAN__ +# define __LDBL_HAS_QUIET_NAN__ 1 +#endif + +#ifndef __FLT16_MIN_EXP__ +# define __FLT16_MIN_EXP__ (-13) +#endif + +#ifndef __FLT64_MANT_DIG__ +# define __FLT64_MANT_DIG__ 53 +#endif + +#ifndef _REENTRANT +# define _REENTRANT 1 +#endif + +#ifndef __FLT64X_MANT_DIG__ +# define __FLT64X_MANT_DIG__ 64 +#endif + +#ifndef __GNUC__ +# define __GNUC__ 12 +#endif + +#ifndef _cdecl +# define _cdecl __attribute__((__cdecl__)) +#endif + +#ifndef __MMX__ +# define __MMX__ 1 +#endif + +#ifndef __FLT_HAS_DENORM__ +# define __FLT_HAS_DENORM__ 1 +#endif + +#ifndef __SIZEOF_LONG_DOUBLE__ +# define __SIZEOF_LONG_DOUBLE__ 16 +#endif + +#ifndef __BIGGEST_ALIGNMENT__ +# define __BIGGEST_ALIGNMENT__ 16 +#endif + +#ifndef __FLT64_MAX_10_EXP__ +# define __FLT64_MAX_10_EXP__ 308 +#endif + +#ifndef __FLT16_MAX_10_EXP__ +# define __FLT16_MAX_10_EXP__ 4 +#endif + +#ifndef __DBL_MAX__ +# define __DBL_MAX__ ((double)1.79769313486231570814527423731704357e+308L) +#endif + +#ifndef _thiscall +# define _thiscall __attribute__((__thiscall__)) +#endif + +#ifndef __INT_FAST32_MAX__ +# define __INT_FAST32_MAX__ 0x7fffffff +#endif + +#ifndef __WINNT +# define __WINNT 1 +#endif + +#ifndef __DBL_HAS_INFINITY__ +# define __DBL_HAS_INFINITY__ 1 +#endif + +#ifndef __SIZEOF_FLOAT__ +# define __SIZEOF_FLOAT__ 4 +#endif + +#ifndef __WINNT__ +# define __WINNT__ 1 +#endif + +#ifndef __HAVE_SPECULATION_SAFE_VALUE +# define __HAVE_SPECULATION_SAFE_VALUE 1 +#endif + +#ifndef __DEC32_MIN_EXP__ +# define __DEC32_MIN_EXP__ (-94) +#endif + +#ifndef __INTPTR_WIDTH__ +# define __INTPTR_WIDTH__ 64 +#endif + +#ifndef __FLT64X_HAS_INFINITY__ +# define __FLT64X_HAS_INFINITY__ 1 +#endif + +#ifndef __UINT_LEAST32_MAX__ +# define __UINT_LEAST32_MAX__ 0xffffffffU +#endif + +#ifndef __FLT32X_HAS_DENORM__ +# define __FLT32X_HAS_DENORM__ 1 +#endif + +#ifndef __INT_FAST16_TYPE__ +# define __INT_FAST16_TYPE__ short int +#endif + +#ifndef __MMX_WITH_SSE__ +# define __MMX_WITH_SSE__ 1 +#endif + +#ifndef _fastcall +# define _fastcall __attribute__((__fastcall__)) +#endif + +#ifndef __LDBL_HAS_DENORM__ +# define __LDBL_HAS_DENORM__ 1 +#endif + +#ifndef __SEG_GS +# define __SEG_GS 1 +#endif + +#ifndef __FLT128_HAS_INFINITY__ +# define __FLT128_HAS_INFINITY__ 1 +#endif + +#ifndef __DEC32_MIN__ +# define __DEC32_MIN__ 1E-95DF +#endif + +#ifndef __DBL_MAX_EXP__ +# define __DBL_MAX_EXP__ 1024 +#endif + +#ifndef __WCHAR_WIDTH__ +# define __WCHAR_WIDTH__ 16 +#endif + +#ifndef __FLT32_MAX__ +# define __FLT32_MAX__ 3.40282346638528859811704183484516925e+38F32 +#endif + +#ifndef __DEC128_EPSILON__ +# define __DEC128_EPSILON__ 1E-33DL +#endif + +#ifndef __FLT16_DECIMAL_DIG__ +# define __FLT16_DECIMAL_DIG__ 5 +#endif + +#ifndef __SSE2_MATH__ +# define __SSE2_MATH__ 1 +#endif + +#ifndef __ATOMIC_HLE_RELEASE +# define __ATOMIC_HLE_RELEASE 131072 +#endif + +#ifndef __WIN32__ +# define __WIN32__ 1 +#endif + +#ifndef __PTRDIFF_MAX__ +# define __PTRDIFF_MAX__ 0x7fffffffffffffffLL +#endif + +#ifndef __amd64 +# define __amd64 1 +#endif + +#ifndef __ATOMIC_HLE_ACQUIRE +# define __ATOMIC_HLE_ACQUIRE 65536 +#endif + +#ifndef __LONG_LONG_MAX__ +# define __LONG_LONG_MAX__ 0x7fffffffffffffffLL +#endif + +#ifndef __SIZEOF_SIZE_T__ +# define __SIZEOF_SIZE_T__ 8 +#endif + +#ifndef __FLT64X_MIN_EXP__ +# define __FLT64X_MIN_EXP__ (-16381) +#endif + +#ifndef __SIZEOF_WINT_T__ +# define __SIZEOF_WINT_T__ 2 +#endif + +#ifndef __LONG_LONG_WIDTH__ +# define __LONG_LONG_WIDTH__ 64 +#endif + +#ifndef __FLT32_MAX_EXP__ +# define __FLT32_MAX_EXP__ 128 +#endif + +#ifndef __GXX_ABI_VERSION +# define __GXX_ABI_VERSION 1017 +#endif + +#ifndef __FLT_MIN_EXP__ +# define __FLT_MIN_EXP__ (-125) +#endif + +#ifndef __INT16_MAX__ +# define __INT16_MAX__ 0x7fff +#endif + +#ifndef __x86_64 +# define __x86_64 1 +#endif + +#ifndef __INT_FAST64_TYPE__ +# define __INT_FAST64_TYPE__ long long int +#endif + +#ifndef __FLT64_DENORM_MIN__ +# define __FLT64_DENORM_MIN__ 4.94065645841246544176568792868221372e-324F64 +#endif + +#ifndef __DBL_MIN__ +# define __DBL_MIN__ ((double)2.22507385850720138309023271733240406e-308L) +#endif + +#ifndef __FLT16_DENORM_MIN__ +# define __FLT16_DENORM_MIN__ 5.96046447753906250000000000000000000e-8F16 +#endif + +#ifndef __FLT128_EPSILON__ +# define __FLT128_EPSILON__ 1.92592994438723585305597794258492732e-34F128 +#endif + +#ifndef __FLT64X_NORM_MAX__ +# define __FLT64X_NORM_MAX__ 1.18973149535723176502126385303097021e+4932F64x +#endif + +#ifndef __SIZEOF_POINTER__ +# define __SIZEOF_POINTER__ 8 +#endif + +#ifndef __SIZE_TYPE__ +# define __SIZE_TYPE__ long long unsigned int +#endif + +#ifndef __DBL_HAS_QUIET_NAN__ +# define __DBL_HAS_QUIET_NAN__ 1 +#endif + +#ifndef __FLT32X_EPSILON__ +# define __FLT32X_EPSILON__ 2.22044604925031308084726333618164062e-16F32x +#endif + +#ifndef __DECIMAL_BID_FORMAT__ +# define __DECIMAL_BID_FORMAT__ 1 +#endif + +#ifndef __FLT64_MIN_EXP__ +# define __FLT64_MIN_EXP__ (-1021) +#endif + +#ifndef __GXX_TYPEINFO_EQUALITY_INLINE +# define __GXX_TYPEINFO_EQUALITY_INLINE 0 +#endif + +#ifndef __FLT64_MIN_10_EXP__ +# define __FLT64_MIN_10_EXP__ (-307) +#endif + +#ifndef __FLT16_MIN_10_EXP__ +# define __FLT16_MIN_10_EXP__ (-4) +#endif + +#ifndef __FLT64X_DECIMAL_DIG__ +# define __FLT64X_DECIMAL_DIG__ 21 +#endif + +#ifndef __DEC128_MIN__ +# define __DEC128_MIN__ 1E-6143DL +#endif + +#ifndef __REGISTER_PREFIX__ +# define __REGISTER_PREFIX__ +#endif + +#ifndef __UINT16_MAX__ +# define __UINT16_MAX__ 0xffff +#endif + +#ifndef __DBL_HAS_DENORM__ +# define __DBL_HAS_DENORM__ 1 +#endif + +#ifndef __cdecl +# define __cdecl __attribute__((__cdecl__)) +#endif + +#ifndef __LDBL_HAS_INFINITY__ +# define __LDBL_HAS_INFINITY__ 1 +#endif + +#ifndef __FLT32_MIN__ +# define __FLT32_MIN__ 1.17549435082228750796873653722224568e-38F32 +#endif + +#ifndef __UINT8_TYPE__ +# define __UINT8_TYPE__ unsigned char +#endif + +#ifndef __FLT_DIG__ +# define __FLT_DIG__ 6 +#endif + +#ifndef __NO_INLINE__ +# define __NO_INLINE__ 1 +#endif + +#ifndef __DEC_EVAL_METHOD__ +# define __DEC_EVAL_METHOD__ 2 +#endif + +#ifndef __DEC128_MAX__ +# define __DEC128_MAX__ 9.999999999999999999999999999999999E6144DL +#endif + +#ifndef __FLT_MANT_DIG__ +# define __FLT_MANT_DIG__ 24 +#endif + +#ifndef __LDBL_DECIMAL_DIG__ +# define __LDBL_DECIMAL_DIG__ 21 +#endif + +#ifndef __VERSION__ +# define __VERSION__ "12.2.0" +#endif + +#ifndef __UINT64_C +# define __UINT64_C(c) c ## ULL +#endif + +#ifndef _WIN32 +# define _WIN32 1 +#endif + +#ifndef __SEH__ +# define __SEH__ 1 +#endif + +#ifndef __INT_LEAST32_MAX__ +# define __INT_LEAST32_MAX__ 0x7fffffff +#endif + +#ifndef __GCC_ATOMIC_INT_LOCK_FREE +# define __GCC_ATOMIC_INT_LOCK_FREE 2 +#endif + +#ifndef __FLT128_MAX_EXP__ +# define __FLT128_MAX_EXP__ 16384 +#endif + +#ifndef __FLT32_MANT_DIG__ +# define __FLT32_MANT_DIG__ 24 +#endif + +#ifndef __FLOAT_WORD_ORDER__ +# define __FLOAT_WORD_ORDER__ __ORDER_LITTLE_ENDIAN__ +#endif + +#ifndef __FLT32X_MIN_EXP__ +# define __FLT32X_MIN_EXP__ (-1021) +#endif + +#ifndef __FLT128_HAS_DENORM__ +# define __FLT128_HAS_DENORM__ 1 +#endif + +#ifndef __FLT32_DECIMAL_DIG__ +# define __FLT32_DECIMAL_DIG__ 9 +#endif + +#ifndef __FLT128_DIG__ +# define __FLT128_DIG__ 33 +#endif + +#ifndef __INT32_C +# define __INT32_C(c) c +#endif + +#ifndef __DEC64_EPSILON__ +# define __DEC64_EPSILON__ 1E-15DD +#endif + +#ifndef __ORDER_PDP_ENDIAN__ +# define __ORDER_PDP_ENDIAN__ 3412 +#endif + +#ifndef __DEC128_MIN_EXP__ +# define __DEC128_MIN_EXP__ (-6142) +#endif + +#ifndef __INT_FAST32_TYPE__ +# define __INT_FAST32_TYPE__ int +#endif + +#ifndef __UINT_LEAST16_TYPE__ +# define __UINT_LEAST16_TYPE__ short unsigned int +#endif + +#ifndef __UINT64_MAX__ +# define __UINT64_MAX__ 0xffffffffffffffffULL +#endif + +#ifndef __FLT_IS_IEC_60559__ +# define __FLT_IS_IEC_60559__ 2 +#endif + +#ifndef __GNUC_WIDE_EXECUTION_CHARSET_NAME +# define __GNUC_WIDE_EXECUTION_CHARSET_NAME "UTF-16LE" +#endif + +#ifndef __FLT64X_DIG__ +# define __FLT64X_DIG__ 18 +#endif + +#ifndef __INT8_TYPE__ +# define __INT8_TYPE__ signed char +#endif + +#ifndef __GCC_ASM_FLAG_OUTPUTS__ +# define __GCC_ASM_FLAG_OUTPUTS__ 1 +#endif + +#ifndef __UINT32_TYPE__ +# define __UINT32_TYPE__ unsigned int +#endif + +#ifndef __FLT_RADIX__ +# define __FLT_RADIX__ 2 +#endif + +#ifndef __INT_LEAST16_TYPE__ +# define __INT_LEAST16_TYPE__ short int +#endif + +#ifndef __LDBL_EPSILON__ +# define __LDBL_EPSILON__ 1.08420217248550443400745280086994171e-19L +#endif + +#ifndef __UINTMAX_C +# define __UINTMAX_C(c) c ## ULL +#endif + +#ifndef __SSE_MATH__ +# define __SSE_MATH__ 1 +#endif + +#ifndef __k8 +# define __k8 1 +#endif + +#ifndef __FLT32X_MIN__ +# define __FLT32X_MIN__ 2.22507385850720138309023271733240406e-308F32x +#endif + +#ifndef __SIG_ATOMIC_MAX__ +# define __SIG_ATOMIC_MAX__ 0x7fffffff +#endif + +#ifndef __GCC_ATOMIC_WCHAR_T_LOCK_FREE +# define __GCC_ATOMIC_WCHAR_T_LOCK_FREE 2 +#endif + +#ifndef __USER_LABEL_PREFIX__ +# define __USER_LABEL_PREFIX__ +#endif + +#ifndef __SIZEOF_PTRDIFF_T__ +# define __SIZEOF_PTRDIFF_T__ 8 +#endif + +#ifndef __LDBL_DIG__ +# define __LDBL_DIG__ 18 +#endif + +#ifndef __FLT64_IS_IEC_60559__ +# define __FLT64_IS_IEC_60559__ 2 +#endif + +#ifndef __x86_64__ +# define __x86_64__ 1 +#endif + +#ifndef __FLT16_IS_IEC_60559__ +# define __FLT16_IS_IEC_60559__ 2 +#endif + +#ifndef __FLT16_MAX_EXP__ +# define __FLT16_MAX_EXP__ 16 +#endif + +#ifndef __DEC32_SUBNORMAL_MIN__ +# define __DEC32_SUBNORMAL_MIN__ 0.000001E-95DF +#endif + +#ifndef __MSVCRT__ +# define __MSVCRT__ 1 +#endif + +#ifndef __INT_FAST16_MAX__ +# define __INT_FAST16_MAX__ 0x7fff +#endif + +#ifndef __GCC_CONSTRUCTIVE_SIZE +# define __GCC_CONSTRUCTIVE_SIZE 64 +#endif + +#ifndef __FLT64_DIG__ +# define __FLT64_DIG__ 15 +#endif + +#ifndef __UINT_FAST32_MAX__ +# define __UINT_FAST32_MAX__ 0xffffffffU +#endif + +#ifndef __UINT_LEAST64_TYPE__ +# define __UINT_LEAST64_TYPE__ long long unsigned int +#endif + +#ifndef __FLT16_EPSILON__ +# define __FLT16_EPSILON__ 9.76562500000000000000000000000000000e-4F16 +#endif + +#ifndef __FLT_HAS_QUIET_NAN__ +# define __FLT_HAS_QUIET_NAN__ 1 +#endif + +#ifndef __FLT_MAX_10_EXP__ +# define __FLT_MAX_10_EXP__ 38 +#endif + +#ifndef __LONG_MAX__ +# define __LONG_MAX__ 0x7fffffffL +#endif + +#ifndef __FLT64X_HAS_DENORM__ +# define __FLT64X_HAS_DENORM__ 1 +#endif + +#ifndef __DEC128_SUBNORMAL_MIN__ +# define __DEC128_SUBNORMAL_MIN__ 0.000000000000000000000000000000001E-6143DL +#endif + +#ifndef __FLT_HAS_INFINITY__ +# define __FLT_HAS_INFINITY__ 1 +#endif + +#ifndef __GNUC_EXECUTION_CHARSET_NAME +# define __GNUC_EXECUTION_CHARSET_NAME "UTF-8" +#endif + +#ifndef __UINT_FAST16_TYPE__ +# define __UINT_FAST16_TYPE__ short unsigned int +#endif + +#ifndef __DEC64_MAX__ +# define __DEC64_MAX__ 9.999999999999999E384DD +#endif + +#ifndef __INT_FAST32_WIDTH__ +# define __INT_FAST32_WIDTH__ 32 +#endif + +#ifndef __CHAR16_TYPE__ +# define __CHAR16_TYPE__ short unsigned int +#endif + +#ifndef __PRAGMA_REDEFINE_EXTNAME +# define __PRAGMA_REDEFINE_EXTNAME 1 +#endif + +#ifndef __SIZE_WIDTH__ +# define __SIZE_WIDTH__ 64 +#endif + +#ifndef __SEG_FS +# define __SEG_FS 1 +#endif + +#ifndef __INT_LEAST16_MAX__ +# define __INT_LEAST16_MAX__ 0x7fff +#endif + +#ifndef __FLT16_NORM_MAX__ +# define __FLT16_NORM_MAX__ 6.55040000000000000000000000000000000e+4F16 +#endif + +#ifndef __DEC64_MANT_DIG__ +# define __DEC64_MANT_DIG__ 16 +#endif + +#ifndef __INT64_MAX__ +# define __INT64_MAX__ 0x7fffffffffffffffLL +#endif + +#ifndef __FLT32_DENORM_MIN__ +# define __FLT32_DENORM_MIN__ 1.40129846432481707092372958328991613e-45F32 +#endif + +#ifndef __SIG_ATOMIC_WIDTH__ +# define __SIG_ATOMIC_WIDTH__ 32 +#endif + +#ifndef __INT_LEAST64_TYPE__ +# define __INT_LEAST64_TYPE__ long long int +#endif + +#ifndef __INT16_TYPE__ +# define __INT16_TYPE__ short int +#endif + +#ifndef __INT_LEAST8_TYPE__ +# define __INT_LEAST8_TYPE__ signed char +#endif + +#ifndef __FLT16_MAX__ +# define __FLT16_MAX__ 6.55040000000000000000000000000000000e+4F16 +#endif + +#ifndef __STDC_VERSION__ +# define __STDC_VERSION__ 201710L +#endif + +#ifndef __SIZEOF_INT__ +# define __SIZEOF_INT__ 4 +#endif + +#ifndef __DEC32_MAX_EXP__ +# define __DEC32_MAX_EXP__ 97 +#endif + +#ifndef __INT_FAST8_MAX__ +# define __INT_FAST8_MAX__ 0x7f +#endif + +#ifndef __FLT128_MAX__ +# define __FLT128_MAX__ 1.18973149535723176508575932662800702e+4932F128 +#endif + +#ifndef __INTPTR_MAX__ +# define __INTPTR_MAX__ 0x7fffffffffffffffLL +#endif + +#ifndef __FLT64_HAS_QUIET_NAN__ +# define __FLT64_HAS_QUIET_NAN__ 1 +#endif + +#ifndef __stdcall +# define __stdcall __attribute__((__stdcall__)) +#endif + +#ifndef __FLT32_MIN_10_EXP__ +# define __FLT32_MIN_10_EXP__ (-37) +#endif + +#ifndef __FLT32X_DIG__ +# define __FLT32X_DIG__ 15 +#endif + +#ifndef __GXX_MERGED_TYPEINFO_NAMES +# define __GXX_MERGED_TYPEINFO_NAMES 0 +#endif + +#ifndef __PTRDIFF_WIDTH__ +# define __PTRDIFF_WIDTH__ 64 +#endif + +#ifndef __LDBL_MANT_DIG__ +# define __LDBL_MANT_DIG__ 64 +#endif + +#ifndef __FLT64_HAS_INFINITY__ +# define __FLT64_HAS_INFINITY__ 1 +#endif + +#ifndef __FLT64X_MAX__ +# define __FLT64X_MAX__ 1.18973149535723176502126385303097021e+4932F64x +#endif + +#ifndef __FLT16_HAS_INFINITY__ +# define __FLT16_HAS_INFINITY__ 1 +#endif + +#ifndef __SIG_ATOMIC_MIN__ +# define __SIG_ATOMIC_MIN__ (-__SIG_ATOMIC_MAX__ - 1) +#endif + +#ifndef __GCC_ATOMIC_LONG_LOCK_FREE +# define __GCC_ATOMIC_LONG_LOCK_FREE 2 +#endif + +#ifndef __DEC32_MANT_DIG__ +# define __DEC32_MANT_DIG__ 7 +#endif + +#ifndef __FLT16_MANT_DIG__ +# define __FLT16_MANT_DIG__ 11 +#endif + +#ifndef __k8__ +# define __k8__ 1 +#endif + +#ifndef __INTPTR_TYPE__ +# define __INTPTR_TYPE__ long long int +#endif + +#ifndef __UINT16_TYPE__ +# define __UINT16_TYPE__ short unsigned int +#endif + +#ifndef __WCHAR_TYPE__ +# define __WCHAR_TYPE__ short unsigned int +#endif + +#ifndef __pic__ +# define __pic__ 1 +#endif + +#ifndef __UINTPTR_MAX__ +# define __UINTPTR_MAX__ 0xffffffffffffffffULL +#endif + +#ifndef __INT_FAST64_WIDTH__ +# define __INT_FAST64_WIDTH__ 64 +#endif + +#ifndef __INT_FAST64_MAX__ +# define __INT_FAST64_MAX__ 0x7fffffffffffffffLL +#endif + +#ifndef __GCC_ATOMIC_TEST_AND_SET_TRUEVAL +# define __GCC_ATOMIC_TEST_AND_SET_TRUEVAL 1 +#endif + +#ifndef __FLT_NORM_MAX__ +# define __FLT_NORM_MAX__ 3.40282346638528859811704183484516925e+38F +#endif + +#ifndef __FLT32_HAS_INFINITY__ +# define __FLT32_HAS_INFINITY__ 1 +#endif + +#ifndef __FLT64X_MAX_EXP__ +# define __FLT64X_MAX_EXP__ 16384 +#endif + +#ifndef __UINT_FAST64_TYPE__ +# define __UINT_FAST64_TYPE__ long long unsigned int +#endif + +#ifndef __INT_MAX__ +# define __INT_MAX__ 0x7fffffff +#endif + +#ifndef WIN32 +# define WIN32 1 +#endif + +#ifndef __code_model_medium__ +# define __code_model_medium__ 1 +#endif + +#ifndef __INT64_TYPE__ +# define __INT64_TYPE__ long long int +#endif + +#ifndef __FLT_MAX_EXP__ +# define __FLT_MAX_EXP__ 128 +#endif + +#ifndef WIN64 +# define WIN64 1 +#endif + +#ifndef __ORDER_BIG_ENDIAN__ +# define __ORDER_BIG_ENDIAN__ 4321 +#endif + +#ifndef __DBL_MANT_DIG__ +# define __DBL_MANT_DIG__ 53 +#endif + +#ifndef __SIZEOF_FLOAT128__ +# define __SIZEOF_FLOAT128__ 16 +#endif + +#ifndef __INT_LEAST64_MAX__ +# define __INT_LEAST64_MAX__ 0x7fffffffffffffffLL +#endif + +#ifndef __GCC_ATOMIC_CHAR16_T_LOCK_FREE +# define __GCC_ATOMIC_CHAR16_T_LOCK_FREE 2 +#endif + +#ifndef __DEC64_MIN__ +# define __DEC64_MIN__ 1E-383DD +#endif + +#ifndef __WINT_TYPE__ +# define __WINT_TYPE__ short unsigned int +#endif + +#ifndef __UINT_LEAST32_TYPE__ +# define __UINT_LEAST32_TYPE__ unsigned int +#endif + +#ifndef __SIZEOF_SHORT__ +# define __SIZEOF_SHORT__ 2 +#endif + +#ifndef __FLT32_NORM_MAX__ +# define __FLT32_NORM_MAX__ 3.40282346638528859811704183484516925e+38F32 +#endif + +#ifndef __SSE__ +# define __SSE__ 1 +#endif + +#ifndef __LDBL_MIN_EXP__ +# define __LDBL_MIN_EXP__ (-16381) +#endif + +#ifndef __FLT64_MAX__ +# define __FLT64_MAX__ 1.79769313486231570814527423731704357e+308F64 +#endif + +#ifndef __amd64__ +# define __amd64__ 1 +#endif + +#ifndef __WINT_WIDTH__ +# define __WINT_WIDTH__ 16 +#endif + +#ifndef __INT_LEAST8_MAX__ +# define __INT_LEAST8_MAX__ 0x7f +#endif + +#ifndef __INT_LEAST64_WIDTH__ +# define __INT_LEAST64_WIDTH__ 64 +#endif + +#ifndef __LDBL_MAX_EXP__ +# define __LDBL_MAX_EXP__ 16384 +#endif + +#ifndef __FLT32X_MAX_10_EXP__ +# define __FLT32X_MAX_10_EXP__ 308 +#endif + +#ifndef __WIN32 +# define __WIN32 1 +#endif + +#ifndef __SIZEOF_INT128__ +# define __SIZEOF_INT128__ 16 +#endif + +#ifndef __FLT16_MIN__ +# define __FLT16_MIN__ 6.10351562500000000000000000000000000e-5F16 +#endif + +#ifndef __FLT64X_IS_IEC_60559__ +# define __FLT64X_IS_IEC_60559__ 2 +#endif + +#ifndef __LDBL_MAX_10_EXP__ +# define __LDBL_MAX_10_EXP__ 4932 +#endif + +#ifndef __ATOMIC_RELAXED +# define __ATOMIC_RELAXED 0 +#endif + +#ifndef __DBL_EPSILON__ +# define __DBL_EPSILON__ ((double)2.22044604925031308084726333618164062e-16L) +#endif + +#ifndef __thiscall +# define __thiscall __attribute__((__thiscall__)) +#endif + +#ifndef __FLT128_MIN__ +# define __FLT128_MIN__ 3.36210314311209350626267781732175260e-4932F128 +#endif + +#ifndef __UINT8_C +# define __UINT8_C(c) c +#endif + +#ifndef __FLT64_MAX_EXP__ +# define __FLT64_MAX_EXP__ 1024 +#endif + +#ifndef __INT_LEAST32_TYPE__ +# define __INT_LEAST32_TYPE__ int +#endif + +#ifndef __SIZEOF_WCHAR_T__ +# define __SIZEOF_WCHAR_T__ 2 +#endif + +#ifndef __UINT64_TYPE__ +# define __UINT64_TYPE__ long long unsigned int +#endif + +#ifndef __GNUC_PATCHLEVEL__ +# define __GNUC_PATCHLEVEL__ 0 +#endif + +#ifndef __FLT128_NORM_MAX__ +# define __FLT128_NORM_MAX__ 1.18973149535723176508575932662800702e+4932F128 +#endif + +#ifndef __FLT64_NORM_MAX__ +# define __FLT64_NORM_MAX__ 1.79769313486231570814527423731704357e+308F64 +#endif + +#ifndef __FLT128_HAS_QUIET_NAN__ +# define __FLT128_HAS_QUIET_NAN__ 1 +#endif + +#ifndef __INTMAX_MAX__ +# define __INTMAX_MAX__ 0x7fffffffffffffffLL +#endif + +#ifndef __INT_FAST8_TYPE__ +# define __INT_FAST8_TYPE__ signed char +#endif + +#ifndef __fastcall +# define __fastcall __attribute__((__fastcall__)) +#endif + +#ifndef __FLT64X_MIN__ +# define __FLT64X_MIN__ 3.36210314311209350626267781732175260e-4932F64x +#endif + +#ifndef __GNUC_STDC_INLINE__ +# define __GNUC_STDC_INLINE__ 1 +#endif + +#ifndef __FLT64_HAS_DENORM__ +# define __FLT64_HAS_DENORM__ 1 +#endif + +#ifndef __FLT32_EPSILON__ +# define __FLT32_EPSILON__ 1.19209289550781250000000000000000000e-7F32 +#endif + +#ifndef __FLT16_HAS_DENORM__ +# define __FLT16_HAS_DENORM__ 1 +#endif + +#ifndef __DBL_DECIMAL_DIG__ +# define __DBL_DECIMAL_DIG__ 17 +#endif + +#ifndef __STDC_UTF_32__ +# define __STDC_UTF_32__ 1 +#endif + +#ifndef __INT_FAST8_WIDTH__ +# define __INT_FAST8_WIDTH__ 8 +#endif + +#ifndef __FXSR__ +# define __FXSR__ 1 +#endif + +#ifndef __FLT32X_MAX__ +# define __FLT32X_MAX__ 1.79769313486231570814527423731704357e+308F32x +#endif + +#ifndef __DBL_NORM_MAX__ +# define __DBL_NORM_MAX__ ((double)1.79769313486231570814527423731704357e+308L) +#endif + +#ifndef __BYTE_ORDER__ +# define __BYTE_ORDER__ __ORDER_LITTLE_ENDIAN__ +#endif + +#ifndef __MINGW64__ +# define __MINGW64__ 1 +#endif + +#ifndef __GCC_DESTRUCTIVE_SIZE +# define __GCC_DESTRUCTIVE_SIZE 64 +#endif + +#ifndef __INTMAX_WIDTH__ +# define __INTMAX_WIDTH__ 64 +#endif + +#ifndef __UINT32_C +# define __UINT32_C(c) c ## U +#endif + +#ifndef WINNT +# define WINNT 1 +#endif + +#ifndef __FLT_DENORM_MIN__ +# define __FLT_DENORM_MIN__ 1.40129846432481707092372958328991613e-45F +#endif + +#ifndef __INT8_MAX__ +# define __INT8_MAX__ 0x7f +#endif + +#ifndef __LONG_WIDTH__ +# define __LONG_WIDTH__ 32 +#endif + +#ifndef __PIC__ +# define __PIC__ 1 +#endif + +#ifndef __UINT_FAST32_TYPE__ +# define __UINT_FAST32_TYPE__ unsigned int +#endif + +#ifndef __FLT32X_NORM_MAX__ +# define __FLT32X_NORM_MAX__ 1.79769313486231570814527423731704357e+308F32x +#endif + +#ifndef __CHAR32_TYPE__ +# define __CHAR32_TYPE__ unsigned int +#endif + +#ifndef __FLT_MAX__ +# define __FLT_MAX__ 3.40282346638528859811704183484516925e+38F +#endif + +#ifndef __SSE2__ +# define __SSE2__ 1 +#endif + +#ifndef __INT32_TYPE__ +# define __INT32_TYPE__ int +#endif + +#ifndef __SIZEOF_DOUBLE__ +# define __SIZEOF_DOUBLE__ 8 +#endif + +#ifndef __FLT_MIN_10_EXP__ +# define __FLT_MIN_10_EXP__ (-37) +#endif + +#ifndef __FLT64_MIN__ +# define __FLT64_MIN__ 2.22507385850720138309023271733240406e-308F64 +#endif + +#ifndef __INT_LEAST32_WIDTH__ +# define __INT_LEAST32_WIDTH__ 32 +#endif + +#ifndef __INTMAX_TYPE__ +# define __INTMAX_TYPE__ long long int +#endif + +#ifndef _INTEGRAL_MAX_BITS +# define _INTEGRAL_MAX_BITS 64 +#endif + +#ifndef __DEC128_MAX_EXP__ +# define __DEC128_MAX_EXP__ 6145 +#endif + +#ifndef __FLT32X_HAS_QUIET_NAN__ +# define __FLT32X_HAS_QUIET_NAN__ 1 +#endif + +#ifndef __ATOMIC_CONSUME +# define __ATOMIC_CONSUME 1 +#endif + +#ifndef __GNUC_MINOR__ +# define __GNUC_MINOR__ 2 +#endif + +#ifndef __INT_FAST16_WIDTH__ +# define __INT_FAST16_WIDTH__ 16 +#endif + +#ifndef __UINTMAX_MAX__ +# define __UINTMAX_MAX__ 0xffffffffffffffffULL +#endif + +#ifndef __FLT32X_DENORM_MIN__ +# define __FLT32X_DENORM_MIN__ 4.94065645841246544176568792868221372e-324F32x +#endif + +#ifndef __DBL_MAX_10_EXP__ +# define __DBL_MAX_10_EXP__ 308 +#endif + +#ifndef __LDBL_DENORM_MIN__ +# define __LDBL_DENORM_MIN__ 3.64519953188247460252840593361941982e-4951L +#endif + +#ifndef __INT16_C +# define __INT16_C(c) c +#endif + +#ifndef __STDC__ +# define __STDC__ 1 +#endif + +#ifndef __PTRDIFF_TYPE__ +# define __PTRDIFF_TYPE__ long long int +#endif + +#ifndef __ATOMIC_SEQ_CST +# define __ATOMIC_SEQ_CST 5 +#endif + +#ifndef __FLT32X_MIN_10_EXP__ +# define __FLT32X_MIN_10_EXP__ (-307) +#endif + +#ifndef __UINTPTR_TYPE__ +# define __UINTPTR_TYPE__ long long unsigned int +#endif + +#ifndef __DEC64_SUBNORMAL_MIN__ +# define __DEC64_SUBNORMAL_MIN__ 0.000000000000001E-383DD +#endif + +#ifndef __DEC128_MANT_DIG__ +# define __DEC128_MANT_DIG__ 34 +#endif + +#ifndef __LDBL_MIN_10_EXP__ +# define __LDBL_MIN_10_EXP__ (-4931) +#endif + +#ifndef __SIZEOF_LONG_LONG__ +# define __SIZEOF_LONG_LONG__ 8 +#endif + +#ifndef __FLT128_DECIMAL_DIG__ +# define __FLT128_DECIMAL_DIG__ 36 +#endif + +#ifndef __GCC_ATOMIC_LLONG_LOCK_FREE +# define __GCC_ATOMIC_LLONG_LOCK_FREE 2 +#endif + +#ifndef __FLT32_HAS_QUIET_NAN__ +# define __FLT32_HAS_QUIET_NAN__ 1 +#endif + +#ifndef __FLT_DECIMAL_DIG__ +# define __FLT_DECIMAL_DIG__ 9 +#endif + +#ifndef __UINT_FAST16_MAX__ +# define __UINT_FAST16_MAX__ 0xffff +#endif + +#ifndef __LDBL_NORM_MAX__ +# define __LDBL_NORM_MAX__ 1.18973149535723176502126385303097021e+4932L +#endif + +#ifndef __GCC_ATOMIC_SHORT_LOCK_FREE +# define __GCC_ATOMIC_SHORT_LOCK_FREE 2 +#endif + +#ifndef __UINT_FAST8_TYPE__ +# define __UINT_FAST8_TYPE__ unsigned char +#endif + +#ifndef __WIN64__ +# define __WIN64__ 1 +#endif + +#ifndef __ATOMIC_ACQ_REL +# define __ATOMIC_ACQ_REL 4 +#endif + +#ifndef __ATOMIC_RELEASE +# define __ATOMIC_RELEASE 3 +#endif + +#ifndef __declspec +# define __declspec(x) __attribute__((x)) +#endif + diff --git a/.Rproj.user/CF1601EC/compilation-database/mingw64/config.json b/.Rproj.user/CF1601EC/compilation-database/mingw64/config.json new file mode 100644 index 00000000..0e48770c --- /dev/null +++ b/.Rproj.user/CF1601EC/compilation-database/mingw64/config.json @@ -0,0 +1,32 @@ +{ + "args": [ + "-std=gnu++17", + "-ID:/Softwares/R/R-4.3.0/include", + "-DNDEBUG", + "-Iexternal", + "-Iexternal/lpsolve/headers/run_headers", + "-Iexternal/minimum_ellipsoid", + "-Iinclude", + "-Iinclude/convex_bodies/spectrahedra", + "-DBOOST_NO_AUTO_PTR", + "-ID:/Softwares/R/R-4.3.0/library/Rcpp/include", + "-ID:/Softwares/R/R-4.3.0/library/RcppEigen/include", + "-ID:/Softwares/R/R-4.3.0/library/BH/include", + "-DEIGEN_DONT_VECTORIZE", + "-nostdinc", + "-Id:/softwares/rtools/rtools43/x86_64-w64-mingw32.static.posix/bin/../lib/gcc/x86_64-w64-mingw32.static.posix/12.2.0/include/c++", + "-Id:/softwares/rtools/rtools43/x86_64-w64-mingw32.static.posix/bin/../lib/gcc/x86_64-w64-mingw32.static.posix/12.2.0/include/c++/x86_64-w64-mingw32.static.posix", + "-Id:/softwares/rtools/rtools43/x86_64-w64-mingw32.static.posix/bin/../lib/gcc/x86_64-w64-mingw32.static.posix/12.2.0/include/c++/backward", + "-Id:/softwares/rtools/rtools43/x86_64-w64-mingw32.static.posix/bin/../lib/gcc/x86_64-w64-mingw32.static.posix/12.2.0/include", + "-Id:/softwares/rtools/rtools43/x86_64-w64-mingw32.static.posix/bin/../lib/gcc/x86_64-w64-mingw32.static.posix/12.2.0/../../../../include", + "-Id:/softwares/rtools/rtools43/x86_64-w64-mingw32.static.posix/bin/../lib/gcc/x86_64-w64-mingw32.static.posix/12.2.0/include-fixed", + "-include", + "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/.Rproj.user/CF1601EC/compilation-database/mingw64/cpp-definitions.h" + ], + "pch": "RcppEigen", + "is_cpp": true, + "hash": "168658961116865896111686589611", + "compiler": "6762244524107556826", + "rversion": "4.3.0", + "dbversion": 4 +} \ No newline at end of file diff --git a/.Rproj.user/CF1601EC/compilation-database/mingw64/cpp-definitions.h b/.Rproj.user/CF1601EC/compilation-database/mingw64/cpp-definitions.h new file mode 100644 index 00000000..0c4165ef --- /dev/null +++ b/.Rproj.user/CF1601EC/compilation-database/mingw64/cpp-definitions.h @@ -0,0 +1,1820 @@ +#include + +#ifndef __DBL_MIN_EXP__ +# define __DBL_MIN_EXP__ (-1021) +#endif + +#ifndef __cpp_attributes +# define __cpp_attributes 200809L +#endif + +#ifndef __cpp_nontype_template_parameter_auto +# define __cpp_nontype_template_parameter_auto 201606L +#endif + +#ifndef __UINT_LEAST16_MAX__ +# define __UINT_LEAST16_MAX__ 0xffff +#endif + +#ifndef __FLT16_HAS_QUIET_NAN__ +# define __FLT16_HAS_QUIET_NAN__ 1 +#endif + +#ifndef __ATOMIC_ACQUIRE +# define __ATOMIC_ACQUIRE 2 +#endif + +#ifndef __FLT128_MAX_10_EXP__ +# define __FLT128_MAX_10_EXP__ 4932 +#endif + +#ifndef __FLT_MIN__ +# define __FLT_MIN__ 1.17549435082228750796873653722224568e-38F +#endif + +#ifndef __GCC_IEC_559_COMPLEX +# define __GCC_IEC_559_COMPLEX 2 +#endif + +#ifndef __cpp_aggregate_nsdmi +# define __cpp_aggregate_nsdmi 201304L +#endif + +#ifndef __UINT_LEAST8_TYPE__ +# define __UINT_LEAST8_TYPE__ unsigned char +#endif + +#ifndef __SIZEOF_FLOAT80__ +# define __SIZEOF_FLOAT80__ 16 +#endif + +#ifndef __INTMAX_C +# define __INTMAX_C(c) c ## LL +#endif + +#ifndef __CHAR_BIT__ +# define __CHAR_BIT__ 8 +#endif + +#ifndef __MINGW32__ +# define __MINGW32__ 1 +#endif + +#ifndef __UINT8_MAX__ +# define __UINT8_MAX__ 0xff +#endif + +#ifndef __SCHAR_WIDTH__ +# define __SCHAR_WIDTH__ 8 +#endif + +#ifndef _WIN64 +# define _WIN64 1 +#endif + +#ifndef __WINT_MAX__ +# define __WINT_MAX__ 0xffff +#endif + +#ifndef __FLT32_MIN_EXP__ +# define __FLT32_MIN_EXP__ (-125) +#endif + +#ifndef __cpp_static_assert +# define __cpp_static_assert 201411L +#endif + +#ifndef __ORDER_LITTLE_ENDIAN__ +# define __ORDER_LITTLE_ENDIAN__ 1234 +#endif + +#ifndef __SIZE_MAX__ +# define __SIZE_MAX__ 0xffffffffffffffffULL +#endif + +#ifndef __WCHAR_MAX__ +# define __WCHAR_MAX__ 0xffff +#endif + +#ifndef __GCC_HAVE_SYNC_COMPARE_AND_SWAP_2 +# define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_2 1 +#endif + +#ifndef __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4 +# define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4 1 +#endif + +#ifndef __GCC_HAVE_SYNC_COMPARE_AND_SWAP_8 +# define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_8 1 +#endif + +#ifndef __GCC_ATOMIC_CHAR_LOCK_FREE +# define __GCC_ATOMIC_CHAR_LOCK_FREE 2 +#endif + +#ifndef __GCC_IEC_559 +# define __GCC_IEC_559 2 +#endif + +#ifndef __FLT32X_DECIMAL_DIG__ +# define __FLT32X_DECIMAL_DIG__ 17 +#endif + +#ifndef __FLT_EVAL_METHOD__ +# define __FLT_EVAL_METHOD__ 0 +#endif + +#ifndef __cpp_binary_literals +# define __cpp_binary_literals 201304L +#endif + +#ifndef __FLT64_DECIMAL_DIG__ +# define __FLT64_DECIMAL_DIG__ 17 +#endif + +#ifndef __cpp_noexcept_function_type +# define __cpp_noexcept_function_type 201510L +#endif + +#ifndef __GCC_ATOMIC_CHAR32_T_LOCK_FREE +# define __GCC_ATOMIC_CHAR32_T_LOCK_FREE 2 +#endif + +#ifndef __cpp_variadic_templates +# define __cpp_variadic_templates 200704L +#endif + +#ifndef __UINT_FAST64_MAX__ +# define __UINT_FAST64_MAX__ 0xffffffffffffffffULL +#endif + +#ifndef __SIG_ATOMIC_TYPE__ +# define __SIG_ATOMIC_TYPE__ int +#endif + +#ifndef __DBL_MIN_10_EXP__ +# define __DBL_MIN_10_EXP__ (-307) +#endif + +#ifndef __FINITE_MATH_ONLY__ +# define __FINITE_MATH_ONLY__ 0 +#endif + +#ifndef __cpp_variable_templates +# define __cpp_variable_templates 201304L +#endif + +#ifndef __FLT32X_MAX_EXP__ +# define __FLT32X_MAX_EXP__ 1024 +#endif + +#ifndef __GCC_HAVE_SYNC_COMPARE_AND_SWAP_1 +# define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_1 1 +#endif + +#ifndef __FLT32_HAS_DENORM__ +# define __FLT32_HAS_DENORM__ 1 +#endif + +#ifndef __UINT_FAST8_MAX__ +# define __UINT_FAST8_MAX__ 0xff +#endif + +#ifndef __cpp_rvalue_reference +# define __cpp_rvalue_reference 200610L +#endif + +#ifndef __cpp_nested_namespace_definitions +# define __cpp_nested_namespace_definitions 201411L +#endif + +#ifndef _stdcall +# define _stdcall __attribute__((__stdcall__)) +#endif + +#ifndef __DEC64_MAX_EXP__ +# define __DEC64_MAX_EXP__ 385 +#endif + +#ifndef __INT8_C +# define __INT8_C(c) c +#endif + +#ifndef __INT_LEAST8_WIDTH__ +# define __INT_LEAST8_WIDTH__ 8 +#endif + +#ifndef __cpp_variadic_using +# define __cpp_variadic_using 201611L +#endif + +#ifndef __UINT_LEAST64_MAX__ +# define __UINT_LEAST64_MAX__ 0xffffffffffffffffULL +#endif + +#ifndef __INT_LEAST8_MAX__ +# define __INT_LEAST8_MAX__ 0x7f +#endif + +#ifndef __cpp_capture_star_this +# define __cpp_capture_star_this 201603L +#endif + +#ifndef __SHRT_MAX__ +# define __SHRT_MAX__ 0x7fff +#endif + +#ifndef __LDBL_MAX__ +# define __LDBL_MAX__ 1.18973149535723176502126385303097021e+4932L +#endif + +#ifndef __FLT64X_MAX_10_EXP__ +# define __FLT64X_MAX_10_EXP__ 4932 +#endif + +#ifndef __cpp_if_constexpr +# define __cpp_if_constexpr 201606L +#endif + +#ifndef __LDBL_IS_IEC_60559__ +# define __LDBL_IS_IEC_60559__ 2 +#endif + +#ifndef __FLT64X_HAS_QUIET_NAN__ +# define __FLT64X_HAS_QUIET_NAN__ 1 +#endif + +#ifndef __UINT_LEAST8_MAX__ +# define __UINT_LEAST8_MAX__ 0xff +#endif + +#ifndef __GCC_ATOMIC_BOOL_LOCK_FREE +# define __GCC_ATOMIC_BOOL_LOCK_FREE 2 +#endif + +#ifndef __FLT128_DENORM_MIN__ +# define __FLT128_DENORM_MIN__ 6.47517511943802511092443895822764655e-4966F128 +#endif + +#ifndef __UINTMAX_TYPE__ +# define __UINTMAX_TYPE__ long long unsigned int +#endif + +#ifndef __DEC32_EPSILON__ +# define __DEC32_EPSILON__ 1E-6DF +#endif + +#ifndef __FLT_EVAL_METHOD_TS_18661_3__ +# define __FLT_EVAL_METHOD_TS_18661_3__ 0 +#endif + +#ifndef __UINT32_MAX__ +# define __UINT32_MAX__ 0xffffffffU +#endif + +#ifndef __GXX_EXPERIMENTAL_CXX0X__ +# define __GXX_EXPERIMENTAL_CXX0X__ 1 +#endif + +#ifndef __DBL_DENORM_MIN__ +# define __DBL_DENORM_MIN__ double(4.94065645841246544176568792868221372e-324L) +#endif + +#ifndef __FLT128_MIN_EXP__ +# define __FLT128_MIN_EXP__ (-16381) +#endif + +#ifndef __WINT_MIN__ +# define __WINT_MIN__ 0 +#endif + +#ifndef __FLT128_MIN_10_EXP__ +# define __FLT128_MIN_10_EXP__ (-4931) +#endif + +#ifndef __FLT32X_IS_IEC_60559__ +# define __FLT32X_IS_IEC_60559__ 2 +#endif + +#ifndef __INT_LEAST16_WIDTH__ +# define __INT_LEAST16_WIDTH__ 16 +#endif + +#ifndef __SCHAR_MAX__ +# define __SCHAR_MAX__ 0x7f +#endif + +#ifndef __FLT128_MANT_DIG__ +# define __FLT128_MANT_DIG__ 113 +#endif + +#ifndef __WCHAR_MIN__ +# define __WCHAR_MIN__ 0 +#endif + +#ifndef __INT64_C +# define __INT64_C(c) c ## LL +#endif + +#ifndef __GCC_ATOMIC_POINTER_LOCK_FREE +# define __GCC_ATOMIC_POINTER_LOCK_FREE 2 +#endif + +#ifndef __FLT32X_MANT_DIG__ +# define __FLT32X_MANT_DIG__ 53 +#endif + +#ifndef __GCC_ATOMIC_CHAR16_T_LOCK_FREE +# define __GCC_ATOMIC_CHAR16_T_LOCK_FREE 2 +#endif + +#ifndef __cpp_aligned_new +# define __cpp_aligned_new 201606L +#endif + +#ifndef __FLT32_MAX_10_EXP__ +# define __FLT32_MAX_10_EXP__ 38 +#endif + +#ifndef __FLT64X_EPSILON__ +# define __FLT64X_EPSILON__ 1.08420217248550443400745280086994171e-19F64x +#endif + +#ifndef __STDC_HOSTED__ +# define __STDC_HOSTED__ 1 +#endif + +#ifndef __DEC64_MIN_EXP__ +# define __DEC64_MIN_EXP__ (-382) +#endif + +#ifndef __WIN64 +# define __WIN64 1 +#endif + +#ifndef __cpp_decltype_auto +# define __cpp_decltype_auto 201304L +#endif + +#ifndef __DBL_DIG__ +# define __DBL_DIG__ 15 +#endif + +#ifndef __FLT32_DIG__ +# define __FLT32_DIG__ 6 +#endif + +#ifndef __FLT_EPSILON__ +# define __FLT_EPSILON__ 1.19209289550781250000000000000000000e-7F +#endif + +#ifndef __GXX_WEAK__ +# define __GXX_WEAK__ 1 +#endif + +#ifndef __SHRT_WIDTH__ +# define __SHRT_WIDTH__ 16 +#endif + +#ifndef __FLT32_IS_IEC_60559__ +# define __FLT32_IS_IEC_60559__ 2 +#endif + +#ifndef __LDBL_MIN__ +# define __LDBL_MIN__ 3.36210314311209350626267781732175260e-4932L +#endif + +#ifndef __DBL_IS_IEC_60559__ +# define __DBL_IS_IEC_60559__ 2 +#endif + +#ifndef __DEC32_MAX__ +# define __DEC32_MAX__ 9.999999E96DF +#endif + +#ifndef __cpp_threadsafe_static_init +# define __cpp_threadsafe_static_init 200806L +#endif + +#ifndef __cpp_enumerator_attributes +# define __cpp_enumerator_attributes 201411L +#endif + +#ifndef __FLT64X_DENORM_MIN__ +# define __FLT64X_DENORM_MIN__ 3.64519953188247460252840593361941982e-4951F64x +#endif + +#ifndef __FLT32X_HAS_INFINITY__ +# define __FLT32X_HAS_INFINITY__ 1 +#endif + +#ifndef __INT32_MAX__ +# define __INT32_MAX__ 0x7fffffff +#endif + +#ifndef __FLT16_DIG__ +# define __FLT16_DIG__ 3 +#endif + +#ifndef __INT_WIDTH__ +# define __INT_WIDTH__ 32 +#endif + +#ifndef __SIZEOF_LONG__ +# define __SIZEOF_LONG__ 4 +#endif + +#ifndef __UINT16_C +# define __UINT16_C(c) c +#endif + +#ifndef __DECIMAL_DIG__ +# define __DECIMAL_DIG__ 21 +#endif + +#ifndef __FLT64_EPSILON__ +# define __FLT64_EPSILON__ 2.22044604925031308084726333618164062e-16F64 +#endif + +#ifndef __INT16_MAX__ +# define __INT16_MAX__ 0x7fff +#endif + +#ifndef __FLT64_MIN_EXP__ +# define __FLT64_MIN_EXP__ (-1021) +#endif + +#ifndef __FLT64X_MIN_10_EXP__ +# define __FLT64X_MIN_10_EXP__ (-4931) +#endif + +#ifndef __LDBL_HAS_QUIET_NAN__ +# define __LDBL_HAS_QUIET_NAN__ 1 +#endif + +#ifndef __FLT16_MIN_EXP__ +# define __FLT16_MIN_EXP__ (-13) +#endif + +#ifndef __FLT64_MANT_DIG__ +# define __FLT64_MANT_DIG__ 53 +#endif + +#ifndef _REENTRANT +# define _REENTRANT 1 +#endif + +#ifndef __FLT64X_MANT_DIG__ +# define __FLT64X_MANT_DIG__ 64 +#endif + +#ifndef __GNUC__ +# define __GNUC__ 12 +#endif + +#ifndef _cdecl +# define _cdecl __attribute__((__cdecl__)) +#endif + +#ifndef __GXX_RTTI +# define __GXX_RTTI 1 +#endif + +#ifndef __MMX__ +# define __MMX__ 1 +#endif + +#ifndef __FLT_HAS_DENORM__ +# define __FLT_HAS_DENORM__ 1 +#endif + +#ifndef __SIZEOF_LONG_DOUBLE__ +# define __SIZEOF_LONG_DOUBLE__ 16 +#endif + +#ifndef __BIGGEST_ALIGNMENT__ +# define __BIGGEST_ALIGNMENT__ 16 +#endif + +#ifndef __STDC_UTF_16__ +# define __STDC_UTF_16__ 1 +#endif + +#ifndef __FLT64_MAX_10_EXP__ +# define __FLT64_MAX_10_EXP__ 308 +#endif + +#ifndef __FLT16_MAX_10_EXP__ +# define __FLT16_MAX_10_EXP__ 4 +#endif + +#ifndef __cpp_delegating_constructors +# define __cpp_delegating_constructors 200604L +#endif + +#ifndef __FLT32_HAS_INFINITY__ +# define __FLT32_HAS_INFINITY__ 1 +#endif + +#ifndef __DBL_MAX__ +# define __DBL_MAX__ double(1.79769313486231570814527423731704357e+308L) +#endif + +#ifndef _thiscall +# define _thiscall __attribute__((__thiscall__)) +#endif + +#ifndef __cpp_raw_strings +# define __cpp_raw_strings 200710L +#endif + +#ifndef __INT_FAST32_MAX__ +# define __INT_FAST32_MAX__ 0x7fffffff +#endif + +#ifndef __WINNT +# define __WINNT 1 +#endif + +#ifndef __DBL_HAS_INFINITY__ +# define __DBL_HAS_INFINITY__ 1 +#endif + +#ifndef __SIZEOF_FLOAT__ +# define __SIZEOF_FLOAT__ 4 +#endif + +#ifndef __WINNT__ +# define __WINNT__ 1 +#endif + +#ifndef __HAVE_SPECULATION_SAFE_VALUE +# define __HAVE_SPECULATION_SAFE_VALUE 1 +#endif + +#ifndef __cpp_fold_expressions +# define __cpp_fold_expressions 201603L +#endif + +#ifndef __DEC32_MIN_EXP__ +# define __DEC32_MIN_EXP__ (-94) +#endif + +#ifndef __INTPTR_WIDTH__ +# define __INTPTR_WIDTH__ 64 +#endif + +#ifndef __FLT64X_HAS_INFINITY__ +# define __FLT64X_HAS_INFINITY__ 1 +#endif + +#ifndef __UINT_LEAST32_MAX__ +# define __UINT_LEAST32_MAX__ 0xffffffffU +#endif + +#ifndef __FLT32X_HAS_DENORM__ +# define __FLT32X_HAS_DENORM__ 1 +#endif + +#ifndef __INT_FAST16_TYPE__ +# define __INT_FAST16_TYPE__ short int +#endif + +#ifndef __MMX_WITH_SSE__ +# define __MMX_WITH_SSE__ 1 +#endif + +#ifndef _fastcall +# define _fastcall __attribute__((__fastcall__)) +#endif + +#ifndef __LDBL_HAS_DENORM__ +# define __LDBL_HAS_DENORM__ 1 +#endif + +#ifndef __SEG_GS +# define __SEG_GS 1 +#endif + +#ifndef __cplusplus +# define __cplusplus 201703L +#endif + +#ifndef __cpp_ref_qualifiers +# define __cpp_ref_qualifiers 200710L +#endif + +#ifndef __DEC32_MIN__ +# define __DEC32_MIN__ 1E-95DF +#endif + +#ifndef __DEPRECATED +# define __DEPRECATED 1 +#endif + +#ifndef __cpp_rvalue_references +# define __cpp_rvalue_references 200610L +#endif + +#ifndef __DBL_MAX_EXP__ +# define __DBL_MAX_EXP__ 1024 +#endif + +#ifndef __WCHAR_WIDTH__ +# define __WCHAR_WIDTH__ 16 +#endif + +#ifndef __FLT32_MAX__ +# define __FLT32_MAX__ 3.40282346638528859811704183484516925e+38F32 +#endif + +#ifndef __DEC128_EPSILON__ +# define __DEC128_EPSILON__ 1E-33DL +#endif + +#ifndef __FLT16_DECIMAL_DIG__ +# define __FLT16_DECIMAL_DIG__ 5 +#endif + +#ifndef __SSE2_MATH__ +# define __SSE2_MATH__ 1 +#endif + +#ifndef __ATOMIC_HLE_RELEASE +# define __ATOMIC_HLE_RELEASE 131072 +#endif + +#ifndef __WIN32__ +# define __WIN32__ 1 +#endif + +#ifndef __PTRDIFF_MAX__ +# define __PTRDIFF_MAX__ 0x7fffffffffffffffLL +#endif + +#ifndef __amd64 +# define __amd64 1 +#endif + +#ifndef __ATOMIC_HLE_ACQUIRE +# define __ATOMIC_HLE_ACQUIRE 65536 +#endif + +#ifndef __GNUG__ +# define __GNUG__ 12 +#endif + +#ifndef __LONG_LONG_MAX__ +# define __LONG_LONG_MAX__ 0x7fffffffffffffffLL +#endif + +#ifndef __SIZEOF_SIZE_T__ +# define __SIZEOF_SIZE_T__ 8 +#endif + +#ifndef __cpp_nsdmi +# define __cpp_nsdmi 200809L +#endif + +#ifndef __FLT64X_MIN_EXP__ +# define __FLT64X_MIN_EXP__ (-16381) +#endif + +#ifndef __SIZEOF_WINT_T__ +# define __SIZEOF_WINT_T__ 2 +#endif + +#ifndef __LONG_LONG_WIDTH__ +# define __LONG_LONG_WIDTH__ 64 +#endif + +#ifndef __cpp_initializer_lists +# define __cpp_initializer_lists 200806L +#endif + +#ifndef __FLT32_MAX_EXP__ +# define __FLT32_MAX_EXP__ 128 +#endif + +#ifndef __cpp_hex_float +# define __cpp_hex_float 201603L +#endif + +#ifndef __GXX_ABI_VERSION +# define __GXX_ABI_VERSION 1017 +#endif + +#ifndef __FLT128_HAS_INFINITY__ +# define __FLT128_HAS_INFINITY__ 1 +#endif + +#ifndef __FLT_MIN_EXP__ +# define __FLT_MIN_EXP__ (-125) +#endif + +#ifndef __x86_64 +# define __x86_64 1 +#endif + +#ifndef __cpp_lambdas +# define __cpp_lambdas 200907L +#endif + +#ifndef __INT_FAST64_TYPE__ +# define __INT_FAST64_TYPE__ long long int +#endif + +#ifndef __FLT64_DENORM_MIN__ +# define __FLT64_DENORM_MIN__ 4.94065645841246544176568792868221372e-324F64 +#endif + +#ifndef __cpp_template_auto +# define __cpp_template_auto 201606L +#endif + +#ifndef __DBL_MIN__ +# define __DBL_MIN__ double(2.22507385850720138309023271733240406e-308L) +#endif + +#ifndef __FLT16_DENORM_MIN__ +# define __FLT16_DENORM_MIN__ 5.96046447753906250000000000000000000e-8F16 +#endif + +#ifndef __FLT128_EPSILON__ +# define __FLT128_EPSILON__ 1.92592994438723585305597794258492732e-34F128 +#endif + +#ifndef __FLT64X_NORM_MAX__ +# define __FLT64X_NORM_MAX__ 1.18973149535723176502126385303097021e+4932F64x +#endif + +#ifndef __SIZEOF_POINTER__ +# define __SIZEOF_POINTER__ 8 +#endif + +#ifndef __SIZE_TYPE__ +# define __SIZE_TYPE__ long long unsigned int +#endif + +#ifndef __DBL_HAS_QUIET_NAN__ +# define __DBL_HAS_QUIET_NAN__ 1 +#endif + +#ifndef __FLT32X_EPSILON__ +# define __FLT32X_EPSILON__ 2.22044604925031308084726333618164062e-16F32x +#endif + +#ifndef __DECIMAL_BID_FORMAT__ +# define __DECIMAL_BID_FORMAT__ 1 +#endif + +#ifndef __GXX_TYPEINFO_EQUALITY_INLINE +# define __GXX_TYPEINFO_EQUALITY_INLINE 0 +#endif + +#ifndef __FLT64_MIN_10_EXP__ +# define __FLT64_MIN_10_EXP__ (-307) +#endif + +#ifndef __FLT16_MIN_10_EXP__ +# define __FLT16_MIN_10_EXP__ (-4) +#endif + +#ifndef __FLT64X_DECIMAL_DIG__ +# define __FLT64X_DECIMAL_DIG__ 21 +#endif + +#ifndef __DEC128_MIN__ +# define __DEC128_MIN__ 1E-6143DL +#endif + +#ifndef __REGISTER_PREFIX__ +# define __REGISTER_PREFIX__ +#endif + +#ifndef __UINT16_MAX__ +# define __UINT16_MAX__ 0xffff +#endif + +#ifndef __cdecl +# define __cdecl __attribute__((__cdecl__)) +#endif + +#ifndef __LDBL_HAS_INFINITY__ +# define __LDBL_HAS_INFINITY__ 1 +#endif + +#ifndef __FLT32_MIN__ +# define __FLT32_MIN__ 1.17549435082228750796873653722224568e-38F32 +#endif + +#ifndef __UINT8_TYPE__ +# define __UINT8_TYPE__ unsigned char +#endif + +#ifndef __FLT_DIG__ +# define __FLT_DIG__ 6 +#endif + +#ifndef __NO_INLINE__ +# define __NO_INLINE__ 1 +#endif + +#ifndef __DEC_EVAL_METHOD__ +# define __DEC_EVAL_METHOD__ 2 +#endif + +#ifndef __DEC128_MAX__ +# define __DEC128_MAX__ 9.999999999999999999999999999999999E6144DL +#endif + +#ifndef __FLT_MANT_DIG__ +# define __FLT_MANT_DIG__ 24 +#endif + +#ifndef __LDBL_DECIMAL_DIG__ +# define __LDBL_DECIMAL_DIG__ 21 +#endif + +#ifndef __VERSION__ +# define __VERSION__ "12.2.0" +#endif + +#ifndef __UINT64_C +# define __UINT64_C(c) c ## ULL +#endif + +#ifndef __cpp_unicode_characters +# define __cpp_unicode_characters 201411L +#endif + +#ifndef _WIN32 +# define _WIN32 1 +#endif + +#ifndef __SEH__ +# define __SEH__ 1 +#endif + +#ifndef __INT_LEAST32_MAX__ +# define __INT_LEAST32_MAX__ 0x7fffffff +#endif + +#ifndef __GCC_ATOMIC_INT_LOCK_FREE +# define __GCC_ATOMIC_INT_LOCK_FREE 2 +#endif + +#ifndef __FLT128_MAX_EXP__ +# define __FLT128_MAX_EXP__ 16384 +#endif + +#ifndef __FLT32_MANT_DIG__ +# define __FLT32_MANT_DIG__ 24 +#endif + +#ifndef __FLOAT_WORD_ORDER__ +# define __FLOAT_WORD_ORDER__ __ORDER_LITTLE_ENDIAN__ +#endif + +#ifndef __FLT32X_MIN_EXP__ +# define __FLT32X_MIN_EXP__ (-1021) +#endif + +#ifndef __cpp_aggregate_bases +# define __cpp_aggregate_bases 201603L +#endif + +#ifndef __FLT128_HAS_DENORM__ +# define __FLT128_HAS_DENORM__ 1 +#endif + +#ifndef __FLT32_DECIMAL_DIG__ +# define __FLT32_DECIMAL_DIG__ 9 +#endif + +#ifndef __FLT128_DIG__ +# define __FLT128_DIG__ 33 +#endif + +#ifndef __INT32_C +# define __INT32_C(c) c +#endif + +#ifndef __DEC64_EPSILON__ +# define __DEC64_EPSILON__ 1E-15DD +#endif + +#ifndef __ORDER_PDP_ENDIAN__ +# define __ORDER_PDP_ENDIAN__ 3412 +#endif + +#ifndef __DEC128_MIN_EXP__ +# define __DEC128_MIN_EXP__ (-6142) +#endif + +#ifndef __INT_FAST32_TYPE__ +# define __INT_FAST32_TYPE__ int +#endif + +#ifndef __UINT_LEAST16_TYPE__ +# define __UINT_LEAST16_TYPE__ short unsigned int +#endif + +#ifndef __DBL_HAS_DENORM__ +# define __DBL_HAS_DENORM__ 1 +#endif + +#ifndef __cpp_rtti +# define __cpp_rtti 199711L +#endif + +#ifndef __UINT64_MAX__ +# define __UINT64_MAX__ 0xffffffffffffffffULL +#endif + +#ifndef __FLT_IS_IEC_60559__ +# define __FLT_IS_IEC_60559__ 2 +#endif + +#ifndef __GNUC_WIDE_EXECUTION_CHARSET_NAME +# define __GNUC_WIDE_EXECUTION_CHARSET_NAME "UTF-16LE" +#endif + +#ifndef __FLT64X_DIG__ +# define __FLT64X_DIG__ 18 +#endif + +#ifndef __INT8_TYPE__ +# define __INT8_TYPE__ signed char +#endif + +#ifndef __cpp_digit_separators +# define __cpp_digit_separators 201309L +#endif + +#ifndef __GCC_ASM_FLAG_OUTPUTS__ +# define __GCC_ASM_FLAG_OUTPUTS__ 1 +#endif + +#ifndef __UINT32_TYPE__ +# define __UINT32_TYPE__ unsigned int +#endif + +#ifndef __FLT_RADIX__ +# define __FLT_RADIX__ 2 +#endif + +#ifndef __INT_LEAST16_TYPE__ +# define __INT_LEAST16_TYPE__ short int +#endif + +#ifndef __LDBL_EPSILON__ +# define __LDBL_EPSILON__ 1.08420217248550443400745280086994171e-19L +#endif + +#ifndef __UINTMAX_C +# define __UINTMAX_C(c) c ## ULL +#endif + +#ifndef __GLIBCXX_BITSIZE_INT_N_0 +# define __GLIBCXX_BITSIZE_INT_N_0 128 +#endif + +#ifndef __k8 +# define __k8 1 +#endif + +#ifndef __FLT32X_MIN__ +# define __FLT32X_MIN__ 2.22507385850720138309023271733240406e-308F32x +#endif + +#ifndef __SIG_ATOMIC_MAX__ +# define __SIG_ATOMIC_MAX__ 0x7fffffff +#endif + +#ifndef __GCC_ATOMIC_WCHAR_T_LOCK_FREE +# define __GCC_ATOMIC_WCHAR_T_LOCK_FREE 2 +#endif + +#ifndef __USER_LABEL_PREFIX__ +# define __USER_LABEL_PREFIX__ +#endif + +#ifndef __SIZEOF_PTRDIFF_T__ +# define __SIZEOF_PTRDIFF_T__ 8 +#endif + +#ifndef __LDBL_DIG__ +# define __LDBL_DIG__ 18 +#endif + +#ifndef __FLT64_IS_IEC_60559__ +# define __FLT64_IS_IEC_60559__ 2 +#endif + +#ifndef __x86_64__ +# define __x86_64__ 1 +#endif + +#ifndef __FLT16_IS_IEC_60559__ +# define __FLT16_IS_IEC_60559__ 2 +#endif + +#ifndef __FLT16_MAX_EXP__ +# define __FLT16_MAX_EXP__ 16 +#endif + +#ifndef __DEC32_SUBNORMAL_MIN__ +# define __DEC32_SUBNORMAL_MIN__ 0.000001E-95DF +#endif + +#ifndef __MSVCRT__ +# define __MSVCRT__ 1 +#endif + +#ifndef __INT_FAST16_MAX__ +# define __INT_FAST16_MAX__ 0x7fff +#endif + +#ifndef __GCC_CONSTRUCTIVE_SIZE +# define __GCC_CONSTRUCTIVE_SIZE 64 +#endif + +#ifndef __FLT64_DIG__ +# define __FLT64_DIG__ 15 +#endif + +#ifndef __UINT_FAST32_MAX__ +# define __UINT_FAST32_MAX__ 0xffffffffU +#endif + +#ifndef __UINT_LEAST64_TYPE__ +# define __UINT_LEAST64_TYPE__ long long unsigned int +#endif + +#ifndef __FLT16_EPSILON__ +# define __FLT16_EPSILON__ 9.76562500000000000000000000000000000e-4F16 +#endif + +#ifndef __FLT_HAS_QUIET_NAN__ +# define __FLT_HAS_QUIET_NAN__ 1 +#endif + +#ifndef __FLT_MAX_10_EXP__ +# define __FLT_MAX_10_EXP__ 38 +#endif + +#ifndef __LONG_MAX__ +# define __LONG_MAX__ 0x7fffffffL +#endif + +#ifndef __FLT64X_HAS_DENORM__ +# define __FLT64X_HAS_DENORM__ 1 +#endif + +#ifndef __DEC128_SUBNORMAL_MIN__ +# define __DEC128_SUBNORMAL_MIN__ 0.000000000000000000000000000000001E-6143DL +#endif + +#ifndef __FLT_HAS_INFINITY__ +# define __FLT_HAS_INFINITY__ 1 +#endif + +#ifndef __GNUC_EXECUTION_CHARSET_NAME +# define __GNUC_EXECUTION_CHARSET_NAME "UTF-8" +#endif + +#ifndef __cpp_unicode_literals +# define __cpp_unicode_literals 200710L +#endif + +#ifndef __UINT_FAST16_TYPE__ +# define __UINT_FAST16_TYPE__ short unsigned int +#endif + +#ifndef __DEC64_MAX__ +# define __DEC64_MAX__ 9.999999999999999E384DD +#endif + +#ifndef __INT_FAST32_WIDTH__ +# define __INT_FAST32_WIDTH__ 32 +#endif + +#ifndef __CHAR16_TYPE__ +# define __CHAR16_TYPE__ short unsigned int +#endif + +#ifndef __PRAGMA_REDEFINE_EXTNAME +# define __PRAGMA_REDEFINE_EXTNAME 1 +#endif + +#ifndef __SIZE_WIDTH__ +# define __SIZE_WIDTH__ 64 +#endif + +#ifndef __SEG_FS +# define __SEG_FS 1 +#endif + +#ifndef __INT_LEAST16_MAX__ +# define __INT_LEAST16_MAX__ 0x7fff +#endif + +#ifndef __FLT16_NORM_MAX__ +# define __FLT16_NORM_MAX__ 6.55040000000000000000000000000000000e+4F16 +#endif + +#ifndef __DEC64_MANT_DIG__ +# define __DEC64_MANT_DIG__ 16 +#endif + +#ifndef __INT64_MAX__ +# define __INT64_MAX__ 0x7fffffffffffffffLL +#endif + +#ifndef __FLT32_DENORM_MIN__ +# define __FLT32_DENORM_MIN__ 1.40129846432481707092372958328991613e-45F32 +#endif + +#ifndef __SIG_ATOMIC_WIDTH__ +# define __SIG_ATOMIC_WIDTH__ 32 +#endif + +#ifndef __INT_LEAST64_TYPE__ +# define __INT_LEAST64_TYPE__ long long int +#endif + +#ifndef __INT16_TYPE__ +# define __INT16_TYPE__ short int +#endif + +#ifndef __INT_LEAST8_TYPE__ +# define __INT_LEAST8_TYPE__ signed char +#endif + +#ifndef __FLT16_MAX__ +# define __FLT16_MAX__ 6.55040000000000000000000000000000000e+4F16 +#endif + +#ifndef __cpp_structured_bindings +# define __cpp_structured_bindings 201606L +#endif + +#ifndef __SIZEOF_INT__ +# define __SIZEOF_INT__ 4 +#endif + +#ifndef __DEC32_MAX_EXP__ +# define __DEC32_MAX_EXP__ 97 +#endif + +#ifndef __INT_FAST8_MAX__ +# define __INT_FAST8_MAX__ 0x7f +#endif + +#ifndef __FLT128_MAX__ +# define __FLT128_MAX__ 1.18973149535723176508575932662800702e+4932F128 +#endif + +#ifndef __INTPTR_MAX__ +# define __INTPTR_MAX__ 0x7fffffffffffffffLL +#endif + +#ifndef __cpp_sized_deallocation +# define __cpp_sized_deallocation 201309L +#endif + +#ifndef __cpp_guaranteed_copy_elision +# define __cpp_guaranteed_copy_elision 201606L +#endif + +#ifndef __FLT64_HAS_QUIET_NAN__ +# define __FLT64_HAS_QUIET_NAN__ 1 +#endif + +#ifndef __stdcall +# define __stdcall __attribute__((__stdcall__)) +#endif + +#ifndef __FLT32_MIN_10_EXP__ +# define __FLT32_MIN_10_EXP__ (-37) +#endif + +#ifndef __EXCEPTIONS +# define __EXCEPTIONS 1 +#endif + +#ifndef __GXX_MERGED_TYPEINFO_NAMES +# define __GXX_MERGED_TYPEINFO_NAMES 0 +#endif + +#ifndef __PTRDIFF_WIDTH__ +# define __PTRDIFF_WIDTH__ 64 +#endif + +#ifndef __LDBL_MANT_DIG__ +# define __LDBL_MANT_DIG__ 64 +#endif + +#ifndef __cpp_range_based_for +# define __cpp_range_based_for 201603L +#endif + +#ifndef __FLT64_HAS_INFINITY__ +# define __FLT64_HAS_INFINITY__ 1 +#endif + +#ifndef __FLT64X_MAX__ +# define __FLT64X_MAX__ 1.18973149535723176502126385303097021e+4932F64x +#endif + +#ifndef __FLT16_HAS_INFINITY__ +# define __FLT16_HAS_INFINITY__ 1 +#endif + +#ifndef __STDCPP_DEFAULT_NEW_ALIGNMENT__ +# define __STDCPP_DEFAULT_NEW_ALIGNMENT__ 16 +#endif + +#ifndef __SIG_ATOMIC_MIN__ +# define __SIG_ATOMIC_MIN__ (-__SIG_ATOMIC_MAX__ - 1) +#endif + +#ifndef __GCC_ATOMIC_LONG_LOCK_FREE +# define __GCC_ATOMIC_LONG_LOCK_FREE 2 +#endif + +#ifndef __cpp_nontype_template_args +# define __cpp_nontype_template_args 201411L +#endif + +#ifndef __DEC32_MANT_DIG__ +# define __DEC32_MANT_DIG__ 7 +#endif + +#ifndef __cpp_return_type_deduction +# define __cpp_return_type_deduction 201304L +#endif + +#ifndef __k8__ +# define __k8__ 1 +#endif + +#ifndef __INTPTR_TYPE__ +# define __INTPTR_TYPE__ long long int +#endif + +#ifndef __UINT16_TYPE__ +# define __UINT16_TYPE__ short unsigned int +#endif + +#ifndef __WCHAR_TYPE__ +# define __WCHAR_TYPE__ short unsigned int +#endif + +#ifndef __pic__ +# define __pic__ 1 +#endif + +#ifndef __UINTPTR_MAX__ +# define __UINTPTR_MAX__ 0xffffffffffffffffULL +#endif + +#ifndef __INT_FAST64_WIDTH__ +# define __INT_FAST64_WIDTH__ 64 +#endif + +#ifndef __cpp_decltype +# define __cpp_decltype 200707L +#endif + +#ifndef __INT_FAST64_MAX__ +# define __INT_FAST64_MAX__ 0x7fffffffffffffffLL +#endif + +#ifndef __GCC_ATOMIC_TEST_AND_SET_TRUEVAL +# define __GCC_ATOMIC_TEST_AND_SET_TRUEVAL 1 +#endif + +#ifndef __FLT_NORM_MAX__ +# define __FLT_NORM_MAX__ 3.40282346638528859811704183484516925e+38F +#endif + +#ifndef __FLT64X_MAX_EXP__ +# define __FLT64X_MAX_EXP__ 16384 +#endif + +#ifndef __UINT_FAST64_TYPE__ +# define __UINT_FAST64_TYPE__ long long unsigned int +#endif + +#ifndef __cpp_inline_variables +# define __cpp_inline_variables 201606L +#endif + +#ifndef __INT_MAX__ +# define __INT_MAX__ 0x7fffffff +#endif + +#ifndef WIN32 +# define WIN32 1 +#endif + +#ifndef __code_model_medium__ +# define __code_model_medium__ 1 +#endif + +#ifndef __INT64_TYPE__ +# define __INT64_TYPE__ long long int +#endif + +#ifndef __FLT_MAX_EXP__ +# define __FLT_MAX_EXP__ 128 +#endif + +#ifndef WIN64 +# define WIN64 1 +#endif + +#ifndef __ORDER_BIG_ENDIAN__ +# define __ORDER_BIG_ENDIAN__ 4321 +#endif + +#ifndef __DBL_MANT_DIG__ +# define __DBL_MANT_DIG__ 53 +#endif + +#ifndef __cpp_inheriting_constructors +# define __cpp_inheriting_constructors 201511L +#endif + +#ifndef __SIZEOF_FLOAT128__ +# define __SIZEOF_FLOAT128__ 16 +#endif + +#ifndef __INT_LEAST64_MAX__ +# define __INT_LEAST64_MAX__ 0x7fffffffffffffffLL +#endif + +#ifndef __DEC64_MIN__ +# define __DEC64_MIN__ 1E-383DD +#endif + +#ifndef __WINT_TYPE__ +# define __WINT_TYPE__ short unsigned int +#endif + +#ifndef __UINT_LEAST32_TYPE__ +# define __UINT_LEAST32_TYPE__ unsigned int +#endif + +#ifndef __SIZEOF_SHORT__ +# define __SIZEOF_SHORT__ 2 +#endif + +#ifndef __FLT32_NORM_MAX__ +# define __FLT32_NORM_MAX__ 3.40282346638528859811704183484516925e+38F32 +#endif + +#ifndef __SSE__ +# define __SSE__ 1 +#endif + +#ifndef __LDBL_MIN_EXP__ +# define __LDBL_MIN_EXP__ (-16381) +#endif + +#ifndef __FLT64_MAX__ +# define __FLT64_MAX__ 1.79769313486231570814527423731704357e+308F64 +#endif + +#ifndef __amd64__ +# define __amd64__ 1 +#endif + +#ifndef __WINT_WIDTH__ +# define __WINT_WIDTH__ 16 +#endif + +#ifndef __INT_LEAST64_WIDTH__ +# define __INT_LEAST64_WIDTH__ 64 +#endif + +#ifndef __LDBL_MAX_EXP__ +# define __LDBL_MAX_EXP__ 16384 +#endif + +#ifndef __FLT32X_MAX_10_EXP__ +# define __FLT32X_MAX_10_EXP__ 308 +#endif + +#ifndef __WIN32 +# define __WIN32 1 +#endif + +#ifndef __SIZEOF_INT128__ +# define __SIZEOF_INT128__ 16 +#endif + +#ifndef __FLT16_MIN__ +# define __FLT16_MIN__ 6.10351562500000000000000000000000000e-5F16 +#endif + +#ifndef __FLT64X_IS_IEC_60559__ +# define __FLT64X_IS_IEC_60559__ 2 +#endif + +#ifndef __WCHAR_UNSIGNED__ +# define __WCHAR_UNSIGNED__ 1 +#endif + +#ifndef __LDBL_MAX_10_EXP__ +# define __LDBL_MAX_10_EXP__ 4932 +#endif + +#ifndef __ATOMIC_RELAXED +# define __ATOMIC_RELAXED 0 +#endif + +#ifndef __DBL_EPSILON__ +# define __DBL_EPSILON__ double(2.22044604925031308084726333618164062e-16L) +#endif + +#ifndef __thiscall +# define __thiscall __attribute__((__thiscall__)) +#endif + +#ifndef __FLT128_MIN__ +# define __FLT128_MIN__ 3.36210314311209350626267781732175260e-4932F128 +#endif + +#ifndef __UINT8_C +# define __UINT8_C(c) c +#endif + +#ifndef __FLT64_MAX_EXP__ +# define __FLT64_MAX_EXP__ 1024 +#endif + +#ifndef __INT_LEAST32_TYPE__ +# define __INT_LEAST32_TYPE__ int +#endif + +#ifndef __SIZEOF_WCHAR_T__ +# define __SIZEOF_WCHAR_T__ 2 +#endif + +#ifndef __GNUC_PATCHLEVEL__ +# define __GNUC_PATCHLEVEL__ 0 +#endif + +#ifndef __FLT128_NORM_MAX__ +# define __FLT128_NORM_MAX__ 1.18973149535723176508575932662800702e+4932F128 +#endif + +#ifndef __FLT64_NORM_MAX__ +# define __FLT64_NORM_MAX__ 1.79769313486231570814527423731704357e+308F64 +#endif + +#ifndef __FLT128_HAS_QUIET_NAN__ +# define __FLT128_HAS_QUIET_NAN__ 1 +#endif + +#ifndef __INTMAX_MAX__ +# define __INTMAX_MAX__ 0x7fffffffffffffffLL +#endif + +#ifndef __INT_FAST8_TYPE__ +# define __INT_FAST8_TYPE__ signed char +#endif + +#ifndef __fastcall +# define __fastcall __attribute__((__fastcall__)) +#endif + +#ifndef __cpp_namespace_attributes +# define __cpp_namespace_attributes 201411L +#endif + +#ifndef __FLT64X_MIN__ +# define __FLT64X_MIN__ 3.36210314311209350626267781732175260e-4932F64x +#endif + +#ifndef __STDCPP_THREADS__ +# define __STDCPP_THREADS__ 1 +#endif + +#ifndef __GNUC_STDC_INLINE__ +# define __GNUC_STDC_INLINE__ 1 +#endif + +#ifndef __FLT64_HAS_DENORM__ +# define __FLT64_HAS_DENORM__ 1 +#endif + +#ifndef __FLT32_EPSILON__ +# define __FLT32_EPSILON__ 1.19209289550781250000000000000000000e-7F32 +#endif + +#ifndef __FLT16_HAS_DENORM__ +# define __FLT16_HAS_DENORM__ 1 +#endif + +#ifndef __DBL_DECIMAL_DIG__ +# define __DBL_DECIMAL_DIG__ 17 +#endif + +#ifndef __STDC_UTF_32__ +# define __STDC_UTF_32__ 1 +#endif + +#ifndef __INT_FAST8_WIDTH__ +# define __INT_FAST8_WIDTH__ 8 +#endif + +#ifndef __FXSR__ +# define __FXSR__ 1 +#endif + +#ifndef __FLT32X_MAX__ +# define __FLT32X_MAX__ 1.79769313486231570814527423731704357e+308F32x +#endif + +#ifndef __DBL_NORM_MAX__ +# define __DBL_NORM_MAX__ double(1.79769313486231570814527423731704357e+308L) +#endif + +#ifndef __BYTE_ORDER__ +# define __BYTE_ORDER__ __ORDER_LITTLE_ENDIAN__ +#endif + +#ifndef __MINGW64__ +# define __MINGW64__ 1 +#endif + +#ifndef __GCC_DESTRUCTIVE_SIZE +# define __GCC_DESTRUCTIVE_SIZE 64 +#endif + +#ifndef __INTMAX_WIDTH__ +# define __INTMAX_WIDTH__ 64 +#endif + +#ifndef __cpp_runtime_arrays +# define __cpp_runtime_arrays 198712L +#endif + +#ifndef __UINT64_TYPE__ +# define __UINT64_TYPE__ long long unsigned int +#endif + +#ifndef __UINT32_C +# define __UINT32_C(c) c ## U +#endif + +#ifndef __cpp_alias_templates +# define __cpp_alias_templates 200704L +#endif + +#ifndef WINNT +# define WINNT 1 +#endif + +#ifndef __FLT_DENORM_MIN__ +# define __FLT_DENORM_MIN__ 1.40129846432481707092372958328991613e-45F +#endif + +#ifndef __FLT128_IS_IEC_60559__ +# define __FLT128_IS_IEC_60559__ 2 +#endif + +#ifndef __INT8_MAX__ +# define __INT8_MAX__ 0x7f +#endif + +#ifndef __LONG_WIDTH__ +# define __LONG_WIDTH__ 32 +#endif + +#ifndef __PIC__ +# define __PIC__ 1 +#endif + +#ifndef __UINT_FAST32_TYPE__ +# define __UINT_FAST32_TYPE__ unsigned int +#endif + +#ifndef __FLT16_MANT_DIG__ +# define __FLT16_MANT_DIG__ 11 +#endif + +#ifndef __FLT32X_NORM_MAX__ +# define __FLT32X_NORM_MAX__ 1.79769313486231570814527423731704357e+308F32x +#endif + +#ifndef __CHAR32_TYPE__ +# define __CHAR32_TYPE__ unsigned int +#endif + +#ifndef __FLT_MAX__ +# define __FLT_MAX__ 3.40282346638528859811704183484516925e+38F +#endif + +#ifndef __cpp_constexpr +# define __cpp_constexpr 201603L +#endif + +#ifndef __SSE2__ +# define __SSE2__ 1 +#endif + +#ifndef __cpp_deduction_guides +# define __cpp_deduction_guides 201703L +#endif + +#ifndef __INT32_TYPE__ +# define __INT32_TYPE__ int +#endif + +#ifndef __SIZEOF_DOUBLE__ +# define __SIZEOF_DOUBLE__ 8 +#endif + +#ifndef __cpp_exceptions +# define __cpp_exceptions 199711L +#endif + +#ifndef __FLT_MIN_10_EXP__ +# define __FLT_MIN_10_EXP__ (-37) +#endif + +#ifndef __FLT64_MIN__ +# define __FLT64_MIN__ 2.22507385850720138309023271733240406e-308F64 +#endif + +#ifndef __INT_LEAST32_WIDTH__ +# define __INT_LEAST32_WIDTH__ 32 +#endif + +#ifndef __INTMAX_TYPE__ +# define __INTMAX_TYPE__ long long int +#endif + +#ifndef _INTEGRAL_MAX_BITS +# define _INTEGRAL_MAX_BITS 64 +#endif + +#ifndef __DEC128_MAX_EXP__ +# define __DEC128_MAX_EXP__ 6145 +#endif + +#ifndef __FLT32X_HAS_QUIET_NAN__ +# define __FLT32X_HAS_QUIET_NAN__ 1 +#endif + +#ifndef __ATOMIC_CONSUME +# define __ATOMIC_CONSUME 1 +#endif + +#ifndef __GNUC_MINOR__ +# define __GNUC_MINOR__ 2 +#endif + +#ifndef __GLIBCXX_TYPE_INT_N_0 +# define __GLIBCXX_TYPE_INT_N_0 __int128 +#endif + +#ifndef __INT_FAST16_WIDTH__ +# define __INT_FAST16_WIDTH__ 16 +#endif + +#ifndef __UINTMAX_MAX__ +# define __UINTMAX_MAX__ 0xffffffffffffffffULL +#endif + +#ifndef __FLT32X_DENORM_MIN__ +# define __FLT32X_DENORM_MIN__ 4.94065645841246544176568792868221372e-324F32x +#endif + +#ifndef __cpp_template_template_args +# define __cpp_template_template_args 201611L +#endif + +#ifndef __DBL_MAX_10_EXP__ +# define __DBL_MAX_10_EXP__ 308 +#endif + +#ifndef __LDBL_DENORM_MIN__ +# define __LDBL_DENORM_MIN__ 3.64519953188247460252840593361941982e-4951L +#endif + +#ifndef __INT16_C +# define __INT16_C(c) c +#endif + +#ifndef __STDC__ +# define __STDC__ 1 +#endif + +#ifndef __FLT32X_DIG__ +# define __FLT32X_DIG__ 15 +#endif + +#ifndef __PTRDIFF_TYPE__ +# define __PTRDIFF_TYPE__ long long int +#endif + +#ifndef __ATOMIC_SEQ_CST +# define __ATOMIC_SEQ_CST 5 +#endif + +#ifndef __FLT32X_MIN_10_EXP__ +# define __FLT32X_MIN_10_EXP__ (-307) +#endif + +#ifndef __UINTPTR_TYPE__ +# define __UINTPTR_TYPE__ long long unsigned int +#endif + +#ifndef __DEC64_SUBNORMAL_MIN__ +# define __DEC64_SUBNORMAL_MIN__ 0.000000000000001E-383DD +#endif + +#ifndef __DEC128_MANT_DIG__ +# define __DEC128_MANT_DIG__ 34 +#endif + +#ifndef __LDBL_MIN_10_EXP__ +# define __LDBL_MIN_10_EXP__ (-4931) +#endif + +#ifndef __cpp_generic_lambdas +# define __cpp_generic_lambdas 201304L +#endif + +#ifndef __SSE_MATH__ +# define __SSE_MATH__ 1 +#endif + +#ifndef __SIZEOF_LONG_LONG__ +# define __SIZEOF_LONG_LONG__ 8 +#endif + +#ifndef __cpp_user_defined_literals +# define __cpp_user_defined_literals 200809L +#endif + +#ifndef __FLT128_DECIMAL_DIG__ +# define __FLT128_DECIMAL_DIG__ 36 +#endif + +#ifndef __GCC_ATOMIC_LLONG_LOCK_FREE +# define __GCC_ATOMIC_LLONG_LOCK_FREE 2 +#endif + +#ifndef __FLT32_HAS_QUIET_NAN__ +# define __FLT32_HAS_QUIET_NAN__ 1 +#endif + +#ifndef __FLT_DECIMAL_DIG__ +# define __FLT_DECIMAL_DIG__ 9 +#endif + +#ifndef __UINT_FAST16_MAX__ +# define __UINT_FAST16_MAX__ 0xffff +#endif + +#ifndef __LDBL_NORM_MAX__ +# define __LDBL_NORM_MAX__ 1.18973149535723176502126385303097021e+4932L +#endif + +#ifndef __GCC_ATOMIC_SHORT_LOCK_FREE +# define __GCC_ATOMIC_SHORT_LOCK_FREE 2 +#endif + +#ifndef __UINT_FAST8_TYPE__ +# define __UINT_FAST8_TYPE__ unsigned char +#endif + +#ifndef __WIN64__ +# define __WIN64__ 1 +#endif + +#ifndef __cpp_init_captures +# define __cpp_init_captures 201304L +#endif + +#ifndef __ATOMIC_ACQ_REL +# define __ATOMIC_ACQ_REL 4 +#endif + +#ifndef __ATOMIC_RELEASE +# define __ATOMIC_RELEASE 3 +#endif + +#ifndef __declspec +# define __declspec(x) __attribute__((x)) +#endif + + +#undef _GLIBCXX_USE_FLOAT128 diff --git a/.Rproj.user/CF1601EC/cpp-definition-cache b/.Rproj.user/CF1601EC/cpp-definition-cache new file mode 100644 index 00000000..c2049d0e --- /dev/null +++ b/.Rproj.user/CF1601EC/cpp-definition-cache @@ -0,0 +1,23845 @@ +[ + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/copula.cpp", + "file_last_write": 1686589977.0, + "definitions": [ + { + "usr": "c:@F@copula#$@N@Rcpp@S@Nullable>#I#S0_#S0_#$@N@Rcpp@S@Nullable>#i#S1_#$@N@Rcpp@S@Nullable>#d#", + "kind": 6, + "parent_name": "", + "name": "copula(Rcpp::Nullable, Rcpp::Nullable, Rcpp::Nullable, Rcpp::Nullable, Rcpp::Nullable, Rcpp::Nullable)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/copula.cpp", + "line": 53, + "column": 21, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/direct_sampling.cpp", + "file_last_write": 1686590000.0, + "definitions": [ + { + "usr": "c:@F@direct_sampling#I#I#", + "kind": 6, + "parent_name": "", + "name": "direct_sampling(Rcpp::List, int)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/direct_sampling.cpp", + "line": 46, + "column": 21, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/exact_vol.cpp", + "file_last_write": 1686590019.0, + "definitions": [ + { + "usr": "c:@F@exact_vol#I#", + "kind": 6, + "parent_name": "", + "name": "exact_vol(Rcpp::Reference)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/exact_vol.cpp", + "line": 55, + "column": 8, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/build/lp_solve/colamd.c", + "file_last_write": 1686589611.0, + "definitions": [], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/build/lp_solve/commonlib.c", + "file_last_write": 1686589611.0, + "definitions": [], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/build/lp_solve/ini.c", + "file_last_write": 1686589611.0, + "definitions": [], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/build/lp_solve/lp_BFP1.c", + "file_last_write": 1686589611.0, + "definitions": [], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/build/lp_solve/lp_BFP2.c", + "file_last_write": 1686589611.0, + "definitions": [], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/build/lp_solve/lp_Hash.c", + "file_last_write": 1686589611.0, + "definitions": [], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/build/lp_solve/lp_LUSOL.c", + "file_last_write": 1686589611.0, + "definitions": [], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/build/lp_solve/lp_MDO.c", + "file_last_write": 1686589611.0, + "definitions": [], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/build/lp_solve/lp_MPS.c", + "file_last_write": 1686589611.0, + "definitions": [], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/build/lp_solve/lp_SOS.c", + "file_last_write": 1686589611.0, + "definitions": [], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/build/lp_solve/lp_crash.c", + "file_last_write": 1686589611.0, + "definitions": [], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/build/lp_solve/lp_lib.c", + "file_last_write": 1686589611.0, + "definitions": [], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/build/lp_solve/lp_matrix.c", + "file_last_write": 1686589611.0, + "definitions": [], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/build/lp_solve/lp_mipbb.c", + "file_last_write": 1686589611.0, + "definitions": [], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/build/lp_solve/lp_params.c", + "file_last_write": 1686589611.0, + "definitions": [], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/build/lp_solve/lp_presolve.c", + "file_last_write": 1686589611.0, + "definitions": [], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/build/lp_solve/lp_price.c", + "file_last_write": 1686589611.0, + "definitions": [], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/build/lp_solve/lp_pricePSE.c", + "file_last_write": 1686589611.0, + "definitions": [], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/build/lp_solve/lp_report.c", + "file_last_write": 1686589611.0, + "definitions": [], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/build/lp_solve/lp_rlp.c", + "file_last_write": 1686589611.0, + "definitions": [], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/build/lp_solve/lp_scale.c", + "file_last_write": 1686589611.0, + "definitions": [], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/build/lp_solve/lp_simplex.c", + "file_last_write": 1686589611.0, + "definitions": [], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/build/lp_solve/lp_utils.c", + "file_last_write": 1686589611.0, + "definitions": [], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/build/lp_solve/lp_wlp.c", + "file_last_write": 1686589611.0, + "definitions": [], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/build/lp_solve/lusol.c", + "file_last_write": 1686589611.0, + "definitions": [], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/build/lp_solve/lusol1.c", + "file_last_write": 1686589611.0, + "definitions": [], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/build/lp_solve/lusol2.c", + "file_last_write": 1686589611.0, + "definitions": [], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/build/lp_solve/lusol6a.c", + "file_last_write": 1686589611.0, + "definitions": [], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/build/lp_solve/lusol6l0.c", + "file_last_write": 1686589611.0, + "definitions": [], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/build/lp_solve/lusol6u.c", + "file_last_write": 1686589611.0, + "definitions": [], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/build/lp_solve/lusol7a.c", + "file_last_write": 1686589611.0, + "definitions": [], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/build/lp_solve/lusol8a.c", + "file_last_write": 1686589611.0, + "definitions": [], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/build/lp_solve/mmio.c", + "file_last_write": 1686589611.0, + "definitions": [], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/build/lp_solve/myblas.c", + "file_last_write": 1686589611.0, + "definitions": [], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/build/lp_solve/yacc_read.c", + "file_last_write": 1686589611.0, + "definitions": [], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/colamd.h", + "file_last_write": 1686589611.0, + "definitions": [ + { + "usr": "c:colamd.h@2809@macro@COLAMD_KNOBS", + "kind": 9, + "parent_name": "", + "name": "COLAMD_KNOBS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/colamd.h", + "line": 73, + "column": 9, + "hidden": false + }, + { + "usr": "c:colamd.h@2911@macro@COLAMD_STATS", + "kind": 9, + "parent_name": "", + "name": "COLAMD_STATS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/colamd.h", + "line": 76, + "column": 9, + "hidden": false + }, + { + "usr": "c:colamd.h@3007@macro@COLAMD_DENSE_ROW", + "kind": 9, + "parent_name": "", + "name": "COLAMD_DENSE_ROW", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/colamd.h", + "line": 79, + "column": 9, + "hidden": false + }, + { + "usr": "c:colamd.h@3109@macro@COLAMD_DENSE_COL", + "kind": 9, + "parent_name": "", + "name": "COLAMD_DENSE_COL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/colamd.h", + "line": 82, + "column": 9, + "hidden": false + }, + { + "usr": "c:colamd.h@3203@macro@COLAMD_DEFRAG_COUNT", + "kind": 9, + "parent_name": "", + "name": "COLAMD_DEFRAG_COUNT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/colamd.h", + "line": 85, + "column": 9, + "hidden": false + }, + { + "usr": "c:colamd.h@3312@macro@COLAMD_STATUS", + "kind": 9, + "parent_name": "", + "name": "COLAMD_STATUS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/colamd.h", + "line": 88, + "column": 9, + "hidden": false + }, + { + "usr": "c:colamd.h@3399@macro@COLAMD_INFO1", + "kind": 9, + "parent_name": "", + "name": "COLAMD_INFO1", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/colamd.h", + "line": 91, + "column": 9, + "hidden": false + }, + { + "usr": "c:colamd.h@3423@macro@COLAMD_INFO2", + "kind": 9, + "parent_name": "", + "name": "COLAMD_INFO2", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/colamd.h", + "line": 92, + "column": 9, + "hidden": false + }, + { + "usr": "c:colamd.h@3447@macro@COLAMD_INFO3", + "kind": 9, + "parent_name": "", + "name": "COLAMD_INFO3", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/colamd.h", + "line": 93, + "column": 9, + "hidden": false + }, + { + "usr": "c:colamd.h@3515@macro@COLAMD_OK", + "kind": 9, + "parent_name": "", + "name": "COLAMD_OK", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/colamd.h", + "line": 96, + "column": 9, + "hidden": false + }, + { + "usr": "c:colamd.h@3541@macro@COLAMD_OK_BUT_JUMBLED", + "kind": 9, + "parent_name": "", + "name": "COLAMD_OK_BUT_JUMBLED", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/colamd.h", + "line": 97, + "column": 9, + "hidden": false + }, + { + "usr": "c:colamd.h@3578@macro@COLAMD_ERROR_A_not_present", + "kind": 9, + "parent_name": "", + "name": "COLAMD_ERROR_A_not_present", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/colamd.h", + "line": 98, + "column": 9, + "hidden": false + }, + { + "usr": "c:colamd.h@3620@macro@COLAMD_ERROR_p_not_present", + "kind": 9, + "parent_name": "", + "name": "COLAMD_ERROR_p_not_present", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/colamd.h", + "line": 99, + "column": 9, + "hidden": false + }, + { + "usr": "c:colamd.h@3662@macro@COLAMD_ERROR_nrow_negative", + "kind": 9, + "parent_name": "", + "name": "COLAMD_ERROR_nrow_negative", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/colamd.h", + "line": 100, + "column": 9, + "hidden": false + }, + { + "usr": "c:colamd.h@3704@macro@COLAMD_ERROR_ncol_negative", + "kind": 9, + "parent_name": "", + "name": "COLAMD_ERROR_ncol_negative", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/colamd.h", + "line": 101, + "column": 9, + "hidden": false + }, + { + "usr": "c:colamd.h@3746@macro@COLAMD_ERROR_nnz_negative", + "kind": 9, + "parent_name": "", + "name": "COLAMD_ERROR_nnz_negative", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/colamd.h", + "line": 102, + "column": 9, + "hidden": false + }, + { + "usr": "c:colamd.h@3787@macro@COLAMD_ERROR_p0_nonzero", + "kind": 9, + "parent_name": "", + "name": "COLAMD_ERROR_p0_nonzero", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/colamd.h", + "line": 103, + "column": 9, + "hidden": false + }, + { + "usr": "c:colamd.h@3827@macro@COLAMD_ERROR_A_too_small", + "kind": 9, + "parent_name": "", + "name": "COLAMD_ERROR_A_too_small", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/colamd.h", + "line": 104, + "column": 9, + "hidden": false + }, + { + "usr": "c:colamd.h@3867@macro@COLAMD_ERROR_col_length_negative", + "kind": 9, + "parent_name": "", + "name": "COLAMD_ERROR_col_length_negative", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/colamd.h", + "line": 105, + "column": 9, + "hidden": false + }, + { + "usr": "c:colamd.h@3914@macro@COLAMD_ERROR_row_index_out_of_bounds", + "kind": 9, + "parent_name": "", + "name": "COLAMD_ERROR_row_index_out_of_bounds", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/colamd.h", + "line": 106, + "column": 9, + "hidden": false + }, + { + "usr": "c:colamd.h@3965@macro@COLAMD_ERROR_out_of_memory", + "kind": 9, + "parent_name": "", + "name": "COLAMD_ERROR_out_of_memory", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/colamd.h", + "line": 107, + "column": 9, + "hidden": false + }, + { + "usr": "c:colamd.h@4008@macro@COLAMD_ERROR_internal_error", + "kind": 9, + "parent_name": "", + "name": "COLAMD_ERROR_internal_error", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/colamd.h", + "line": 108, + "column": 9, + "hidden": false + }, + { + "usr": "c:colamd.h@6956@macro@COLAMD_C", + "kind": 9, + "parent_name": "", + "name": "COLAMD_C", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/colamd.h", + "line": 186, + "column": 9, + "hidden": false + }, + { + "usr": "c:colamd.h@7034@macro@COLAMD_R", + "kind": 9, + "parent_name": "", + "name": "COLAMD_R", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/colamd.h", + "line": 187, + "column": 9, + "hidden": false + }, + { + "usr": "c:colamd.h@7114@macro@COLAMD_RECOMMENDED", + "kind": 9, + "parent_name": "", + "name": "COLAMD_RECOMMENDED", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/colamd.h", + "line": 189, + "column": 9, + "hidden": false + }, + { + "usr": "c:colamd.h@8090@macro@__EXTERN_C", + "kind": 9, + "parent_name": "", + "name": "__EXTERN_C", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/colamd.h", + "line": 213, + "column": 13, + "hidden": false + }, + { + "usr": "c:@S@Colamd_Col_struct", + "kind": 3, + "parent_name": "", + "name": "Colamd_Col_struct", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/colamd.h", + "line": 120, + "column": 16, + "hidden": false + }, + { + "usr": "c:colamd.h@T@Colamd_Col", + "kind": 8, + "parent_name": "", + "name": "Colamd_Col", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/colamd.h", + "line": 151, + "column": 3, + "hidden": false + }, + { + "usr": "c:@S@Colamd_Row_struct", + "kind": 3, + "parent_name": "", + "name": "Colamd_Row_struct", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/colamd.h", + "line": 153, + "column": 16, + "hidden": false + }, + { + "usr": "c:colamd.h@T@Colamd_Row", + "kind": 8, + "parent_name": "", + "name": "Colamd_Row", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/colamd.h", + "line": 168, + "column": 3, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/commonlib.h", + "file_last_write": 1686589611.0, + "definitions": [ + { + "usr": "c:commonlib.h@427@macro@HEADER_commonlib", + "kind": 9, + "parent_name": "", + "name": "HEADER_commonlib", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/commonlib.h", + "line": 12, + "column": 9, + "hidden": false + }, + { + "usr": "c:commonlib.h@647@macro@BIGNUMBER", + "kind": 9, + "parent_name": "", + "name": "BIGNUMBER", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/commonlib.h", + "line": 23, + "column": 9, + "hidden": false + }, + { + "usr": "c:commonlib.h@679@macro@TINYNUMBER", + "kind": 9, + "parent_name": "", + "name": "TINYNUMBER", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/commonlib.h", + "line": 24, + "column": 9, + "hidden": false + }, + { + "usr": "c:commonlib.h@711@macro@MACHINEPREC", + "kind": 9, + "parent_name": "", + "name": "MACHINEPREC", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/commonlib.h", + "line": 25, + "column": 9, + "hidden": false + }, + { + "usr": "c:commonlib.h@743@macro@MATHPREC", + "kind": 9, + "parent_name": "", + "name": "MATHPREC", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/commonlib.h", + "line": 26, + "column": 9, + "hidden": false + }, + { + "usr": "c:commonlib.h@775@macro@ERRLIMIT", + "kind": 9, + "parent_name": "", + "name": "ERRLIMIT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/commonlib.h", + "line": 27, + "column": 9, + "hidden": false + }, + { + "usr": "c:commonlib.h@833@macro@LINEARSEARCH", + "kind": 9, + "parent_name": "", + "name": "LINEARSEARCH", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/commonlib.h", + "line": 30, + "column": 11, + "hidden": false + }, + { + "usr": "c:commonlib.h@1189@macro@my_LoadLibrary", + "kind": 9, + "parent_name": "", + "name": "my_LoadLibrary", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/commonlib.h", + "line": 41, + "column": 11, + "hidden": false + }, + { + "usr": "c:commonlib.h@1252@macro@my_GetProcAddress", + "kind": 9, + "parent_name": "", + "name": "my_GetProcAddress", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/commonlib.h", + "line": 42, + "column": 11, + "hidden": false + }, + { + "usr": "c:commonlib.h@1326@macro@my_FreeLibrary", + "kind": 9, + "parent_name": "", + "name": "my_FreeLibrary", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/commonlib.h", + "line": 43, + "column": 11, + "hidden": false + }, + { + "usr": "c:commonlib.h@2088@macro@LLONG", + "kind": 9, + "parent_name": "", + "name": "LLONG", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/commonlib.h", + "line": 60, + "column": 13, + "hidden": false + }, + { + "usr": "c:commonlib.h@2240@macro@MYBOOL", + "kind": 9, + "parent_name": "", + "name": "MYBOOL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/commonlib.h", + "line": 70, + "column": 13, + "hidden": false + }, + { + "usr": "c:commonlib.h@2309@macro@LPSREAL", + "kind": 9, + "parent_name": "", + "name": "LPSREAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/commonlib.h", + "line": 75, + "column": 11, + "hidden": false + }, + { + "usr": "c:commonlib.h@2366@macro@BLAS_prec", + "kind": 9, + "parent_name": "", + "name": "BLAS_prec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/commonlib.h", + "line": 78, + "column": 11, + "hidden": false + }, + { + "usr": "c:commonlib.h@2496@macro@REALXP", + "kind": 9, + "parent_name": "", + "name": "REALXP", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/commonlib.h", + "line": 83, + "column": 13, + "hidden": false + }, + { + "usr": "c:commonlib.h@2716@macro@my_boolstr", + "kind": 9, + "parent_name": "", + "name": "my_boolstr", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/commonlib.h", + "line": 90, + "column": 11, + "hidden": false + }, + { + "usr": "c:commonlib.h@2937@macro@DEF_STRBUFSIZE", + "kind": 9, + "parent_name": "", + "name": "DEF_STRBUFSIZE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/commonlib.h", + "line": 103, + "column": 11, + "hidden": false + }, + { + "usr": "c:commonlib.h@3541@macro@DOFASTMATH", + "kind": 9, + "parent_name": "", + "name": "DOFASTMATH", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/commonlib.h", + "line": 128, + "column": 11, + "hidden": false + }, + { + "usr": "c:commonlib.h@3589@macro@CALLOC", + "kind": 9, + "parent_name": "", + "name": "CALLOC", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/commonlib.h", + "line": 133, + "column": 9, + "hidden": false + }, + { + "usr": "c:commonlib.h@3843@macro@MALLOC", + "kind": 9, + "parent_name": "", + "name": "MALLOC", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/commonlib.h", + "line": 141, + "column": 9, + "hidden": false + }, + { + "usr": "c:commonlib.h@4110@macro@REALLOC", + "kind": 9, + "parent_name": "", + "name": "REALLOC", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/commonlib.h", + "line": 149, + "column": 9, + "hidden": false + }, + { + "usr": "c:commonlib.h@4382@macro@FREE", + "kind": 9, + "parent_name": "", + "name": "FREE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/commonlib.h", + "line": 157, + "column": 9, + "hidden": false + }, + { + "usr": "c:commonlib.h@4501@macro@MEMCOPY", + "kind": 9, + "parent_name": "", + "name": "MEMCOPY", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/commonlib.h", + "line": 165, + "column": 9, + "hidden": false + }, + { + "usr": "c:commonlib.h@4630@macro@MEMMOVE", + "kind": 9, + "parent_name": "", + "name": "MEMMOVE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/commonlib.h", + "line": 170, + "column": 9, + "hidden": false + }, + { + "usr": "c:commonlib.h@4765@macro@MEMALLOCCOPY", + "kind": 9, + "parent_name": "", + "name": "MEMALLOCCOPY", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/commonlib.h", + "line": 175, + "column": 9, + "hidden": false + }, + { + "usr": "c:commonlib.h@4909@macro@STRALLOCCOPY", + "kind": 9, + "parent_name": "", + "name": "STRALLOCCOPY", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/commonlib.h", + "line": 181, + "column": 9, + "hidden": false + }, + { + "usr": "c:commonlib.h@5196@macro@MEMCLEAR", + "kind": 9, + "parent_name": "", + "name": "MEMCLEAR", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/commonlib.h", + "line": 192, + "column": 11, + "hidden": false + }, + { + "usr": "c:commonlib.h@5310@macro@MIN", + "kind": 9, + "parent_name": "", + "name": "MIN", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/commonlib.h", + "line": 198, + "column": 9, + "hidden": false + }, + { + "usr": "c:commonlib.h@5361@macro@MAX", + "kind": 9, + "parent_name": "", + "name": "MAX", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/commonlib.h", + "line": 199, + "column": 9, + "hidden": false + }, + { + "usr": "c:commonlib.h@5412@macro@SETMIN", + "kind": 9, + "parent_name": "", + "name": "SETMIN", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/commonlib.h", + "line": 200, + "column": 9, + "hidden": false + }, + { + "usr": "c:commonlib.h@5459@macro@SETMAX", + "kind": 9, + "parent_name": "", + "name": "SETMAX", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/commonlib.h", + "line": 201, + "column": 9, + "hidden": false + }, + { + "usr": "c:commonlib.h@5506@macro@LIMIT", + "kind": 9, + "parent_name": "", + "name": "LIMIT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/commonlib.h", + "line": 202, + "column": 9, + "hidden": false + }, + { + "usr": "c:commonlib.h@5573@macro@BETWEEN", + "kind": 9, + "parent_name": "", + "name": "BETWEEN", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/commonlib.h", + "line": 203, + "column": 9, + "hidden": false + }, + { + "usr": "c:commonlib.h@5638@macro@IF", + "kind": 9, + "parent_name": "", + "name": "IF", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/commonlib.h", + "line": 204, + "column": 9, + "hidden": false + }, + { + "usr": "c:commonlib.h@5683@macro@SIGN", + "kind": 9, + "parent_name": "", + "name": "SIGN", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/commonlib.h", + "line": 205, + "column": 9, + "hidden": false + }, + { + "usr": "c:commonlib.h@5731@macro@DELTA_SIZE", + "kind": 9, + "parent_name": "", + "name": "DELTA_SIZE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/commonlib.h", + "line": 207, + "column": 9, + "hidden": false + }, + { + "usr": "c:commonlib.h@5923@macro@CMP_CALLMODEL", + "kind": 9, + "parent_name": "", + "name": "CMP_CALLMODEL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/commonlib.h", + "line": 211, + "column": 11, + "hidden": false + }, + { + "usr": "c:commonlib.h@6094@macro@CMP_COMPARE", + "kind": 9, + "parent_name": "", + "name": "CMP_COMPARE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/commonlib.h", + "line": 218, + "column": 9, + "hidden": false + }, + { + "usr": "c:commonlib.h@6196@macro@CMP_ATTRIBUTES", + "kind": 9, + "parent_name": "", + "name": "CMP_ATTRIBUTES", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/commonlib.h", + "line": 219, + "column": 9, + "hidden": false + }, + { + "usr": "c:commonlib.h@6276@macro@CMP_TAGS", + "kind": 9, + "parent_name": "", + "name": "CMP_TAGS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/commonlib.h", + "line": 220, + "column": 9, + "hidden": false + }, + { + "usr": "c:commonlib.h@6397@macro@UNIONTYPE", + "kind": 9, + "parent_name": "", + "name": "UNIONTYPE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/commonlib.h", + "line": 224, + "column": 13, + "hidden": false + }, + { + "usr": "c:commonlib.h@T@findCompare_func", + "kind": 8, + "parent_name": "", + "name": "findCompare_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/commonlib.h", + "line": 217, + "column": 28, + "hidden": false + }, + { + "usr": "c:@S@_QSORTrec1", + "kind": 3, + "parent_name": "", + "name": "_QSORTrec1", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/commonlib.h", + "line": 231, + "column": 16, + "hidden": false + }, + { + "usr": "c:commonlib.h@T@QSORTrec1", + "kind": 8, + "parent_name": "", + "name": "QSORTrec1", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/commonlib.h", + "line": 235, + "column": 3, + "hidden": false + }, + { + "usr": "c:@S@_QSORTrec2", + "kind": 3, + "parent_name": "", + "name": "_QSORTrec2", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/commonlib.h", + "line": 236, + "column": 16, + "hidden": false + }, + { + "usr": "c:commonlib.h@T@QSORTrec2", + "kind": 8, + "parent_name": "", + "name": "QSORTrec2", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/commonlib.h", + "line": 240, + "column": 3, + "hidden": false + }, + { + "usr": "c:@S@_QSORTrec3", + "kind": 3, + "parent_name": "", + "name": "_QSORTrec3", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/commonlib.h", + "line": 241, + "column": 16, + "hidden": false + }, + { + "usr": "c:commonlib.h@T@QSORTrec3", + "kind": 8, + "parent_name": "", + "name": "QSORTrec3", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/commonlib.h", + "line": 246, + "column": 3, + "hidden": false + }, + { + "usr": "c:@S@_QSORTrec4", + "kind": 3, + "parent_name": "", + "name": "_QSORTrec4", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/commonlib.h", + "line": 247, + "column": 16, + "hidden": false + }, + { + "usr": "c:commonlib.h@T@QSORTrec4", + "kind": 8, + "parent_name": "", + "name": "QSORTrec4", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/commonlib.h", + "line": 252, + "column": 3, + "hidden": false + }, + { + "usr": "c:@S@_QSORTrec5", + "kind": 3, + "parent_name": "", + "name": "_QSORTrec5", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/commonlib.h", + "line": 253, + "column": 16, + "hidden": false + }, + { + "usr": "c:commonlib.h@T@QSORTrec5", + "kind": 8, + "parent_name": "", + "name": "QSORTrec5", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/commonlib.h", + "line": 257, + "column": 3, + "hidden": false + }, + { + "usr": "c:@S@_QSORTrec6", + "kind": 3, + "parent_name": "", + "name": "_QSORTrec6", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/commonlib.h", + "line": 258, + "column": 16, + "hidden": false + }, + { + "usr": "c:commonlib.h@T@QSORTrec6", + "kind": 8, + "parent_name": "", + "name": "QSORTrec6", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/commonlib.h", + "line": 262, + "column": 3, + "hidden": false + }, + { + "usr": "c:@S@_QSORTrec7", + "kind": 3, + "parent_name": "", + "name": "_QSORTrec7", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/commonlib.h", + "line": 263, + "column": 16, + "hidden": false + }, + { + "usr": "c:commonlib.h@T@QSORTrec7", + "kind": 8, + "parent_name": "", + "name": "QSORTrec7", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/commonlib.h", + "line": 269, + "column": 3, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/ini.h", + "file_last_write": 1686589611.0, + "definitions": [], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_BFP.h", + "file_last_write": 1686589611.0, + "definitions": [ + { + "usr": "c:lp_BFP.h@669@macro@BFP_STATUS_RANKLOSS", + "kind": 9, + "parent_name": "", + "name": "BFP_STATUS_RANKLOSS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_BFP.h", + "line": 13, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_BFP.h@705@macro@BFP_STATUS_SUCCESS", + "kind": 9, + "parent_name": "", + "name": "BFP_STATUS_SUCCESS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_BFP.h", + "line": 14, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_BFP.h@741@macro@BFP_STATUS_SINGULAR", + "kind": 9, + "parent_name": "", + "name": "BFP_STATUS_SINGULAR", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_BFP.h", + "line": 15, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_BFP.h@777@macro@BFP_STATUS_UNSTABLE", + "kind": 9, + "parent_name": "", + "name": "BFP_STATUS_UNSTABLE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_BFP.h", + "line": 16, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_BFP.h@813@macro@BFP_STATUS_NOPIVOT", + "kind": 9, + "parent_name": "", + "name": "BFP_STATUS_NOPIVOT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_BFP.h", + "line": 17, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_BFP.h@849@macro@BFP_STATUS_DIMERROR", + "kind": 9, + "parent_name": "", + "name": "BFP_STATUS_DIMERROR", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_BFP.h", + "line": 18, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_BFP.h@885@macro@BFP_STATUS_DUPLICATE", + "kind": 9, + "parent_name": "", + "name": "BFP_STATUS_DUPLICATE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_BFP.h", + "line": 19, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_BFP.h@921@macro@BFP_STATUS_NOMEMORY", + "kind": 9, + "parent_name": "", + "name": "BFP_STATUS_NOMEMORY", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_BFP.h", + "line": 20, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_BFP.h@957@macro@BFP_STATUS_ERROR", + "kind": 9, + "parent_name": "", + "name": "BFP_STATUS_ERROR", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_BFP.h", + "line": 21, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_BFP.h@1046@macro@BFP_STATUS_FATAL", + "kind": 9, + "parent_name": "", + "name": "BFP_STATUS_FATAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_BFP.h", + "line": 22, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_BFP.h@1084@macro@BFP_STAT_ERROR", + "kind": 9, + "parent_name": "", + "name": "BFP_STAT_ERROR", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_BFP.h", + "line": 24, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_BFP.h@1120@macro@BFP_STAT_REFACT_TOTAL", + "kind": 9, + "parent_name": "", + "name": "BFP_STAT_REFACT_TOTAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_BFP.h", + "line": 25, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_BFP.h@1156@macro@BFP_STAT_REFACT_TIMED", + "kind": 9, + "parent_name": "", + "name": "BFP_STAT_REFACT_TIMED", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_BFP.h", + "line": 26, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_BFP.h@1192@macro@BFP_STAT_REFACT_DENSE", + "kind": 9, + "parent_name": "", + "name": "BFP_STAT_REFACT_DENSE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_BFP.h", + "line": 27, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_BFP.h@1273@macro@BFP_CALLMODEL", + "kind": 9, + "parent_name": "", + "name": "BFP_CALLMODEL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_BFP.h", + "line": 31, + "column": 13, + "hidden": false + }, + { + "usr": "c:lp_BFP.h@1476@macro@__BFP_EXPORT_TYPE", + "kind": 9, + "parent_name": "", + "name": "__BFP_EXPORT_TYPE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_BFP.h", + "line": 40, + "column": 11, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_Hash.h", + "file_last_write": 1686589611.0, + "definitions": [ + { + "usr": "c:lp_Hash.h@423@macro@HEADER_lp_hash", + "kind": 9, + "parent_name": "", + "name": "HEADER_lp_hash", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_Hash.h", + "line": 11, + "column": 9, + "hidden": false + }, + { + "usr": "c:@S@_hashelem", + "kind": 3, + "parent_name": "", + "name": "_hashelem", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_Hash.h", + "line": 15, + "column": 16, + "hidden": false + }, + { + "usr": "c:lp_Hash.h@T@hashelem", + "kind": 8, + "parent_name": "", + "name": "hashelem", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_Hash.h", + "line": 21, + "column": 3, + "hidden": false + }, + { + "usr": "c:@T@hashtable", + "kind": 8, + "parent_name": "", + "name": "hashtable", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_Hash.h", + "line": 31, + "column": 3, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_LUSOL.h", + "file_last_write": 1686589611.0, + "definitions": [ + { + "usr": "c:lp_LUSOL.h@424@macro@HEADER_lp_LUSOL", + "kind": 9, + "parent_name": "", + "name": "HEADER_lp_LUSOL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_LUSOL.h", + "line": 11, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_LUSOL.h@581@macro@LUSOL_UseBLAS", + "kind": 9, + "parent_name": "", + "name": "LUSOL_UseBLAS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_LUSOL.h", + "line": 19, + "column": 10, + "hidden": false + }, + { + "usr": "c:lp_LUSOL.h@643@macro@MATINDEXBASE", + "kind": 9, + "parent_name": "", + "name": "MATINDEXBASE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_LUSOL.h", + "line": 22, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_LUSOL.h@729@macro@LU_START_SIZE", + "kind": 9, + "parent_name": "", + "name": "LU_START_SIZE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_LUSOL.h", + "line": 23, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_LUSOL.h@814@macro@DEF_MAXPIVOT", + "kind": 9, + "parent_name": "", + "name": "DEF_MAXPIVOT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_LUSOL.h", + "line": 24, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_LUSOL.h@908@macro@MAX_DELTAFILLIN", + "kind": 9, + "parent_name": "", + "name": "MAX_DELTAFILLIN", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_LUSOL.h", + "line": 25, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_LUSOL.h@1007@macro@TIGHTENAFTER", + "kind": 9, + "parent_name": "", + "name": "TIGHTENAFTER", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_LUSOL.h", + "line": 26, + "column": 9, + "hidden": false + }, + { + "usr": "c:@S@_INVrec", + "kind": 3, + "parent_name": "", + "name": "_INVrec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_LUSOL.h", + "line": 28, + "column": 22, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_MDO.h", + "file_last_write": 1686589611.0, + "definitions": [ + { + "usr": "c:lp_MDO.h@419@macro@HEADER_MDO", + "kind": 9, + "parent_name": "", + "name": "HEADER_MDO", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_MDO.h", + "line": 11, + "column": 9, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_MPS.h", + "file_last_write": 1686589611.0, + "definitions": [ + { + "usr": "c:lp_MPS.h@422@macro@HEADER_lp_MPS", + "kind": 9, + "parent_name": "", + "name": "HEADER_lp_MPS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_MPS.h", + "line": 11, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_MPS.h@512@macro@ROWNAMEMASK", + "kind": 9, + "parent_name": "", + "name": "ROWNAMEMASK", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_MPS.h", + "line": 16, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_MPS.h@548@macro@ROWNAMEMASK2", + "kind": 9, + "parent_name": "", + "name": "ROWNAMEMASK2", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_MPS.h", + "line": 17, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_MPS.h@584@macro@COLNAMEMASK", + "kind": 9, + "parent_name": "", + "name": "COLNAMEMASK", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_MPS.h", + "line": 18, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_MPS.h@620@macro@COLNAMEMASK2", + "kind": 9, + "parent_name": "", + "name": "COLNAMEMASK2", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_MPS.h", + "line": 19, + "column": 9, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_SOS.h", + "file_last_write": 1686589611.0, + "definitions": [ + { + "usr": "c:lp_SOS.h@422@macro@HEADER_lp_SOS", + "kind": 9, + "parent_name": "", + "name": "HEADER_lp_SOS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_SOS.h", + "line": 11, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_SOS.h@847@macro@SOS1", + "kind": 9, + "parent_name": "", + "name": "SOS1", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_SOS.h", + "line": 23, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_SOS.h@883@macro@SOS2", + "kind": 9, + "parent_name": "", + "name": "SOS2", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_SOS.h", + "line": 24, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_SOS.h@919@macro@SOS3", + "kind": 9, + "parent_name": "", + "name": "SOS3", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_SOS.h", + "line": 25, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_SOS.h@955@macro@SOSn", + "kind": 9, + "parent_name": "", + "name": "SOSn", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_SOS.h", + "line": 26, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_SOS.h@999@macro@SOS_START_SIZE", + "kind": 9, + "parent_name": "", + "name": "SOS_START_SIZE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_SOS.h", + "line": 27, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_SOS.h@1256@macro@SOS3_INCOMPLETE", + "kind": 9, + "parent_name": "", + "name": "SOS3_INCOMPLETE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_SOS.h", + "line": 31, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_SOS.h@1292@macro@SOS_INCOMPLETE", + "kind": 9, + "parent_name": "", + "name": "SOS_INCOMPLETE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_SOS.h", + "line": 32, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_SOS.h@1328@macro@SOS_COMPLETE", + "kind": 9, + "parent_name": "", + "name": "SOS_COMPLETE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_SOS.h", + "line": 33, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_SOS.h@1364@macro@SOS_INFEASIBLE", + "kind": 9, + "parent_name": "", + "name": "SOS_INFEASIBLE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_SOS.h", + "line": 34, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_SOS.h@1400@macro@SOS_INTERNALERROR", + "kind": 9, + "parent_name": "", + "name": "SOS_INTERNALERROR", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_SOS.h", + "line": 35, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_SOS.h@T@SOSgroup", + "kind": 8, + "parent_name": "", + "name": "SOSgroup", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_SOS.h", + "line": 38, + "column": 26, + "hidden": false + }, + { + "usr": "c:@S@_SOSrec", + "kind": 3, + "parent_name": "", + "name": "_SOSrec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_SOS.h", + "line": 40, + "column": 16, + "hidden": false + }, + { + "usr": "c:lp_SOS.h@T@SOSrec", + "kind": 8, + "parent_name": "", + "name": "SOSrec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_SOS.h", + "line": 53, + "column": 3, + "hidden": false + }, + { + "usr": "c:@S@_SOSgroup", + "kind": 3, + "parent_name": "", + "name": "_SOSgroup", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_SOS.h", + "line": 55, + "column": 22, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_bit.h", + "file_last_write": 1686589611.0, + "definitions": [ + { + "usr": "c:lp_bit.h@445@macro@MYINLINE", + "kind": 9, + "parent_name": "", + "name": "MYINLINE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_bit.h", + "line": 13, + "column": 10, + "hidden": false + }, + { + "usr": "c:@F@set_biton#*c#I#", + "kind": 6, + "parent_name": "", + "name": "set_biton(unsigned char *, int)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_bit.h", + "line": 18, + "column": 15, + "hidden": false + }, + { + "usr": "c:@F@set_bitoff#*c#I#", + "kind": 6, + "parent_name": "", + "name": "set_bitoff(unsigned char *, int)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_bit.h", + "line": 23, + "column": 15, + "hidden": false + }, + { + "usr": "c:@F@is_biton#*c#I#", + "kind": 6, + "parent_name": "", + "name": "is_biton(unsigned char *, int)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_bit.h", + "line": 28, + "column": 17, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_crash.h", + "file_last_write": 1686589611.0, + "definitions": [ + { + "usr": "c:lp_crash.h@424@macro@HEADER_lp_crash", + "kind": 9, + "parent_name": "", + "name": "HEADER_lp_crash", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_crash.h", + "line": 11, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_crash.h@478@macro@CRASH_SIMPLESCALE", + "kind": 9, + "parent_name": "", + "name": "CRASH_SIMPLESCALE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_crash.h", + "line": 16, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_crash.h@580@macro@CRASH_THRESHOLD", + "kind": 9, + "parent_name": "", + "name": "CRASH_THRESHOLD", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_crash.h", + "line": 18, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_crash.h@612@macro@CRASH_SPACER", + "kind": 9, + "parent_name": "", + "name": "CRASH_SPACER", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_crash.h", + "line": 19, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_crash.h@644@macro@CRASH_WEIGHT", + "kind": 9, + "parent_name": "", + "name": "CRASH_WEIGHT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_crash.h", + "line": 20, + "column": 9, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "file_last_write": 1686589611.0, + "definitions": [ + { + "usr": "c:lp_lib.h@422@macro@HEADER_lp_lib", + "kind": 9, + "parent_name": "", + "name": "HEADER_lp_lib", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 11, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@3690@macro@SETMASK", + "kind": 9, + "parent_name": "", + "name": "SETMASK", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 74, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@3744@macro@CLEARMASK", + "kind": 9, + "parent_name": "", + "name": "CLEARMASK", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 75, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@3801@macro@TOGGLEMASK", + "kind": 9, + "parent_name": "", + "name": "TOGGLEMASK", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 76, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@3855@macro@ISMASKSET", + "kind": 9, + "parent_name": "", + "name": "ISMASKSET", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 77, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@4430@macro@DoMatrixRounding", + "kind": 9, + "parent_name": "", + "name": "DoMatrixRounding", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 87, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@4516@macro@DoBorderRounding", + "kind": 9, + "parent_name": "", + "name": "DoBorderRounding", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 88, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@4601@macro@Phase1EliminateRedundant", + "kind": 9, + "parent_name": "", + "name": "Phase1EliminateRedundant", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 89, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@4686@macro@FixViolatedOptimal", + "kind": 9, + "parent_name": "", + "name": "FixViolatedOptimal", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 90, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@4714@macro@ImproveSolutionPrecision", + "kind": 9, + "parent_name": "", + "name": "ImproveSolutionPrecision", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 91, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@5055@macro@ResetMinitOnReinvert", + "kind": 9, + "parent_name": "", + "name": "ResetMinitOnReinvert", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 95, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@5340@macro@UseMilpExpandedRCF", + "kind": 9, + "parent_name": "", + "name": "UseMilpExpandedRCF", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 99, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@5580@macro@LegacySlackDefinition", + "kind": 9, + "parent_name": "", + "name": "LegacySlackDefinition", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 102, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@5997@macro@FULLYBOUNDEDSIMPLEX", + "kind": 9, + "parent_name": "", + "name": "FULLYBOUNDEDSIMPLEX", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 109, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@6244@macro@libBLAS", + "kind": 9, + "parent_name": "", + "name": "libBLAS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 114, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@6325@macro@libnameBLAS", + "kind": 9, + "parent_name": "", + "name": "libnameBLAS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 115, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@6558@macro@LoadInverseLib", + "kind": 9, + "parent_name": "", + "name": "LoadInverseLib", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 121, + "column": 10, + "hidden": false + }, + { + "usr": "c:lp_lib.h@6732@macro@DEF_OBJINBASIS", + "kind": 9, + "parent_name": "", + "name": "DEF_OBJINBASIS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 125, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@6823@macro@INVERSE_NONE", + "kind": 9, + "parent_name": "", + "name": "INVERSE_NONE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 127, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@6859@macro@INVERSE_LEGACY", + "kind": 9, + "parent_name": "", + "name": "INVERSE_LEGACY", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 128, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@6895@macro@INVERSE_ETAPFI", + "kind": 9, + "parent_name": "", + "name": "INVERSE_ETAPFI", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 129, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@6931@macro@INVERSE_LUMOD", + "kind": 9, + "parent_name": "", + "name": "INVERSE_LUMOD", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 130, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@6967@macro@INVERSE_LUSOL", + "kind": 9, + "parent_name": "", + "name": "INVERSE_LUSOL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 131, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@7003@macro@INVERSE_GLPKLU", + "kind": 9, + "parent_name": "", + "name": "INVERSE_GLPKLU", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 132, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@7247@macro@INVERSE_ACTIVE", + "kind": 9, + "parent_name": "", + "name": "INVERSE_ACTIVE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 138, + "column": 13, + "hidden": false + }, + { + "usr": "c:lp_lib.h@7539@macro@LoadLanguageLib", + "kind": 9, + "parent_name": "", + "name": "LoadLanguageLib", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 146, + "column": 10, + "hidden": false + }, + { + "usr": "c:lp_lib.h@7627@macro@ExcludeNativeLanguage", + "kind": 9, + "parent_name": "", + "name": "ExcludeNativeLanguage", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 148, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@7710@macro@LANGUAGE_NONE", + "kind": 9, + "parent_name": "", + "name": "LANGUAGE_NONE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 150, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@7746@macro@LANGUAGE_LEGACYLP", + "kind": 9, + "parent_name": "", + "name": "LANGUAGE_LEGACYLP", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 151, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@7782@macro@LANGUAGE_CPLEXLP", + "kind": 9, + "parent_name": "", + "name": "LANGUAGE_CPLEXLP", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 152, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@7818@macro@LANGUAGE_MPSX", + "kind": 9, + "parent_name": "", + "name": "LANGUAGE_MPSX", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 153, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@7854@macro@LANGUAGE_LPFML", + "kind": 9, + "parent_name": "", + "name": "LANGUAGE_LPFML", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 154, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@7890@macro@LANGUAGE_MATHPROG", + "kind": 9, + "parent_name": "", + "name": "LANGUAGE_MATHPROG", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 155, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@7926@macro@LANGUAGE_AMPL", + "kind": 9, + "parent_name": "", + "name": "LANGUAGE_AMPL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 156, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@7962@macro@LANGUAGE_GAMS", + "kind": 9, + "parent_name": "", + "name": "LANGUAGE_GAMS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 157, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@7998@macro@LANGUAGE_ZIMPL", + "kind": 9, + "parent_name": "", + "name": "LANGUAGE_ZIMPL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 158, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@8034@macro@LANGUAGE_S", + "kind": 9, + "parent_name": "", + "name": "LANGUAGE_S", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 159, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@8070@macro@LANGUAGE_R", + "kind": 9, + "parent_name": "", + "name": "LANGUAGE_R", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 160, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@8106@macro@LANGUAGE_MATLAB", + "kind": 9, + "parent_name": "", + "name": "LANGUAGE_MATLAB", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 161, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@8142@macro@LANGUAGE_OMATRIX", + "kind": 9, + "parent_name": "", + "name": "LANGUAGE_OMATRIX", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 162, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@8178@macro@LANGUAGE_SCILAB", + "kind": 9, + "parent_name": "", + "name": "LANGUAGE_SCILAB", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 163, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@8214@macro@LANGUAGE_OCTAVE", + "kind": 9, + "parent_name": "", + "name": "LANGUAGE_OCTAVE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 164, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@8250@macro@LANGUAGE_EMPS", + "kind": 9, + "parent_name": "", + "name": "LANGUAGE_EMPS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 165, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@8405@macro@LANGUAGE_ACTIVE", + "kind": 9, + "parent_name": "", + "name": "LANGUAGE_ACTIVE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 169, + "column": 13, + "hidden": false + }, + { + "usr": "c:lp_lib.h@8756@macro@OriginalPARAM", + "kind": 9, + "parent_name": "", + "name": "OriginalPARAM", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 178, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@8791@macro@ProductionPARAM", + "kind": 9, + "parent_name": "", + "name": "ProductionPARAM", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 179, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@8826@macro@ChvatalPARAM", + "kind": 9, + "parent_name": "", + "name": "ChvatalPARAM", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 180, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@8861@macro@LoosePARAM", + "kind": 9, + "parent_name": "", + "name": "LoosePARAM", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 181, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@8905@macro@ActivePARAM", + "kind": 9, + "parent_name": "", + "name": "ActivePARAM", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 183, + "column": 11, + "hidden": false + }, + { + "usr": "c:lp_lib.h@9418@macro@MAJORVERSION", + "kind": 9, + "parent_name": "", + "name": "MAJORVERSION", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 200, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@9454@macro@MINORVERSION", + "kind": 9, + "parent_name": "", + "name": "MINORVERSION", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 201, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@9490@macro@RELEASE", + "kind": 9, + "parent_name": "", + "name": "RELEASE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 202, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@9526@macro@BUILD", + "kind": 9, + "parent_name": "", + "name": "BUILD", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 203, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@9562@macro@BFPVERSION", + "kind": 9, + "parent_name": "", + "name": "BFPVERSION", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 204, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@9643@macro@XLIVERSION", + "kind": 9, + "parent_name": "", + "name": "XLIVERSION", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 205, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@10401@macro@BFP_CALLMODEL", + "kind": 9, + "parent_name": "", + "name": "BFP_CALLMODEL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 231, + "column": 13, + "hidden": false + }, + { + "usr": "c:lp_lib.h@10543@macro@XLI_CALLMODEL", + "kind": 9, + "parent_name": "", + "name": "XLI_CALLMODEL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 237, + "column": 11, + "hidden": false + }, + { + "usr": "c:lp_lib.h@10590@macro@REGISTER", + "kind": 9, + "parent_name": "", + "name": "REGISTER", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 240, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@10829@macro@SIMPLEX_UNDEFINED", + "kind": 9, + "parent_name": "", + "name": "SIMPLEX_UNDEFINED", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 245, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@10865@macro@SIMPLEX_Phase1_PRIMAL", + "kind": 9, + "parent_name": "", + "name": "SIMPLEX_Phase1_PRIMAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 246, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@10901@macro@SIMPLEX_Phase1_DUAL", + "kind": 9, + "parent_name": "", + "name": "SIMPLEX_Phase1_DUAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 247, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@10937@macro@SIMPLEX_Phase2_PRIMAL", + "kind": 9, + "parent_name": "", + "name": "SIMPLEX_Phase2_PRIMAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 248, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@10973@macro@SIMPLEX_Phase2_DUAL", + "kind": 9, + "parent_name": "", + "name": "SIMPLEX_Phase2_DUAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 249, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@11009@macro@SIMPLEX_DYNAMIC", + "kind": 9, + "parent_name": "", + "name": "SIMPLEX_DYNAMIC", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 250, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@11045@macro@SIMPLEX_AUTODUALIZE", + "kind": 9, + "parent_name": "", + "name": "SIMPLEX_AUTODUALIZE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 251, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@11083@macro@SIMPLEX_PRIMAL_PRIMAL", + "kind": 9, + "parent_name": "", + "name": "SIMPLEX_PRIMAL_PRIMAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 253, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@11164@macro@SIMPLEX_DUAL_PRIMAL", + "kind": 9, + "parent_name": "", + "name": "SIMPLEX_DUAL_PRIMAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 254, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@11245@macro@SIMPLEX_PRIMAL_DUAL", + "kind": 9, + "parent_name": "", + "name": "SIMPLEX_PRIMAL_DUAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 255, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@11324@macro@SIMPLEX_DUAL_DUAL", + "kind": 9, + "parent_name": "", + "name": "SIMPLEX_DUAL_DUAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 256, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@11403@macro@SIMPLEX_DEFAULT", + "kind": 9, + "parent_name": "", + "name": "SIMPLEX_DEFAULT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 257, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@11493@macro@ISREAL", + "kind": 9, + "parent_name": "", + "name": "ISREAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 260, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@11529@macro@ISINTEGER", + "kind": 9, + "parent_name": "", + "name": "ISINTEGER", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 261, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@11565@macro@ISSEMI", + "kind": 9, + "parent_name": "", + "name": "ISSEMI", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 262, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@11601@macro@ISSOS", + "kind": 9, + "parent_name": "", + "name": "ISSOS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 263, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@11637@macro@ISSOSTEMPINT", + "kind": 9, + "parent_name": "", + "name": "ISSOSTEMPINT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 264, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@11673@macro@ISGUB", + "kind": 9, + "parent_name": "", + "name": "ISGUB", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 265, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@11735@macro@PRESOLVE_NONE", + "kind": 9, + "parent_name": "", + "name": "PRESOLVE_NONE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 268, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@11771@macro@PRESOLVE_ROWS", + "kind": 9, + "parent_name": "", + "name": "PRESOLVE_ROWS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 269, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@11807@macro@PRESOLVE_COLS", + "kind": 9, + "parent_name": "", + "name": "PRESOLVE_COLS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 270, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@11843@macro@PRESOLVE_LINDEP", + "kind": 9, + "parent_name": "", + "name": "PRESOLVE_LINDEP", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 271, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@11879@macro@PRESOLVE_AGGREGATE", + "kind": 9, + "parent_name": "", + "name": "PRESOLVE_AGGREGATE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 272, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@11938@macro@PRESOLVE_SPARSER", + "kind": 9, + "parent_name": "", + "name": "PRESOLVE_SPARSER", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 273, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@11997@macro@PRESOLVE_SOS", + "kind": 9, + "parent_name": "", + "name": "PRESOLVE_SOS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 274, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@12033@macro@PRESOLVE_REDUCEMIP", + "kind": 9, + "parent_name": "", + "name": "PRESOLVE_REDUCEMIP", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 275, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@12069@macro@PRESOLVE_KNAPSACK", + "kind": 9, + "parent_name": "", + "name": "PRESOLVE_KNAPSACK", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 276, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@12149@macro@PRESOLVE_ELIMEQ2", + "kind": 9, + "parent_name": "", + "name": "PRESOLVE_ELIMEQ2", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 277, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@12185@macro@PRESOLVE_IMPLIEDFREE", + "kind": 9, + "parent_name": "", + "name": "PRESOLVE_IMPLIEDFREE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 278, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@12221@macro@PRESOLVE_REDUCEGCD", + "kind": 9, + "parent_name": "", + "name": "PRESOLVE_REDUCEGCD", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 279, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@12257@macro@PRESOLVE_PROBEFIX", + "kind": 9, + "parent_name": "", + "name": "PRESOLVE_PROBEFIX", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 280, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@12293@macro@PRESOLVE_PROBEREDUCE", + "kind": 9, + "parent_name": "", + "name": "PRESOLVE_PROBEREDUCE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 281, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@12329@macro@PRESOLVE_ROWDOMINATE", + "kind": 9, + "parent_name": "", + "name": "PRESOLVE_ROWDOMINATE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 282, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@12365@macro@PRESOLVE_COLDOMINATE", + "kind": 9, + "parent_name": "", + "name": "PRESOLVE_COLDOMINATE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 283, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@12450@macro@PRESOLVE_MERGEROWS", + "kind": 9, + "parent_name": "", + "name": "PRESOLVE_MERGEROWS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 284, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@12486@macro@PRESOLVE_IMPLIEDSLK", + "kind": 9, + "parent_name": "", + "name": "PRESOLVE_IMPLIEDSLK", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 285, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@12522@macro@PRESOLVE_COLFIXDUAL", + "kind": 9, + "parent_name": "", + "name": "PRESOLVE_COLFIXDUAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 286, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@12558@macro@PRESOLVE_BOUNDS", + "kind": 9, + "parent_name": "", + "name": "PRESOLVE_BOUNDS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 287, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@12594@macro@PRESOLVE_LASTMASKMODE", + "kind": 9, + "parent_name": "", + "name": "PRESOLVE_LASTMASKMODE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 288, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@12649@macro@PRESOLVE_DUALS", + "kind": 9, + "parent_name": "", + "name": "PRESOLVE_DUALS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 289, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@12685@macro@PRESOLVE_SENSDUALS", + "kind": 9, + "parent_name": "", + "name": "PRESOLVE_SENSDUALS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 290, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@12750@macro@CRASH_NONE", + "kind": 9, + "parent_name": "", + "name": "CRASH_NONE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 293, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@12786@macro@CRASH_NONBASICBOUNDS", + "kind": 9, + "parent_name": "", + "name": "CRASH_NONBASICBOUNDS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 294, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@12822@macro@CRASH_MOSTFEASIBLE", + "kind": 9, + "parent_name": "", + "name": "CRASH_MOSTFEASIBLE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 295, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@12858@macro@CRASH_LEASTDEGENERATE", + "kind": 9, + "parent_name": "", + "name": "CRASH_LEASTDEGENERATE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 296, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@12945@macro@INITSOL_SHIFTZERO", + "kind": 9, + "parent_name": "", + "name": "INITSOL_SHIFTZERO", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 299, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@12981@macro@INITSOL_USEZERO", + "kind": 9, + "parent_name": "", + "name": "INITSOL_USEZERO", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 300, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@13017@macro@INITSOL_ORIGINAL", + "kind": 9, + "parent_name": "", + "name": "INITSOL_ORIGINAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 301, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@13189@macro@ANTIDEGEN_NONE", + "kind": 9, + "parent_name": "", + "name": "ANTIDEGEN_NONE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 305, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@13225@macro@ANTIDEGEN_FIXEDVARS", + "kind": 9, + "parent_name": "", + "name": "ANTIDEGEN_FIXEDVARS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 306, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@13261@macro@ANTIDEGEN_COLUMNCHECK", + "kind": 9, + "parent_name": "", + "name": "ANTIDEGEN_COLUMNCHECK", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 307, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@13297@macro@ANTIDEGEN_STALLING", + "kind": 9, + "parent_name": "", + "name": "ANTIDEGEN_STALLING", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 308, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@13333@macro@ANTIDEGEN_NUMFAILURE", + "kind": 9, + "parent_name": "", + "name": "ANTIDEGEN_NUMFAILURE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 309, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@13369@macro@ANTIDEGEN_LOSTFEAS", + "kind": 9, + "parent_name": "", + "name": "ANTIDEGEN_LOSTFEAS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 310, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@13405@macro@ANTIDEGEN_INFEASIBLE", + "kind": 9, + "parent_name": "", + "name": "ANTIDEGEN_INFEASIBLE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 311, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@13441@macro@ANTIDEGEN_DYNAMIC", + "kind": 9, + "parent_name": "", + "name": "ANTIDEGEN_DYNAMIC", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 312, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@13477@macro@ANTIDEGEN_DURINGBB", + "kind": 9, + "parent_name": "", + "name": "ANTIDEGEN_DURINGBB", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 313, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@13513@macro@ANTIDEGEN_RHSPERTURB", + "kind": 9, + "parent_name": "", + "name": "ANTIDEGEN_RHSPERTURB", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 314, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@13549@macro@ANTIDEGEN_BOUNDFLIP", + "kind": 9, + "parent_name": "", + "name": "ANTIDEGEN_BOUNDFLIP", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 315, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@13585@macro@ANTIDEGEN_DEFAULT", + "kind": 9, + "parent_name": "", + "name": "ANTIDEGEN_DEFAULT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 316, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@13715@macro@NEUTRAL", + "kind": 9, + "parent_name": "", + "name": "NEUTRAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 319, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@13751@macro@CRITICAL", + "kind": 9, + "parent_name": "", + "name": "CRITICAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 320, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@13787@macro@SEVERE", + "kind": 9, + "parent_name": "", + "name": "SEVERE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 321, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@13823@macro@IMPORTANT", + "kind": 9, + "parent_name": "", + "name": "IMPORTANT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 322, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@13859@macro@NORMAL", + "kind": 9, + "parent_name": "", + "name": "NORMAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 323, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@13895@macro@DETAILED", + "kind": 9, + "parent_name": "", + "name": "DETAILED", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 324, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@13931@macro@FULL", + "kind": 9, + "parent_name": "", + "name": "FULL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 325, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@13992@macro@MSG_NONE", + "kind": 9, + "parent_name": "", + "name": "MSG_NONE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 328, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@14028@macro@MSG_PRESOLVE", + "kind": 9, + "parent_name": "", + "name": "MSG_PRESOLVE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 329, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@14064@macro@MSG_ITERATION", + "kind": 9, + "parent_name": "", + "name": "MSG_ITERATION", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 330, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@14100@macro@MSG_INVERT", + "kind": 9, + "parent_name": "", + "name": "MSG_INVERT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 331, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@14136@macro@MSG_LPFEASIBLE", + "kind": 9, + "parent_name": "", + "name": "MSG_LPFEASIBLE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 332, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@14172@macro@MSG_LPOPTIMAL", + "kind": 9, + "parent_name": "", + "name": "MSG_LPOPTIMAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 333, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@14208@macro@MSG_LPEQUAL", + "kind": 9, + "parent_name": "", + "name": "MSG_LPEQUAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 334, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@14244@macro@MSG_LPBETTER", + "kind": 9, + "parent_name": "", + "name": "MSG_LPBETTER", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 335, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@14280@macro@MSG_MILPFEASIBLE", + "kind": 9, + "parent_name": "", + "name": "MSG_MILPFEASIBLE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 336, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@14316@macro@MSG_MILPEQUAL", + "kind": 9, + "parent_name": "", + "name": "MSG_MILPEQUAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 337, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@14352@macro@MSG_MILPBETTER", + "kind": 9, + "parent_name": "", + "name": "MSG_MILPBETTER", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 338, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@14388@macro@MSG_MILPSTRATEGY", + "kind": 9, + "parent_name": "", + "name": "MSG_MILPSTRATEGY", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 339, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@14424@macro@MSG_MILPOPTIMAL", + "kind": 9, + "parent_name": "", + "name": "MSG_MILPOPTIMAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 340, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@14460@macro@MSG_PERFORMANCE", + "kind": 9, + "parent_name": "", + "name": "MSG_PERFORMANCE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 341, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@14496@macro@MSG_INITPSEUDOCOST", + "kind": 9, + "parent_name": "", + "name": "MSG_INITPSEUDOCOST", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 342, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@14556@macro@MPSFIXED", + "kind": 9, + "parent_name": "", + "name": "MPSFIXED", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 345, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@14592@macro@MPSFREE", + "kind": 9, + "parent_name": "", + "name": "MPSFREE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 346, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@14628@macro@MPSIBM", + "kind": 9, + "parent_name": "", + "name": "MPSIBM", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 347, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@14664@macro@MPSNEGOBJCONST", + "kind": 9, + "parent_name": "", + "name": "MPSNEGOBJCONST", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 348, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@14702@macro@MPS_FREE", + "kind": 9, + "parent_name": "", + "name": "MPS_FREE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 350, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@14749@macro@MPS_IBM", + "kind": 9, + "parent_name": "", + "name": "MPS_IBM", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 351, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@14795@macro@MPS_NEGOBJCONST", + "kind": 9, + "parent_name": "", + "name": "MPS_NEGOBJCONST", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 352, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@14881@macro@MPSUNDEF", + "kind": 9, + "parent_name": "", + "name": "MPSUNDEF", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 355, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@14917@macro@MPSNAME", + "kind": 9, + "parent_name": "", + "name": "MPSNAME", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 356, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@14953@macro@MPSOBJSENSE", + "kind": 9, + "parent_name": "", + "name": "MPSOBJSENSE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 357, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@14989@macro@MPSOBJNAME", + "kind": 9, + "parent_name": "", + "name": "MPSOBJNAME", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 358, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@15025@macro@MPSROWS", + "kind": 9, + "parent_name": "", + "name": "MPSROWS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 359, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@15061@macro@MPSCOLUMNS", + "kind": 9, + "parent_name": "", + "name": "MPSCOLUMNS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 360, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@15097@macro@MPSRHS", + "kind": 9, + "parent_name": "", + "name": "MPSRHS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 361, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@15133@macro@MPSBOUNDS", + "kind": 9, + "parent_name": "", + "name": "MPSBOUNDS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 362, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@15169@macro@MPSRANGES", + "kind": 9, + "parent_name": "", + "name": "MPSRANGES", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 363, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@15205@macro@MPSSOS", + "kind": 9, + "parent_name": "", + "name": "MPSSOS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 364, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@15243@macro@MPSVARMASK", + "kind": 9, + "parent_name": "", + "name": "MPSVARMASK", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 366, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@15279@macro@MPSVALUEMASK", + "kind": 9, + "parent_name": "", + "name": "MPSVALUEMASK", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 367, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@15358@macro@ROWTYPE_EMPTY", + "kind": 9, + "parent_name": "", + "name": "ROWTYPE_EMPTY", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 370, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@15394@macro@ROWTYPE_LE", + "kind": 9, + "parent_name": "", + "name": "ROWTYPE_LE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 371, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@15430@macro@ROWTYPE_GE", + "kind": 9, + "parent_name": "", + "name": "ROWTYPE_GE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 372, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@15466@macro@ROWTYPE_EQ", + "kind": 9, + "parent_name": "", + "name": "ROWTYPE_EQ", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 373, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@15502@macro@ROWTYPE_CONSTRAINT", + "kind": 9, + "parent_name": "", + "name": "ROWTYPE_CONSTRAINT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 374, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@15581@macro@ROWTYPE_OF", + "kind": 9, + "parent_name": "", + "name": "ROWTYPE_OF", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 375, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@15617@macro@ROWTYPE_INACTIVE", + "kind": 9, + "parent_name": "", + "name": "ROWTYPE_INACTIVE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 376, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@15653@macro@ROWTYPE_RELAX", + "kind": 9, + "parent_name": "", + "name": "ROWTYPE_RELAX", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 377, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@15689@macro@ROWTYPE_GUB", + "kind": 9, + "parent_name": "", + "name": "ROWTYPE_GUB", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 378, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@15725@macro@ROWTYPE_OFMAX", + "kind": 9, + "parent_name": "", + "name": "ROWTYPE_OFMAX", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 379, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@15785@macro@ROWTYPE_OFMIN", + "kind": 9, + "parent_name": "", + "name": "ROWTYPE_OFMIN", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 380, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@15845@macro@ROWTYPE_CHSIGN", + "kind": 9, + "parent_name": "", + "name": "ROWTYPE_CHSIGN", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 381, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@15923@macro@FR", + "kind": 9, + "parent_name": "", + "name": "FR", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 384, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@15971@macro@LE", + "kind": 9, + "parent_name": "", + "name": "LE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 385, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@16016@macro@GE", + "kind": 9, + "parent_name": "", + "name": "GE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 386, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@16061@macro@EQ", + "kind": 9, + "parent_name": "", + "name": "EQ", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 387, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@16106@macro@OF", + "kind": 9, + "parent_name": "", + "name": "OF", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 388, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@16183@macro@ROWCLASS_Unknown", + "kind": 9, + "parent_name": "", + "name": "ROWCLASS_Unknown", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 391, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@16245@macro@ROWCLASS_Objective", + "kind": 9, + "parent_name": "", + "name": "ROWCLASS_Objective", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 392, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@16312@macro@ROWCLASS_GeneralREAL", + "kind": 9, + "parent_name": "", + "name": "ROWCLASS_GeneralREAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 393, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@16387@macro@ROWCLASS_GeneralMIP", + "kind": 9, + "parent_name": "", + "name": "ROWCLASS_GeneralMIP", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 394, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@16487@macro@ROWCLASS_GeneralINT", + "kind": 9, + "parent_name": "", + "name": "ROWCLASS_GeneralINT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 395, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@16563@macro@ROWCLASS_GeneralBIN", + "kind": 9, + "parent_name": "", + "name": "ROWCLASS_GeneralBIN", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 396, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@16638@macro@ROWCLASS_KnapsackINT", + "kind": 9, + "parent_name": "", + "name": "ROWCLASS_KnapsackINT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 397, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@16750@macro@ROWCLASS_KnapsackBIN", + "kind": 9, + "parent_name": "", + "name": "ROWCLASS_KnapsackBIN", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 398, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@16861@macro@ROWCLASS_SetPacking", + "kind": 9, + "parent_name": "", + "name": "ROWCLASS_SetPacking", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 399, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@16934@macro@ROWCLASS_SetCover", + "kind": 9, + "parent_name": "", + "name": "ROWCLASS_SetCover", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 400, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@17007@macro@ROWCLASS_GUB", + "kind": 9, + "parent_name": "", + "name": "ROWCLASS_GUB", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 401, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@17080@macro@ROWCLASS_MAX", + "kind": 9, + "parent_name": "", + "name": "ROWCLASS_MAX", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 402, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@17162@macro@SCAN_USERVARS", + "kind": 9, + "parent_name": "", + "name": "SCAN_USERVARS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 405, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@17198@macro@SCAN_SLACKVARS", + "kind": 9, + "parent_name": "", + "name": "SCAN_SLACKVARS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 406, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@17234@macro@SCAN_ARTIFICIALVARS", + "kind": 9, + "parent_name": "", + "name": "SCAN_ARTIFICIALVARS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 407, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@17270@macro@SCAN_PARTIALBLOCK", + "kind": 9, + "parent_name": "", + "name": "SCAN_PARTIALBLOCK", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 408, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@17306@macro@USE_BASICVARS", + "kind": 9, + "parent_name": "", + "name": "USE_BASICVARS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 409, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@17342@macro@USE_NONBASICVARS", + "kind": 9, + "parent_name": "", + "name": "USE_NONBASICVARS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 410, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@17378@macro@SCAN_NORMALVARS", + "kind": 9, + "parent_name": "", + "name": "SCAN_NORMALVARS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 411, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@17449@macro@SCAN_ALLVARS", + "kind": 9, + "parent_name": "", + "name": "SCAN_ALLVARS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 412, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@17537@macro@USE_ALLVARS", + "kind": 9, + "parent_name": "", + "name": "USE_ALLVARS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 413, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@17605@macro@OMIT_FIXED", + "kind": 9, + "parent_name": "", + "name": "OMIT_FIXED", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 414, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@17641@macro@OMIT_NONFIXED", + "kind": 9, + "parent_name": "", + "name": "OMIT_NONFIXED", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 415, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@17706@macro@IMPROVE_NONE", + "kind": 9, + "parent_name": "", + "name": "IMPROVE_NONE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 418, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@17742@macro@IMPROVE_SOLUTION", + "kind": 9, + "parent_name": "", + "name": "IMPROVE_SOLUTION", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 419, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@17778@macro@IMPROVE_DUALFEAS", + "kind": 9, + "parent_name": "", + "name": "IMPROVE_DUALFEAS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 420, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@17814@macro@IMPROVE_THETAGAP", + "kind": 9, + "parent_name": "", + "name": "IMPROVE_THETAGAP", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 421, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@17850@macro@IMPROVE_BBSIMPLEX", + "kind": 9, + "parent_name": "", + "name": "IMPROVE_BBSIMPLEX", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 422, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@17886@macro@IMPROVE_DEFAULT", + "kind": 9, + "parent_name": "", + "name": "IMPROVE_DEFAULT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 423, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@17958@macro@IMPROVE_INVERSE", + "kind": 9, + "parent_name": "", + "name": "IMPROVE_INVERSE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 424, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@18053@macro@SCALE_NONE", + "kind": 9, + "parent_name": "", + "name": "SCALE_NONE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 427, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@18089@macro@SCALE_EXTREME", + "kind": 9, + "parent_name": "", + "name": "SCALE_EXTREME", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 428, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@18125@macro@SCALE_RANGE", + "kind": 9, + "parent_name": "", + "name": "SCALE_RANGE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 429, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@18161@macro@SCALE_MEAN", + "kind": 9, + "parent_name": "", + "name": "SCALE_MEAN", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 430, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@18197@macro@SCALE_GEOMETRIC", + "kind": 9, + "parent_name": "", + "name": "SCALE_GEOMETRIC", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 431, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@18233@macro@SCALE_FUTURE1", + "kind": 9, + "parent_name": "", + "name": "SCALE_FUTURE1", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 432, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@18269@macro@SCALE_FUTURE2", + "kind": 9, + "parent_name": "", + "name": "SCALE_FUTURE2", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 433, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@18305@macro@SCALE_CURTISREID", + "kind": 9, + "parent_name": "", + "name": "SCALE_CURTISREID", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 434, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@18428@macro@SCALE_LINEAR", + "kind": 9, + "parent_name": "", + "name": "SCALE_LINEAR", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 437, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@18464@macro@SCALE_QUADRATIC", + "kind": 9, + "parent_name": "", + "name": "SCALE_QUADRATIC", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 438, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@18500@macro@SCALE_LOGARITHMIC", + "kind": 9, + "parent_name": "", + "name": "SCALE_LOGARITHMIC", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 439, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@18536@macro@SCALE_USERWEIGHT", + "kind": 9, + "parent_name": "", + "name": "SCALE_USERWEIGHT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 440, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@18572@macro@SCALE_MAXTYPE", + "kind": 9, + "parent_name": "", + "name": "SCALE_MAXTYPE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 441, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@18649@macro@SCALE_POWER2", + "kind": 9, + "parent_name": "", + "name": "SCALE_POWER2", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 444, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@18724@macro@SCALE_EQUILIBRATE", + "kind": 9, + "parent_name": "", + "name": "SCALE_EQUILIBRATE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 445, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@18811@macro@SCALE_INTEGERS", + "kind": 9, + "parent_name": "", + "name": "SCALE_INTEGERS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 446, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@18890@macro@SCALE_DYNUPDATE", + "kind": 9, + "parent_name": "", + "name": "SCALE_DYNUPDATE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 447, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@18968@macro@SCALE_ROWSONLY", + "kind": 9, + "parent_name": "", + "name": "SCALE_ROWSONLY", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 448, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@19056@macro@SCALE_COLSONLY", + "kind": 9, + "parent_name": "", + "name": "SCALE_COLSONLY", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 449, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@19214@macro@SCALEMODEL_EQUILIBRATED", + "kind": 9, + "parent_name": "", + "name": "SCALEMODEL_EQUILIBRATED", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 452, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@19292@macro@SCALEMODEL_GEOMETRIC", + "kind": 9, + "parent_name": "", + "name": "SCALEMODEL_GEOMETRIC", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 453, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@19372@macro@SCALEMODEL_ARITHMETIC", + "kind": 9, + "parent_name": "", + "name": "SCALEMODEL_ARITHMETIC", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 454, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@19447@macro@SCALEMODEL_DYNAMIC", + "kind": 9, + "parent_name": "", + "name": "SCALEMODEL_DYNAMIC", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 455, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@19522@macro@SCALEMODEL_CURTISREID", + "kind": 9, + "parent_name": "", + "name": "SCALEMODEL_CURTISREID", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 456, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@19655@macro@ITERATE_MAJORMAJOR", + "kind": 9, + "parent_name": "", + "name": "ITERATE_MAJORMAJOR", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 459, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@19691@macro@ITERATE_MINORMAJOR", + "kind": 9, + "parent_name": "", + "name": "ITERATE_MINORMAJOR", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 460, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@19727@macro@ITERATE_MINORRETRY", + "kind": 9, + "parent_name": "", + "name": "ITERATE_MINORRETRY", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 461, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@19788@macro@PRICER_FIRSTINDEX", + "kind": 9, + "parent_name": "", + "name": "PRICER_FIRSTINDEX", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 464, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@19824@macro@PRICER_DANTZIG", + "kind": 9, + "parent_name": "", + "name": "PRICER_DANTZIG", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 465, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@19860@macro@PRICER_DEVEX", + "kind": 9, + "parent_name": "", + "name": "PRICER_DEVEX", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 466, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@19896@macro@PRICER_STEEPESTEDGE", + "kind": 9, + "parent_name": "", + "name": "PRICER_STEEPESTEDGE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 467, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@19932@macro@PRICER_LASTOPTION", + "kind": 9, + "parent_name": "", + "name": "PRICER_LASTOPTION", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 468, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@20038@macro@PRICER_RANDFACT", + "kind": 9, + "parent_name": "", + "name": "PRICER_RANDFACT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 471, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@20074@macro@DEVEX_RESTARTLIMIT", + "kind": 9, + "parent_name": "", + "name": "DEVEX_RESTARTLIMIT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 472, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@20167@macro@DEVEX_MINVALUE", + "kind": 9, + "parent_name": "", + "name": "DEVEX_MINVALUE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 473, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@20299@macro@PRICE_PRIMALFALLBACK", + "kind": 9, + "parent_name": "", + "name": "PRICE_PRIMALFALLBACK", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 476, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@20399@macro@PRICE_MULTIPLE", + "kind": 9, + "parent_name": "", + "name": "PRICE_MULTIPLE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 477, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@20485@macro@PRICE_PARTIAL", + "kind": 9, + "parent_name": "", + "name": "PRICE_PARTIAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 478, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@20553@macro@PRICE_ADAPTIVE", + "kind": 9, + "parent_name": "", + "name": "PRICE_ADAPTIVE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 479, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@20658@macro@PRICE_HYBRID", + "kind": 9, + "parent_name": "", + "name": "PRICE_HYBRID", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 480, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@20719@macro@PRICE_RANDOMIZE", + "kind": 9, + "parent_name": "", + "name": "PRICE_RANDOMIZE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 481, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@20821@macro@PRICE_AUTOPARTIAL", + "kind": 9, + "parent_name": "", + "name": "PRICE_AUTOPARTIAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 482, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@20931@macro@PRICE_AUTOMULTIPLE", + "kind": 9, + "parent_name": "", + "name": "PRICE_AUTOMULTIPLE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 483, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@21031@macro@PRICE_LOOPLEFT", + "kind": 9, + "parent_name": "", + "name": "PRICE_LOOPLEFT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 484, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@21129@macro@PRICE_LOOPALTERNATE", + "kind": 9, + "parent_name": "", + "name": "PRICE_LOOPALTERNATE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 485, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@21229@macro@PRICE_HARRISTWOPASS", + "kind": 9, + "parent_name": "", + "name": "PRICE_HARRISTWOPASS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 486, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@21329@macro@PRICE_FORCEFULL", + "kind": 9, + "parent_name": "", + "name": "PRICE_FORCEFULL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 487, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@21412@macro@PRICE_TRUENORMINIT", + "kind": 9, + "parent_name": "", + "name": "PRICE_TRUENORMINIT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 488, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@21680@macro@PRICE_STRATEGYMASK", + "kind": 9, + "parent_name": "", + "name": "PRICE_STRATEGYMASK", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 495, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@22229@macro@BB_REAL", + "kind": 9, + "parent_name": "", + "name": "BB_REAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 504, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@22265@macro@BB_INT", + "kind": 9, + "parent_name": "", + "name": "BB_INT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 505, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@22301@macro@BB_SC", + "kind": 9, + "parent_name": "", + "name": "BB_SC", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 506, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@22337@macro@BB_SOS", + "kind": 9, + "parent_name": "", + "name": "BB_SOS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 507, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@22373@macro@BB_GUB", + "kind": 9, + "parent_name": "", + "name": "BB_GUB", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 508, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@22433@macro@NODE_FIRSTSELECT", + "kind": 9, + "parent_name": "", + "name": "NODE_FIRSTSELECT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 511, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@22469@macro@NODE_GAPSELECT", + "kind": 9, + "parent_name": "", + "name": "NODE_GAPSELECT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 512, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@22505@macro@NODE_RANGESELECT", + "kind": 9, + "parent_name": "", + "name": "NODE_RANGESELECT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 513, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@22541@macro@NODE_FRACTIONSELECT", + "kind": 9, + "parent_name": "", + "name": "NODE_FRACTIONSELECT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 514, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@22577@macro@NODE_PSEUDOCOSTSELECT", + "kind": 9, + "parent_name": "", + "name": "NODE_PSEUDOCOSTSELECT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 515, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@22613@macro@NODE_PSEUDONONINTSELECT", + "kind": 9, + "parent_name": "", + "name": "NODE_PSEUDONONINTSELECT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 516, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@22696@macro@NODE_PSEUDOFEASSELECT", + "kind": 9, + "parent_name": "", + "name": "NODE_PSEUDOFEASSELECT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 517, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@22778@macro@NODE_PSEUDORATIOSELECT", + "kind": 9, + "parent_name": "", + "name": "NODE_PSEUDORATIOSELECT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 518, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@22874@macro@NODE_USERSELECT", + "kind": 9, + "parent_name": "", + "name": "NODE_USERSELECT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 519, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@22910@macro@NODE_STRATEGYMASK", + "kind": 9, + "parent_name": "", + "name": "NODE_STRATEGYMASK", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 520, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@23001@macro@NODE_WEIGHTREVERSEMODE", + "kind": 9, + "parent_name": "", + "name": "NODE_WEIGHTREVERSEMODE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 521, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@23037@macro@NODE_BRANCHREVERSEMODE", + "kind": 9, + "parent_name": "", + "name": "NODE_BRANCHREVERSEMODE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 522, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@23073@macro@NODE_GREEDYMODE", + "kind": 9, + "parent_name": "", + "name": "NODE_GREEDYMODE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 523, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@23109@macro@NODE_PSEUDOCOSTMODE", + "kind": 9, + "parent_name": "", + "name": "NODE_PSEUDOCOSTMODE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 524, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@23145@macro@NODE_DEPTHFIRSTMODE", + "kind": 9, + "parent_name": "", + "name": "NODE_DEPTHFIRSTMODE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 525, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@23181@macro@NODE_RANDOMIZEMODE", + "kind": 9, + "parent_name": "", + "name": "NODE_RANDOMIZEMODE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 526, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@23217@macro@NODE_GUBMODE", + "kind": 9, + "parent_name": "", + "name": "NODE_GUBMODE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 527, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@23253@macro@NODE_DYNAMICMODE", + "kind": 9, + "parent_name": "", + "name": "NODE_DYNAMICMODE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 528, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@23289@macro@NODE_RESTARTMODE", + "kind": 9, + "parent_name": "", + "name": "NODE_RESTARTMODE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 529, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@23325@macro@NODE_BREADTHFIRSTMODE", + "kind": 9, + "parent_name": "", + "name": "NODE_BREADTHFIRSTMODE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 530, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@23361@macro@NODE_AUTOORDER", + "kind": 9, + "parent_name": "", + "name": "NODE_AUTOORDER", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 531, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@23397@macro@NODE_RCOSTFIXING", + "kind": 9, + "parent_name": "", + "name": "NODE_RCOSTFIXING", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 532, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@23433@macro@NODE_STRONGINIT", + "kind": 9, + "parent_name": "", + "name": "NODE_STRONGINIT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 533, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@23471@macro@BRANCH_CEILING", + "kind": 9, + "parent_name": "", + "name": "BRANCH_CEILING", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 535, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@23507@macro@BRANCH_FLOOR", + "kind": 9, + "parent_name": "", + "name": "BRANCH_FLOOR", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 536, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@23543@macro@BRANCH_AUTOMATIC", + "kind": 9, + "parent_name": "", + "name": "BRANCH_AUTOMATIC", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 537, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@23579@macro@BRANCH_DEFAULT", + "kind": 9, + "parent_name": "", + "name": "BRANCH_DEFAULT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 538, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@23672@macro@ACTION_NONE", + "kind": 9, + "parent_name": "", + "name": "ACTION_NONE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 541, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@23708@macro@ACTION_ACTIVE", + "kind": 9, + "parent_name": "", + "name": "ACTION_ACTIVE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 542, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@23744@macro@ACTION_REBASE", + "kind": 9, + "parent_name": "", + "name": "ACTION_REBASE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 543, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@23780@macro@ACTION_RECOMPUTE", + "kind": 9, + "parent_name": "", + "name": "ACTION_RECOMPUTE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 544, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@23816@macro@ACTION_REPRICE", + "kind": 9, + "parent_name": "", + "name": "ACTION_REPRICE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 545, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@23852@macro@ACTION_REINVERT", + "kind": 9, + "parent_name": "", + "name": "ACTION_REINVERT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 546, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@23888@macro@ACTION_TIMEDREINVERT", + "kind": 9, + "parent_name": "", + "name": "ACTION_TIMEDREINVERT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 547, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@23924@macro@ACTION_ITERATE", + "kind": 9, + "parent_name": "", + "name": "ACTION_ITERATE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 548, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@23960@macro@ACTION_RESTART", + "kind": 9, + "parent_name": "", + "name": "ACTION_RESTART", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 549, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@24026@macro@UNKNOWNERROR", + "kind": 9, + "parent_name": "", + "name": "UNKNOWNERROR", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 552, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@24062@macro@DATAIGNORED", + "kind": 9, + "parent_name": "", + "name": "DATAIGNORED", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 553, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@24098@macro@NOBFP", + "kind": 9, + "parent_name": "", + "name": "NOBFP", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 554, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@24134@macro@NOMEMORY", + "kind": 9, + "parent_name": "", + "name": "NOMEMORY", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 555, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@24170@macro@NOTRUN", + "kind": 9, + "parent_name": "", + "name": "NOTRUN", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 556, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@24206@macro@OPTIMAL", + "kind": 9, + "parent_name": "", + "name": "OPTIMAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 557, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@24242@macro@SUBOPTIMAL", + "kind": 9, + "parent_name": "", + "name": "SUBOPTIMAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 558, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@24278@macro@INFEASIBLE", + "kind": 9, + "parent_name": "", + "name": "INFEASIBLE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 559, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@24314@macro@UNBOUNDED", + "kind": 9, + "parent_name": "", + "name": "UNBOUNDED", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 560, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@24350@macro@DEGENERATE", + "kind": 9, + "parent_name": "", + "name": "DEGENERATE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 561, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@24386@macro@NUMFAILURE", + "kind": 9, + "parent_name": "", + "name": "NUMFAILURE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 562, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@24422@macro@USERABORT", + "kind": 9, + "parent_name": "", + "name": "USERABORT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 563, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@24458@macro@TIMEOUT", + "kind": 9, + "parent_name": "", + "name": "TIMEOUT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 564, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@24494@macro@RUNNING", + "kind": 9, + "parent_name": "", + "name": "RUNNING", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 565, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@24530@macro@PRESOLVED", + "kind": 9, + "parent_name": "", + "name": "PRESOLVED", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 566, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@24636@macro@PROCFAIL", + "kind": 9, + "parent_name": "", + "name": "PROCFAIL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 569, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@24672@macro@PROCBREAK", + "kind": 9, + "parent_name": "", + "name": "PROCBREAK", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 570, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@24708@macro@FEASFOUND", + "kind": 9, + "parent_name": "", + "name": "FEASFOUND", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 571, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@24744@macro@NOFEASFOUND", + "kind": 9, + "parent_name": "", + "name": "NOFEASFOUND", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 572, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@24780@macro@FATHOMED", + "kind": 9, + "parent_name": "", + "name": "FATHOMED", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 573, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@24873@macro@SWITCH_TO_PRIMAL", + "kind": 9, + "parent_name": "", + "name": "SWITCH_TO_PRIMAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 576, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@24909@macro@SWITCH_TO_DUAL", + "kind": 9, + "parent_name": "", + "name": "SWITCH_TO_DUAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 577, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@24945@macro@SINGULAR_BASIS", + "kind": 9, + "parent_name": "", + "name": "SINGULAR_BASIS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 578, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@24981@macro@LOSTFEAS", + "kind": 9, + "parent_name": "", + "name": "LOSTFEAS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 579, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@25017@macro@MATRIXERROR", + "kind": 9, + "parent_name": "", + "name": "MATRIXERROR", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 580, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@25115@macro@OF_RELAXED", + "kind": 9, + "parent_name": "", + "name": "OF_RELAXED", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 583, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@25151@macro@OF_INCUMBENT", + "kind": 9, + "parent_name": "", + "name": "OF_INCUMBENT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 584, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@25187@macro@OF_WORKING", + "kind": 9, + "parent_name": "", + "name": "OF_WORKING", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 585, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@25223@macro@OF_USERBREAK", + "kind": 9, + "parent_name": "", + "name": "OF_USERBREAK", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 586, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@25259@macro@OF_HEURISTIC", + "kind": 9, + "parent_name": "", + "name": "OF_HEURISTIC", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 587, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@25295@macro@OF_DUALLIMIT", + "kind": 9, + "parent_name": "", + "name": "OF_DUALLIMIT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 588, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@25331@macro@OF_DELTA", + "kind": 9, + "parent_name": "", + "name": "OF_DELTA", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 589, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@25379@macro@OF_PROJECTED", + "kind": 9, + "parent_name": "", + "name": "OF_PROJECTED", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 590, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@25450@macro@OF_TEST_BT", + "kind": 9, + "parent_name": "", + "name": "OF_TEST_BT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 592, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@25486@macro@OF_TEST_BE", + "kind": 9, + "parent_name": "", + "name": "OF_TEST_BE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 593, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@25522@macro@OF_TEST_NE", + "kind": 9, + "parent_name": "", + "name": "OF_TEST_NE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 594, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@25558@macro@OF_TEST_WE", + "kind": 9, + "parent_name": "", + "name": "OF_TEST_WE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 595, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@25594@macro@OF_TEST_WT", + "kind": 9, + "parent_name": "", + "name": "OF_TEST_WT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 596, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@25630@macro@OF_TEST_RELGAP", + "kind": 9, + "parent_name": "", + "name": "OF_TEST_RELGAP", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 597, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@25747@macro@MAT_START_SIZE", + "kind": 9, + "parent_name": "", + "name": "MAT_START_SIZE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 601, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@25783@macro@DELTACOLALLOC", + "kind": 9, + "parent_name": "", + "name": "DELTACOLALLOC", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 602, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@25819@macro@DELTAROWALLOC", + "kind": 9, + "parent_name": "", + "name": "DELTAROWALLOC", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 603, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@25855@macro@RESIZEFACTOR", + "kind": 9, + "parent_name": "", + "name": "RESIZEFACTOR", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 604, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@26010@macro@DEF_PARTIALBLOCKS", + "kind": 9, + "parent_name": "", + "name": "DEF_PARTIALBLOCKS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 607, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@26102@macro@DEF_MAXRELAX", + "kind": 9, + "parent_name": "", + "name": "DEF_MAXRELAX", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 608, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@26190@macro@DEF_MAXPIVOTRETRY", + "kind": 9, + "parent_name": "", + "name": "DEF_MAXPIVOTRETRY", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 609, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@26284@macro@DEF_MAXSINGULARITIES", + "kind": 9, + "parent_name": "", + "name": "DEF_MAXSINGULARITIES", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 610, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@26378@macro@MAX_MINITUPDATES", + "kind": 9, + "parent_name": "", + "name": "MAX_MINITUPDATES", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 611, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@26570@macro@MIN_REFACTFREQUENCY", + "kind": 9, + "parent_name": "", + "name": "MIN_REFACTFREQUENCY", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 613, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@26737@macro@LAG_SINGULARLIMIT", + "kind": 9, + "parent_name": "", + "name": "LAG_SINGULARLIMIT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 615, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@27105@macro@MIN_TIMEPIVOT", + "kind": 9, + "parent_name": "", + "name": "MIN_TIMEPIVOT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 619, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@27454@macro@MAX_STALLCOUNT", + "kind": 9, + "parent_name": "", + "name": "MAX_STALLCOUNT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 623, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@27632@macro@MAX_RULESWITCH", + "kind": 9, + "parent_name": "", + "name": "MAX_RULESWITCH", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 625, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@27829@macro@DEF_TIMEDREFACT", + "kind": 9, + "parent_name": "", + "name": "DEF_TIMEDREFACT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 627, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@27999@macro@DEF_SCALINGLIMIT", + "kind": 9, + "parent_name": "", + "name": "DEF_SCALINGLIMIT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 630, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@28093@macro@DEF_NEGRANGE", + "kind": 9, + "parent_name": "", + "name": "DEF_NEGRANGE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 632, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@28286@macro@DEF_BB_LIMITLEVEL", + "kind": 9, + "parent_name": "", + "name": "DEF_BB_LIMITLEVEL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 634, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@28443@macro@MAX_FRACSCALE", + "kind": 9, + "parent_name": "", + "name": "MAX_FRACSCALE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 637, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@28540@macro@RANDSCALE", + "kind": 9, + "parent_name": "", + "name": "RANDSCALE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 638, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@28611@macro@DOUBLEROUND", + "kind": 9, + "parent_name": "", + "name": "DOUBLEROUND", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 639, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@28812@macro@DEF_EPSMACHINE", + "kind": 9, + "parent_name": "", + "name": "DEF_EPSMACHINE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 641, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@28892@macro@MIN_STABLEPIVOT", + "kind": 9, + "parent_name": "", + "name": "MIN_STABLEPIVOT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 642, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@29184@macro@PREC_REDUCEDCOST", + "kind": 9, + "parent_name": "", + "name": "PREC_REDUCEDCOST", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 647, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@29230@macro@PREC_IMPROVEGAP", + "kind": 9, + "parent_name": "", + "name": "PREC_IMPROVEGAP", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 648, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@29275@macro@PREC_SUBSTFEASGAP", + "kind": 9, + "parent_name": "", + "name": "PREC_SUBSTFEASGAP", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 649, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@29331@macro@PREC_BASICSOLUTION", + "kind": 9, + "parent_name": "", + "name": "PREC_BASICSOLUTION", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 651, + "column": 11, + "hidden": false + }, + { + "usr": "c:lp_lib.h@29538@macro@LIMIT_ABS_REL", + "kind": 9, + "parent_name": "", + "name": "LIMIT_ABS_REL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 655, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@29809@macro@EPS_TIGHT", + "kind": 9, + "parent_name": "", + "name": "EPS_TIGHT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 660, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@29845@macro@EPS_MEDIUM", + "kind": 9, + "parent_name": "", + "name": "EPS_MEDIUM", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 661, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@29881@macro@EPS_LOOSE", + "kind": 9, + "parent_name": "", + "name": "EPS_LOOSE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 662, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@29917@macro@EPS_BAGGY", + "kind": 9, + "parent_name": "", + "name": "EPS_BAGGY", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 663, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@29953@macro@EPS_DEFAULT", + "kind": 9, + "parent_name": "", + "name": "EPS_DEFAULT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 664, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@30189@macro@DEF_INFINITE", + "kind": 9, + "parent_name": "", + "name": "DEF_INFINITE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 669, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@30256@macro@DEF_EPSVALUE", + "kind": 9, + "parent_name": "", + "name": "DEF_EPSVALUE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 670, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@30350@macro@DEF_EPSPRIMAL", + "kind": 9, + "parent_name": "", + "name": "DEF_EPSPRIMAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 671, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@30429@macro@DEF_EPSDUAL", + "kind": 9, + "parent_name": "", + "name": "DEF_EPSDUAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 672, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@30504@macro@DEF_EPSPIVOT", + "kind": 9, + "parent_name": "", + "name": "DEF_EPSPIVOT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 673, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@30570@macro@DEF_PERTURB", + "kind": 9, + "parent_name": "", + "name": "DEF_PERTURB", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 674, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@30748@macro@DEF_EPSSOLUTION", + "kind": 9, + "parent_name": "", + "name": "DEF_EPSSOLUTION", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 676, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@30827@macro@DEF_EPSINT", + "kind": 9, + "parent_name": "", + "name": "DEF_EPSINT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 677, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@33712@macro@DEF_MIP_GAP", + "kind": 9, + "parent_name": "", + "name": "DEF_MIP_GAP", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 718, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@33797@macro@SCALEDINTFIXRANGE", + "kind": 9, + "parent_name": "", + "name": "SCALEDINTFIXRANGE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 719, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@33900@macro@MIN_SCALAR", + "kind": 9, + "parent_name": "", + "name": "MIN_SCALAR", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 721, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@33979@macro@MAX_SCALAR", + "kind": 9, + "parent_name": "", + "name": "MAX_SCALAR", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 722, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@34057@macro@DEF_SCALINGEPS", + "kind": 9, + "parent_name": "", + "name": "DEF_SCALINGEPS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 723, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@34156@macro@DEF_LAGACCEPT", + "kind": 9, + "parent_name": "", + "name": "DEF_LAGACCEPT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 725, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@34251@macro@DEF_LAGCONTRACT", + "kind": 9, + "parent_name": "", + "name": "DEF_LAGCONTRACT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 726, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@34346@macro@DEF_LAGMAXITERATIONS", + "kind": 9, + "parent_name": "", + "name": "DEF_LAGMAXITERATIONS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 727, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@34435@macro@DEF_PSEUDOCOSTUPDATES", + "kind": 9, + "parent_name": "", + "name": "DEF_PSEUDOCOSTUPDATES", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 729, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@34627@macro@DEF_PSEUDOCOSTRESTART", + "kind": 9, + "parent_name": "", + "name": "DEF_PSEUDOCOSTRESTART", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 731, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@34799@macro@DEF_MAXPRESOLVELOOPS", + "kind": 9, + "parent_name": "", + "name": "DEF_MAXPRESOLVELOOPS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 733, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@37807@macro@LINEARSEARCH", + "kind": 9, + "parent_name": "", + "name": "LINEARSEARCH", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 810, + "column": 9, + "hidden": false + }, + { + "usr": "c:@S@_basisrec", + "kind": 3, + "parent_name": "", + "name": "_basisrec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 748, + "column": 16, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@basisrec", + "kind": 8, + "parent_name": "", + "name": "basisrec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 756, + "column": 3, + "hidden": false + }, + { + "usr": "c:@S@_presolveundorec", + "kind": 3, + "parent_name": "", + "name": "_presolveundorec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 759, + "column": 16, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@presolveundorec", + "kind": 8, + "parent_name": "", + "name": "presolveundorec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 777, + "column": 3, + "hidden": false + }, + { + "usr": "c:@S@_BBPSrec", + "kind": 3, + "parent_name": "", + "name": "_BBPSrec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 780, + "column": 16, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@BBPSrec", + "kind": 8, + "parent_name": "", + "name": "BBPSrec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 790, + "column": 3, + "hidden": false + }, + { + "usr": "c:@S@_partialrec", + "kind": 3, + "parent_name": "", + "name": "_partialrec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 796, + "column": 16, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@partialrec", + "kind": 8, + "parent_name": "", + "name": "partialrec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 803, + "column": 3, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@lphandle_intfunc", + "kind": 8, + "parent_name": "", + "name": "lphandle_intfunc", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 818, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@lphandlestr_func", + "kind": 8, + "parent_name": "", + "name": "lphandlestr_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 819, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@lphandleint_func", + "kind": 8, + "parent_name": "", + "name": "lphandleint_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 820, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@lphandleint_intfunc", + "kind": 8, + "parent_name": "", + "name": "lphandleint_intfunc", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 821, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@add_column_func", + "kind": 8, + "parent_name": "", + "name": "add_column_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 826, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@add_columnex_func", + "kind": 8, + "parent_name": "", + "name": "add_columnex_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 827, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@add_constraint_func", + "kind": 8, + "parent_name": "", + "name": "add_constraint_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 828, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@add_constraintex_func", + "kind": 8, + "parent_name": "", + "name": "add_constraintex_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 829, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@add_lag_con_func", + "kind": 8, + "parent_name": "", + "name": "add_lag_con_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 830, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@add_SOS_func", + "kind": 8, + "parent_name": "", + "name": "add_SOS_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 831, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@column_in_lp_func", + "kind": 8, + "parent_name": "", + "name": "column_in_lp_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 832, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@copy_lp_func", + "kind": 8, + "parent_name": "", + "name": "copy_lp_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 833, + "column": 27, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@default_basis_func", + "kind": 8, + "parent_name": "", + "name": "default_basis_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 834, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@del_column_func", + "kind": 8, + "parent_name": "", + "name": "del_column_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 835, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@del_constraint_func", + "kind": 8, + "parent_name": "", + "name": "del_constraint_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 836, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@delete_lp_func", + "kind": 8, + "parent_name": "", + "name": "delete_lp_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 837, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@dualize_lp_func", + "kind": 8, + "parent_name": "", + "name": "dualize_lp_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 838, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@free_lp_func", + "kind": 8, + "parent_name": "", + "name": "free_lp_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 839, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_anti_degen_func", + "kind": 8, + "parent_name": "", + "name": "get_anti_degen_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 840, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_basis_func", + "kind": 8, + "parent_name": "", + "name": "get_basis_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 841, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_basiscrash_func", + "kind": 8, + "parent_name": "", + "name": "get_basiscrash_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 842, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_bb_depthlimit_func", + "kind": 8, + "parent_name": "", + "name": "get_bb_depthlimit_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 843, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_bb_floorfirst_func", + "kind": 8, + "parent_name": "", + "name": "get_bb_floorfirst_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 844, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_bb_rule_func", + "kind": 8, + "parent_name": "", + "name": "get_bb_rule_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 845, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_bounds_tighter_func", + "kind": 8, + "parent_name": "", + "name": "get_bounds_tighter_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 846, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_break_at_value_func", + "kind": 8, + "parent_name": "", + "name": "get_break_at_value_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 847, + "column": 27, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_col_name_func", + "kind": 8, + "parent_name": "", + "name": "get_col_name_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 848, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_column_func", + "kind": 8, + "parent_name": "", + "name": "get_column_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 849, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_columnex_func", + "kind": 8, + "parent_name": "", + "name": "get_columnex_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 850, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_constr_type_func", + "kind": 8, + "parent_name": "", + "name": "get_constr_type_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 851, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_constr_value_func", + "kind": 8, + "parent_name": "", + "name": "get_constr_value_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 852, + "column": 27, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_constraints_func", + "kind": 8, + "parent_name": "", + "name": "get_constraints_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 853, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_dual_solution_func", + "kind": 8, + "parent_name": "", + "name": "get_dual_solution_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 854, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_epsb_func", + "kind": 8, + "parent_name": "", + "name": "get_epsb_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 855, + "column": 27, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_epsd_func", + "kind": 8, + "parent_name": "", + "name": "get_epsd_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 856, + "column": 27, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_epsel_func", + "kind": 8, + "parent_name": "", + "name": "get_epsel_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 857, + "column": 27, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_epsint_func", + "kind": 8, + "parent_name": "", + "name": "get_epsint_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 858, + "column": 27, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_epsperturb_func", + "kind": 8, + "parent_name": "", + "name": "get_epsperturb_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 859, + "column": 27, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_epspivot_func", + "kind": 8, + "parent_name": "", + "name": "get_epspivot_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 860, + "column": 27, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_improve_func", + "kind": 8, + "parent_name": "", + "name": "get_improve_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 861, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_infinite_func", + "kind": 8, + "parent_name": "", + "name": "get_infinite_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 862, + "column": 27, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_lambda_func", + "kind": 8, + "parent_name": "", + "name": "get_lambda_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 863, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_lowbo_func", + "kind": 8, + "parent_name": "", + "name": "get_lowbo_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 864, + "column": 27, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_lp_index_func", + "kind": 8, + "parent_name": "", + "name": "get_lp_index_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 865, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_lp_name_func", + "kind": 8, + "parent_name": "", + "name": "get_lp_name_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 866, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_Lrows_func", + "kind": 8, + "parent_name": "", + "name": "get_Lrows_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 867, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_mat_func", + "kind": 8, + "parent_name": "", + "name": "get_mat_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 868, + "column": 27, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_mat_byindex_func", + "kind": 8, + "parent_name": "", + "name": "get_mat_byindex_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 869, + "column": 27, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_max_level_func", + "kind": 8, + "parent_name": "", + "name": "get_max_level_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 870, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_maxpivot_func", + "kind": 8, + "parent_name": "", + "name": "get_maxpivot_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 871, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_mip_gap_func", + "kind": 8, + "parent_name": "", + "name": "get_mip_gap_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 872, + "column": 27, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_multiprice_func", + "kind": 8, + "parent_name": "", + "name": "get_multiprice_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 873, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@is_use_names_func", + "kind": 8, + "parent_name": "", + "name": "is_use_names_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 874, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_use_names_func", + "kind": 8, + "parent_name": "", + "name": "set_use_names_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 875, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_nameindex_func", + "kind": 8, + "parent_name": "", + "name": "get_nameindex_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 876, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_Ncolumns_func", + "kind": 8, + "parent_name": "", + "name": "get_Ncolumns_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 877, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_negrange_func", + "kind": 8, + "parent_name": "", + "name": "get_negrange_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 878, + "column": 27, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_nz_func", + "kind": 8, + "parent_name": "", + "name": "get_nz_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 879, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_Norig_columns_func", + "kind": 8, + "parent_name": "", + "name": "get_Norig_columns_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 880, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_Norig_rows_func", + "kind": 8, + "parent_name": "", + "name": "get_Norig_rows_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 881, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_Nrows_func", + "kind": 8, + "parent_name": "", + "name": "get_Nrows_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 882, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_obj_bound_func", + "kind": 8, + "parent_name": "", + "name": "get_obj_bound_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 883, + "column": 27, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_objective_func", + "kind": 8, + "parent_name": "", + "name": "get_objective_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 884, + "column": 27, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_orig_index_func", + "kind": 8, + "parent_name": "", + "name": "get_orig_index_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 885, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_origcol_name_func", + "kind": 8, + "parent_name": "", + "name": "get_origcol_name_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 886, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_origrow_name_func", + "kind": 8, + "parent_name": "", + "name": "get_origrow_name_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 887, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_partialprice_func", + "kind": 8, + "parent_name": "", + "name": "get_partialprice_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 888, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_pivoting_func", + "kind": 8, + "parent_name": "", + "name": "get_pivoting_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 889, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_presolve_func", + "kind": 8, + "parent_name": "", + "name": "get_presolve_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 890, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_presolveloops_func", + "kind": 8, + "parent_name": "", + "name": "get_presolveloops_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 891, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_primal_solution_func", + "kind": 8, + "parent_name": "", + "name": "get_primal_solution_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 892, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_print_sol_func", + "kind": 8, + "parent_name": "", + "name": "get_print_sol_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 893, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_pseudocosts_func", + "kind": 8, + "parent_name": "", + "name": "get_pseudocosts_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 894, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_ptr_constraints_func", + "kind": 8, + "parent_name": "", + "name": "get_ptr_constraints_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 895, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_ptr_dual_solution_func", + "kind": 8, + "parent_name": "", + "name": "get_ptr_dual_solution_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 896, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_ptr_lambda_func", + "kind": 8, + "parent_name": "", + "name": "get_ptr_lambda_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 897, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_ptr_primal_solution_func", + "kind": 8, + "parent_name": "", + "name": "get_ptr_primal_solution_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 898, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_ptr_sensitivity_obj_func", + "kind": 8, + "parent_name": "", + "name": "get_ptr_sensitivity_obj_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 899, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_ptr_sensitivity_objex_func", + "kind": 8, + "parent_name": "", + "name": "get_ptr_sensitivity_objex_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 900, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_ptr_sensitivity_rhs_func", + "kind": 8, + "parent_name": "", + "name": "get_ptr_sensitivity_rhs_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 901, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_ptr_variables_func", + "kind": 8, + "parent_name": "", + "name": "get_ptr_variables_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 902, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_rh_func", + "kind": 8, + "parent_name": "", + "name": "get_rh_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 903, + "column": 27, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_rh_range_func", + "kind": 8, + "parent_name": "", + "name": "get_rh_range_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 904, + "column": 27, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_rowex_func", + "kind": 8, + "parent_name": "", + "name": "get_rowex_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 905, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_row_func", + "kind": 8, + "parent_name": "", + "name": "get_row_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 906, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_row_name_func", + "kind": 8, + "parent_name": "", + "name": "get_row_name_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 907, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_scalelimit_func", + "kind": 8, + "parent_name": "", + "name": "get_scalelimit_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 908, + "column": 27, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_scaling_func", + "kind": 8, + "parent_name": "", + "name": "get_scaling_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 909, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_sensitivity_obj_func", + "kind": 8, + "parent_name": "", + "name": "get_sensitivity_obj_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 910, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_sensitivity_objex_func", + "kind": 8, + "parent_name": "", + "name": "get_sensitivity_objex_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 911, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_sensitivity_rhs_func", + "kind": 8, + "parent_name": "", + "name": "get_sensitivity_rhs_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 912, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_simplextype_func", + "kind": 8, + "parent_name": "", + "name": "get_simplextype_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 913, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_solutioncount_func", + "kind": 8, + "parent_name": "", + "name": "get_solutioncount_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 914, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_solutionlimit_func", + "kind": 8, + "parent_name": "", + "name": "get_solutionlimit_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 915, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_status_func", + "kind": 8, + "parent_name": "", + "name": "get_status_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 916, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_statustext_func", + "kind": 8, + "parent_name": "", + "name": "get_statustext_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 917, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_timeout_func", + "kind": 8, + "parent_name": "", + "name": "get_timeout_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 918, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_total_iter_func", + "kind": 8, + "parent_name": "", + "name": "get_total_iter_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 919, + "column": 27, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_total_nodes_func", + "kind": 8, + "parent_name": "", + "name": "get_total_nodes_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 920, + "column": 27, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_upbo_func", + "kind": 8, + "parent_name": "", + "name": "get_upbo_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 921, + "column": 27, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_var_branch_func", + "kind": 8, + "parent_name": "", + "name": "get_var_branch_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 922, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_var_dualresult_func", + "kind": 8, + "parent_name": "", + "name": "get_var_dualresult_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 923, + "column": 27, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_var_primalresult_func", + "kind": 8, + "parent_name": "", + "name": "get_var_primalresult_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 924, + "column": 27, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_var_priority_func", + "kind": 8, + "parent_name": "", + "name": "get_var_priority_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 925, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_variables_func", + "kind": 8, + "parent_name": "", + "name": "get_variables_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 926, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_verbose_func", + "kind": 8, + "parent_name": "", + "name": "get_verbose_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 927, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@guess_basis_func", + "kind": 8, + "parent_name": "", + "name": "guess_basis_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 928, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_working_objective_func", + "kind": 8, + "parent_name": "", + "name": "get_working_objective_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 929, + "column": 27, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@has_BFP_func", + "kind": 8, + "parent_name": "", + "name": "has_BFP_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 930, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@has_XLI_func", + "kind": 8, + "parent_name": "", + "name": "has_XLI_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 931, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@is_add_rowmode_func", + "kind": 8, + "parent_name": "", + "name": "is_add_rowmode_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 932, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@is_anti_degen_func", + "kind": 8, + "parent_name": "", + "name": "is_anti_degen_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 933, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@is_binary_func", + "kind": 8, + "parent_name": "", + "name": "is_binary_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 934, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@is_break_at_first_func", + "kind": 8, + "parent_name": "", + "name": "is_break_at_first_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 935, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@is_constr_type_func", + "kind": 8, + "parent_name": "", + "name": "is_constr_type_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 936, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@is_debug_func", + "kind": 8, + "parent_name": "", + "name": "is_debug_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 937, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@is_feasible_func", + "kind": 8, + "parent_name": "", + "name": "is_feasible_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 938, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@is_unbounded_func", + "kind": 8, + "parent_name": "", + "name": "is_unbounded_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 939, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@is_infinite_func", + "kind": 8, + "parent_name": "", + "name": "is_infinite_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 940, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@is_int_func", + "kind": 8, + "parent_name": "", + "name": "is_int_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 941, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@is_integerscaling_func", + "kind": 8, + "parent_name": "", + "name": "is_integerscaling_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 942, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@is_lag_trace_func", + "kind": 8, + "parent_name": "", + "name": "is_lag_trace_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 943, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@is_maxim_func", + "kind": 8, + "parent_name": "", + "name": "is_maxim_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 944, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@is_nativeBFP_func", + "kind": 8, + "parent_name": "", + "name": "is_nativeBFP_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 945, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@is_nativeXLI_func", + "kind": 8, + "parent_name": "", + "name": "is_nativeXLI_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 946, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@is_negative_func", + "kind": 8, + "parent_name": "", + "name": "is_negative_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 947, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@is_obj_in_basis_func", + "kind": 8, + "parent_name": "", + "name": "is_obj_in_basis_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 948, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@is_piv_mode_func", + "kind": 8, + "parent_name": "", + "name": "is_piv_mode_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 949, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@is_piv_rule_func", + "kind": 8, + "parent_name": "", + "name": "is_piv_rule_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 950, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@is_presolve_func", + "kind": 8, + "parent_name": "", + "name": "is_presolve_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 951, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@is_scalemode_func", + "kind": 8, + "parent_name": "", + "name": "is_scalemode_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 952, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@is_scaletype_func", + "kind": 8, + "parent_name": "", + "name": "is_scaletype_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 953, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@is_semicont_func", + "kind": 8, + "parent_name": "", + "name": "is_semicont_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 954, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@is_SOS_var_func", + "kind": 8, + "parent_name": "", + "name": "is_SOS_var_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 955, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@is_trace_func", + "kind": 8, + "parent_name": "", + "name": "is_trace_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 956, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@lp_solve_version_func", + "kind": 8, + "parent_name": "", + "name": "lp_solve_version_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 957, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@make_lp_func", + "kind": 8, + "parent_name": "", + "name": "make_lp_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 958, + "column": 27, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@print_constraints_func", + "kind": 8, + "parent_name": "", + "name": "print_constraints_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 959, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@print_debugdump_func", + "kind": 8, + "parent_name": "", + "name": "print_debugdump_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 960, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@print_duals_func", + "kind": 8, + "parent_name": "", + "name": "print_duals_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 961, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@print_lp_func", + "kind": 8, + "parent_name": "", + "name": "print_lp_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 962, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@print_objective_func", + "kind": 8, + "parent_name": "", + "name": "print_objective_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 963, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@print_scales_func", + "kind": 8, + "parent_name": "", + "name": "print_scales_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 964, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@print_solution_func", + "kind": 8, + "parent_name": "", + "name": "print_solution_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 965, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@print_str_func", + "kind": 8, + "parent_name": "", + "name": "print_str_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 966, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@print_tableau_func", + "kind": 8, + "parent_name": "", + "name": "print_tableau_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 967, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@put_abortfunc_func", + "kind": 8, + "parent_name": "", + "name": "put_abortfunc_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 968, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@put_bb_nodefunc_func", + "kind": 8, + "parent_name": "", + "name": "put_bb_nodefunc_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 969, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@put_bb_branchfunc_func", + "kind": 8, + "parent_name": "", + "name": "put_bb_branchfunc_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 970, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@put_logfunc_func", + "kind": 8, + "parent_name": "", + "name": "put_logfunc_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 971, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@put_msgfunc_func", + "kind": 8, + "parent_name": "", + "name": "put_msgfunc_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 972, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@read_LP_func", + "kind": 8, + "parent_name": "", + "name": "read_LP_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 973, + "column": 27, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@read_MPS_func", + "kind": 8, + "parent_name": "", + "name": "read_MPS_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 974, + "column": 27, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@read_XLI_func", + "kind": 8, + "parent_name": "", + "name": "read_XLI_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 975, + "column": 27, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@read_basis_func", + "kind": 8, + "parent_name": "", + "name": "read_basis_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 976, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@reset_basis_func", + "kind": 8, + "parent_name": "", + "name": "reset_basis_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 977, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@read_params_func", + "kind": 8, + "parent_name": "", + "name": "read_params_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 978, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@reset_params_func", + "kind": 8, + "parent_name": "", + "name": "reset_params_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 979, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@resize_lp_func", + "kind": 8, + "parent_name": "", + "name": "resize_lp_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 980, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_add_rowmode_func", + "kind": 8, + "parent_name": "", + "name": "set_add_rowmode_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 981, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_anti_degen_func", + "kind": 8, + "parent_name": "", + "name": "set_anti_degen_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 982, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_basisvar_func", + "kind": 8, + "parent_name": "", + "name": "set_basisvar_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 983, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_basis_func", + "kind": 8, + "parent_name": "", + "name": "set_basis_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 984, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_basiscrash_func", + "kind": 8, + "parent_name": "", + "name": "set_basiscrash_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 985, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_bb_depthlimit_func", + "kind": 8, + "parent_name": "", + "name": "set_bb_depthlimit_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 986, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_bb_floorfirst_func", + "kind": 8, + "parent_name": "", + "name": "set_bb_floorfirst_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 987, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_bb_rule_func", + "kind": 8, + "parent_name": "", + "name": "set_bb_rule_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 988, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_BFP_func", + "kind": 8, + "parent_name": "", + "name": "set_BFP_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 989, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_binary_func", + "kind": 8, + "parent_name": "", + "name": "set_binary_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 990, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_bounds_func", + "kind": 8, + "parent_name": "", + "name": "set_bounds_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 991, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_bounds_tighter_func", + "kind": 8, + "parent_name": "", + "name": "set_bounds_tighter_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 992, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_break_at_first_func", + "kind": 8, + "parent_name": "", + "name": "set_break_at_first_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 993, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_break_at_value_func", + "kind": 8, + "parent_name": "", + "name": "set_break_at_value_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 994, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_column_func", + "kind": 8, + "parent_name": "", + "name": "set_column_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 995, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_columnex_func", + "kind": 8, + "parent_name": "", + "name": "set_columnex_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 996, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_col_name_func", + "kind": 8, + "parent_name": "", + "name": "set_col_name_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 997, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_constr_type_func", + "kind": 8, + "parent_name": "", + "name": "set_constr_type_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 998, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_debug_func", + "kind": 8, + "parent_name": "", + "name": "set_debug_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 999, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_epsb_func", + "kind": 8, + "parent_name": "", + "name": "set_epsb_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1000, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_epsd_func", + "kind": 8, + "parent_name": "", + "name": "set_epsd_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1001, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_epsel_func", + "kind": 8, + "parent_name": "", + "name": "set_epsel_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1002, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_epsint_func", + "kind": 8, + "parent_name": "", + "name": "set_epsint_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1003, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_epslevel_func", + "kind": 8, + "parent_name": "", + "name": "set_epslevel_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1004, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_epsperturb_func", + "kind": 8, + "parent_name": "", + "name": "set_epsperturb_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1005, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_epspivot_func", + "kind": 8, + "parent_name": "", + "name": "set_epspivot_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1006, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_unbounded_func", + "kind": 8, + "parent_name": "", + "name": "set_unbounded_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1007, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_improve_func", + "kind": 8, + "parent_name": "", + "name": "set_improve_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1008, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_infinite_func", + "kind": 8, + "parent_name": "", + "name": "set_infinite_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1009, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_int_func", + "kind": 8, + "parent_name": "", + "name": "set_int_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1010, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_lag_trace_func", + "kind": 8, + "parent_name": "", + "name": "set_lag_trace_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1011, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_lowbo_func", + "kind": 8, + "parent_name": "", + "name": "set_lowbo_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1012, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_lp_name_func", + "kind": 8, + "parent_name": "", + "name": "set_lp_name_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1013, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_mat_func", + "kind": 8, + "parent_name": "", + "name": "set_mat_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1014, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_maxim_func", + "kind": 8, + "parent_name": "", + "name": "set_maxim_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1015, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_maxpivot_func", + "kind": 8, + "parent_name": "", + "name": "set_maxpivot_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1016, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_minim_func", + "kind": 8, + "parent_name": "", + "name": "set_minim_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1017, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_mip_gap_func", + "kind": 8, + "parent_name": "", + "name": "set_mip_gap_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1018, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_multiprice_func", + "kind": 8, + "parent_name": "", + "name": "set_multiprice_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1019, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_negrange_func", + "kind": 8, + "parent_name": "", + "name": "set_negrange_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1020, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_obj_func", + "kind": 8, + "parent_name": "", + "name": "set_obj_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1021, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_obj_bound_func", + "kind": 8, + "parent_name": "", + "name": "set_obj_bound_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1022, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_obj_fn_func", + "kind": 8, + "parent_name": "", + "name": "set_obj_fn_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1023, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_obj_fnex_func", + "kind": 8, + "parent_name": "", + "name": "set_obj_fnex_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1024, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_obj_in_basis_func", + "kind": 8, + "parent_name": "", + "name": "set_obj_in_basis_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1025, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_outputfile_func", + "kind": 8, + "parent_name": "", + "name": "set_outputfile_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1026, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_outputstream_func", + "kind": 8, + "parent_name": "", + "name": "set_outputstream_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1027, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_partialprice_func", + "kind": 8, + "parent_name": "", + "name": "set_partialprice_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1028, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_pivoting_func", + "kind": 8, + "parent_name": "", + "name": "set_pivoting_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1029, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_preferdual_func", + "kind": 8, + "parent_name": "", + "name": "set_preferdual_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1030, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_presolve_func", + "kind": 8, + "parent_name": "", + "name": "set_presolve_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1031, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_print_sol_func", + "kind": 8, + "parent_name": "", + "name": "set_print_sol_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1032, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_pseudocosts_func", + "kind": 8, + "parent_name": "", + "name": "set_pseudocosts_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1033, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_rh_func", + "kind": 8, + "parent_name": "", + "name": "set_rh_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1034, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_rh_range_func", + "kind": 8, + "parent_name": "", + "name": "set_rh_range_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1035, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_rh_vec_func", + "kind": 8, + "parent_name": "", + "name": "set_rh_vec_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1036, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_row_func", + "kind": 8, + "parent_name": "", + "name": "set_row_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1037, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_rowex_func", + "kind": 8, + "parent_name": "", + "name": "set_rowex_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1038, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_row_name_func", + "kind": 8, + "parent_name": "", + "name": "set_row_name_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1039, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_scalelimit_func", + "kind": 8, + "parent_name": "", + "name": "set_scalelimit_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1040, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_scaling_func", + "kind": 8, + "parent_name": "", + "name": "set_scaling_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1041, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_semicont_func", + "kind": 8, + "parent_name": "", + "name": "set_semicont_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1042, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_sense_func", + "kind": 8, + "parent_name": "", + "name": "set_sense_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1043, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_simplextype_func", + "kind": 8, + "parent_name": "", + "name": "set_simplextype_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1044, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_solutionlimit_func", + "kind": 8, + "parent_name": "", + "name": "set_solutionlimit_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1045, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_timeout_func", + "kind": 8, + "parent_name": "", + "name": "set_timeout_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1046, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_trace_func", + "kind": 8, + "parent_name": "", + "name": "set_trace_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1047, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_upbo_func", + "kind": 8, + "parent_name": "", + "name": "set_upbo_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1048, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_var_branch_func", + "kind": 8, + "parent_name": "", + "name": "set_var_branch_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1049, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_var_weights_func", + "kind": 8, + "parent_name": "", + "name": "set_var_weights_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1050, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_verbose_func", + "kind": 8, + "parent_name": "", + "name": "set_verbose_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1051, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_XLI_func", + "kind": 8, + "parent_name": "", + "name": "set_XLI_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1052, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@solve_func", + "kind": 8, + "parent_name": "", + "name": "solve_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1053, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@str_add_column_func", + "kind": 8, + "parent_name": "", + "name": "str_add_column_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1054, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@str_add_constraint_func", + "kind": 8, + "parent_name": "", + "name": "str_add_constraint_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1055, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@str_add_lag_con_func", + "kind": 8, + "parent_name": "", + "name": "str_add_lag_con_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1056, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@str_set_obj_fn_func", + "kind": 8, + "parent_name": "", + "name": "str_set_obj_fn_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1057, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@str_set_rh_vec_func", + "kind": 8, + "parent_name": "", + "name": "str_set_rh_vec_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1058, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@time_elapsed_func", + "kind": 8, + "parent_name": "", + "name": "time_elapsed_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1059, + "column": 27, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@unscale_func", + "kind": 8, + "parent_name": "", + "name": "unscale_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1060, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@write_lp_func", + "kind": 8, + "parent_name": "", + "name": "write_lp_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1061, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@write_LP_func", + "kind": 8, + "parent_name": "", + "name": "write_LP_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1062, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@write_mps_func", + "kind": 8, + "parent_name": "", + "name": "write_mps_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1063, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@write_MPS_func", + "kind": 8, + "parent_name": "", + "name": "write_MPS_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1064, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@write_freemps_func", + "kind": 8, + "parent_name": "", + "name": "write_freemps_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1065, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@write_freeMPS_func", + "kind": 8, + "parent_name": "", + "name": "write_freeMPS_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1066, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@write_XLI_func", + "kind": 8, + "parent_name": "", + "name": "write_XLI_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1067, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@write_basis_func", + "kind": 8, + "parent_name": "", + "name": "write_basis_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1068, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@write_params_func", + "kind": 8, + "parent_name": "", + "name": "write_params_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1069, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@userabortfunc", + "kind": 8, + "parent_name": "", + "name": "userabortfunc", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1074, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@reportfunc", + "kind": 8, + "parent_name": "", + "name": "reportfunc", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1075, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@explainfunc", + "kind": 8, + "parent_name": "", + "name": "explainfunc", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1076, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@getvectorfunc", + "kind": 8, + "parent_name": "", + "name": "getvectorfunc", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1077, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@getpackedfunc", + "kind": 8, + "parent_name": "", + "name": "getpackedfunc", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1078, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_OF_activefunc", + "kind": 8, + "parent_name": "", + "name": "get_OF_activefunc", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1079, + "column": 30, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@getMDOfunc", + "kind": 8, + "parent_name": "", + "name": "getMDOfunc", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1080, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@invertfunc", + "kind": 8, + "parent_name": "", + "name": "invertfunc", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1081, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_actionfunc", + "kind": 8, + "parent_name": "", + "name": "set_actionfunc", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1082, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@is_actionfunc", + "kind": 8, + "parent_name": "", + "name": "is_actionfunc", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1083, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@clear_actionfunc", + "kind": 8, + "parent_name": "", + "name": "clear_actionfunc", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1084, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@BFPchar", + "kind": 8, + "parent_name": "", + "name": "BFPchar", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1089, + "column": 32, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@BFP_lp", + "kind": 8, + "parent_name": "", + "name": "BFP_lp", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1090, + "column": 31, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@BFP_lpint", + "kind": 8, + "parent_name": "", + "name": "BFP_lpint", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1091, + "column": 31, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@BFPint_lp", + "kind": 8, + "parent_name": "", + "name": "BFPint_lp", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1092, + "column": 31, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@BFPint_lpint", + "kind": 8, + "parent_name": "", + "name": "BFPint_lpint", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1093, + "column": 31, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@BFPreal_lp", + "kind": 8, + "parent_name": "", + "name": "BFPreal_lp", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1094, + "column": 34, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@BFPrealp_lp", + "kind": 8, + "parent_name": "", + "name": "BFPrealp_lp", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1095, + "column": 35, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@BFP_lpbool", + "kind": 8, + "parent_name": "", + "name": "BFP_lpbool", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1096, + "column": 31, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@BFPint_lpbool", + "kind": 8, + "parent_name": "", + "name": "BFPint_lpbool", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1097, + "column": 31, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@BFPint_lpintintboolbool", + "kind": 8, + "parent_name": "", + "name": "BFPint_lpintintboolbool", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1098, + "column": 31, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@BFP_lprealint", + "kind": 8, + "parent_name": "", + "name": "BFP_lprealint", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1099, + "column": 31, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@BFP_lprealintrealint", + "kind": 8, + "parent_name": "", + "name": "BFP_lprealintrealint", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1100, + "column": 31, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@BFPbool_lp", + "kind": 8, + "parent_name": "", + "name": "BFPbool_lp", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1101, + "column": 31, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@BFPbool_lpbool", + "kind": 8, + "parent_name": "", + "name": "BFPbool_lpbool", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1102, + "column": 31, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@BFPbool_lpint", + "kind": 8, + "parent_name": "", + "name": "BFPbool_lpint", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1103, + "column": 31, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@BFPbool_lpintintchar", + "kind": 8, + "parent_name": "", + "name": "BFPbool_lpintintchar", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1104, + "column": 31, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@BFPbool_lpintintint", + "kind": 8, + "parent_name": "", + "name": "BFPbool_lpintintint", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1105, + "column": 31, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@BFPlreal_lpintintreal", + "kind": 8, + "parent_name": "", + "name": "BFPlreal_lpintintreal", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1106, + "column": 31, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@BFPreal_lplrealreal", + "kind": 8, + "parent_name": "", + "name": "BFPreal_lplrealreal", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1107, + "column": 34, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@getcolumnex_func", + "kind": 8, + "parent_name": "", + "name": "getcolumnex_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1109, + "column": 31, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@BFPint_lpintrealcbintint", + "kind": 8, + "parent_name": "", + "name": "BFPint_lpintrealcbintint", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1110, + "column": 31, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@XLIchar", + "kind": 8, + "parent_name": "", + "name": "XLIchar", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1114, + "column": 32, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@XLIbool_lpintintint", + "kind": 8, + "parent_name": "", + "name": "XLIbool_lpintintint", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1115, + "column": 31, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@XLIbool_lpcharcharcharint", + "kind": 8, + "parent_name": "", + "name": "XLIbool_lpcharcharcharint", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1116, + "column": 31, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@XLIbool_lpcharcharbool", + "kind": 8, + "parent_name": "", + "name": "XLIbool_lpcharcharbool", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1117, + "column": 31, + "hidden": false + }, + { + "usr": "c:@S@_lprec", + "kind": 3, + "parent_name": "", + "name": "_lprec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_lib.h", + "line": 1122, + "column": 8, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_matrix.h", + "file_last_write": 1686589611.0, + "definitions": [ + { + "usr": "c:lp_matrix.h@425@macro@HEADER_lp_matrix", + "kind": 9, + "parent_name": "", + "name": "HEADER_lp_matrix", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_matrix.h", + "line": 11, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_matrix.h@696@macro@MAT_ROUNDNONE", + "kind": 9, + "parent_name": "", + "name": "MAT_ROUNDNONE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_matrix.h", + "line": 26, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_matrix.h@733@macro@MAT_ROUNDABS", + "kind": 9, + "parent_name": "", + "name": "MAT_ROUNDABS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_matrix.h", + "line": 27, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_matrix.h@770@macro@MAT_ROUNDREL", + "kind": 9, + "parent_name": "", + "name": "MAT_ROUNDREL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_matrix.h", + "line": 28, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_matrix.h@807@macro@MAT_ROUNDABSREL", + "kind": 9, + "parent_name": "", + "name": "MAT_ROUNDABSREL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_matrix.h", + "line": 29, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_matrix.h@871@macro@MAT_ROUNDRC", + "kind": 9, + "parent_name": "", + "name": "MAT_ROUNDRC", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_matrix.h", + "line": 30, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_matrix.h@908@macro@MAT_ROUNDRCMIN", + "kind": 9, + "parent_name": "", + "name": "MAT_ROUNDRCMIN", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_matrix.h", + "line": 31, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_matrix.h@974@macro@MAT_ROUNDDEFAULT", + "kind": 9, + "parent_name": "", + "name": "MAT_ROUNDDEFAULT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_matrix.h", + "line": 33, + "column": 10, + "hidden": false + }, + { + "usr": "c:lp_matrix.h@1295@macro@NoLoopUnroll", + "kind": 9, + "parent_name": "", + "name": "NoLoopUnroll", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_matrix.h", + "line": 40, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_matrix.h@1361@macro@DirectArrayOF", + "kind": 9, + "parent_name": "", + "name": "DirectArrayOF", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_matrix.h", + "line": 41, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_matrix.h@1534@macro@CAM_Record", + "kind": 9, + "parent_name": "", + "name": "CAM_Record", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_matrix.h", + "line": 45, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_matrix.h@1571@macro@CAM_Vector", + "kind": 9, + "parent_name": "", + "name": "CAM_Vector", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_matrix.h", + "line": 46, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_matrix.h@1670@macro@MatrixColAccess", + "kind": 9, + "parent_name": "", + "name": "MatrixColAccess", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_matrix.h", + "line": 50, + "column": 10, + "hidden": false + }, + { + "usr": "c:lp_matrix.h@2678@macro@SET_MAT_ijA", + "kind": 9, + "parent_name": "", + "name": "SET_MAT_ijA", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_matrix.h", + "line": 69, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_matrix.h@2876@macro@COL_MAT_COLNR", + "kind": 9, + "parent_name": "", + "name": "COL_MAT_COLNR", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_matrix.h", + "line": 72, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_matrix.h@2938@macro@COL_MAT_ROWNR", + "kind": 9, + "parent_name": "", + "name": "COL_MAT_ROWNR", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_matrix.h", + "line": 73, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_matrix.h@3000@macro@COL_MAT_VALUE", + "kind": 9, + "parent_name": "", + "name": "COL_MAT_VALUE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_matrix.h", + "line": 74, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_matrix.h@3062@macro@COL_MAT_COPY", + "kind": 9, + "parent_name": "", + "name": "COL_MAT_COPY", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_matrix.h", + "line": 75, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_matrix.h@3302@macro@COL_MAT_MOVE", + "kind": 9, + "parent_name": "", + "name": "COL_MAT_MOVE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_matrix.h", + "line": 78, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_matrix.h@3572@macro@COL_MAT2_COLNR", + "kind": 9, + "parent_name": "", + "name": "COL_MAT2_COLNR", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_matrix.h", + "line": 81, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_matrix.h@3635@macro@COL_MAT2_ROWNR", + "kind": 9, + "parent_name": "", + "name": "COL_MAT2_ROWNR", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_matrix.h", + "line": 82, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_matrix.h@3698@macro@COL_MAT2_VALUE", + "kind": 9, + "parent_name": "", + "name": "COL_MAT2_VALUE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_matrix.h", + "line": 83, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_matrix.h@3761@macro@matRowColStep", + "kind": 9, + "parent_name": "", + "name": "matRowColStep", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_matrix.h", + "line": 84, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_matrix.h@3798@macro@matValueStep", + "kind": 9, + "parent_name": "", + "name": "matValueStep", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_matrix.h", + "line": 85, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_matrix.h@3923@macro@RAM_Index", + "kind": 9, + "parent_name": "", + "name": "RAM_Index", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_matrix.h", + "line": 91, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_matrix.h@3960@macro@RAM_FullCopy", + "kind": 9, + "parent_name": "", + "name": "RAM_FullCopy", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_matrix.h", + "line": 92, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_matrix.h@3997@macro@MatrixRowAccess", + "kind": 9, + "parent_name": "", + "name": "MatrixRowAccess", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_matrix.h", + "line": 93, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_matrix.h@4076@macro@ROW_MAT_COLNR", + "kind": 9, + "parent_name": "", + "name": "ROW_MAT_COLNR", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_matrix.h", + "line": 96, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_matrix.h@4145@macro@ROW_MAT_ROWNR", + "kind": 9, + "parent_name": "", + "name": "ROW_MAT_ROWNR", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_matrix.h", + "line": 97, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_matrix.h@4214@macro@ROW_MAT_VALUE", + "kind": 9, + "parent_name": "", + "name": "ROW_MAT_VALUE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_matrix.h", + "line": 98, + "column": 9, + "hidden": false + }, + { + "usr": "c:@S@_MATitem", + "kind": 3, + "parent_name": "", + "name": "_MATitem", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_matrix.h", + "line": 18, + "column": 16, + "hidden": false + }, + { + "usr": "c:lp_matrix.h@T@MATitem", + "kind": 8, + "parent_name": "", + "name": "MATitem", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_matrix.h", + "line": 23, + "column": 3, + "hidden": false + }, + { + "usr": "c:@S@_MATrec", + "kind": 3, + "parent_name": "", + "name": "_MATrec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_matrix.h", + "line": 113, + "column": 16, + "hidden": false + }, + { + "usr": "c:lp_matrix.h@T@MATrec", + "kind": 8, + "parent_name": "", + "name": "MATrec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_matrix.h", + "line": 164, + "column": 3, + "hidden": false + }, + { + "usr": "c:@S@_DeltaVrec", + "kind": 3, + "parent_name": "", + "name": "_DeltaVrec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_matrix.h", + "line": 166, + "column": 16, + "hidden": false + }, + { + "usr": "c:lp_matrix.h@T@DeltaVrec", + "kind": 8, + "parent_name": "", + "name": "DeltaVrec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_matrix.h", + "line": 171, + "column": 3, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_mipbb.h", + "file_last_write": 1686589611.0, + "definitions": [ + { + "usr": "c:lp_mipbb.h@424@macro@HEADER_lp_mipbb", + "kind": 9, + "parent_name": "", + "name": "HEADER_lp_mipbb", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_mipbb.h", + "line": 11, + "column": 9, + "hidden": false + }, + { + "usr": "c:@S@_BBrec", + "kind": 3, + "parent_name": "", + "name": "_BBrec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_mipbb.h", + "line": 18, + "column": 16, + "hidden": false + }, + { + "usr": "c:lp_mipbb.h@T@BBrec", + "kind": 8, + "parent_name": "", + "name": "BBrec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_mipbb.h", + "line": 43, + "column": 3, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_presolve.h", + "file_last_write": 1686589611.0, + "definitions": [ + { + "usr": "c:lp_presolve.h@427@macro@HEADER_lp_presolve", + "kind": 9, + "parent_name": "", + "name": "HEADER_lp_presolve", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_presolve.h", + "line": 11, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_presolve.h@808@macro@MAX_PSMERGELOOPS", + "kind": 9, + "parent_name": "", + "name": "MAX_PSMERGELOOPS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_presolve.h", + "line": 20, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_presolve.h@915@macro@MAX_PSLINDEPLOOPS", + "kind": 9, + "parent_name": "", + "name": "MAX_PSLINDEPLOOPS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_presolve.h", + "line": 21, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_presolve.h@1020@macro@MAX_PSBOUNDTIGHTENLOOPS", + "kind": 9, + "parent_name": "", + "name": "MAX_PSBOUNDTIGHTENLOOPS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_presolve.h", + "line": 22, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_presolve.h@1125@macro@MIN_SOS1LENGTH", + "kind": 9, + "parent_name": "", + "name": "MIN_SOS1LENGTH", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_presolve.h", + "line": 23, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_presolve.h@1239@macro@PRESOLVE_EPSVALUE", + "kind": 9, + "parent_name": "", + "name": "PRESOLVE_EPSVALUE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_presolve.h", + "line": 25, + "column": 11, + "hidden": false + }, + { + "usr": "c:lp_presolve.h@1344@macro@PRESOLVE_EPSPIVOT", + "kind": 9, + "parent_name": "", + "name": "PRESOLVE_EPSPIVOT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_presolve.h", + "line": 29, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_presolve.h@1448@macro@PRESOLVE_BOUNDSLACK", + "kind": 9, + "parent_name": "", + "name": "PRESOLVE_BOUNDSLACK", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_presolve.h", + "line": 30, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_presolve.h@1556@macro@DoPresolveRounding", + "kind": 9, + "parent_name": "", + "name": "DoPresolveRounding", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_presolve.h", + "line": 32, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_presolve.h@1844@macro@DivisorIntegralityLogicEQ2", + "kind": 9, + "parent_name": "", + "name": "DivisorIntegralityLogicEQ2", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_presolve.h", + "line": 38, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_presolve.h@1951@macro@FindImpliedEqualities", + "kind": 9, + "parent_name": "", + "name": "FindImpliedEqualities", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_presolve.h", + "line": 39, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_presolve.h@2057@macro@Eq2Reldiff", + "kind": 9, + "parent_name": "", + "name": "Eq2Reldiff", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_presolve.h", + "line": 40, + "column": 9, + "hidden": false + }, + { + "usr": "c:@S@_psrec", + "kind": 3, + "parent_name": "", + "name": "_psrec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_presolve.h", + "line": 46, + "column": 16, + "hidden": false + }, + { + "usr": "c:lp_presolve.h@T@psrec", + "kind": 8, + "parent_name": "", + "name": "psrec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_presolve.h", + "line": 60, + "column": 3, + "hidden": false + }, + { + "usr": "c:@S@_presolverec", + "kind": 3, + "parent_name": "", + "name": "_presolverec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_presolve.h", + "line": 62, + "column": 16, + "hidden": false + }, + { + "usr": "c:lp_presolve.h@T@presolverec", + "kind": 8, + "parent_name": "", + "name": "presolverec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_presolve.h", + "line": 81, + "column": 3, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_price.h", + "file_last_write": 1686589611.0, + "definitions": [ + { + "usr": "c:lp_price.h@424@macro@HEADER_lp_price", + "kind": 9, + "parent_name": "", + "name": "HEADER_lp_price", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_price.h", + "line": 11, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_price.h@613@macro@UseSortOnBound_Improve", + "kind": 9, + "parent_name": "", + "name": "UseSortOnBound_Improve", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_price.h", + "line": 15, + "column": 9, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_pricePSE.h", + "file_last_write": 1686589611.0, + "definitions": [ + { + "usr": "c:lp_pricePSE.h@427@macro@HEADER_lp_pricePSE", + "kind": 9, + "parent_name": "", + "name": "HEADER_lp_pricePSE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_pricePSE.h", + "line": 11, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_pricePSE.h@482@macro@ApplySteepestEdgeMinimum", + "kind": 9, + "parent_name": "", + "name": "ApplySteepestEdgeMinimum", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_pricePSE.h", + "line": 15, + "column": 9, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_report.h", + "file_last_write": 1686589611.0, + "definitions": [ + { + "usr": "c:lp_report.h@425@macro@HEADER_lp_report", + "kind": 9, + "parent_name": "", + "name": "HEADER_lp_report", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_report.h", + "line": 11, + "column": 9, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "file_last_write": 1686589611.0, + "definitions": [ + { + "usr": "c:lp_rlp.h@402@macro@YY_INT_ALIGNED", + "kind": 9, + "parent_name": "", + "name": "YY_INT_ALIGNED", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 11, + "column": 10, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@483@macro@FLEX_SCANNER", + "kind": 9, + "parent_name": "", + "name": "FLEX_SCANNER", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 15, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@505@macro@YY_FLEX_MAJOR_VERSION", + "kind": 9, + "parent_name": "", + "name": "YY_FLEX_MAJOR_VERSION", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 16, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@538@macro@YY_FLEX_MINOR_VERSION", + "kind": 9, + "parent_name": "", + "name": "YY_FLEX_MINOR_VERSION", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 17, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@571@macro@YY_FLEX_SUBMINOR_VERSION", + "kind": 9, + "parent_name": "", + "name": "YY_FLEX_SUBMINOR_VERSION", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 18, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@642@macro@FLEX_BETA", + "kind": 9, + "parent_name": "", + "name": "FLEX_BETA", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 20, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@956@macro@FLEXINT_H", + "kind": 9, + "parent_name": "", + "name": "FLEXINT_H", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 36, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@2529@macro@YY_USE_CONST", + "kind": 9, + "parent_name": "", + "name": "YY_USE_CONST", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 99, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@2765@macro@lp_yyconst", + "kind": 9, + "parent_name": "", + "name": "lp_yyconst", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 112, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@2862@macro@YY_NULL", + "kind": 9, + "parent_name": "", + "name": "YY_NULL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 118, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@3116@macro@YY_SC_TO_UI", + "kind": 9, + "parent_name": "", + "name": "YY_SC_TO_UI", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 125, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@3236@macro@YY_TYPEDEF_YY_SCANNER_T", + "kind": 9, + "parent_name": "", + "name": "YY_TYPEDEF_YY_SCANNER_T", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 129, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@3415@macro@lp_yyin", + "kind": 9, + "parent_name": "", + "name": "lp_yyin", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 135, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@3450@macro@lp_yyout", + "kind": 9, + "parent_name": "", + "name": "lp_yyout", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 136, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@3487@macro@lp_yyextra", + "kind": 9, + "parent_name": "", + "name": "lp_yyextra", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 137, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@3528@macro@lp_yyleng", + "kind": 9, + "parent_name": "", + "name": "lp_yyleng", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 138, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@3567@macro@lp_yytext", + "kind": 9, + "parent_name": "", + "name": "lp_yytext", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 139, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@3606@macro@lp_yylineno", + "kind": 9, + "parent_name": "", + "name": "lp_yylineno", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 140, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@3671@macro@lp_yycolumn", + "kind": 9, + "parent_name": "", + "name": "lp_yycolumn", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 141, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@3736@macro@lp_yy_flex_debug", + "kind": 9, + "parent_name": "", + "name": "lp_yy_flex_debug", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 142, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@3967@macro@BEGIN", + "kind": 9, + "parent_name": "", + "name": "BEGIN", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 148, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@4181@macro@YY_START", + "kind": 9, + "parent_name": "", + "name": "YY_START", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 154, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@4231@macro@YYSTATE", + "kind": 9, + "parent_name": "", + "name": "YYSTATE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 155, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@4317@macro@YY_STATE_EOF", + "kind": 9, + "parent_name": "", + "name": "YY_STATE_EOF", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 158, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@4440@macro@YY_NEW_FILE", + "kind": 9, + "parent_name": "", + "name": "YY_NEW_FILE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 161, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@4500@macro@YY_END_OF_BUFFER_CHAR", + "kind": 9, + "parent_name": "", + "name": "YY_END_OF_BUFFER_CHAR", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 163, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@4593@macro@YY_BUF_SIZE", + "kind": 9, + "parent_name": "", + "name": "YY_BUF_SIZE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 167, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@4726@macro@YY_STATE_BUF_SIZE", + "kind": 9, + "parent_name": "", + "name": "YY_STATE_BUF_SIZE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 172, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@4840@macro@YY_TYPEDEF_YY_BUFFER_STATE", + "kind": 9, + "parent_name": "", + "name": "YY_TYPEDEF_YY_BUFFER_STATE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 175, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@4939@macro@EOB_ACT_CONTINUE_SCAN", + "kind": 9, + "parent_name": "", + "name": "EOB_ACT_CONTINUE_SCAN", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 179, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@4972@macro@EOB_ACT_END_OF_FILE", + "kind": 9, + "parent_name": "", + "name": "EOB_ACT_END_OF_FILE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 180, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@5003@macro@EOB_ACT_LAST_MATCH", + "kind": 9, + "parent_name": "", + "name": "EOB_ACT_LAST_MATCH", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 181, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@5573@macro@YY_LESS_LINENO", + "kind": 9, + "parent_name": "", + "name": "YY_LESS_LINENO", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 190, + "column": 14, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@5925@macro@lp_yyless", + "kind": 9, + "parent_name": "", + "name": "lp_yyless", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 199, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@6338@macro@unput", + "kind": 9, + "parent_name": "", + "name": "unput", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 212, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@6442@macro@YY_TYPEDEF_YY_SIZE_T", + "kind": 9, + "parent_name": "", + "name": "YY_TYPEDEF_YY_SIZE_T", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 215, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@6547@macro@YY_STRUCT_YY_BUFFER_STATE", + "kind": 9, + "parent_name": "", + "name": "YY_STRUCT_YY_BUFFER_STATE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 220, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@7824@macro@YY_BUFFER_NEW", + "kind": 9, + "parent_name": "", + "name": "YY_BUFFER_NEW", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 267, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@7849@macro@YY_BUFFER_NORMAL", + "kind": 9, + "parent_name": "", + "name": "YY_BUFFER_NORMAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 268, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@8364@macro@YY_BUFFER_EOF_PENDING", + "kind": 9, + "parent_name": "", + "name": "YY_BUFFER_EOF_PENDING", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 279, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@8647@macro@YY_CURRENT_BUFFER", + "kind": 9, + "parent_name": "", + "name": "YY_CURRENT_BUFFER", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 290, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@8977@macro@YY_CURRENT_BUFFER_LVALUE", + "kind": 9, + "parent_name": "", + "name": "YY_CURRENT_BUFFER_LVALUE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 297, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@9828@macro@YY_FLUSH_BUFFER", + "kind": 9, + "parent_name": "", + "name": "YY_FLUSH_BUFFER", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 311, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@10376@macro@lp_yy_new_buffer", + "kind": 9, + "parent_name": "", + "name": "lp_yy_new_buffer", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 321, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@10424@macro@lp_yy_set_interactive", + "kind": 9, + "parent_name": "", + "name": "lp_yy_set_interactive", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 323, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@10750@macro@lp_yy_set_bol", + "kind": 9, + "parent_name": "", + "name": "lp_yy_set_bol", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 333, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@11043@macro@YY_AT_BOL", + "kind": 9, + "parent_name": "", + "name": "YY_AT_BOL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 343, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@11133@macro@lp_yywrap", + "kind": 9, + "parent_name": "", + "name": "lp_yywrap", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 347, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@11157@macro@YY_SKIP_YYWRAP", + "kind": 9, + "parent_name": "", + "name": "YY_SKIP_YYWRAP", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 348, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@11250@macro@lp_yytext_ptr", + "kind": 9, + "parent_name": "", + "name": "lp_yytext_ptr", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 354, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@11738@macro@YY_DO_BEFORE_ACTION", + "kind": 9, + "parent_name": "", + "name": "YY_DO_BEFORE_ACTION", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 364, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@11956@macro@YY_NUM_RULES", + "kind": 9, + "parent_name": "", + "name": "YY_NUM_RULES", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 371, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@11981@macro@YY_END_OF_BUFFER", + "kind": 9, + "parent_name": "", + "name": "YY_END_OF_BUFFER", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 372, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@23523@macro@REJECT", + "kind": 9, + "parent_name": "", + "name": "REJECT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 591, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@23568@macro@lp_yymore", + "kind": 9, + "parent_name": "", + "name": "lp_yymore", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 592, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@23621@macro@YY_MORE_ADJ", + "kind": 9, + "parent_name": "", + "name": "YY_MORE_ADJ", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 593, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@23644@macro@YY_RESTORE_YY_MORE_OFFSET", + "kind": 9, + "parent_name": "", + "name": "YY_RESTORE_YY_MORE_OFFSET", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 594, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@24259@macro@INITIAL", + "kind": 9, + "parent_name": "", + "name": "INITIAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 610, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@24278@macro@COMMENT", + "kind": 9, + "parent_name": "", + "name": "COMMENT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 611, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@24297@macro@LINECOMMENT", + "kind": 9, + "parent_name": "", + "name": "LINECOMMENT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 612, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@24614@macro@YY_EXTRA_TYPE", + "kind": 9, + "parent_name": "", + "name": "YY_EXTRA_TYPE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 623, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@25890@macro@lp_yylval", + "kind": 9, + "parent_name": "", + "name": "lp_yylval", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 666, + "column": 17, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@27903@macro@YY_READ_BUF_SIZE", + "kind": 9, + "parent_name": "", + "name": "YY_READ_BUF_SIZE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 739, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@28129@macro@ECHO", + "kind": 9, + "parent_name": "", + "name": "ECHO", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 747, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@28330@macro@YY_INPUT", + "kind": 9, + "parent_name": "", + "name": "YY_INPUT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 754, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@29302@macro@lp_yyterminate", + "kind": 9, + "parent_name": "", + "name": "lp_yyterminate", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 791, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@29445@macro@YY_START_STACK_INCR", + "kind": 9, + "parent_name": "", + "name": "YY_START_STACK_INCR", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 796, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@29540@macro@YY_FATAL_ERROR", + "kind": 9, + "parent_name": "", + "name": "YY_FATAL_ERROR", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 801, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@29799@macro@YY_DECL_IS_OURS", + "kind": 9, + "parent_name": "", + "name": "YY_DECL_IS_OURS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 810, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@29924@macro@YY_DECL", + "kind": 9, + "parent_name": "", + "name": "YY_DECL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 815, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@30182@macro@YY_USER_ACTION", + "kind": 9, + "parent_name": "", + "name": "YY_USER_ACTION", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 823, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@30280@macro@YY_BREAK", + "kind": 9, + "parent_name": "", + "name": "YY_BREAK", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 828, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@30315@macro@YY_RULE_SETUP", + "kind": 9, + "parent_name": "", + "name": "YY_RULE_SETUP", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 831, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@66480@macro@YY_EXIT_FAILURE", + "kind": 9, + "parent_name": "", + "name": "YY_EXIT_FAILURE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 2102, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@66757@macro@lp_yyless", + "kind": 9, + "parent_name": "", + "name": "lp_yyless", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 2114, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@76833@macro@YYTABLES_NAME", + "kind": 9, + "parent_name": "", + "name": "YYTABLES_NAME", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 2459, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@T@flex_int8_t", + "kind": 8, + "parent_name": "", + "name": "flex_int8_t", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 57, + "column": 21, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@T@flex_int16_t", + "kind": 8, + "parent_name": "", + "name": "flex_int16_t", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 58, + "column": 19, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@T@flex_int32_t", + "kind": 8, + "parent_name": "", + "name": "flex_int32_t", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 59, + "column": 13, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@T@flex_uint8_t", + "kind": 8, + "parent_name": "", + "name": "flex_uint8_t", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 60, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@T@flex_uint16_t", + "kind": 8, + "parent_name": "", + "name": "flex_uint16_t", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 61, + "column": 28, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@T@flex_uint32_t", + "kind": 8, + "parent_name": "", + "name": "flex_uint32_t", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 62, + "column": 22, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@T@lp_yyscan_t", + "kind": 8, + "parent_name": "", + "name": "lp_yyscan_t", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 130, + "column": 15, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@T@YY_BUFFER_STATE", + "kind": 8, + "parent_name": "", + "name": "YY_BUFFER_STATE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 176, + "column": 36, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@T@lp_yy_size_t", + "kind": 8, + "parent_name": "", + "name": "lp_yy_size_t", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 216, + "column": 16, + "hidden": false + }, + { + "usr": "c:@S@lp_yy_buffer_state", + "kind": 3, + "parent_name": "", + "name": "lp_yy_buffer_state", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 221, + "column": 8, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@T@YY_CHAR", + "kind": 8, + "parent_name": "", + "name": "YY_CHAR", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 350, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@T@lp_yy_state_type", + "kind": 8, + "parent_name": "", + "name": "lp_yy_state_type", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 352, + "column": 13, + "hidden": false + }, + { + "usr": "c:@S@lp_yy_trans_info", + "kind": 3, + "parent_name": "", + "name": "lp_yy_trans_info", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 375, + "column": 8, + "hidden": false + }, + { + "usr": "c:@S@lp_yyguts_t", + "kind": 3, + "parent_name": "", + "name": "lp_yyguts_t", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 627, + "column": 8, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@F@lp_yy_get_next_buffer#*v#", + "kind": 6, + "parent_name": "", + "name": "lp_yy_get_next_buffer(lp_yyscan_t)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 1421, + "column": 12, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@F@lp_yy_get_previous_state#*v#", + "kind": 6, + "parent_name": "", + "name": "lp_yy_get_previous_state(lp_yyscan_t)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 1556, + "column": 29, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@F@lp_yy_try_NUL_trans#I#*v#", + "kind": 6, + "parent_name": "", + "name": "lp_yy_try_NUL_trans(lp_yy_state_type, lp_yyscan_t)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 1590, + "column": 29, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@F@lp_yyunput#I#*C#*v#", + "kind": 6, + "parent_name": "", + "name": "lp_yyunput(int, char *, lp_yyscan_t)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 1614, + "column": 17, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@F@lp_yyinput#*v#", + "kind": 6, + "parent_name": "", + "name": "lp_yyinput(lp_yyscan_t)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 1658, + "column": 23, + "hidden": false + }, + { + "usr": "c:@F@lp_yyrestart#*$@S@_iobuf#*v#", + "kind": 6, + "parent_name": "", + "name": "lp_yyrestart(FILE *, lp_yyscan_t)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 1744, + "column": 10, + "hidden": false + }, + { + "usr": "c:@F@lp_yy_switch_to_buffer#*$@S@lp_yy_buffer_state#*v#", + "kind": 6, + "parent_name": "", + "name": "lp_yy_switch_to_buffer(YY_BUFFER_STATE, lp_yyscan_t)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 1762, + "column": 10, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@F@lp_yy_load_buffer_state#*v#", + "kind": 6, + "parent_name": "", + "name": "lp_yy_load_buffer_state(lp_yyscan_t)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 1794, + "column": 13, + "hidden": false + }, + { + "usr": "c:@F@lp_yy_create_buffer#*$@S@_iobuf#I#*v#", + "kind": 6, + "parent_name": "", + "name": "lp_yy_create_buffer(FILE *, int, lp_yyscan_t)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 1809, + "column": 21, + "hidden": false + }, + { + "usr": "c:@F@lp_yy_delete_buffer#*$@S@lp_yy_buffer_state#*v#", + "kind": 6, + "parent_name": "", + "name": "lp_yy_delete_buffer(YY_BUFFER_STATE, lp_yyscan_t)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 1837, + "column": 10, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@F@lp_yy_init_buffer#*$@S@lp_yy_buffer_state#*$@S@_iobuf#*v#", + "kind": 6, + "parent_name": "", + "name": "lp_yy_init_buffer(YY_BUFFER_STATE, FILE *, lp_yyscan_t)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 1861, + "column": 17, + "hidden": false + }, + { + "usr": "c:@F@lp_yy_flush_buffer#*$@S@lp_yy_buffer_state#*v#", + "kind": 6, + "parent_name": "", + "name": "lp_yy_flush_buffer(YY_BUFFER_STATE, lp_yyscan_t)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 1890, + "column": 10, + "hidden": false + }, + { + "usr": "c:@F@lp_yypush_buffer_state#*$@S@lp_yy_buffer_state#*v#", + "kind": 6, + "parent_name": "", + "name": "lp_yypush_buffer_state(YY_BUFFER_STATE, lp_yyscan_t)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 1920, + "column": 6, + "hidden": false + }, + { + "usr": "c:@F@lp_yypop_buffer_state#*v#", + "kind": 6, + "parent_name": "", + "name": "lp_yypop_buffer_state(lp_yyscan_t)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 1951, + "column": 6, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@F@lp_yyensure_buffer_stack#*v#", + "kind": 6, + "parent_name": "", + "name": "lp_yyensure_buffer_stack(lp_yyscan_t)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 1971, + "column": 13, + "hidden": false + }, + { + "usr": "c:@F@lp_yy_scan_buffer#*C#k#*v#", + "kind": 6, + "parent_name": "", + "name": "lp_yy_scan_buffer(char *, lp_yy_size_t, lp_yyscan_t)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 2021, + "column": 17, + "hidden": false + }, + { + "usr": "c:@F@lp_yy_scan_string#*1C#*v#", + "kind": 6, + "parent_name": "", + "name": "lp_yy_scan_string(const char *, lp_yyscan_t)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 2058, + "column": 17, + "hidden": false + }, + { + "usr": "c:@F@lp_yy_scan_bytes#*1C#I#*v#", + "kind": 6, + "parent_name": "", + "name": "lp_yy_scan_bytes(const char *, int, lp_yyscan_t)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 2071, + "column": 17, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@F@lp_yy_fatal_error#*1C#*v#", + "kind": 6, + "parent_name": "", + "name": "lp_yy_fatal_error(const char *, lp_yyscan_t)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 2105, + "column": 13, + "hidden": false + }, + { + "usr": "c:@F@lp_yyget_extra#*v#", + "kind": 6, + "parent_name": "", + "name": "lp_yyget_extra(lp_yyscan_t)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 2133, + "column": 15, + "hidden": false + }, + { + "usr": "c:@F@lp_yyget_lineno#*v#", + "kind": 6, + "parent_name": "", + "name": "lp_yyget_lineno(lp_yyscan_t)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 2142, + "column": 5, + "hidden": false + }, + { + "usr": "c:@F@lp_yyget_column#*v#", + "kind": 6, + "parent_name": "", + "name": "lp_yyget_column(lp_yyscan_t)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 2155, + "column": 5, + "hidden": false + }, + { + "usr": "c:@F@lp_yyget_in#*v#", + "kind": 6, + "parent_name": "", + "name": "lp_yyget_in(lp_yyscan_t)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 2168, + "column": 7, + "hidden": false + }, + { + "usr": "c:@F@lp_yyget_out#*v#", + "kind": 6, + "parent_name": "", + "name": "lp_yyget_out(lp_yyscan_t)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 2177, + "column": 7, + "hidden": false + }, + { + "usr": "c:@F@lp_yyget_leng#*v#", + "kind": 6, + "parent_name": "", + "name": "lp_yyget_leng(lp_yyscan_t)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 2186, + "column": 5, + "hidden": false + }, + { + "usr": "c:@F@lp_yyget_text#*v#", + "kind": 6, + "parent_name": "", + "name": "lp_yyget_text(lp_yyscan_t)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 2196, + "column": 7, + "hidden": false + }, + { + "usr": "c:@F@lp_yyset_extra#*v#S0_#", + "kind": 6, + "parent_name": "", + "name": "lp_yyset_extra(void *, lp_yyscan_t)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 2206, + "column": 6, + "hidden": false + }, + { + "usr": "c:@F@lp_yyset_lineno#I#*v#", + "kind": 6, + "parent_name": "", + "name": "lp_yyset_lineno(int, lp_yyscan_t)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 2216, + "column": 6, + "hidden": false + }, + { + "usr": "c:@F@lp_yyset_column#I#*v#", + "kind": 6, + "parent_name": "", + "name": "lp_yyset_column(int, lp_yyscan_t)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 2231, + "column": 6, + "hidden": false + }, + { + "usr": "c:@F@lp_yyset_in#*$@S@_iobuf#*v#", + "kind": 6, + "parent_name": "", + "name": "lp_yyset_in(FILE *, lp_yyscan_t)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 2248, + "column": 6, + "hidden": false + }, + { + "usr": "c:@F@lp_yyset_out#*$@S@_iobuf#*v#", + "kind": 6, + "parent_name": "", + "name": "lp_yyset_out(FILE *, lp_yyscan_t)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 2254, + "column": 6, + "hidden": false + }, + { + "usr": "c:@F@lp_yyget_debug#*v#", + "kind": 6, + "parent_name": "", + "name": "lp_yyget_debug(lp_yyscan_t)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 2260, + "column": 5, + "hidden": false + }, + { + "usr": "c:@F@lp_yyset_debug#I#*v#", + "kind": 6, + "parent_name": "", + "name": "lp_yyset_debug(int, lp_yyscan_t)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 2266, + "column": 6, + "hidden": false + }, + { + "usr": "c:@F@lp_yyget_lval#*v#", + "kind": 6, + "parent_name": "", + "name": "lp_yyget_lval(lp_yyscan_t)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 2274, + "column": 11, + "hidden": false + }, + { + "usr": "c:@F@lp_yyset_lval#*I#*v#", + "kind": 6, + "parent_name": "", + "name": "lp_yyset_lval(int *, lp_yyscan_t)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 2280, + "column": 6, + "hidden": false + }, + { + "usr": "c:@F@lp_yylex_init#**v#", + "kind": 6, + "parent_name": "", + "name": "lp_yylex_init(lp_yyscan_t *)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 2293, + "column": 5, + "hidden": false + }, + { + "usr": "c:@F@lp_yylex_init_extra#*v#*S0_#", + "kind": 6, + "parent_name": "", + "name": "lp_yylex_init_extra(void *, lp_yyscan_t *)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 2322, + "column": 5, + "hidden": false + }, + { + "usr": "c:lp_rlp.h@F@lp_yy_init_globals#*v#", + "kind": 6, + "parent_name": "", + "name": "lp_yy_init_globals(lp_yyscan_t)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 2350, + "column": 12, + "hidden": false + }, + { + "usr": "c:@F@lp_yylex_destroy#*v#", + "kind": 6, + "parent_name": "", + "name": "lp_yylex_destroy(lp_yyscan_t)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 2384, + "column": 5, + "hidden": false + }, + { + "usr": "c:@F@lp_yyalloc#k#*v#", + "kind": 6, + "parent_name": "", + "name": "lp_yyalloc(lp_yy_size_t, lp_yyscan_t)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 2437, + "column": 7, + "hidden": false + }, + { + "usr": "c:@F@lp_yyrealloc#*v#k#S0_#", + "kind": 6, + "parent_name": "", + "name": "lp_yyrealloc(void *, lp_yy_size_t, lp_yyscan_t)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 2442, + "column": 7, + "hidden": false + }, + { + "usr": "c:@F@lp_yyfree#*v#S0_#", + "kind": 6, + "parent_name": "", + "name": "lp_yyfree(void *, lp_yyscan_t)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_rlp.h", + "line": 2454, + "column": 6, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_scale.h", + "file_last_write": 1686589611.0, + "definitions": [ + { + "usr": "c:lp_scale.h@424@macro@HEADER_lp_scale", + "kind": 9, + "parent_name": "", + "name": "HEADER_lp_scale", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_scale.h", + "line": 11, + "column": 9, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_simplex.h", + "file_last_write": 1686589611.0, + "definitions": [ + { + "usr": "c:lp_simplex.h@426@macro@HEADER_lp_simplex", + "kind": 9, + "parent_name": "", + "name": "HEADER_lp_simplex", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_simplex.h", + "line": 11, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_simplex.h@480@macro@ForceDualSimplexInBB", + "kind": 9, + "parent_name": "", + "name": "ForceDualSimplexInBB", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_simplex.h", + "line": 15, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_simplex.h@570@macro@AssumeHighAccuracyInBB", + "kind": 9, + "parent_name": "", + "name": "AssumeHighAccuracyInBB", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_simplex.h", + "line": 16, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_simplex.h@726@macro@primal_UseRejectionList", + "kind": 9, + "parent_name": "", + "name": "primal_UseRejectionList", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_simplex.h", + "line": 19, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_simplex.h@759@macro@dual_UseRejectionList", + "kind": 9, + "parent_name": "", + "name": "dual_UseRejectionList", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_simplex.h", + "line": 20, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_simplex.h@790@macro@dual_RemoveBasicFixedVars", + "kind": 9, + "parent_name": "", + "name": "dual_RemoveBasicFixedVars", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_simplex.h", + "line": 21, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_simplex.h@911@macro@AcceptMarginalAccuracy", + "kind": 9, + "parent_name": "", + "name": "AcceptMarginalAccuracy", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_simplex.h", + "line": 23, + "column": 9, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "file_last_write": 1686589611.0, + "definitions": [ + { + "usr": "c:lp_types.h@424@macro@HEADER_lp_types", + "kind": 9, + "parent_name": "", + "name": "HEADER_lp_types", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 11, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@782@macro@LLONG", + "kind": 9, + "parent_name": "", + "name": "LLONG", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 23, + "column": 13, + "hidden": false + }, + { + "usr": "c:lp_types.h@882@macro@COUNTER", + "kind": 9, + "parent_name": "", + "name": "COUNTER", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 30, + "column": 11, + "hidden": false + }, + { + "usr": "c:lp_types.h@934@macro@LPSREAL", + "kind": 9, + "parent_name": "", + "name": "LPSREAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 34, + "column": 11, + "hidden": false + }, + { + "usr": "c:lp_types.h@1000@macro@REALXP", + "kind": 9, + "parent_name": "", + "name": "REALXP", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 39, + "column": 13, + "hidden": false + }, + { + "usr": "c:lp_types.h@1325@macro@LREAL", + "kind": 9, + "parent_name": "", + "name": "LREAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 49, + "column": 13, + "hidden": false + }, + { + "usr": "c:lp_types.h@1441@macro@RESULTVALUEMASK", + "kind": 9, + "parent_name": "", + "name": "RESULTVALUEMASK", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 53, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@1614@macro@INDEXVALUEMASK", + "kind": 9, + "parent_name": "", + "name": "INDEXVALUEMASK", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 55, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@1728@macro@DEF_STRBUFSIZE", + "kind": 9, + "parent_name": "", + "name": "DEF_STRBUFSIZE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 58, + "column": 11, + "hidden": false + }, + { + "usr": "c:lp_types.h@2377@macro@MYBOOL", + "kind": 9, + "parent_name": "", + "name": "MYBOOL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 86, + "column": 11, + "hidden": false + }, + { + "usr": "c:lp_types.h@2738@macro@FALSE", + "kind": 9, + "parent_name": "", + "name": "FALSE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 97, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@2774@macro@TRUE", + "kind": 9, + "parent_name": "", + "name": "TRUE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 98, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@2810@macro@AUTOMATIC", + "kind": 9, + "parent_name": "", + "name": "AUTOMATIC", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 99, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@2846@macro@DYNAMIC", + "kind": 9, + "parent_name": "", + "name": "DYNAMIC", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 100, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@2924@macro@COMP_PREFERCANDIDATE", + "kind": 9, + "parent_name": "", + "name": "COMP_PREFERCANDIDATE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 103, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@2960@macro@COMP_PREFERNONE", + "kind": 9, + "parent_name": "", + "name": "COMP_PREFERNONE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 104, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@2996@macro@COMP_PREFERINCUMBENT", + "kind": 9, + "parent_name": "", + "name": "COMP_PREFERINCUMBENT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 105, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@3068@macro@LIB_LOADED", + "kind": 9, + "parent_name": "", + "name": "LIB_LOADED", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 108, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@3104@macro@LIB_NOTFOUND", + "kind": 9, + "parent_name": "", + "name": "LIB_NOTFOUND", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 109, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@3140@macro@LIB_NOINFO", + "kind": 9, + "parent_name": "", + "name": "LIB_NOINFO", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 110, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@3176@macro@LIB_NOFUNCTION", + "kind": 9, + "parent_name": "", + "name": "LIB_NOFUNCTION", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 111, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@3212@macro@LIB_VERINVALID", + "kind": 9, + "parent_name": "", + "name": "LIB_VERINVALID", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 112, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@3248@macro@LIB_STR_LOADED", + "kind": 9, + "parent_name": "", + "name": "LIB_STR_LOADED", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 113, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@3304@macro@LIB_STR_NOTFOUND", + "kind": 9, + "parent_name": "", + "name": "LIB_STR_NOTFOUND", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 114, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@3355@macro@LIB_STR_NOINFO", + "kind": 9, + "parent_name": "", + "name": "LIB_STR_NOINFO", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 115, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@3407@macro@LIB_STR_NOFUNCTION", + "kind": 9, + "parent_name": "", + "name": "LIB_STR_NOFUNCTION", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 116, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@3467@macro@LIB_STR_VERINVALID", + "kind": 9, + "parent_name": "", + "name": "LIB_STR_VERINVALID", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 117, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@3524@macro@LIB_STR_MAXLEN", + "kind": 9, + "parent_name": "", + "name": "LIB_STR_MAXLEN", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 118, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@3808@macro@__WINAPI", + "kind": 9, + "parent_name": "", + "name": "__WINAPI", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 124, + "column": 10, + "hidden": false + }, + { + "usr": "c:lp_types.h@3950@macro@__VACALL", + "kind": 9, + "parent_name": "", + "name": "__VACALL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 130, + "column": 10, + "hidden": false + }, + { + "usr": "c:lp_types.h@4368@macro@__EXPORT_TYPE", + "kind": 9, + "parent_name": "", + "name": "__EXPORT_TYPE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 152, + "column": 13, + "hidden": false + }, + { + "usr": "c:lp_types.h@4431@macro@__EXTERN_C", + "kind": 9, + "parent_name": "", + "name": "__EXTERN_C", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 157, + "column": 13, + "hidden": false + }, + { + "usr": "c:lp_types.h@4914@macro@STATIC", + "kind": 9, + "parent_name": "", + "name": "STATIC", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 188, + "column": 11, + "hidden": false + }, + { + "usr": "c:lp_types.h@4992@macro@INLINE", + "kind": 9, + "parent_name": "", + "name": "INLINE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 193, + "column": 13, + "hidden": false + }, + { + "usr": "c:lp_types.h@5346@macro@my_limitrange", + "kind": 9, + "parent_name": "", + "name": "my_limitrange", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 203, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@5446@macro@my_mod", + "kind": 9, + "parent_name": "", + "name": "my_mod", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 205, + "column": 11, + "hidden": false + }, + { + "usr": "c:lp_types.h@5497@macro@my_if", + "kind": 9, + "parent_name": "", + "name": "my_if", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 207, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@5548@macro@my_sign", + "kind": 9, + "parent_name": "", + "name": "my_sign", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 208, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@5609@macro@my_chsign", + "kind": 9, + "parent_name": "", + "name": "my_chsign", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 210, + "column": 11, + "hidden": false + }, + { + "usr": "c:lp_types.h@5836@macro@my_flipsign", + "kind": 9, + "parent_name": "", + "name": "my_flipsign", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 214, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@5909@macro@my_roundzero", + "kind": 9, + "parent_name": "", + "name": "my_roundzero", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 215, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@5983@macro@my_avoidtiny", + "kind": 9, + "parent_name": "", + "name": "my_avoidtiny", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 216, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@6067@macro@my_infinite", + "kind": 9, + "parent_name": "", + "name": "my_infinite", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 219, + "column": 11, + "hidden": false + }, + { + "usr": "c:lp_types.h@6208@macro@my_inflimit", + "kind": 9, + "parent_name": "", + "name": "my_inflimit", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 223, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@6400@macro@my_precision", + "kind": 9, + "parent_name": "", + "name": "my_precision", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 227, + "column": 11, + "hidden": false + }, + { + "usr": "c:lp_types.h@6461@macro@my_reldiff", + "kind": 9, + "parent_name": "", + "name": "my_reldiff", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 229, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@6537@macro@my_boundstr", + "kind": 9, + "parent_name": "", + "name": "my_boundstr", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 230, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@6664@macro@my_boolstr", + "kind": 9, + "parent_name": "", + "name": "my_boolstr", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 232, + "column": 11, + "hidden": false + }, + { + "usr": "c:lp_types.h@6730@macro@my_basisstr", + "kind": 9, + "parent_name": "", + "name": "my_basisstr", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 234, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@6800@macro@my_simplexstr", + "kind": 9, + "parent_name": "", + "name": "my_simplexstr", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 235, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@6865@macro@my_plural_std", + "kind": 9, + "parent_name": "", + "name": "my_plural_std", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 236, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@6923@macro@my_plural_y", + "kind": 9, + "parent_name": "", + "name": "my_plural_y", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 237, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@6984@macro@my_lowbound", + "kind": 9, + "parent_name": "", + "name": "my_lowbound", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 238, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@7533@macro@my_lowbo", + "kind": 9, + "parent_name": "", + "name": "my_lowbo", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 248, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@7575@macro@my_upbo", + "kind": 9, + "parent_name": "", + "name": "my_upbo", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 249, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@7648@macro@my_rangebo", + "kind": 9, + "parent_name": "", + "name": "my_rangebo", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 250, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@7704@macro@my_unbounded", + "kind": 9, + "parent_name": "", + "name": "my_unbounded", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 252, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@7813@macro@my_bounded", + "kind": 9, + "parent_name": "", + "name": "my_bounded", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 253, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@8218@macro@UNIONTYPE", + "kind": 9, + "parent_name": "", + "name": "UNIONTYPE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 263, + "column": 13, + "hidden": false + }, + { + "usr": "c:lp_types.h@8635@macro@OBJ_STEPS", + "kind": 9, + "parent_name": "", + "name": "OBJ_STEPS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 280, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@T@lprec", + "kind": 8, + "parent_name": "", + "name": "lprec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 257, + "column": 27, + "hidden": false + }, + { + "usr": "c:lp_types.h@T@INVrec", + "kind": 8, + "parent_name": "", + "name": "INVrec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 258, + "column": 27, + "hidden": false + }, + { + "usr": "c:@S@_B4rec", + "kind": 3, + "parent_name": "", + "name": "_B4rec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 270, + "column": 16, + "hidden": false + }, + { + "usr": "c:lp_types.h@T@B4rec", + "kind": 8, + "parent_name": "", + "name": "B4rec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 278, + "column": 3, + "hidden": false + }, + { + "usr": "c:@S@_OBJmonrec", + "kind": 3, + "parent_name": "", + "name": "_OBJmonrec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 281, + "column": 16, + "hidden": false + }, + { + "usr": "c:lp_types.h@T@OBJmonrec", + "kind": 8, + "parent_name": "", + "name": "OBJmonrec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 296, + "column": 3, + "hidden": false + }, + { + "usr": "c:@S@_edgerec", + "kind": 3, + "parent_name": "", + "name": "_edgerec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 298, + "column": 16, + "hidden": false + }, + { + "usr": "c:lp_types.h@T@edgerec", + "kind": 8, + "parent_name": "", + "name": "edgerec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 301, + "column": 3, + "hidden": false + }, + { + "usr": "c:@S@_pricerec", + "kind": 3, + "parent_name": "", + "name": "_pricerec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 303, + "column": 16, + "hidden": false + }, + { + "usr": "c:lp_types.h@T@pricerec", + "kind": 8, + "parent_name": "", + "name": "pricerec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 311, + "column": 3, + "hidden": false + }, + { + "usr": "c:@S@_multirec", + "kind": 3, + "parent_name": "", + "name": "_multirec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 312, + "column": 16, + "hidden": false + }, + { + "usr": "c:lp_types.h@T@multirec", + "kind": 8, + "parent_name": "", + "name": "multirec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_types.h", + "line": 337, + "column": 3, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_utils.h", + "file_last_write": 1686589611.0, + "definitions": [ + { + "usr": "c:lp_utils.h@424@macro@HEADER_lp_utils", + "kind": 9, + "parent_name": "", + "name": "HEADER_lp_utils", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_utils.h", + "line": 11, + "column": 9, + "hidden": false + }, + { + "usr": "c:@S@_workarraysrec", + "kind": 3, + "parent_name": "", + "name": "_workarraysrec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_utils.h", + "line": 28, + "column": 16, + "hidden": false + }, + { + "usr": "c:lp_utils.h@T@workarraysrec", + "kind": 8, + "parent_name": "", + "name": "workarraysrec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_utils.h", + "line": 35, + "column": 3, + "hidden": false + }, + { + "usr": "c:@S@_LLrec", + "kind": 3, + "parent_name": "", + "name": "_LLrec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_utils.h", + "line": 37, + "column": 16, + "hidden": false + }, + { + "usr": "c:lp_utils.h@T@LLrec", + "kind": 8, + "parent_name": "", + "name": "LLrec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_utils.h", + "line": 44, + "column": 3, + "hidden": false + }, + { + "usr": "c:@S@_PVrec", + "kind": 3, + "parent_name": "", + "name": "_PVrec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_utils.h", + "line": 46, + "column": 16, + "hidden": false + }, + { + "usr": "c:lp_utils.h@T@PVrec", + "kind": 8, + "parent_name": "", + "name": "PVrec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_utils.h", + "line": 52, + "column": 3, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_wlp.h", + "file_last_write": 1686589611.0, + "definitions": [ + { + "usr": "c:lp_wlp.h@421@macro@HEADER_lp_lp", + "kind": 9, + "parent_name": "", + "name": "HEADER_lp_lp", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lp_wlp.h", + "line": 11, + "column": 9, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lpkit.h", + "file_last_write": 1686589611.0, + "definitions": [ + { + "usr": "c:lpkit.h@446@macro@MALLOC", + "kind": 9, + "parent_name": "", + "name": "MALLOC", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lpkit.h", + "line": 13, + "column": 9, + "hidden": false + }, + { + "usr": "c:lpkit.h@753@macro@CALLOC", + "kind": 9, + "parent_name": "", + "name": "CALLOC", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lpkit.h", + "line": 20, + "column": 9, + "hidden": false + }, + { + "usr": "c:lpkit.h@1057@macro@REALLOC", + "kind": 9, + "parent_name": "", + "name": "REALLOC", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lpkit.h", + "line": 27, + "column": 9, + "hidden": false + }, + { + "usr": "c:lpkit.h@1414@macro@FREE", + "kind": 9, + "parent_name": "", + "name": "FREE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lpkit.h", + "line": 38, + "column": 9, + "hidden": false + }, + { + "usr": "c:lpkit.h@1482@macro@MALLOCCPY", + "kind": 9, + "parent_name": "", + "name": "MALLOCCPY", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lpkit.h", + "line": 40, + "column": 9, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "file_last_write": 1686589611.0, + "definitions": [ + { + "usr": "c:lusol.h@421@macro@HEADER_LUSOL", + "kind": 9, + "parent_name": "", + "name": "HEADER_LUSOL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 11, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@815@macro@LUSOL_VERMAJOR", + "kind": 9, + "parent_name": "", + "name": "LUSOL_VERMAJOR", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 20, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@843@macro@LUSOL_VERMINOR", + "kind": 9, + "parent_name": "", + "name": "LUSOL_VERMINOR", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 21, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@871@macro@LUSOL_RELEASE", + "kind": 9, + "parent_name": "", + "name": "LUSOL_RELEASE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 22, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@899@macro@LUSOL_BUILD", + "kind": 9, + "parent_name": "", + "name": "LUSOL_BUILD", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 23, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@1382@macro@LUSOL_MALLOC", + "kind": 9, + "parent_name": "", + "name": "LUSOL_MALLOC", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 33, + "column": 11, + "hidden": false + }, + { + "usr": "c:lusol.h@1440@macro@LUSOL_CALLOC", + "kind": 9, + "parent_name": "", + "name": "LUSOL_CALLOC", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 34, + "column": 11, + "hidden": false + }, + { + "usr": "c:lusol.h@1504@macro@LUSOL_REALLOC", + "kind": 9, + "parent_name": "", + "name": "LUSOL_REALLOC", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 35, + "column": 11, + "hidden": false + }, + { + "usr": "c:lusol.h@1577@macro@LUSOL_FREE", + "kind": 9, + "parent_name": "", + "name": "LUSOL_FREE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 36, + "column": 11, + "hidden": false + }, + { + "usr": "c:lusol.h@1820@macro@ForceInitialization", + "kind": 9, + "parent_name": "", + "name": "ForceInitialization", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 42, + "column": 11, + "hidden": false + }, + { + "usr": "c:lusol.h@1905@macro@LUSOLFastDenseIndex", + "kind": 9, + "parent_name": "", + "name": "LUSOLFastDenseIndex", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 43, + "column": 11, + "hidden": false + }, + { + "usr": "c:lusol.h@1991@macro@LUSOLFastClear", + "kind": 9, + "parent_name": "", + "name": "LUSOLFastClear", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 44, + "column": 11, + "hidden": false + }, + { + "usr": "c:lusol.h@2076@macro@LUSOLFastMove", + "kind": 9, + "parent_name": "", + "name": "LUSOLFastMove", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 45, + "column": 11, + "hidden": false + }, + { + "usr": "c:lusol.h@2161@macro@LUSOLFastCopy", + "kind": 9, + "parent_name": "", + "name": "LUSOLFastCopy", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 46, + "column": 11, + "hidden": false + }, + { + "usr": "c:lusol.h@2246@macro@LUSOLFastSolve", + "kind": 9, + "parent_name": "", + "name": "LUSOLFastSolve", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 47, + "column": 11, + "hidden": false + }, + { + "usr": "c:lusol.h@2331@macro@LUSOLSafeFastUpdate", + "kind": 9, + "parent_name": "", + "name": "LUSOLSafeFastUpdate", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 48, + "column": 11, + "hidden": false + }, + { + "usr": "c:lusol.h@3358@macro@LUSOL_ARRAYOFFSET", + "kind": 9, + "parent_name": "", + "name": "LUSOL_ARRAYOFFSET", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 72, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@3414@macro@ZERO", + "kind": 9, + "parent_name": "", + "name": "ZERO", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 74, + "column": 11, + "hidden": false + }, + { + "usr": "c:lusol.h@3475@macro@ONE", + "kind": 9, + "parent_name": "", + "name": "ONE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 77, + "column": 11, + "hidden": false + }, + { + "usr": "c:lusol.h@4035@macro@LUSOL_DEFAULT_GAMMA", + "kind": 9, + "parent_name": "", + "name": "LUSOL_DEFAULT_GAMMA", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 101, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@4075@macro@LUSOL_SMALLNUM", + "kind": 9, + "parent_name": "", + "name": "LUSOL_SMALLNUM", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 102, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@4159@macro@LUSOL_BIGNUM", + "kind": 9, + "parent_name": "", + "name": "LUSOL_BIGNUM", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 103, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@4199@macro@LUSOL_MINDELTA_FACTOR", + "kind": 9, + "parent_name": "", + "name": "LUSOL_MINDELTA_FACTOR", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 104, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@4239@macro@LUSOL_MINDELTA_a", + "kind": 9, + "parent_name": "", + "name": "LUSOL_MINDELTA_a", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 105, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@4288@macro@LUSOL_MULT_nz_a", + "kind": 9, + "parent_name": "", + "name": "LUSOL_MULT_nz_a", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 107, + "column": 11, + "hidden": false + }, + { + "usr": "c:lusol.h@4440@macro@LUSOL_MINDELTA_rc", + "kind": 9, + "parent_name": "", + "name": "LUSOL_MINDELTA_rc", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 111, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@4480@macro@LUSOL_DEFAULT_SMARTRATIO", + "kind": 9, + "parent_name": "", + "name": "LUSOL_DEFAULT_SMARTRATIO", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 112, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@4718@macro@LUSOL_RP_SMARTRATIO", + "kind": 9, + "parent_name": "", + "name": "LUSOL_RP_SMARTRATIO", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 118, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@4758@macro@LUSOL_RP_FACTORMAX_Lij", + "kind": 9, + "parent_name": "", + "name": "LUSOL_RP_FACTORMAX_Lij", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 119, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@4798@macro@LUSOL_RP_UPDATEMAX_Lij", + "kind": 9, + "parent_name": "", + "name": "LUSOL_RP_UPDATEMAX_Lij", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 120, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@4838@macro@LUSOL_RP_ZEROTOLERANCE", + "kind": 9, + "parent_name": "", + "name": "LUSOL_RP_ZEROTOLERANCE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 121, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@4878@macro@LUSOL_RP_SMALLDIAG_U", + "kind": 9, + "parent_name": "", + "name": "LUSOL_RP_SMALLDIAG_U", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 122, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@4918@macro@LUSOL_RP_EPSDIAG_U", + "kind": 9, + "parent_name": "", + "name": "LUSOL_RP_EPSDIAG_U", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 123, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@4958@macro@LUSOL_RP_COMPSPACE_U", + "kind": 9, + "parent_name": "", + "name": "LUSOL_RP_COMPSPACE_U", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 124, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@4998@macro@LUSOL_RP_MARKOWITZ_CONLY", + "kind": 9, + "parent_name": "", + "name": "LUSOL_RP_MARKOWITZ_CONLY", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 125, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@5038@macro@LUSOL_RP_MARKOWITZ_DENSE", + "kind": 9, + "parent_name": "", + "name": "LUSOL_RP_MARKOWITZ_DENSE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 126, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@5078@macro@LUSOL_RP_GAMMA", + "kind": 9, + "parent_name": "", + "name": "LUSOL_RP_GAMMA", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 127, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@5152@macro@LUSOL_RP_MAXELEM_A", + "kind": 9, + "parent_name": "", + "name": "LUSOL_RP_MAXELEM_A", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 130, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@5192@macro@LUSOL_RP_MAXMULT_L", + "kind": 9, + "parent_name": "", + "name": "LUSOL_RP_MAXMULT_L", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 131, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@5232@macro@LUSOL_RP_MAXELEM_U", + "kind": 9, + "parent_name": "", + "name": "LUSOL_RP_MAXELEM_U", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 132, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@5272@macro@LUSOL_RP_MAXELEM_DIAGU", + "kind": 9, + "parent_name": "", + "name": "LUSOL_RP_MAXELEM_DIAGU", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 133, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@5312@macro@LUSOL_RP_MINELEM_DIAGU", + "kind": 9, + "parent_name": "", + "name": "LUSOL_RP_MINELEM_DIAGU", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 134, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@5352@macro@LUSOL_RP_MAXELEM_TCP", + "kind": 9, + "parent_name": "", + "name": "LUSOL_RP_MAXELEM_TCP", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 135, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@5392@macro@LUSOL_RP_GROWTHRATE", + "kind": 9, + "parent_name": "", + "name": "LUSOL_RP_GROWTHRATE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 136, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@5432@macro@LUSOL_RP_USERDATA_1", + "kind": 9, + "parent_name": "", + "name": "LUSOL_RP_USERDATA_1", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 137, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@5472@macro@LUSOL_RP_USERDATA_2", + "kind": 9, + "parent_name": "", + "name": "LUSOL_RP_USERDATA_2", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 138, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@5512@macro@LUSOL_RP_USERDATA_3", + "kind": 9, + "parent_name": "", + "name": "LUSOL_RP_USERDATA_3", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 139, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@5552@macro@LUSOL_RP_RESIDUAL_U", + "kind": 9, + "parent_name": "", + "name": "LUSOL_RP_RESIDUAL_U", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 140, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@5592@macro@LUSOL_RP_LASTITEM", + "kind": 9, + "parent_name": "", + "name": "LUSOL_RP_LASTITEM", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 141, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@5684@macro@LUSOL_IP_USERDATA_0", + "kind": 9, + "parent_name": "", + "name": "LUSOL_IP_USERDATA_0", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 144, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@5724@macro@LUSOL_IP_PRINTUNIT", + "kind": 9, + "parent_name": "", + "name": "LUSOL_IP_PRINTUNIT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 145, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@5764@macro@LUSOL_IP_PRINTLEVEL", + "kind": 9, + "parent_name": "", + "name": "LUSOL_IP_PRINTLEVEL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 146, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@5804@macro@LUSOL_IP_MARKOWITZ_MAXCOL", + "kind": 9, + "parent_name": "", + "name": "LUSOL_IP_MARKOWITZ_MAXCOL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 147, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@5844@macro@LUSOL_IP_SCALAR_NZA", + "kind": 9, + "parent_name": "", + "name": "LUSOL_IP_SCALAR_NZA", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 148, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@5884@macro@LUSOL_IP_UPDATELIMIT", + "kind": 9, + "parent_name": "", + "name": "LUSOL_IP_UPDATELIMIT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 149, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@5924@macro@LUSOL_IP_PIVOTTYPE", + "kind": 9, + "parent_name": "", + "name": "LUSOL_IP_PIVOTTYPE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 150, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@5964@macro@LUSOL_IP_ACCELERATION", + "kind": 9, + "parent_name": "", + "name": "LUSOL_IP_ACCELERATION", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 151, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@6004@macro@LUSOL_IP_KEEPLU", + "kind": 9, + "parent_name": "", + "name": "LUSOL_IP_KEEPLU", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 152, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@6044@macro@LUSOL_IP_SINGULARLISTSIZE", + "kind": 9, + "parent_name": "", + "name": "LUSOL_IP_SINGULARLISTSIZE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 153, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@6119@macro@LUSOL_IP_INFORM", + "kind": 9, + "parent_name": "", + "name": "LUSOL_IP_INFORM", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 156, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@6159@macro@LUSOL_IP_SINGULARITIES", + "kind": 9, + "parent_name": "", + "name": "LUSOL_IP_SINGULARITIES", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 157, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@6199@macro@LUSOL_IP_SINGULARINDEX", + "kind": 9, + "parent_name": "", + "name": "LUSOL_IP_SINGULARINDEX", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 158, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@6239@macro@LUSOL_IP_MINIMUMLENA", + "kind": 9, + "parent_name": "", + "name": "LUSOL_IP_MINIMUMLENA", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 159, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@6279@macro@LUSOL_IP_MAXLEN", + "kind": 9, + "parent_name": "", + "name": "LUSOL_IP_MAXLEN", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 160, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@6319@macro@LUSOL_IP_UPDATECOUNT", + "kind": 9, + "parent_name": "", + "name": "LUSOL_IP_UPDATECOUNT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 161, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@6359@macro@LUSOL_IP_RANK_U", + "kind": 9, + "parent_name": "", + "name": "LUSOL_IP_RANK_U", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 162, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@6399@macro@LUSOL_IP_COLCOUNT_DENSE1", + "kind": 9, + "parent_name": "", + "name": "LUSOL_IP_COLCOUNT_DENSE1", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 163, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@6439@macro@LUSOL_IP_COLCOUNT_DENSE2", + "kind": 9, + "parent_name": "", + "name": "LUSOL_IP_COLCOUNT_DENSE2", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 164, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@6479@macro@LUSOL_IP_COLINDEX_DUMIN", + "kind": 9, + "parent_name": "", + "name": "LUSOL_IP_COLINDEX_DUMIN", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 165, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@6519@macro@LUSOL_IP_COLCOUNT_L0", + "kind": 9, + "parent_name": "", + "name": "LUSOL_IP_COLCOUNT_L0", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 166, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@6559@macro@LUSOL_IP_NONZEROS_L0", + "kind": 9, + "parent_name": "", + "name": "LUSOL_IP_NONZEROS_L0", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 167, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@6599@macro@LUSOL_IP_NONZEROS_U0", + "kind": 9, + "parent_name": "", + "name": "LUSOL_IP_NONZEROS_U0", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 168, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@6639@macro@LUSOL_IP_NONZEROS_L", + "kind": 9, + "parent_name": "", + "name": "LUSOL_IP_NONZEROS_L", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 169, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@6679@macro@LUSOL_IP_NONZEROS_U", + "kind": 9, + "parent_name": "", + "name": "LUSOL_IP_NONZEROS_U", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 170, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@6719@macro@LUSOL_IP_NONZEROS_ROW", + "kind": 9, + "parent_name": "", + "name": "LUSOL_IP_NONZEROS_ROW", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 171, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@6759@macro@LUSOL_IP_COMPRESSIONS_LU", + "kind": 9, + "parent_name": "", + "name": "LUSOL_IP_COMPRESSIONS_LU", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 172, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@6799@macro@LUSOL_IP_MARKOWITZ_MERIT", + "kind": 9, + "parent_name": "", + "name": "LUSOL_IP_MARKOWITZ_MERIT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 173, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@6839@macro@LUSOL_IP_TRIANGROWS_U", + "kind": 9, + "parent_name": "", + "name": "LUSOL_IP_TRIANGROWS_U", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 174, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@6879@macro@LUSOL_IP_TRIANGROWS_L", + "kind": 9, + "parent_name": "", + "name": "LUSOL_IP_TRIANGROWS_L", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 175, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@6919@macro@LUSOL_IP_FTRANCOUNT", + "kind": 9, + "parent_name": "", + "name": "LUSOL_IP_FTRANCOUNT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 176, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@6959@macro@LUSOL_IP_BTRANCOUNT", + "kind": 9, + "parent_name": "", + "name": "LUSOL_IP_BTRANCOUNT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 177, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@6999@macro@LUSOL_IP_ROWCOUNT_L0", + "kind": 9, + "parent_name": "", + "name": "LUSOL_IP_ROWCOUNT_L0", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 178, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@7039@macro@LUSOL_IP_LASTITEM", + "kind": 9, + "parent_name": "", + "name": "LUSOL_IP_LASTITEM", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 179, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@7264@macro@DAPOS", + "kind": 9, + "parent_name": "", + "name": "DAPOS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 184, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@7311@macro@timer", + "kind": 9, + "parent_name": "", + "name": "timer", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 185, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@7533@macro@LUSOL_MSG_NONE", + "kind": 9, + "parent_name": "", + "name": "LUSOL_MSG_NONE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 190, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@7573@macro@LUSOL_MSG_SINGULARITY", + "kind": 9, + "parent_name": "", + "name": "LUSOL_MSG_SINGULARITY", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 191, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@7613@macro@LUSOL_MSG_STATISTICS", + "kind": 9, + "parent_name": "", + "name": "LUSOL_MSG_STATISTICS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 192, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@7653@macro@LUSOL_MSG_PIVOT", + "kind": 9, + "parent_name": "", + "name": "LUSOL_MSG_PIVOT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 193, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@7695@macro@LUSOL_BASEORDER", + "kind": 9, + "parent_name": "", + "name": "LUSOL_BASEORDER", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 195, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@7735@macro@LUSOL_OTHERORDER", + "kind": 9, + "parent_name": "", + "name": "LUSOL_OTHERORDER", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 196, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@7775@macro@LUSOL_AUTOORDER", + "kind": 9, + "parent_name": "", + "name": "LUSOL_AUTOORDER", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 197, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@7815@macro@LUSOL_ACCELERATE_L0", + "kind": 9, + "parent_name": "", + "name": "LUSOL_ACCELERATE_L0", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 198, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@7855@macro@LUSOL_ACCELERATE_U", + "kind": 9, + "parent_name": "", + "name": "LUSOL_ACCELERATE_U", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 199, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@7897@macro@LUSOL_PIVMOD_NOCHANGE", + "kind": 9, + "parent_name": "", + "name": "LUSOL_PIVMOD_NOCHANGE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 201, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@7979@macro@LUSOL_PIVMOD_DEFAULT", + "kind": 9, + "parent_name": "", + "name": "LUSOL_PIVMOD_DEFAULT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 202, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@8056@macro@LUSOL_PIVMOD_TPP", + "kind": 9, + "parent_name": "", + "name": "LUSOL_PIVMOD_TPP", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 203, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@8141@macro@LUSOL_PIVMOD_TRP", + "kind": 9, + "parent_name": "", + "name": "LUSOL_PIVMOD_TRP", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 204, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@8217@macro@LUSOL_PIVMOD_TCP", + "kind": 9, + "parent_name": "", + "name": "LUSOL_PIVMOD_TCP", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 205, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@8293@macro@LUSOL_PIVMOD_TSP", + "kind": 9, + "parent_name": "", + "name": "LUSOL_PIVMOD_TSP", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 206, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@8369@macro@LUSOL_PIVMOD_MAX", + "kind": 9, + "parent_name": "", + "name": "LUSOL_PIVMOD_MAX", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 207, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@8426@macro@LUSOL_PIVTOL_NOCHANGE", + "kind": 9, + "parent_name": "", + "name": "LUSOL_PIVTOL_NOCHANGE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 209, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@8466@macro@LUSOL_PIVTOL_BAGGY", + "kind": 9, + "parent_name": "", + "name": "LUSOL_PIVTOL_BAGGY", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 210, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@8506@macro@LUSOL_PIVTOL_LOOSE", + "kind": 9, + "parent_name": "", + "name": "LUSOL_PIVTOL_LOOSE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 211, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@8546@macro@LUSOL_PIVTOL_NORMAL", + "kind": 9, + "parent_name": "", + "name": "LUSOL_PIVTOL_NORMAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 212, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@8586@macro@LUSOL_PIVTOL_SLIM", + "kind": 9, + "parent_name": "", + "name": "LUSOL_PIVTOL_SLIM", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 213, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@8626@macro@LUSOL_PIVTOL_TIGHT", + "kind": 9, + "parent_name": "", + "name": "LUSOL_PIVTOL_TIGHT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 214, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@8666@macro@LUSOL_PIVTOL_SUPER", + "kind": 9, + "parent_name": "", + "name": "LUSOL_PIVTOL_SUPER", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 215, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@8706@macro@LUSOL_PIVTOL_CORSET", + "kind": 9, + "parent_name": "", + "name": "LUSOL_PIVTOL_CORSET", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 216, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@8746@macro@LUSOL_PIVTOL_DEFAULT", + "kind": 9, + "parent_name": "", + "name": "LUSOL_PIVTOL_DEFAULT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 217, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@8802@macro@LUSOL_PIVTOL_MAX", + "kind": 9, + "parent_name": "", + "name": "LUSOL_PIVTOL_MAX", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 218, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@8862@macro@LUSOL_UPDATE_OLDEMPTY", + "kind": 9, + "parent_name": "", + "name": "LUSOL_UPDATE_OLDEMPTY", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 220, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@8934@macro@LUSOL_UPDATE_OLDNONEMPTY", + "kind": 9, + "parent_name": "", + "name": "LUSOL_UPDATE_OLDNONEMPTY", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 221, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@9022@macro@LUSOL_UPDATE_NEWEMPTY", + "kind": 9, + "parent_name": "", + "name": "LUSOL_UPDATE_NEWEMPTY", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 222, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@9101@macro@LUSOL_UPDATE_NEWNONEMPTY", + "kind": 9, + "parent_name": "", + "name": "LUSOL_UPDATE_NEWNONEMPTY", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 223, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@9263@macro@LUSOL_UPDATE_USEPREPARED", + "kind": 9, + "parent_name": "", + "name": "LUSOL_UPDATE_USEPREPARED", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 225, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@9346@macro@LUSOL_SOLVE_Lv_v", + "kind": 9, + "parent_name": "", + "name": "LUSOL_SOLVE_Lv_v", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 227, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@9440@macro@LUSOL_SOLVE_Ltv_v", + "kind": 9, + "parent_name": "", + "name": "LUSOL_SOLVE_Ltv_v", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 228, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@9534@macro@LUSOL_SOLVE_Uw_v", + "kind": 9, + "parent_name": "", + "name": "LUSOL_SOLVE_Uw_v", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 229, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@9628@macro@LUSOL_SOLVE_Utv_w", + "kind": 9, + "parent_name": "", + "name": "LUSOL_SOLVE_Utv_w", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 230, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@9720@macro@LUSOL_SOLVE_Aw_v", + "kind": 9, + "parent_name": "", + "name": "LUSOL_SOLVE_Aw_v", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 231, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@9818@macro@LUSOL_FTRAN", + "kind": 9, + "parent_name": "", + "name": "LUSOL_FTRAN", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 232, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@9858@macro@LUSOL_SOLVE_Atv_w", + "kind": 9, + "parent_name": "", + "name": "LUSOL_SOLVE_Atv_w", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 233, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@9950@macro@LUSOL_BTRAN", + "kind": 9, + "parent_name": "", + "name": "LUSOL_BTRAN", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 234, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@10327@macro@LUSOL_SOLVE_Av_v", + "kind": 9, + "parent_name": "", + "name": "LUSOL_SOLVE_Av_v", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 241, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@10431@macro@LUSOL_SOLVE_LDLtv_v", + "kind": 9, + "parent_name": "", + "name": "LUSOL_SOLVE_LDLtv_v", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 242, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@10537@macro@LUSOL_INFORM_RANKLOSS", + "kind": 9, + "parent_name": "", + "name": "LUSOL_INFORM_RANKLOSS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 244, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@10577@macro@LUSOL_INFORM_LUSUCCESS", + "kind": 9, + "parent_name": "", + "name": "LUSOL_INFORM_LUSUCCESS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 245, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@10617@macro@LUSOL_INFORM_LUSINGULAR", + "kind": 9, + "parent_name": "", + "name": "LUSOL_INFORM_LUSINGULAR", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 246, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@10657@macro@LUSOL_INFORM_LUUNSTABLE", + "kind": 9, + "parent_name": "", + "name": "LUSOL_INFORM_LUUNSTABLE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 247, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@10697@macro@LUSOL_INFORM_ADIMERR", + "kind": 9, + "parent_name": "", + "name": "LUSOL_INFORM_ADIMERR", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 248, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@10737@macro@LUSOL_INFORM_ADUPLICATE", + "kind": 9, + "parent_name": "", + "name": "LUSOL_INFORM_ADUPLICATE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 249, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@10777@macro@LUSOL_INFORM_ANEEDMEM", + "kind": 9, + "parent_name": "", + "name": "LUSOL_INFORM_ANEEDMEM", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 250, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@10865@macro@LUSOL_INFORM_FATALERR", + "kind": 9, + "parent_name": "", + "name": "LUSOL_INFORM_FATALERR", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 251, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@10905@macro@LUSOL_INFORM_NOPIVOT", + "kind": 9, + "parent_name": "", + "name": "LUSOL_INFORM_NOPIVOT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 252, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@10993@macro@LUSOL_INFORM_NOMEMLEFT", + "kind": 9, + "parent_name": "", + "name": "LUSOL_INFORM_NOMEMLEFT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 253, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@11035@macro@LUSOL_INFORM_MIN", + "kind": 9, + "parent_name": "", + "name": "LUSOL_INFORM_MIN", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 255, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@11095@macro@LUSOL_INFORM_MAX", + "kind": 9, + "parent_name": "", + "name": "LUSOL_INFORM_MAX", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 256, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@11158@macro@LUSOL_INFORM_GETLAST", + "kind": 9, + "parent_name": "", + "name": "LUSOL_INFORM_GETLAST", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 258, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@11231@macro@LUSOL_INFORM_SERIOUS", + "kind": 9, + "parent_name": "", + "name": "LUSOL_INFORM_SERIOUS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 259, + "column": 9, + "hidden": false + }, + { + "usr": "c:lusol.h@T@LUSOLlogfunc", + "kind": 8, + "parent_name": "", + "name": "LUSOLlogfunc", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 264, + "column": 14, + "hidden": false + }, + { + "usr": "c:@S@_LUSOLmat", + "kind": 3, + "parent_name": "", + "name": "_LUSOLmat", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 268, + "column": 16, + "hidden": false + }, + { + "usr": "c:lusol.h@T@LUSOLmat", + "kind": 8, + "parent_name": "", + "name": "LUSOLmat", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 271, + "column": 3, + "hidden": false + }, + { + "usr": "c:@S@_LUSOLrec", + "kind": 3, + "parent_name": "", + "name": "_LUSOLrec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 276, + "column": 16, + "hidden": false + }, + { + "usr": "c:lusol.h@T@LUSOLrec", + "kind": 8, + "parent_name": "", + "name": "LUSOLrec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/lusol.h", + "line": 321, + "column": 3, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/mmio.h", + "file_last_write": 1686589611.0, + "definitions": [ + { + "usr": "c:mmio.h@553@macro@MM_MAX_LINE_LENGTH", + "kind": 9, + "parent_name": "", + "name": "MM_MAX_LINE_LENGTH", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/mmio.h", + "line": 21, + "column": 9, + "hidden": false + }, + { + "usr": "c:mmio.h@586@macro@MatrixMarketBanner", + "kind": 9, + "parent_name": "", + "name": "MatrixMarketBanner", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/mmio.h", + "line": 22, + "column": 9, + "hidden": false + }, + { + "usr": "c:mmio.h@631@macro@MM_MAX_TOKEN_LENGTH", + "kind": 9, + "parent_name": "", + "name": "MM_MAX_TOKEN_LENGTH", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/mmio.h", + "line": 23, + "column": 9, + "hidden": false + }, + { + "usr": "c:mmio.h@1167@macro@mm_is_matrix", + "kind": 9, + "parent_name": "", + "name": "mm_is_matrix", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/mmio.h", + "line": 40, + "column": 9, + "hidden": false + }, + { + "usr": "c:mmio.h@1223@macro@mm_is_sparse", + "kind": 9, + "parent_name": "", + "name": "mm_is_sparse", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/mmio.h", + "line": 42, + "column": 9, + "hidden": false + }, + { + "usr": "c:mmio.h@1277@macro@mm_is_coordinate", + "kind": 9, + "parent_name": "", + "name": "mm_is_coordinate", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/mmio.h", + "line": 43, + "column": 9, + "hidden": false + }, + { + "usr": "c:mmio.h@1333@macro@mm_is_dense", + "kind": 9, + "parent_name": "", + "name": "mm_is_dense", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/mmio.h", + "line": 44, + "column": 9, + "hidden": false + }, + { + "usr": "c:mmio.h@1385@macro@mm_is_array", + "kind": 9, + "parent_name": "", + "name": "mm_is_array", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/mmio.h", + "line": 45, + "column": 9, + "hidden": false + }, + { + "usr": "c:mmio.h@1439@macro@mm_is_complex", + "kind": 9, + "parent_name": "", + "name": "mm_is_complex", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/mmio.h", + "line": 47, + "column": 9, + "hidden": false + }, + { + "usr": "c:mmio.h@1493@macro@mm_is_real", + "kind": 9, + "parent_name": "", + "name": "mm_is_real", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/mmio.h", + "line": 48, + "column": 9, + "hidden": false + }, + { + "usr": "c:mmio.h@1547@macro@mm_is_pattern", + "kind": 9, + "parent_name": "", + "name": "mm_is_pattern", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/mmio.h", + "line": 49, + "column": 9, + "hidden": false + }, + { + "usr": "c:mmio.h@1601@macro@mm_is_integer", + "kind": 9, + "parent_name": "", + "name": "mm_is_integer", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/mmio.h", + "line": 50, + "column": 9, + "hidden": false + }, + { + "usr": "c:mmio.h@1657@macro@mm_is_symmetric", + "kind": 9, + "parent_name": "", + "name": "mm_is_symmetric", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/mmio.h", + "line": 52, + "column": 9, + "hidden": false + }, + { + "usr": "c:mmio.h@1712@macro@mm_is_general", + "kind": 9, + "parent_name": "", + "name": "mm_is_general", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/mmio.h", + "line": 53, + "column": 9, + "hidden": false + }, + { + "usr": "c:mmio.h@1766@macro@mm_is_skew", + "kind": 9, + "parent_name": "", + "name": "mm_is_skew", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/mmio.h", + "line": 54, + "column": 9, + "hidden": false + }, + { + "usr": "c:mmio.h@1818@macro@mm_is_hermitian", + "kind": 9, + "parent_name": "", + "name": "mm_is_hermitian", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/mmio.h", + "line": 55, + "column": 9, + "hidden": false + }, + { + "usr": "c:mmio.h@2034@macro@mm_set_matrix", + "kind": 9, + "parent_name": "", + "name": "mm_set_matrix", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/mmio.h", + "line": 62, + "column": 9, + "hidden": false + }, + { + "usr": "c:mmio.h@2088@macro@mm_set_coordinate", + "kind": 9, + "parent_name": "", + "name": "mm_set_coordinate", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/mmio.h", + "line": 63, + "column": 9, + "hidden": false + }, + { + "usr": "c:mmio.h@2146@macro@mm_set_array", + "kind": 9, + "parent_name": "", + "name": "mm_set_array", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/mmio.h", + "line": 64, + "column": 9, + "hidden": false + }, + { + "usr": "c:mmio.h@2200@macro@mm_set_dense", + "kind": 9, + "parent_name": "", + "name": "mm_set_dense", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/mmio.h", + "line": 65, + "column": 9, + "hidden": false + }, + { + "usr": "c:mmio.h@2256@macro@mm_set_sparse", + "kind": 9, + "parent_name": "", + "name": "mm_set_sparse", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/mmio.h", + "line": 66, + "column": 9, + "hidden": false + }, + { + "usr": "c:mmio.h@2319@macro@mm_set_complex", + "kind": 9, + "parent_name": "", + "name": "mm_set_complex", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/mmio.h", + "line": 68, + "column": 9, + "hidden": false + }, + { + "usr": "c:mmio.h@2373@macro@mm_set_real", + "kind": 9, + "parent_name": "", + "name": "mm_set_real", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/mmio.h", + "line": 69, + "column": 9, + "hidden": false + }, + { + "usr": "c:mmio.h@2425@macro@mm_set_pattern", + "kind": 9, + "parent_name": "", + "name": "mm_set_pattern", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/mmio.h", + "line": 70, + "column": 9, + "hidden": false + }, + { + "usr": "c:mmio.h@2479@macro@mm_set_integer", + "kind": 9, + "parent_name": "", + "name": "mm_set_integer", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/mmio.h", + "line": 71, + "column": 9, + "hidden": false + }, + { + "usr": "c:mmio.h@2537@macro@mm_set_symmetric", + "kind": 9, + "parent_name": "", + "name": "mm_set_symmetric", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/mmio.h", + "line": 74, + "column": 9, + "hidden": false + }, + { + "usr": "c:mmio.h@2593@macro@mm_set_general", + "kind": 9, + "parent_name": "", + "name": "mm_set_general", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/mmio.h", + "line": 75, + "column": 9, + "hidden": false + }, + { + "usr": "c:mmio.h@2647@macro@mm_set_skew", + "kind": 9, + "parent_name": "", + "name": "mm_set_skew", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/mmio.h", + "line": 76, + "column": 9, + "hidden": false + }, + { + "usr": "c:mmio.h@2699@macro@mm_set_hermitian", + "kind": 9, + "parent_name": "", + "name": "mm_set_hermitian", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/mmio.h", + "line": 77, + "column": 9, + "hidden": false + }, + { + "usr": "c:mmio.h@2757@macro@mm_clear_typecode", + "kind": 9, + "parent_name": "", + "name": "mm_clear_typecode", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/mmio.h", + "line": 79, + "column": 9, + "hidden": false + }, + { + "usr": "c:mmio.h@2888@macro@mm_initialize_typecode", + "kind": 9, + "parent_name": "", + "name": "mm_initialize_typecode", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/mmio.h", + "line": 82, + "column": 9, + "hidden": false + }, + { + "usr": "c:mmio.h@3045@macro@MM_COULD_NOT_READ_FILE", + "kind": 9, + "parent_name": "", + "name": "MM_COULD_NOT_READ_FILE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/mmio.h", + "line": 88, + "column": 9, + "hidden": false + }, + { + "usr": "c:mmio.h@3081@macro@MM_PREMATURE_EOF", + "kind": 9, + "parent_name": "", + "name": "MM_PREMATURE_EOF", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/mmio.h", + "line": 89, + "column": 9, + "hidden": false + }, + { + "usr": "c:mmio.h@3117@macro@MM_NOT_MTX", + "kind": 9, + "parent_name": "", + "name": "MM_NOT_MTX", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/mmio.h", + "line": 90, + "column": 9, + "hidden": false + }, + { + "usr": "c:mmio.h@3153@macro@MM_NO_HEADER", + "kind": 9, + "parent_name": "", + "name": "MM_NO_HEADER", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/mmio.h", + "line": 91, + "column": 9, + "hidden": false + }, + { + "usr": "c:mmio.h@3189@macro@MM_UNSUPPORTED_TYPE", + "kind": 9, + "parent_name": "", + "name": "MM_UNSUPPORTED_TYPE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/mmio.h", + "line": 92, + "column": 9, + "hidden": false + }, + { + "usr": "c:mmio.h@3225@macro@MM_LINE_TOO_LONG", + "kind": 9, + "parent_name": "", + "name": "MM_LINE_TOO_LONG", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/mmio.h", + "line": 93, + "column": 9, + "hidden": false + }, + { + "usr": "c:mmio.h@3261@macro@MM_COULD_NOT_WRITE_FILE", + "kind": 9, + "parent_name": "", + "name": "MM_COULD_NOT_WRITE_FILE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/mmio.h", + "line": 94, + "column": 9, + "hidden": false + }, + { + "usr": "c:mmio.h@3881@macro@MM_MTX_STR", + "kind": 9, + "parent_name": "", + "name": "MM_MTX_STR", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/mmio.h", + "line": 113, + "column": 9, + "hidden": false + }, + { + "usr": "c:mmio.h@3913@macro@MM_ARRAY_STR", + "kind": 9, + "parent_name": "", + "name": "MM_ARRAY_STR", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/mmio.h", + "line": 114, + "column": 9, + "hidden": false + }, + { + "usr": "c:mmio.h@3944@macro@MM_DENSE_STR", + "kind": 9, + "parent_name": "", + "name": "MM_DENSE_STR", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/mmio.h", + "line": 115, + "column": 9, + "hidden": false + }, + { + "usr": "c:mmio.h@3975@macro@MM_COORDINATE_STR", + "kind": 9, + "parent_name": "", + "name": "MM_COORDINATE_STR", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/mmio.h", + "line": 116, + "column": 9, + "hidden": false + }, + { + "usr": "c:mmio.h@4015@macro@MM_SPARSE_STR", + "kind": 9, + "parent_name": "", + "name": "MM_SPARSE_STR", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/mmio.h", + "line": 117, + "column": 9, + "hidden": false + }, + { + "usr": "c:mmio.h@4051@macro@MM_COMPLEX_STR", + "kind": 9, + "parent_name": "", + "name": "MM_COMPLEX_STR", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/mmio.h", + "line": 118, + "column": 9, + "hidden": false + }, + { + "usr": "c:mmio.h@4086@macro@MM_REAL_STR", + "kind": 9, + "parent_name": "", + "name": "MM_REAL_STR", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/mmio.h", + "line": 119, + "column": 9, + "hidden": false + }, + { + "usr": "c:mmio.h@4116@macro@MM_INT_STR", + "kind": 9, + "parent_name": "", + "name": "MM_INT_STR", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/mmio.h", + "line": 120, + "column": 9, + "hidden": false + }, + { + "usr": "c:mmio.h@4149@macro@MM_GENERAL_STR", + "kind": 9, + "parent_name": "", + "name": "MM_GENERAL_STR", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/mmio.h", + "line": 121, + "column": 9, + "hidden": false + }, + { + "usr": "c:mmio.h@4184@macro@MM_SYMM_STR", + "kind": 9, + "parent_name": "", + "name": "MM_SYMM_STR", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/mmio.h", + "line": 122, + "column": 9, + "hidden": false + }, + { + "usr": "c:mmio.h@4219@macro@MM_HERM_STR", + "kind": 9, + "parent_name": "", + "name": "MM_HERM_STR", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/mmio.h", + "line": 123, + "column": 9, + "hidden": false + }, + { + "usr": "c:mmio.h@4254@macro@MM_SKEW_STR", + "kind": 9, + "parent_name": "", + "name": "MM_SKEW_STR", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/mmio.h", + "line": 124, + "column": 9, + "hidden": false + }, + { + "usr": "c:mmio.h@4294@macro@MM_PATTERN_STR", + "kind": 9, + "parent_name": "", + "name": "MM_PATTERN_STR", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/mmio.h", + "line": 125, + "column": 9, + "hidden": false + }, + { + "usr": "c:mmio.h@T@MM_typecode", + "kind": 8, + "parent_name": "", + "name": "MM_typecode", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/mmio.h", + "line": 25, + "column": 14, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/myblas.h", + "file_last_write": 1686589611.0, + "definitions": [ + { + "usr": "c:myblas.h@31@macro@HEADER_myblas", + "kind": 9, + "parent_name": "", + "name": "HEADER_myblas", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/myblas.h", + "line": 2, + "column": 9, + "hidden": false + }, + { + "usr": "c:myblas.h@1178@macro@BLAS_BASE", + "kind": 9, + "parent_name": "", + "name": "BLAS_BASE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/myblas.h", + "line": 19, + "column": 9, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/yacc_read.h", + "file_last_write": 1686589611.0, + "definitions": [ + { + "usr": "c:yacc_read.h@2395@macro@set_obj_dir", + "kind": 9, + "parent_name": "", + "name": "set_obj_dir", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/yacc_read.h", + "line": 65, + "column": 9, + "hidden": false + }, + { + "usr": "c:@S@_tmp_store_struct", + "kind": 3, + "parent_name": "", + "name": "_tmp_store_struct", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/yacc_read.h", + "line": 17, + "column": 8, + "hidden": false + }, + { + "usr": "c:@S@parse_parm_s", + "kind": 3, + "parent_name": "", + "name": "parse_parm_s", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/yacc_read.h", + "line": 26, + "column": 16, + "hidden": false + }, + { + "usr": "c:yacc_read.h@T@parse_parm", + "kind": 8, + "parent_name": "", + "name": "parse_parm", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/include/yacc_read.h", + "line": 43, + "column": 3, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_Hash.h", + "file_last_write": 1686589611.0, + "definitions": [ + { + "usr": "c:lp_Hash.h@423@macro@HEADER_lp_hash", + "kind": 9, + "parent_name": "", + "name": "HEADER_lp_hash", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_Hash.h", + "line": 11, + "column": 9, + "hidden": false + }, + { + "usr": "c:@S@_hashelem", + "kind": 3, + "parent_name": "", + "name": "_hashelem", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_Hash.h", + "line": 15, + "column": 16, + "hidden": false + }, + { + "usr": "c:lp_Hash.h@T@hashelem", + "kind": 8, + "parent_name": "", + "name": "hashelem", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_Hash.h", + "line": 21, + "column": 3, + "hidden": false + }, + { + "usr": "c:@T@hashtable", + "kind": 8, + "parent_name": "", + "name": "hashtable", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_Hash.h", + "line": 31, + "column": 3, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_SOS.h", + "file_last_write": 1686589611.0, + "definitions": [ + { + "usr": "c:lp_SOS.h@422@macro@HEADER_lp_SOS", + "kind": 9, + "parent_name": "", + "name": "HEADER_lp_SOS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_SOS.h", + "line": 11, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_SOS.h@847@macro@SOS1", + "kind": 9, + "parent_name": "", + "name": "SOS1", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_SOS.h", + "line": 23, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_SOS.h@883@macro@SOS2", + "kind": 9, + "parent_name": "", + "name": "SOS2", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_SOS.h", + "line": 24, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_SOS.h@919@macro@SOS3", + "kind": 9, + "parent_name": "", + "name": "SOS3", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_SOS.h", + "line": 25, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_SOS.h@955@macro@SOSn", + "kind": 9, + "parent_name": "", + "name": "SOSn", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_SOS.h", + "line": 26, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_SOS.h@999@macro@SOS_START_SIZE", + "kind": 9, + "parent_name": "", + "name": "SOS_START_SIZE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_SOS.h", + "line": 27, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_SOS.h@1256@macro@SOS3_INCOMPLETE", + "kind": 9, + "parent_name": "", + "name": "SOS3_INCOMPLETE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_SOS.h", + "line": 31, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_SOS.h@1292@macro@SOS_INCOMPLETE", + "kind": 9, + "parent_name": "", + "name": "SOS_INCOMPLETE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_SOS.h", + "line": 32, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_SOS.h@1328@macro@SOS_COMPLETE", + "kind": 9, + "parent_name": "", + "name": "SOS_COMPLETE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_SOS.h", + "line": 33, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_SOS.h@1364@macro@SOS_INFEASIBLE", + "kind": 9, + "parent_name": "", + "name": "SOS_INFEASIBLE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_SOS.h", + "line": 34, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_SOS.h@1400@macro@SOS_INTERNALERROR", + "kind": 9, + "parent_name": "", + "name": "SOS_INTERNALERROR", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_SOS.h", + "line": 35, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_SOS.h@T@SOSgroup", + "kind": 8, + "parent_name": "", + "name": "SOSgroup", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_SOS.h", + "line": 38, + "column": 26, + "hidden": false + }, + { + "usr": "c:@S@_SOSrec", + "kind": 3, + "parent_name": "", + "name": "_SOSrec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_SOS.h", + "line": 40, + "column": 16, + "hidden": false + }, + { + "usr": "c:lp_SOS.h@T@SOSrec", + "kind": 8, + "parent_name": "", + "name": "SOSrec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_SOS.h", + "line": 53, + "column": 3, + "hidden": false + }, + { + "usr": "c:@S@_SOSgroup", + "kind": 3, + "parent_name": "", + "name": "_SOSgroup", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_SOS.h", + "line": 55, + "column": 22, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "file_last_write": 1686589611.0, + "definitions": [ + { + "usr": "c:lp_lib.h@33@macro@HEADER_lp_lib", + "kind": 9, + "parent_name": "", + "name": "HEADER_lp_lib", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 3, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@3301@macro@SETMASK", + "kind": 9, + "parent_name": "", + "name": "SETMASK", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 66, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@3355@macro@CLEARMASK", + "kind": 9, + "parent_name": "", + "name": "CLEARMASK", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 67, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@3412@macro@TOGGLEMASK", + "kind": 9, + "parent_name": "", + "name": "TOGGLEMASK", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 68, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@3466@macro@ISMASKSET", + "kind": 9, + "parent_name": "", + "name": "ISMASKSET", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 69, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@4041@macro@DoMatrixRounding", + "kind": 9, + "parent_name": "", + "name": "DoMatrixRounding", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 79, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@4127@macro@DoBorderRounding", + "kind": 9, + "parent_name": "", + "name": "DoBorderRounding", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 80, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@4212@macro@Phase1EliminateRedundant", + "kind": 9, + "parent_name": "", + "name": "Phase1EliminateRedundant", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 81, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@4297@macro@FixViolatedOptimal", + "kind": 9, + "parent_name": "", + "name": "FixViolatedOptimal", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 82, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@4325@macro@ImproveSolutionPrecision", + "kind": 9, + "parent_name": "", + "name": "ImproveSolutionPrecision", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 83, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@4666@macro@ResetMinitOnReinvert", + "kind": 9, + "parent_name": "", + "name": "ResetMinitOnReinvert", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 87, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@4951@macro@UseMilpExpandedRCF", + "kind": 9, + "parent_name": "", + "name": "UseMilpExpandedRCF", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 91, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@5191@macro@LegacySlackDefinition", + "kind": 9, + "parent_name": "", + "name": "LegacySlackDefinition", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 94, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@5608@macro@FULLYBOUNDEDSIMPLEX", + "kind": 9, + "parent_name": "", + "name": "FULLYBOUNDEDSIMPLEX", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 101, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@5855@macro@libBLAS", + "kind": 9, + "parent_name": "", + "name": "libBLAS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 106, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@5936@macro@libnameBLAS", + "kind": 9, + "parent_name": "", + "name": "libnameBLAS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 107, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@6169@macro@LoadInverseLib", + "kind": 9, + "parent_name": "", + "name": "LoadInverseLib", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 113, + "column": 10, + "hidden": false + }, + { + "usr": "c:lp_lib.h@6343@macro@DEF_OBJINBASIS", + "kind": 9, + "parent_name": "", + "name": "DEF_OBJINBASIS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 117, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@6434@macro@INVERSE_NONE", + "kind": 9, + "parent_name": "", + "name": "INVERSE_NONE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 119, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@6470@macro@INVERSE_LEGACY", + "kind": 9, + "parent_name": "", + "name": "INVERSE_LEGACY", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 120, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@6506@macro@INVERSE_ETAPFI", + "kind": 9, + "parent_name": "", + "name": "INVERSE_ETAPFI", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 121, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@6542@macro@INVERSE_LUMOD", + "kind": 9, + "parent_name": "", + "name": "INVERSE_LUMOD", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 122, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@6578@macro@INVERSE_LUSOL", + "kind": 9, + "parent_name": "", + "name": "INVERSE_LUSOL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 123, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@6614@macro@INVERSE_GLPKLU", + "kind": 9, + "parent_name": "", + "name": "INVERSE_GLPKLU", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 124, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@6858@macro@INVERSE_ACTIVE", + "kind": 9, + "parent_name": "", + "name": "INVERSE_ACTIVE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 130, + "column": 13, + "hidden": false + }, + { + "usr": "c:lp_lib.h@7150@macro@LoadLanguageLib", + "kind": 9, + "parent_name": "", + "name": "LoadLanguageLib", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 138, + "column": 10, + "hidden": false + }, + { + "usr": "c:lp_lib.h@7238@macro@ExcludeNativeLanguage", + "kind": 9, + "parent_name": "", + "name": "ExcludeNativeLanguage", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 140, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@7321@macro@LANGUAGE_NONE", + "kind": 9, + "parent_name": "", + "name": "LANGUAGE_NONE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 142, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@7357@macro@LANGUAGE_LEGACYLP", + "kind": 9, + "parent_name": "", + "name": "LANGUAGE_LEGACYLP", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 143, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@7393@macro@LANGUAGE_CPLEXLP", + "kind": 9, + "parent_name": "", + "name": "LANGUAGE_CPLEXLP", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 144, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@7429@macro@LANGUAGE_MPSX", + "kind": 9, + "parent_name": "", + "name": "LANGUAGE_MPSX", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 145, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@7465@macro@LANGUAGE_LPFML", + "kind": 9, + "parent_name": "", + "name": "LANGUAGE_LPFML", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 146, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@7501@macro@LANGUAGE_MATHPROG", + "kind": 9, + "parent_name": "", + "name": "LANGUAGE_MATHPROG", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 147, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@7537@macro@LANGUAGE_AMPL", + "kind": 9, + "parent_name": "", + "name": "LANGUAGE_AMPL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 148, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@7573@macro@LANGUAGE_GAMS", + "kind": 9, + "parent_name": "", + "name": "LANGUAGE_GAMS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 149, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@7609@macro@LANGUAGE_ZIMPL", + "kind": 9, + "parent_name": "", + "name": "LANGUAGE_ZIMPL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 150, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@7645@macro@LANGUAGE_S", + "kind": 9, + "parent_name": "", + "name": "LANGUAGE_S", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 151, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@7681@macro@LANGUAGE_R", + "kind": 9, + "parent_name": "", + "name": "LANGUAGE_R", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 152, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@7717@macro@LANGUAGE_MATLAB", + "kind": 9, + "parent_name": "", + "name": "LANGUAGE_MATLAB", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 153, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@7753@macro@LANGUAGE_OMATRIX", + "kind": 9, + "parent_name": "", + "name": "LANGUAGE_OMATRIX", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 154, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@7789@macro@LANGUAGE_SCILAB", + "kind": 9, + "parent_name": "", + "name": "LANGUAGE_SCILAB", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 155, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@7825@macro@LANGUAGE_OCTAVE", + "kind": 9, + "parent_name": "", + "name": "LANGUAGE_OCTAVE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 156, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@7861@macro@LANGUAGE_EMPS", + "kind": 9, + "parent_name": "", + "name": "LANGUAGE_EMPS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 157, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@8016@macro@LANGUAGE_ACTIVE", + "kind": 9, + "parent_name": "", + "name": "LANGUAGE_ACTIVE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 161, + "column": 13, + "hidden": false + }, + { + "usr": "c:lp_lib.h@8367@macro@OriginalPARAM", + "kind": 9, + "parent_name": "", + "name": "OriginalPARAM", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 170, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@8402@macro@ProductionPARAM", + "kind": 9, + "parent_name": "", + "name": "ProductionPARAM", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 171, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@8437@macro@ChvatalPARAM", + "kind": 9, + "parent_name": "", + "name": "ChvatalPARAM", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 172, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@8472@macro@LoosePARAM", + "kind": 9, + "parent_name": "", + "name": "LoosePARAM", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 173, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@8516@macro@ActivePARAM", + "kind": 9, + "parent_name": "", + "name": "ActivePARAM", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 175, + "column": 11, + "hidden": false + }, + { + "usr": "c:lp_lib.h@9029@macro@MAJORVERSION", + "kind": 9, + "parent_name": "", + "name": "MAJORVERSION", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 192, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@9065@macro@MINORVERSION", + "kind": 9, + "parent_name": "", + "name": "MINORVERSION", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 193, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@9101@macro@RELEASE", + "kind": 9, + "parent_name": "", + "name": "RELEASE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 194, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@9137@macro@BUILD", + "kind": 9, + "parent_name": "", + "name": "BUILD", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 195, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@9173@macro@BFPVERSION", + "kind": 9, + "parent_name": "", + "name": "BFPVERSION", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 196, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@9254@macro@XLIVERSION", + "kind": 9, + "parent_name": "", + "name": "XLIVERSION", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 197, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@10012@macro@BFP_CALLMODEL", + "kind": 9, + "parent_name": "", + "name": "BFP_CALLMODEL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 223, + "column": 13, + "hidden": false + }, + { + "usr": "c:lp_lib.h@10154@macro@XLI_CALLMODEL", + "kind": 9, + "parent_name": "", + "name": "XLI_CALLMODEL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 229, + "column": 11, + "hidden": false + }, + { + "usr": "c:lp_lib.h@10201@macro@REGISTER", + "kind": 9, + "parent_name": "", + "name": "REGISTER", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 232, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@10440@macro@SIMPLEX_UNDEFINED", + "kind": 9, + "parent_name": "", + "name": "SIMPLEX_UNDEFINED", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 237, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@10476@macro@SIMPLEX_Phase1_PRIMAL", + "kind": 9, + "parent_name": "", + "name": "SIMPLEX_Phase1_PRIMAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 238, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@10512@macro@SIMPLEX_Phase1_DUAL", + "kind": 9, + "parent_name": "", + "name": "SIMPLEX_Phase1_DUAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 239, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@10548@macro@SIMPLEX_Phase2_PRIMAL", + "kind": 9, + "parent_name": "", + "name": "SIMPLEX_Phase2_PRIMAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 240, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@10584@macro@SIMPLEX_Phase2_DUAL", + "kind": 9, + "parent_name": "", + "name": "SIMPLEX_Phase2_DUAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 241, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@10620@macro@SIMPLEX_DYNAMIC", + "kind": 9, + "parent_name": "", + "name": "SIMPLEX_DYNAMIC", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 242, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@10656@macro@SIMPLEX_AUTODUALIZE", + "kind": 9, + "parent_name": "", + "name": "SIMPLEX_AUTODUALIZE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 243, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@10694@macro@SIMPLEX_PRIMAL_PRIMAL", + "kind": 9, + "parent_name": "", + "name": "SIMPLEX_PRIMAL_PRIMAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 245, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@10775@macro@SIMPLEX_DUAL_PRIMAL", + "kind": 9, + "parent_name": "", + "name": "SIMPLEX_DUAL_PRIMAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 246, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@10856@macro@SIMPLEX_PRIMAL_DUAL", + "kind": 9, + "parent_name": "", + "name": "SIMPLEX_PRIMAL_DUAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 247, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@10935@macro@SIMPLEX_DUAL_DUAL", + "kind": 9, + "parent_name": "", + "name": "SIMPLEX_DUAL_DUAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 248, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@11014@macro@SIMPLEX_DEFAULT", + "kind": 9, + "parent_name": "", + "name": "SIMPLEX_DEFAULT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 249, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@11104@macro@ISREAL", + "kind": 9, + "parent_name": "", + "name": "ISREAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 252, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@11140@macro@ISINTEGER", + "kind": 9, + "parent_name": "", + "name": "ISINTEGER", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 253, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@11176@macro@ISSEMI", + "kind": 9, + "parent_name": "", + "name": "ISSEMI", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 254, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@11212@macro@ISSOS", + "kind": 9, + "parent_name": "", + "name": "ISSOS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 255, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@11248@macro@ISSOSTEMPINT", + "kind": 9, + "parent_name": "", + "name": "ISSOSTEMPINT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 256, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@11284@macro@ISGUB", + "kind": 9, + "parent_name": "", + "name": "ISGUB", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 257, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@11346@macro@PRESOLVE_NONE", + "kind": 9, + "parent_name": "", + "name": "PRESOLVE_NONE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 260, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@11382@macro@PRESOLVE_ROWS", + "kind": 9, + "parent_name": "", + "name": "PRESOLVE_ROWS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 261, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@11418@macro@PRESOLVE_COLS", + "kind": 9, + "parent_name": "", + "name": "PRESOLVE_COLS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 262, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@11454@macro@PRESOLVE_LINDEP", + "kind": 9, + "parent_name": "", + "name": "PRESOLVE_LINDEP", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 263, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@11490@macro@PRESOLVE_AGGREGATE", + "kind": 9, + "parent_name": "", + "name": "PRESOLVE_AGGREGATE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 264, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@11549@macro@PRESOLVE_SPARSER", + "kind": 9, + "parent_name": "", + "name": "PRESOLVE_SPARSER", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 265, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@11608@macro@PRESOLVE_SOS", + "kind": 9, + "parent_name": "", + "name": "PRESOLVE_SOS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 266, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@11644@macro@PRESOLVE_REDUCEMIP", + "kind": 9, + "parent_name": "", + "name": "PRESOLVE_REDUCEMIP", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 267, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@11680@macro@PRESOLVE_KNAPSACK", + "kind": 9, + "parent_name": "", + "name": "PRESOLVE_KNAPSACK", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 268, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@11760@macro@PRESOLVE_ELIMEQ2", + "kind": 9, + "parent_name": "", + "name": "PRESOLVE_ELIMEQ2", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 269, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@11796@macro@PRESOLVE_IMPLIEDFREE", + "kind": 9, + "parent_name": "", + "name": "PRESOLVE_IMPLIEDFREE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 270, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@11832@macro@PRESOLVE_REDUCEGCD", + "kind": 9, + "parent_name": "", + "name": "PRESOLVE_REDUCEGCD", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 271, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@11868@macro@PRESOLVE_PROBEFIX", + "kind": 9, + "parent_name": "", + "name": "PRESOLVE_PROBEFIX", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 272, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@11904@macro@PRESOLVE_PROBEREDUCE", + "kind": 9, + "parent_name": "", + "name": "PRESOLVE_PROBEREDUCE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 273, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@11940@macro@PRESOLVE_ROWDOMINATE", + "kind": 9, + "parent_name": "", + "name": "PRESOLVE_ROWDOMINATE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 274, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@11976@macro@PRESOLVE_COLDOMINATE", + "kind": 9, + "parent_name": "", + "name": "PRESOLVE_COLDOMINATE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 275, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@12061@macro@PRESOLVE_MERGEROWS", + "kind": 9, + "parent_name": "", + "name": "PRESOLVE_MERGEROWS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 276, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@12097@macro@PRESOLVE_IMPLIEDSLK", + "kind": 9, + "parent_name": "", + "name": "PRESOLVE_IMPLIEDSLK", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 277, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@12133@macro@PRESOLVE_COLFIXDUAL", + "kind": 9, + "parent_name": "", + "name": "PRESOLVE_COLFIXDUAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 278, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@12169@macro@PRESOLVE_BOUNDS", + "kind": 9, + "parent_name": "", + "name": "PRESOLVE_BOUNDS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 279, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@12205@macro@PRESOLVE_LASTMASKMODE", + "kind": 9, + "parent_name": "", + "name": "PRESOLVE_LASTMASKMODE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 280, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@12260@macro@PRESOLVE_DUALS", + "kind": 9, + "parent_name": "", + "name": "PRESOLVE_DUALS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 281, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@12296@macro@PRESOLVE_SENSDUALS", + "kind": 9, + "parent_name": "", + "name": "PRESOLVE_SENSDUALS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 282, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@12361@macro@CRASH_NONE", + "kind": 9, + "parent_name": "", + "name": "CRASH_NONE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 285, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@12397@macro@CRASH_NONBASICBOUNDS", + "kind": 9, + "parent_name": "", + "name": "CRASH_NONBASICBOUNDS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 286, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@12433@macro@CRASH_MOSTFEASIBLE", + "kind": 9, + "parent_name": "", + "name": "CRASH_MOSTFEASIBLE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 287, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@12469@macro@CRASH_LEASTDEGENERATE", + "kind": 9, + "parent_name": "", + "name": "CRASH_LEASTDEGENERATE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 288, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@12556@macro@INITSOL_SHIFTZERO", + "kind": 9, + "parent_name": "", + "name": "INITSOL_SHIFTZERO", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 291, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@12592@macro@INITSOL_USEZERO", + "kind": 9, + "parent_name": "", + "name": "INITSOL_USEZERO", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 292, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@12628@macro@INITSOL_ORIGINAL", + "kind": 9, + "parent_name": "", + "name": "INITSOL_ORIGINAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 293, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@12800@macro@ANTIDEGEN_NONE", + "kind": 9, + "parent_name": "", + "name": "ANTIDEGEN_NONE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 297, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@12836@macro@ANTIDEGEN_FIXEDVARS", + "kind": 9, + "parent_name": "", + "name": "ANTIDEGEN_FIXEDVARS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 298, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@12872@macro@ANTIDEGEN_COLUMNCHECK", + "kind": 9, + "parent_name": "", + "name": "ANTIDEGEN_COLUMNCHECK", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 299, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@12908@macro@ANTIDEGEN_STALLING", + "kind": 9, + "parent_name": "", + "name": "ANTIDEGEN_STALLING", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 300, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@12944@macro@ANTIDEGEN_NUMFAILURE", + "kind": 9, + "parent_name": "", + "name": "ANTIDEGEN_NUMFAILURE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 301, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@12980@macro@ANTIDEGEN_LOSTFEAS", + "kind": 9, + "parent_name": "", + "name": "ANTIDEGEN_LOSTFEAS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 302, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@13016@macro@ANTIDEGEN_INFEASIBLE", + "kind": 9, + "parent_name": "", + "name": "ANTIDEGEN_INFEASIBLE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 303, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@13052@macro@ANTIDEGEN_DYNAMIC", + "kind": 9, + "parent_name": "", + "name": "ANTIDEGEN_DYNAMIC", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 304, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@13088@macro@ANTIDEGEN_DURINGBB", + "kind": 9, + "parent_name": "", + "name": "ANTIDEGEN_DURINGBB", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 305, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@13124@macro@ANTIDEGEN_RHSPERTURB", + "kind": 9, + "parent_name": "", + "name": "ANTIDEGEN_RHSPERTURB", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 306, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@13160@macro@ANTIDEGEN_BOUNDFLIP", + "kind": 9, + "parent_name": "", + "name": "ANTIDEGEN_BOUNDFLIP", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 307, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@13196@macro@ANTIDEGEN_DEFAULT", + "kind": 9, + "parent_name": "", + "name": "ANTIDEGEN_DEFAULT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 308, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@13326@macro@NEUTRAL", + "kind": 9, + "parent_name": "", + "name": "NEUTRAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 311, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@13362@macro@CRITICAL", + "kind": 9, + "parent_name": "", + "name": "CRITICAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 312, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@13398@macro@SEVERE", + "kind": 9, + "parent_name": "", + "name": "SEVERE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 313, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@13434@macro@IMPORTANT", + "kind": 9, + "parent_name": "", + "name": "IMPORTANT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 314, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@13470@macro@NORMAL", + "kind": 9, + "parent_name": "", + "name": "NORMAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 315, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@13506@macro@DETAILED", + "kind": 9, + "parent_name": "", + "name": "DETAILED", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 316, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@13542@macro@FULL", + "kind": 9, + "parent_name": "", + "name": "FULL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 317, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@13603@macro@MSG_NONE", + "kind": 9, + "parent_name": "", + "name": "MSG_NONE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 320, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@13639@macro@MSG_PRESOLVE", + "kind": 9, + "parent_name": "", + "name": "MSG_PRESOLVE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 321, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@13675@macro@MSG_ITERATION", + "kind": 9, + "parent_name": "", + "name": "MSG_ITERATION", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 322, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@13711@macro@MSG_INVERT", + "kind": 9, + "parent_name": "", + "name": "MSG_INVERT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 323, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@13747@macro@MSG_LPFEASIBLE", + "kind": 9, + "parent_name": "", + "name": "MSG_LPFEASIBLE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 324, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@13783@macro@MSG_LPOPTIMAL", + "kind": 9, + "parent_name": "", + "name": "MSG_LPOPTIMAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 325, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@13819@macro@MSG_LPEQUAL", + "kind": 9, + "parent_name": "", + "name": "MSG_LPEQUAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 326, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@13855@macro@MSG_LPBETTER", + "kind": 9, + "parent_name": "", + "name": "MSG_LPBETTER", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 327, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@13891@macro@MSG_MILPFEASIBLE", + "kind": 9, + "parent_name": "", + "name": "MSG_MILPFEASIBLE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 328, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@13927@macro@MSG_MILPEQUAL", + "kind": 9, + "parent_name": "", + "name": "MSG_MILPEQUAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 329, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@13963@macro@MSG_MILPBETTER", + "kind": 9, + "parent_name": "", + "name": "MSG_MILPBETTER", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 330, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@13999@macro@MSG_MILPSTRATEGY", + "kind": 9, + "parent_name": "", + "name": "MSG_MILPSTRATEGY", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 331, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@14035@macro@MSG_MILPOPTIMAL", + "kind": 9, + "parent_name": "", + "name": "MSG_MILPOPTIMAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 332, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@14071@macro@MSG_PERFORMANCE", + "kind": 9, + "parent_name": "", + "name": "MSG_PERFORMANCE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 333, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@14107@macro@MSG_INITPSEUDOCOST", + "kind": 9, + "parent_name": "", + "name": "MSG_INITPSEUDOCOST", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 334, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@14167@macro@MPSFIXED", + "kind": 9, + "parent_name": "", + "name": "MPSFIXED", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 337, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@14203@macro@MPSFREE", + "kind": 9, + "parent_name": "", + "name": "MPSFREE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 338, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@14239@macro@MPSIBM", + "kind": 9, + "parent_name": "", + "name": "MPSIBM", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 339, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@14275@macro@MPSNEGOBJCONST", + "kind": 9, + "parent_name": "", + "name": "MPSNEGOBJCONST", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 340, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@14313@macro@MPS_FREE", + "kind": 9, + "parent_name": "", + "name": "MPS_FREE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 342, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@14360@macro@MPS_IBM", + "kind": 9, + "parent_name": "", + "name": "MPS_IBM", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 343, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@14406@macro@MPS_NEGOBJCONST", + "kind": 9, + "parent_name": "", + "name": "MPS_NEGOBJCONST", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 344, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@14492@macro@MPSUNDEF", + "kind": 9, + "parent_name": "", + "name": "MPSUNDEF", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 347, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@14528@macro@MPSNAME", + "kind": 9, + "parent_name": "", + "name": "MPSNAME", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 348, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@14564@macro@MPSOBJSENSE", + "kind": 9, + "parent_name": "", + "name": "MPSOBJSENSE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 349, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@14600@macro@MPSOBJNAME", + "kind": 9, + "parent_name": "", + "name": "MPSOBJNAME", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 350, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@14636@macro@MPSROWS", + "kind": 9, + "parent_name": "", + "name": "MPSROWS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 351, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@14672@macro@MPSCOLUMNS", + "kind": 9, + "parent_name": "", + "name": "MPSCOLUMNS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 352, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@14708@macro@MPSRHS", + "kind": 9, + "parent_name": "", + "name": "MPSRHS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 353, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@14744@macro@MPSBOUNDS", + "kind": 9, + "parent_name": "", + "name": "MPSBOUNDS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 354, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@14780@macro@MPSRANGES", + "kind": 9, + "parent_name": "", + "name": "MPSRANGES", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 355, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@14816@macro@MPSSOS", + "kind": 9, + "parent_name": "", + "name": "MPSSOS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 356, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@14854@macro@MPSVARMASK", + "kind": 9, + "parent_name": "", + "name": "MPSVARMASK", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 358, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@14890@macro@MPSVALUEMASK", + "kind": 9, + "parent_name": "", + "name": "MPSVALUEMASK", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 359, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@14969@macro@ROWTYPE_EMPTY", + "kind": 9, + "parent_name": "", + "name": "ROWTYPE_EMPTY", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 362, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@15005@macro@ROWTYPE_LE", + "kind": 9, + "parent_name": "", + "name": "ROWTYPE_LE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 363, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@15041@macro@ROWTYPE_GE", + "kind": 9, + "parent_name": "", + "name": "ROWTYPE_GE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 364, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@15077@macro@ROWTYPE_EQ", + "kind": 9, + "parent_name": "", + "name": "ROWTYPE_EQ", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 365, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@15113@macro@ROWTYPE_CONSTRAINT", + "kind": 9, + "parent_name": "", + "name": "ROWTYPE_CONSTRAINT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 366, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@15192@macro@ROWTYPE_OF", + "kind": 9, + "parent_name": "", + "name": "ROWTYPE_OF", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 367, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@15228@macro@ROWTYPE_INACTIVE", + "kind": 9, + "parent_name": "", + "name": "ROWTYPE_INACTIVE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 368, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@15264@macro@ROWTYPE_RELAX", + "kind": 9, + "parent_name": "", + "name": "ROWTYPE_RELAX", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 369, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@15300@macro@ROWTYPE_GUB", + "kind": 9, + "parent_name": "", + "name": "ROWTYPE_GUB", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 370, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@15336@macro@ROWTYPE_OFMAX", + "kind": 9, + "parent_name": "", + "name": "ROWTYPE_OFMAX", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 371, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@15396@macro@ROWTYPE_OFMIN", + "kind": 9, + "parent_name": "", + "name": "ROWTYPE_OFMIN", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 372, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@15456@macro@ROWTYPE_CHSIGN", + "kind": 9, + "parent_name": "", + "name": "ROWTYPE_CHSIGN", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 373, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@15534@macro@FR", + "kind": 9, + "parent_name": "", + "name": "FR", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 376, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@15582@macro@LE", + "kind": 9, + "parent_name": "", + "name": "LE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 377, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@15627@macro@GE", + "kind": 9, + "parent_name": "", + "name": "GE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 378, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@15672@macro@EQ", + "kind": 9, + "parent_name": "", + "name": "EQ", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 379, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@15717@macro@OF", + "kind": 9, + "parent_name": "", + "name": "OF", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 380, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@15794@macro@ROWCLASS_Unknown", + "kind": 9, + "parent_name": "", + "name": "ROWCLASS_Unknown", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 383, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@15856@macro@ROWCLASS_Objective", + "kind": 9, + "parent_name": "", + "name": "ROWCLASS_Objective", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 384, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@15923@macro@ROWCLASS_GeneralREAL", + "kind": 9, + "parent_name": "", + "name": "ROWCLASS_GeneralREAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 385, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@15998@macro@ROWCLASS_GeneralMIP", + "kind": 9, + "parent_name": "", + "name": "ROWCLASS_GeneralMIP", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 386, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@16098@macro@ROWCLASS_GeneralINT", + "kind": 9, + "parent_name": "", + "name": "ROWCLASS_GeneralINT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 387, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@16174@macro@ROWCLASS_GeneralBIN", + "kind": 9, + "parent_name": "", + "name": "ROWCLASS_GeneralBIN", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 388, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@16249@macro@ROWCLASS_KnapsackINT", + "kind": 9, + "parent_name": "", + "name": "ROWCLASS_KnapsackINT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 389, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@16361@macro@ROWCLASS_KnapsackBIN", + "kind": 9, + "parent_name": "", + "name": "ROWCLASS_KnapsackBIN", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 390, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@16472@macro@ROWCLASS_SetPacking", + "kind": 9, + "parent_name": "", + "name": "ROWCLASS_SetPacking", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 391, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@16545@macro@ROWCLASS_SetCover", + "kind": 9, + "parent_name": "", + "name": "ROWCLASS_SetCover", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 392, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@16618@macro@ROWCLASS_GUB", + "kind": 9, + "parent_name": "", + "name": "ROWCLASS_GUB", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 393, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@16691@macro@ROWCLASS_MAX", + "kind": 9, + "parent_name": "", + "name": "ROWCLASS_MAX", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 394, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@16773@macro@SCAN_USERVARS", + "kind": 9, + "parent_name": "", + "name": "SCAN_USERVARS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 397, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@16809@macro@SCAN_SLACKVARS", + "kind": 9, + "parent_name": "", + "name": "SCAN_SLACKVARS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 398, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@16845@macro@SCAN_ARTIFICIALVARS", + "kind": 9, + "parent_name": "", + "name": "SCAN_ARTIFICIALVARS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 399, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@16881@macro@SCAN_PARTIALBLOCK", + "kind": 9, + "parent_name": "", + "name": "SCAN_PARTIALBLOCK", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 400, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@16917@macro@USE_BASICVARS", + "kind": 9, + "parent_name": "", + "name": "USE_BASICVARS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 401, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@16953@macro@USE_NONBASICVARS", + "kind": 9, + "parent_name": "", + "name": "USE_NONBASICVARS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 402, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@16989@macro@SCAN_NORMALVARS", + "kind": 9, + "parent_name": "", + "name": "SCAN_NORMALVARS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 403, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@17060@macro@SCAN_ALLVARS", + "kind": 9, + "parent_name": "", + "name": "SCAN_ALLVARS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 404, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@17148@macro@USE_ALLVARS", + "kind": 9, + "parent_name": "", + "name": "USE_ALLVARS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 405, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@17216@macro@OMIT_FIXED", + "kind": 9, + "parent_name": "", + "name": "OMIT_FIXED", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 406, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@17252@macro@OMIT_NONFIXED", + "kind": 9, + "parent_name": "", + "name": "OMIT_NONFIXED", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 407, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@17317@macro@IMPROVE_NONE", + "kind": 9, + "parent_name": "", + "name": "IMPROVE_NONE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 410, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@17353@macro@IMPROVE_SOLUTION", + "kind": 9, + "parent_name": "", + "name": "IMPROVE_SOLUTION", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 411, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@17389@macro@IMPROVE_DUALFEAS", + "kind": 9, + "parent_name": "", + "name": "IMPROVE_DUALFEAS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 412, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@17425@macro@IMPROVE_THETAGAP", + "kind": 9, + "parent_name": "", + "name": "IMPROVE_THETAGAP", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 413, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@17461@macro@IMPROVE_BBSIMPLEX", + "kind": 9, + "parent_name": "", + "name": "IMPROVE_BBSIMPLEX", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 414, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@17497@macro@IMPROVE_DEFAULT", + "kind": 9, + "parent_name": "", + "name": "IMPROVE_DEFAULT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 415, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@17569@macro@IMPROVE_INVERSE", + "kind": 9, + "parent_name": "", + "name": "IMPROVE_INVERSE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 416, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@17664@macro@SCALE_NONE", + "kind": 9, + "parent_name": "", + "name": "SCALE_NONE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 419, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@17700@macro@SCALE_EXTREME", + "kind": 9, + "parent_name": "", + "name": "SCALE_EXTREME", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 420, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@17736@macro@SCALE_RANGE", + "kind": 9, + "parent_name": "", + "name": "SCALE_RANGE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 421, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@17772@macro@SCALE_MEAN", + "kind": 9, + "parent_name": "", + "name": "SCALE_MEAN", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 422, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@17808@macro@SCALE_GEOMETRIC", + "kind": 9, + "parent_name": "", + "name": "SCALE_GEOMETRIC", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 423, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@17844@macro@SCALE_FUTURE1", + "kind": 9, + "parent_name": "", + "name": "SCALE_FUTURE1", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 424, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@17880@macro@SCALE_FUTURE2", + "kind": 9, + "parent_name": "", + "name": "SCALE_FUTURE2", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 425, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@17916@macro@SCALE_CURTISREID", + "kind": 9, + "parent_name": "", + "name": "SCALE_CURTISREID", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 426, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@18039@macro@SCALE_LINEAR", + "kind": 9, + "parent_name": "", + "name": "SCALE_LINEAR", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 429, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@18075@macro@SCALE_QUADRATIC", + "kind": 9, + "parent_name": "", + "name": "SCALE_QUADRATIC", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 430, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@18111@macro@SCALE_LOGARITHMIC", + "kind": 9, + "parent_name": "", + "name": "SCALE_LOGARITHMIC", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 431, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@18147@macro@SCALE_USERWEIGHT", + "kind": 9, + "parent_name": "", + "name": "SCALE_USERWEIGHT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 432, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@18183@macro@SCALE_MAXTYPE", + "kind": 9, + "parent_name": "", + "name": "SCALE_MAXTYPE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 433, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@18260@macro@SCALE_POWER2", + "kind": 9, + "parent_name": "", + "name": "SCALE_POWER2", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 436, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@18335@macro@SCALE_EQUILIBRATE", + "kind": 9, + "parent_name": "", + "name": "SCALE_EQUILIBRATE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 437, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@18422@macro@SCALE_INTEGERS", + "kind": 9, + "parent_name": "", + "name": "SCALE_INTEGERS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 438, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@18501@macro@SCALE_DYNUPDATE", + "kind": 9, + "parent_name": "", + "name": "SCALE_DYNUPDATE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 439, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@18579@macro@SCALE_ROWSONLY", + "kind": 9, + "parent_name": "", + "name": "SCALE_ROWSONLY", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 440, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@18667@macro@SCALE_COLSONLY", + "kind": 9, + "parent_name": "", + "name": "SCALE_COLSONLY", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 441, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@18825@macro@SCALEMODEL_EQUILIBRATED", + "kind": 9, + "parent_name": "", + "name": "SCALEMODEL_EQUILIBRATED", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 444, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@18903@macro@SCALEMODEL_GEOMETRIC", + "kind": 9, + "parent_name": "", + "name": "SCALEMODEL_GEOMETRIC", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 445, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@18983@macro@SCALEMODEL_ARITHMETIC", + "kind": 9, + "parent_name": "", + "name": "SCALEMODEL_ARITHMETIC", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 446, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@19058@macro@SCALEMODEL_DYNAMIC", + "kind": 9, + "parent_name": "", + "name": "SCALEMODEL_DYNAMIC", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 447, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@19133@macro@SCALEMODEL_CURTISREID", + "kind": 9, + "parent_name": "", + "name": "SCALEMODEL_CURTISREID", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 448, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@19266@macro@ITERATE_MAJORMAJOR", + "kind": 9, + "parent_name": "", + "name": "ITERATE_MAJORMAJOR", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 451, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@19302@macro@ITERATE_MINORMAJOR", + "kind": 9, + "parent_name": "", + "name": "ITERATE_MINORMAJOR", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 452, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@19338@macro@ITERATE_MINORRETRY", + "kind": 9, + "parent_name": "", + "name": "ITERATE_MINORRETRY", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 453, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@19399@macro@PRICER_FIRSTINDEX", + "kind": 9, + "parent_name": "", + "name": "PRICER_FIRSTINDEX", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 456, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@19435@macro@PRICER_DANTZIG", + "kind": 9, + "parent_name": "", + "name": "PRICER_DANTZIG", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 457, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@19471@macro@PRICER_DEVEX", + "kind": 9, + "parent_name": "", + "name": "PRICER_DEVEX", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 458, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@19507@macro@PRICER_STEEPESTEDGE", + "kind": 9, + "parent_name": "", + "name": "PRICER_STEEPESTEDGE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 459, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@19543@macro@PRICER_LASTOPTION", + "kind": 9, + "parent_name": "", + "name": "PRICER_LASTOPTION", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 460, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@19649@macro@PRICER_RANDFACT", + "kind": 9, + "parent_name": "", + "name": "PRICER_RANDFACT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 463, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@19685@macro@DEVEX_RESTARTLIMIT", + "kind": 9, + "parent_name": "", + "name": "DEVEX_RESTARTLIMIT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 464, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@19778@macro@DEVEX_MINVALUE", + "kind": 9, + "parent_name": "", + "name": "DEVEX_MINVALUE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 465, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@19910@macro@PRICE_PRIMALFALLBACK", + "kind": 9, + "parent_name": "", + "name": "PRICE_PRIMALFALLBACK", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 468, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@20010@macro@PRICE_MULTIPLE", + "kind": 9, + "parent_name": "", + "name": "PRICE_MULTIPLE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 469, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@20096@macro@PRICE_PARTIAL", + "kind": 9, + "parent_name": "", + "name": "PRICE_PARTIAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 470, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@20164@macro@PRICE_ADAPTIVE", + "kind": 9, + "parent_name": "", + "name": "PRICE_ADAPTIVE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 471, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@20269@macro@PRICE_HYBRID", + "kind": 9, + "parent_name": "", + "name": "PRICE_HYBRID", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 472, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@20330@macro@PRICE_RANDOMIZE", + "kind": 9, + "parent_name": "", + "name": "PRICE_RANDOMIZE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 473, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@20432@macro@PRICE_AUTOPARTIAL", + "kind": 9, + "parent_name": "", + "name": "PRICE_AUTOPARTIAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 474, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@20542@macro@PRICE_AUTOMULTIPLE", + "kind": 9, + "parent_name": "", + "name": "PRICE_AUTOMULTIPLE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 475, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@20642@macro@PRICE_LOOPLEFT", + "kind": 9, + "parent_name": "", + "name": "PRICE_LOOPLEFT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 476, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@20740@macro@PRICE_LOOPALTERNATE", + "kind": 9, + "parent_name": "", + "name": "PRICE_LOOPALTERNATE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 477, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@20840@macro@PRICE_HARRISTWOPASS", + "kind": 9, + "parent_name": "", + "name": "PRICE_HARRISTWOPASS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 478, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@20940@macro@PRICE_FORCEFULL", + "kind": 9, + "parent_name": "", + "name": "PRICE_FORCEFULL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 479, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@21023@macro@PRICE_TRUENORMINIT", + "kind": 9, + "parent_name": "", + "name": "PRICE_TRUENORMINIT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 480, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@21291@macro@PRICE_STRATEGYMASK", + "kind": 9, + "parent_name": "", + "name": "PRICE_STRATEGYMASK", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 487, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@21840@macro@BB_REAL", + "kind": 9, + "parent_name": "", + "name": "BB_REAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 496, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@21876@macro@BB_INT", + "kind": 9, + "parent_name": "", + "name": "BB_INT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 497, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@21912@macro@BB_SC", + "kind": 9, + "parent_name": "", + "name": "BB_SC", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 498, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@21948@macro@BB_SOS", + "kind": 9, + "parent_name": "", + "name": "BB_SOS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 499, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@21984@macro@BB_GUB", + "kind": 9, + "parent_name": "", + "name": "BB_GUB", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 500, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@22044@macro@NODE_FIRSTSELECT", + "kind": 9, + "parent_name": "", + "name": "NODE_FIRSTSELECT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 503, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@22080@macro@NODE_GAPSELECT", + "kind": 9, + "parent_name": "", + "name": "NODE_GAPSELECT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 504, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@22116@macro@NODE_RANGESELECT", + "kind": 9, + "parent_name": "", + "name": "NODE_RANGESELECT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 505, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@22152@macro@NODE_FRACTIONSELECT", + "kind": 9, + "parent_name": "", + "name": "NODE_FRACTIONSELECT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 506, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@22188@macro@NODE_PSEUDOCOSTSELECT", + "kind": 9, + "parent_name": "", + "name": "NODE_PSEUDOCOSTSELECT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 507, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@22224@macro@NODE_PSEUDONONINTSELECT", + "kind": 9, + "parent_name": "", + "name": "NODE_PSEUDONONINTSELECT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 508, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@22307@macro@NODE_PSEUDOFEASSELECT", + "kind": 9, + "parent_name": "", + "name": "NODE_PSEUDOFEASSELECT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 509, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@22389@macro@NODE_PSEUDORATIOSELECT", + "kind": 9, + "parent_name": "", + "name": "NODE_PSEUDORATIOSELECT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 510, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@22485@macro@NODE_USERSELECT", + "kind": 9, + "parent_name": "", + "name": "NODE_USERSELECT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 511, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@22521@macro@NODE_STRATEGYMASK", + "kind": 9, + "parent_name": "", + "name": "NODE_STRATEGYMASK", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 512, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@22612@macro@NODE_WEIGHTREVERSEMODE", + "kind": 9, + "parent_name": "", + "name": "NODE_WEIGHTREVERSEMODE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 513, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@22648@macro@NODE_BRANCHREVERSEMODE", + "kind": 9, + "parent_name": "", + "name": "NODE_BRANCHREVERSEMODE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 514, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@22684@macro@NODE_GREEDYMODE", + "kind": 9, + "parent_name": "", + "name": "NODE_GREEDYMODE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 515, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@22720@macro@NODE_PSEUDOCOSTMODE", + "kind": 9, + "parent_name": "", + "name": "NODE_PSEUDOCOSTMODE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 516, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@22756@macro@NODE_DEPTHFIRSTMODE", + "kind": 9, + "parent_name": "", + "name": "NODE_DEPTHFIRSTMODE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 517, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@22792@macro@NODE_RANDOMIZEMODE", + "kind": 9, + "parent_name": "", + "name": "NODE_RANDOMIZEMODE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 518, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@22828@macro@NODE_GUBMODE", + "kind": 9, + "parent_name": "", + "name": "NODE_GUBMODE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 519, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@22864@macro@NODE_DYNAMICMODE", + "kind": 9, + "parent_name": "", + "name": "NODE_DYNAMICMODE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 520, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@22900@macro@NODE_RESTARTMODE", + "kind": 9, + "parent_name": "", + "name": "NODE_RESTARTMODE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 521, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@22936@macro@NODE_BREADTHFIRSTMODE", + "kind": 9, + "parent_name": "", + "name": "NODE_BREADTHFIRSTMODE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 522, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@22972@macro@NODE_AUTOORDER", + "kind": 9, + "parent_name": "", + "name": "NODE_AUTOORDER", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 523, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@23008@macro@NODE_RCOSTFIXING", + "kind": 9, + "parent_name": "", + "name": "NODE_RCOSTFIXING", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 524, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@23044@macro@NODE_STRONGINIT", + "kind": 9, + "parent_name": "", + "name": "NODE_STRONGINIT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 525, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@23082@macro@BRANCH_CEILING", + "kind": 9, + "parent_name": "", + "name": "BRANCH_CEILING", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 527, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@23118@macro@BRANCH_FLOOR", + "kind": 9, + "parent_name": "", + "name": "BRANCH_FLOOR", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 528, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@23154@macro@BRANCH_AUTOMATIC", + "kind": 9, + "parent_name": "", + "name": "BRANCH_AUTOMATIC", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 529, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@23190@macro@BRANCH_DEFAULT", + "kind": 9, + "parent_name": "", + "name": "BRANCH_DEFAULT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 530, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@23283@macro@ACTION_NONE", + "kind": 9, + "parent_name": "", + "name": "ACTION_NONE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 533, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@23319@macro@ACTION_ACTIVE", + "kind": 9, + "parent_name": "", + "name": "ACTION_ACTIVE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 534, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@23355@macro@ACTION_REBASE", + "kind": 9, + "parent_name": "", + "name": "ACTION_REBASE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 535, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@23391@macro@ACTION_RECOMPUTE", + "kind": 9, + "parent_name": "", + "name": "ACTION_RECOMPUTE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 536, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@23427@macro@ACTION_REPRICE", + "kind": 9, + "parent_name": "", + "name": "ACTION_REPRICE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 537, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@23463@macro@ACTION_REINVERT", + "kind": 9, + "parent_name": "", + "name": "ACTION_REINVERT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 538, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@23499@macro@ACTION_TIMEDREINVERT", + "kind": 9, + "parent_name": "", + "name": "ACTION_TIMEDREINVERT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 539, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@23535@macro@ACTION_ITERATE", + "kind": 9, + "parent_name": "", + "name": "ACTION_ITERATE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 540, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@23571@macro@ACTION_RESTART", + "kind": 9, + "parent_name": "", + "name": "ACTION_RESTART", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 541, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@23637@macro@UNKNOWNERROR", + "kind": 9, + "parent_name": "", + "name": "UNKNOWNERROR", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 544, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@23673@macro@DATAIGNORED", + "kind": 9, + "parent_name": "", + "name": "DATAIGNORED", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 545, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@23709@macro@NOBFP", + "kind": 9, + "parent_name": "", + "name": "NOBFP", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 546, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@23745@macro@NOMEMORY", + "kind": 9, + "parent_name": "", + "name": "NOMEMORY", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 547, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@23781@macro@NOTRUN", + "kind": 9, + "parent_name": "", + "name": "NOTRUN", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 548, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@23817@macro@OPTIMAL", + "kind": 9, + "parent_name": "", + "name": "OPTIMAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 549, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@23853@macro@SUBOPTIMAL", + "kind": 9, + "parent_name": "", + "name": "SUBOPTIMAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 550, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@23889@macro@INFEASIBLE", + "kind": 9, + "parent_name": "", + "name": "INFEASIBLE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 551, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@23925@macro@UNBOUNDED", + "kind": 9, + "parent_name": "", + "name": "UNBOUNDED", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 552, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@23961@macro@DEGENERATE", + "kind": 9, + "parent_name": "", + "name": "DEGENERATE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 553, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@23997@macro@NUMFAILURE", + "kind": 9, + "parent_name": "", + "name": "NUMFAILURE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 554, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@24033@macro@USERABORT", + "kind": 9, + "parent_name": "", + "name": "USERABORT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 555, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@24069@macro@TIMEOUT", + "kind": 9, + "parent_name": "", + "name": "TIMEOUT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 556, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@24105@macro@RUNNING", + "kind": 9, + "parent_name": "", + "name": "RUNNING", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 557, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@24141@macro@PRESOLVED", + "kind": 9, + "parent_name": "", + "name": "PRESOLVED", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 558, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@24247@macro@PROCFAIL", + "kind": 9, + "parent_name": "", + "name": "PROCFAIL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 561, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@24283@macro@PROCBREAK", + "kind": 9, + "parent_name": "", + "name": "PROCBREAK", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 562, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@24319@macro@FEASFOUND", + "kind": 9, + "parent_name": "", + "name": "FEASFOUND", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 563, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@24355@macro@NOFEASFOUND", + "kind": 9, + "parent_name": "", + "name": "NOFEASFOUND", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 564, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@24391@macro@FATHOMED", + "kind": 9, + "parent_name": "", + "name": "FATHOMED", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 565, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@24484@macro@SWITCH_TO_PRIMAL", + "kind": 9, + "parent_name": "", + "name": "SWITCH_TO_PRIMAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 568, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@24520@macro@SWITCH_TO_DUAL", + "kind": 9, + "parent_name": "", + "name": "SWITCH_TO_DUAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 569, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@24556@macro@SINGULAR_BASIS", + "kind": 9, + "parent_name": "", + "name": "SINGULAR_BASIS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 570, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@24592@macro@LOSTFEAS", + "kind": 9, + "parent_name": "", + "name": "LOSTFEAS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 571, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@24628@macro@MATRIXERROR", + "kind": 9, + "parent_name": "", + "name": "MATRIXERROR", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 572, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@24726@macro@OF_RELAXED", + "kind": 9, + "parent_name": "", + "name": "OF_RELAXED", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 575, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@24762@macro@OF_INCUMBENT", + "kind": 9, + "parent_name": "", + "name": "OF_INCUMBENT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 576, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@24798@macro@OF_WORKING", + "kind": 9, + "parent_name": "", + "name": "OF_WORKING", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 577, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@24834@macro@OF_USERBREAK", + "kind": 9, + "parent_name": "", + "name": "OF_USERBREAK", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 578, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@24870@macro@OF_HEURISTIC", + "kind": 9, + "parent_name": "", + "name": "OF_HEURISTIC", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 579, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@24906@macro@OF_DUALLIMIT", + "kind": 9, + "parent_name": "", + "name": "OF_DUALLIMIT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 580, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@24942@macro@OF_DELTA", + "kind": 9, + "parent_name": "", + "name": "OF_DELTA", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 581, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@24990@macro@OF_PROJECTED", + "kind": 9, + "parent_name": "", + "name": "OF_PROJECTED", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 582, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@25061@macro@OF_TEST_BT", + "kind": 9, + "parent_name": "", + "name": "OF_TEST_BT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 584, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@25097@macro@OF_TEST_BE", + "kind": 9, + "parent_name": "", + "name": "OF_TEST_BE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 585, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@25133@macro@OF_TEST_NE", + "kind": 9, + "parent_name": "", + "name": "OF_TEST_NE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 586, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@25169@macro@OF_TEST_WE", + "kind": 9, + "parent_name": "", + "name": "OF_TEST_WE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 587, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@25205@macro@OF_TEST_WT", + "kind": 9, + "parent_name": "", + "name": "OF_TEST_WT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 588, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@25241@macro@OF_TEST_RELGAP", + "kind": 9, + "parent_name": "", + "name": "OF_TEST_RELGAP", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 589, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@25358@macro@MAT_START_SIZE", + "kind": 9, + "parent_name": "", + "name": "MAT_START_SIZE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 593, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@25394@macro@DELTACOLALLOC", + "kind": 9, + "parent_name": "", + "name": "DELTACOLALLOC", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 594, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@25430@macro@DELTAROWALLOC", + "kind": 9, + "parent_name": "", + "name": "DELTAROWALLOC", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 595, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@25466@macro@RESIZEFACTOR", + "kind": 9, + "parent_name": "", + "name": "RESIZEFACTOR", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 596, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@25621@macro@DEF_PARTIALBLOCKS", + "kind": 9, + "parent_name": "", + "name": "DEF_PARTIALBLOCKS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 599, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@25713@macro@DEF_MAXRELAX", + "kind": 9, + "parent_name": "", + "name": "DEF_MAXRELAX", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 600, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@25801@macro@DEF_MAXPIVOTRETRY", + "kind": 9, + "parent_name": "", + "name": "DEF_MAXPIVOTRETRY", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 601, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@25895@macro@DEF_MAXSINGULARITIES", + "kind": 9, + "parent_name": "", + "name": "DEF_MAXSINGULARITIES", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 602, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@25989@macro@MAX_MINITUPDATES", + "kind": 9, + "parent_name": "", + "name": "MAX_MINITUPDATES", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 603, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@26181@macro@MIN_REFACTFREQUENCY", + "kind": 9, + "parent_name": "", + "name": "MIN_REFACTFREQUENCY", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 605, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@26348@macro@LAG_SINGULARLIMIT", + "kind": 9, + "parent_name": "", + "name": "LAG_SINGULARLIMIT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 607, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@26716@macro@MIN_TIMEPIVOT", + "kind": 9, + "parent_name": "", + "name": "MIN_TIMEPIVOT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 611, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@27065@macro@MAX_STALLCOUNT", + "kind": 9, + "parent_name": "", + "name": "MAX_STALLCOUNT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 615, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@27243@macro@MAX_RULESWITCH", + "kind": 9, + "parent_name": "", + "name": "MAX_RULESWITCH", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 617, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@27440@macro@DEF_TIMEDREFACT", + "kind": 9, + "parent_name": "", + "name": "DEF_TIMEDREFACT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 619, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@27610@macro@DEF_SCALINGLIMIT", + "kind": 9, + "parent_name": "", + "name": "DEF_SCALINGLIMIT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 622, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@27704@macro@DEF_NEGRANGE", + "kind": 9, + "parent_name": "", + "name": "DEF_NEGRANGE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 624, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@27897@macro@DEF_BB_LIMITLEVEL", + "kind": 9, + "parent_name": "", + "name": "DEF_BB_LIMITLEVEL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 626, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@28054@macro@MAX_FRACSCALE", + "kind": 9, + "parent_name": "", + "name": "MAX_FRACSCALE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 629, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@28151@macro@RANDSCALE", + "kind": 9, + "parent_name": "", + "name": "RANDSCALE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 630, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@28222@macro@DOUBLEROUND", + "kind": 9, + "parent_name": "", + "name": "DOUBLEROUND", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 631, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@28423@macro@DEF_EPSMACHINE", + "kind": 9, + "parent_name": "", + "name": "DEF_EPSMACHINE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 633, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@28503@macro@MIN_STABLEPIVOT", + "kind": 9, + "parent_name": "", + "name": "MIN_STABLEPIVOT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 634, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@28795@macro@PREC_REDUCEDCOST", + "kind": 9, + "parent_name": "", + "name": "PREC_REDUCEDCOST", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 639, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@28841@macro@PREC_IMPROVEGAP", + "kind": 9, + "parent_name": "", + "name": "PREC_IMPROVEGAP", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 640, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@28886@macro@PREC_SUBSTFEASGAP", + "kind": 9, + "parent_name": "", + "name": "PREC_SUBSTFEASGAP", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 641, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@28942@macro@PREC_BASICSOLUTION", + "kind": 9, + "parent_name": "", + "name": "PREC_BASICSOLUTION", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 643, + "column": 11, + "hidden": false + }, + { + "usr": "c:lp_lib.h@29149@macro@LIMIT_ABS_REL", + "kind": 9, + "parent_name": "", + "name": "LIMIT_ABS_REL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 647, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@29420@macro@EPS_TIGHT", + "kind": 9, + "parent_name": "", + "name": "EPS_TIGHT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 652, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@29456@macro@EPS_MEDIUM", + "kind": 9, + "parent_name": "", + "name": "EPS_MEDIUM", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 653, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@29492@macro@EPS_LOOSE", + "kind": 9, + "parent_name": "", + "name": "EPS_LOOSE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 654, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@29528@macro@EPS_BAGGY", + "kind": 9, + "parent_name": "", + "name": "EPS_BAGGY", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 655, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@29564@macro@EPS_DEFAULT", + "kind": 9, + "parent_name": "", + "name": "EPS_DEFAULT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 656, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@29800@macro@DEF_INFINITE", + "kind": 9, + "parent_name": "", + "name": "DEF_INFINITE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 661, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@29867@macro@DEF_EPSVALUE", + "kind": 9, + "parent_name": "", + "name": "DEF_EPSVALUE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 662, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@29961@macro@DEF_EPSPRIMAL", + "kind": 9, + "parent_name": "", + "name": "DEF_EPSPRIMAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 663, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@30040@macro@DEF_EPSDUAL", + "kind": 9, + "parent_name": "", + "name": "DEF_EPSDUAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 664, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@30115@macro@DEF_EPSPIVOT", + "kind": 9, + "parent_name": "", + "name": "DEF_EPSPIVOT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 665, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@30181@macro@DEF_PERTURB", + "kind": 9, + "parent_name": "", + "name": "DEF_PERTURB", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 666, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@30359@macro@DEF_EPSSOLUTION", + "kind": 9, + "parent_name": "", + "name": "DEF_EPSSOLUTION", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 668, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@30438@macro@DEF_EPSINT", + "kind": 9, + "parent_name": "", + "name": "DEF_EPSINT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 669, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@33323@macro@DEF_MIP_GAP", + "kind": 9, + "parent_name": "", + "name": "DEF_MIP_GAP", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 710, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@33408@macro@SCALEDINTFIXRANGE", + "kind": 9, + "parent_name": "", + "name": "SCALEDINTFIXRANGE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 711, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@33511@macro@MIN_SCALAR", + "kind": 9, + "parent_name": "", + "name": "MIN_SCALAR", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 713, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@33590@macro@MAX_SCALAR", + "kind": 9, + "parent_name": "", + "name": "MAX_SCALAR", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 714, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@33668@macro@DEF_SCALINGEPS", + "kind": 9, + "parent_name": "", + "name": "DEF_SCALINGEPS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 715, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@33767@macro@DEF_LAGACCEPT", + "kind": 9, + "parent_name": "", + "name": "DEF_LAGACCEPT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 717, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@33862@macro@DEF_LAGCONTRACT", + "kind": 9, + "parent_name": "", + "name": "DEF_LAGCONTRACT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 718, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@33957@macro@DEF_LAGMAXITERATIONS", + "kind": 9, + "parent_name": "", + "name": "DEF_LAGMAXITERATIONS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 719, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@34046@macro@DEF_PSEUDOCOSTUPDATES", + "kind": 9, + "parent_name": "", + "name": "DEF_PSEUDOCOSTUPDATES", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 721, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@34238@macro@DEF_PSEUDOCOSTRESTART", + "kind": 9, + "parent_name": "", + "name": "DEF_PSEUDOCOSTRESTART", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 723, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@34410@macro@DEF_MAXPRESOLVELOOPS", + "kind": 9, + "parent_name": "", + "name": "DEF_MAXPRESOLVELOOPS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 725, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_lib.h@37409@macro@LINEARSEARCH", + "kind": 9, + "parent_name": "", + "name": "LINEARSEARCH", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 802, + "column": 9, + "hidden": false + }, + { + "usr": "c:@S@_basisrec", + "kind": 3, + "parent_name": "", + "name": "_basisrec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 740, + "column": 16, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@basisrec", + "kind": 8, + "parent_name": "", + "name": "basisrec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 748, + "column": 3, + "hidden": false + }, + { + "usr": "c:@S@_presolveundorec", + "kind": 3, + "parent_name": "", + "name": "_presolveundorec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 751, + "column": 16, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@presolveundorec", + "kind": 8, + "parent_name": "", + "name": "presolveundorec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 769, + "column": 3, + "hidden": false + }, + { + "usr": "c:@S@_BBPSrec", + "kind": 3, + "parent_name": "", + "name": "_BBPSrec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 772, + "column": 16, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@BBPSrec", + "kind": 8, + "parent_name": "", + "name": "BBPSrec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 782, + "column": 3, + "hidden": false + }, + { + "usr": "c:@S@_partialrec", + "kind": 3, + "parent_name": "", + "name": "_partialrec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 788, + "column": 16, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@partialrec", + "kind": 8, + "parent_name": "", + "name": "partialrec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 795, + "column": 3, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@lphandle_intfunc", + "kind": 8, + "parent_name": "", + "name": "lphandle_intfunc", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 810, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@lphandlestr_func", + "kind": 8, + "parent_name": "", + "name": "lphandlestr_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 811, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@lphandleint_func", + "kind": 8, + "parent_name": "", + "name": "lphandleint_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 812, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@lphandleint_intfunc", + "kind": 8, + "parent_name": "", + "name": "lphandleint_intfunc", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 813, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@add_column_func", + "kind": 8, + "parent_name": "", + "name": "add_column_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 818, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@add_columnex_func", + "kind": 8, + "parent_name": "", + "name": "add_columnex_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 819, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@add_constraint_func", + "kind": 8, + "parent_name": "", + "name": "add_constraint_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 820, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@add_constraintex_func", + "kind": 8, + "parent_name": "", + "name": "add_constraintex_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 821, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@add_lag_con_func", + "kind": 8, + "parent_name": "", + "name": "add_lag_con_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 822, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@add_SOS_func", + "kind": 8, + "parent_name": "", + "name": "add_SOS_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 823, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@column_in_lp_func", + "kind": 8, + "parent_name": "", + "name": "column_in_lp_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 824, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@copy_lp_func", + "kind": 8, + "parent_name": "", + "name": "copy_lp_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 825, + "column": 27, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@default_basis_func", + "kind": 8, + "parent_name": "", + "name": "default_basis_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 826, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@del_column_func", + "kind": 8, + "parent_name": "", + "name": "del_column_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 827, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@del_constraint_func", + "kind": 8, + "parent_name": "", + "name": "del_constraint_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 828, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@delete_lp_func", + "kind": 8, + "parent_name": "", + "name": "delete_lp_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 829, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@dualize_lp_func", + "kind": 8, + "parent_name": "", + "name": "dualize_lp_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 830, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@free_lp_func", + "kind": 8, + "parent_name": "", + "name": "free_lp_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 831, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_anti_degen_func", + "kind": 8, + "parent_name": "", + "name": "get_anti_degen_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 832, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_basis_func", + "kind": 8, + "parent_name": "", + "name": "get_basis_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 833, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_basiscrash_func", + "kind": 8, + "parent_name": "", + "name": "get_basiscrash_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 834, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_bb_depthlimit_func", + "kind": 8, + "parent_name": "", + "name": "get_bb_depthlimit_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 835, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_bb_floorfirst_func", + "kind": 8, + "parent_name": "", + "name": "get_bb_floorfirst_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 836, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_bb_rule_func", + "kind": 8, + "parent_name": "", + "name": "get_bb_rule_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 837, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_bounds_tighter_func", + "kind": 8, + "parent_name": "", + "name": "get_bounds_tighter_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 838, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_break_at_value_func", + "kind": 8, + "parent_name": "", + "name": "get_break_at_value_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 839, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_col_name_func", + "kind": 8, + "parent_name": "", + "name": "get_col_name_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 840, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_column_func", + "kind": 8, + "parent_name": "", + "name": "get_column_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 841, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_columnex_func", + "kind": 8, + "parent_name": "", + "name": "get_columnex_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 842, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_constr_type_func", + "kind": 8, + "parent_name": "", + "name": "get_constr_type_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 843, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_constr_value_func", + "kind": 8, + "parent_name": "", + "name": "get_constr_value_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 844, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_constraints_func", + "kind": 8, + "parent_name": "", + "name": "get_constraints_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 845, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_dual_solution_func", + "kind": 8, + "parent_name": "", + "name": "get_dual_solution_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 846, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_epsb_func", + "kind": 8, + "parent_name": "", + "name": "get_epsb_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 847, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_epsd_func", + "kind": 8, + "parent_name": "", + "name": "get_epsd_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 848, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_epsel_func", + "kind": 8, + "parent_name": "", + "name": "get_epsel_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 849, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_epsint_func", + "kind": 8, + "parent_name": "", + "name": "get_epsint_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 850, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_epsperturb_func", + "kind": 8, + "parent_name": "", + "name": "get_epsperturb_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 851, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_epspivot_func", + "kind": 8, + "parent_name": "", + "name": "get_epspivot_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 852, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_improve_func", + "kind": 8, + "parent_name": "", + "name": "get_improve_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 853, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_infinite_func", + "kind": 8, + "parent_name": "", + "name": "get_infinite_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 854, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_lambda_func", + "kind": 8, + "parent_name": "", + "name": "get_lambda_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 855, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_lowbo_func", + "kind": 8, + "parent_name": "", + "name": "get_lowbo_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 856, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_lp_index_func", + "kind": 8, + "parent_name": "", + "name": "get_lp_index_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 857, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_lp_name_func", + "kind": 8, + "parent_name": "", + "name": "get_lp_name_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 858, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_Lrows_func", + "kind": 8, + "parent_name": "", + "name": "get_Lrows_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 859, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_mat_func", + "kind": 8, + "parent_name": "", + "name": "get_mat_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 860, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_mat_byindex_func", + "kind": 8, + "parent_name": "", + "name": "get_mat_byindex_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 861, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_max_level_func", + "kind": 8, + "parent_name": "", + "name": "get_max_level_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 862, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_maxpivot_func", + "kind": 8, + "parent_name": "", + "name": "get_maxpivot_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 863, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_mip_gap_func", + "kind": 8, + "parent_name": "", + "name": "get_mip_gap_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 864, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_multiprice_func", + "kind": 8, + "parent_name": "", + "name": "get_multiprice_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 865, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@is_use_names_func", + "kind": 8, + "parent_name": "", + "name": "is_use_names_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 866, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_use_names_func", + "kind": 8, + "parent_name": "", + "name": "set_use_names_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 867, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_nameindex_func", + "kind": 8, + "parent_name": "", + "name": "get_nameindex_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 868, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_Ncolumns_func", + "kind": 8, + "parent_name": "", + "name": "get_Ncolumns_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 869, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_negrange_func", + "kind": 8, + "parent_name": "", + "name": "get_negrange_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 870, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_nz_func", + "kind": 8, + "parent_name": "", + "name": "get_nz_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 871, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_Norig_columns_func", + "kind": 8, + "parent_name": "", + "name": "get_Norig_columns_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 872, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_Norig_rows_func", + "kind": 8, + "parent_name": "", + "name": "get_Norig_rows_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 873, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_Nrows_func", + "kind": 8, + "parent_name": "", + "name": "get_Nrows_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 874, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_obj_bound_func", + "kind": 8, + "parent_name": "", + "name": "get_obj_bound_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 875, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_objective_func", + "kind": 8, + "parent_name": "", + "name": "get_objective_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 876, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_orig_index_func", + "kind": 8, + "parent_name": "", + "name": "get_orig_index_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 877, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_origcol_name_func", + "kind": 8, + "parent_name": "", + "name": "get_origcol_name_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 878, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_origrow_name_func", + "kind": 8, + "parent_name": "", + "name": "get_origrow_name_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 879, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_partialprice_func", + "kind": 8, + "parent_name": "", + "name": "get_partialprice_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 880, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_pivoting_func", + "kind": 8, + "parent_name": "", + "name": "get_pivoting_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 881, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_presolve_func", + "kind": 8, + "parent_name": "", + "name": "get_presolve_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 882, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_presolveloops_func", + "kind": 8, + "parent_name": "", + "name": "get_presolveloops_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 883, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_primal_solution_func", + "kind": 8, + "parent_name": "", + "name": "get_primal_solution_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 884, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_print_sol_func", + "kind": 8, + "parent_name": "", + "name": "get_print_sol_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 885, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_pseudocosts_func", + "kind": 8, + "parent_name": "", + "name": "get_pseudocosts_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 886, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_ptr_constraints_func", + "kind": 8, + "parent_name": "", + "name": "get_ptr_constraints_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 887, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_ptr_dual_solution_func", + "kind": 8, + "parent_name": "", + "name": "get_ptr_dual_solution_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 888, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_ptr_lambda_func", + "kind": 8, + "parent_name": "", + "name": "get_ptr_lambda_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 889, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_ptr_primal_solution_func", + "kind": 8, + "parent_name": "", + "name": "get_ptr_primal_solution_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 890, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_ptr_sensitivity_obj_func", + "kind": 8, + "parent_name": "", + "name": "get_ptr_sensitivity_obj_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 891, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_ptr_sensitivity_objex_func", + "kind": 8, + "parent_name": "", + "name": "get_ptr_sensitivity_objex_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 892, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_ptr_sensitivity_rhs_func", + "kind": 8, + "parent_name": "", + "name": "get_ptr_sensitivity_rhs_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 893, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_ptr_variables_func", + "kind": 8, + "parent_name": "", + "name": "get_ptr_variables_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 894, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_rh_func", + "kind": 8, + "parent_name": "", + "name": "get_rh_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 895, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_rh_range_func", + "kind": 8, + "parent_name": "", + "name": "get_rh_range_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 896, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_rowex_func", + "kind": 8, + "parent_name": "", + "name": "get_rowex_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 897, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_row_func", + "kind": 8, + "parent_name": "", + "name": "get_row_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 898, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_row_name_func", + "kind": 8, + "parent_name": "", + "name": "get_row_name_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 899, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_scalelimit_func", + "kind": 8, + "parent_name": "", + "name": "get_scalelimit_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 900, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_scaling_func", + "kind": 8, + "parent_name": "", + "name": "get_scaling_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 901, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_sensitivity_obj_func", + "kind": 8, + "parent_name": "", + "name": "get_sensitivity_obj_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 902, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_sensitivity_objex_func", + "kind": 8, + "parent_name": "", + "name": "get_sensitivity_objex_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 903, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_sensitivity_rhs_func", + "kind": 8, + "parent_name": "", + "name": "get_sensitivity_rhs_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 904, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_simplextype_func", + "kind": 8, + "parent_name": "", + "name": "get_simplextype_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 905, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_solutioncount_func", + "kind": 8, + "parent_name": "", + "name": "get_solutioncount_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 906, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_solutionlimit_func", + "kind": 8, + "parent_name": "", + "name": "get_solutionlimit_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 907, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_status_func", + "kind": 8, + "parent_name": "", + "name": "get_status_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 908, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_statustext_func", + "kind": 8, + "parent_name": "", + "name": "get_statustext_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 909, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_timeout_func", + "kind": 8, + "parent_name": "", + "name": "get_timeout_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 910, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_total_iter_func", + "kind": 8, + "parent_name": "", + "name": "get_total_iter_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 911, + "column": 27, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_total_nodes_func", + "kind": 8, + "parent_name": "", + "name": "get_total_nodes_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 912, + "column": 27, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_upbo_func", + "kind": 8, + "parent_name": "", + "name": "get_upbo_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 913, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_var_branch_func", + "kind": 8, + "parent_name": "", + "name": "get_var_branch_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 914, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_var_dualresult_func", + "kind": 8, + "parent_name": "", + "name": "get_var_dualresult_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 915, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_var_primalresult_func", + "kind": 8, + "parent_name": "", + "name": "get_var_primalresult_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 916, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_var_priority_func", + "kind": 8, + "parent_name": "", + "name": "get_var_priority_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 917, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_variables_func", + "kind": 8, + "parent_name": "", + "name": "get_variables_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 918, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_verbose_func", + "kind": 8, + "parent_name": "", + "name": "get_verbose_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 919, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@guess_basis_func", + "kind": 8, + "parent_name": "", + "name": "guess_basis_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 920, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_working_objective_func", + "kind": 8, + "parent_name": "", + "name": "get_working_objective_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 921, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@has_BFP_func", + "kind": 8, + "parent_name": "", + "name": "has_BFP_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 922, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@has_XLI_func", + "kind": 8, + "parent_name": "", + "name": "has_XLI_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 923, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@is_add_rowmode_func", + "kind": 8, + "parent_name": "", + "name": "is_add_rowmode_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 924, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@is_anti_degen_func", + "kind": 8, + "parent_name": "", + "name": "is_anti_degen_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 925, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@is_binary_func", + "kind": 8, + "parent_name": "", + "name": "is_binary_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 926, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@is_break_at_first_func", + "kind": 8, + "parent_name": "", + "name": "is_break_at_first_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 927, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@is_constr_type_func", + "kind": 8, + "parent_name": "", + "name": "is_constr_type_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 928, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@is_debug_func", + "kind": 8, + "parent_name": "", + "name": "is_debug_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 929, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@is_feasible_func", + "kind": 8, + "parent_name": "", + "name": "is_feasible_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 930, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@is_unbounded_func", + "kind": 8, + "parent_name": "", + "name": "is_unbounded_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 931, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@is_infinite_func", + "kind": 8, + "parent_name": "", + "name": "is_infinite_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 932, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@is_int_func", + "kind": 8, + "parent_name": "", + "name": "is_int_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 933, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@is_integerscaling_func", + "kind": 8, + "parent_name": "", + "name": "is_integerscaling_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 934, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@is_lag_trace_func", + "kind": 8, + "parent_name": "", + "name": "is_lag_trace_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 935, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@is_maxim_func", + "kind": 8, + "parent_name": "", + "name": "is_maxim_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 936, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@is_nativeBFP_func", + "kind": 8, + "parent_name": "", + "name": "is_nativeBFP_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 937, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@is_nativeXLI_func", + "kind": 8, + "parent_name": "", + "name": "is_nativeXLI_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 938, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@is_negative_func", + "kind": 8, + "parent_name": "", + "name": "is_negative_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 939, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@is_obj_in_basis_func", + "kind": 8, + "parent_name": "", + "name": "is_obj_in_basis_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 940, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@is_piv_mode_func", + "kind": 8, + "parent_name": "", + "name": "is_piv_mode_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 941, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@is_piv_rule_func", + "kind": 8, + "parent_name": "", + "name": "is_piv_rule_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 942, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@is_presolve_func", + "kind": 8, + "parent_name": "", + "name": "is_presolve_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 943, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@is_scalemode_func", + "kind": 8, + "parent_name": "", + "name": "is_scalemode_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 944, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@is_scaletype_func", + "kind": 8, + "parent_name": "", + "name": "is_scaletype_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 945, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@is_semicont_func", + "kind": 8, + "parent_name": "", + "name": "is_semicont_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 946, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@is_SOS_var_func", + "kind": 8, + "parent_name": "", + "name": "is_SOS_var_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 947, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@is_trace_func", + "kind": 8, + "parent_name": "", + "name": "is_trace_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 948, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@lp_solve_version_func", + "kind": 8, + "parent_name": "", + "name": "lp_solve_version_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 949, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@make_lp_func", + "kind": 8, + "parent_name": "", + "name": "make_lp_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 950, + "column": 27, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@print_constraints_func", + "kind": 8, + "parent_name": "", + "name": "print_constraints_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 951, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@print_debugdump_func", + "kind": 8, + "parent_name": "", + "name": "print_debugdump_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 952, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@print_duals_func", + "kind": 8, + "parent_name": "", + "name": "print_duals_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 953, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@print_lp_func", + "kind": 8, + "parent_name": "", + "name": "print_lp_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 954, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@print_objective_func", + "kind": 8, + "parent_name": "", + "name": "print_objective_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 955, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@print_scales_func", + "kind": 8, + "parent_name": "", + "name": "print_scales_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 956, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@print_solution_func", + "kind": 8, + "parent_name": "", + "name": "print_solution_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 957, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@print_str_func", + "kind": 8, + "parent_name": "", + "name": "print_str_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 958, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@print_tableau_func", + "kind": 8, + "parent_name": "", + "name": "print_tableau_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 959, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@put_abortfunc_func", + "kind": 8, + "parent_name": "", + "name": "put_abortfunc_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 960, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@put_bb_nodefunc_func", + "kind": 8, + "parent_name": "", + "name": "put_bb_nodefunc_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 961, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@put_bb_branchfunc_func", + "kind": 8, + "parent_name": "", + "name": "put_bb_branchfunc_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 962, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@put_logfunc_func", + "kind": 8, + "parent_name": "", + "name": "put_logfunc_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 963, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@put_msgfunc_func", + "kind": 8, + "parent_name": "", + "name": "put_msgfunc_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 964, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@read_LP_func", + "kind": 8, + "parent_name": "", + "name": "read_LP_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 965, + "column": 27, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@read_MPS_func", + "kind": 8, + "parent_name": "", + "name": "read_MPS_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 966, + "column": 27, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@read_XLI_func", + "kind": 8, + "parent_name": "", + "name": "read_XLI_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 967, + "column": 27, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@read_basis_func", + "kind": 8, + "parent_name": "", + "name": "read_basis_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 968, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@reset_basis_func", + "kind": 8, + "parent_name": "", + "name": "reset_basis_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 969, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@read_params_func", + "kind": 8, + "parent_name": "", + "name": "read_params_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 970, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@reset_params_func", + "kind": 8, + "parent_name": "", + "name": "reset_params_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 971, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@resize_lp_func", + "kind": 8, + "parent_name": "", + "name": "resize_lp_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 972, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_add_rowmode_func", + "kind": 8, + "parent_name": "", + "name": "set_add_rowmode_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 973, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_anti_degen_func", + "kind": 8, + "parent_name": "", + "name": "set_anti_degen_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 974, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_basisvar_func", + "kind": 8, + "parent_name": "", + "name": "set_basisvar_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 975, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_basis_func", + "kind": 8, + "parent_name": "", + "name": "set_basis_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 976, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_basiscrash_func", + "kind": 8, + "parent_name": "", + "name": "set_basiscrash_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 977, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_bb_depthlimit_func", + "kind": 8, + "parent_name": "", + "name": "set_bb_depthlimit_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 978, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_bb_floorfirst_func", + "kind": 8, + "parent_name": "", + "name": "set_bb_floorfirst_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 979, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_bb_rule_func", + "kind": 8, + "parent_name": "", + "name": "set_bb_rule_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 980, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_BFP_func", + "kind": 8, + "parent_name": "", + "name": "set_BFP_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 981, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_binary_func", + "kind": 8, + "parent_name": "", + "name": "set_binary_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 982, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_bounds_func", + "kind": 8, + "parent_name": "", + "name": "set_bounds_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 983, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_bounds_tighter_func", + "kind": 8, + "parent_name": "", + "name": "set_bounds_tighter_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 984, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_break_at_first_func", + "kind": 8, + "parent_name": "", + "name": "set_break_at_first_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 985, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_break_at_value_func", + "kind": 8, + "parent_name": "", + "name": "set_break_at_value_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 986, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_column_func", + "kind": 8, + "parent_name": "", + "name": "set_column_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 987, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_columnex_func", + "kind": 8, + "parent_name": "", + "name": "set_columnex_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 988, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_col_name_func", + "kind": 8, + "parent_name": "", + "name": "set_col_name_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 989, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_constr_type_func", + "kind": 8, + "parent_name": "", + "name": "set_constr_type_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 990, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_debug_func", + "kind": 8, + "parent_name": "", + "name": "set_debug_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 991, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_epsb_func", + "kind": 8, + "parent_name": "", + "name": "set_epsb_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 992, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_epsd_func", + "kind": 8, + "parent_name": "", + "name": "set_epsd_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 993, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_epsel_func", + "kind": 8, + "parent_name": "", + "name": "set_epsel_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 994, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_epsint_func", + "kind": 8, + "parent_name": "", + "name": "set_epsint_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 995, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_epslevel_func", + "kind": 8, + "parent_name": "", + "name": "set_epslevel_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 996, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_epsperturb_func", + "kind": 8, + "parent_name": "", + "name": "set_epsperturb_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 997, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_epspivot_func", + "kind": 8, + "parent_name": "", + "name": "set_epspivot_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 998, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_unbounded_func", + "kind": 8, + "parent_name": "", + "name": "set_unbounded_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 999, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_improve_func", + "kind": 8, + "parent_name": "", + "name": "set_improve_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1000, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_infinite_func", + "kind": 8, + "parent_name": "", + "name": "set_infinite_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1001, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_int_func", + "kind": 8, + "parent_name": "", + "name": "set_int_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1002, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_lag_trace_func", + "kind": 8, + "parent_name": "", + "name": "set_lag_trace_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1003, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_lowbo_func", + "kind": 8, + "parent_name": "", + "name": "set_lowbo_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1004, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_lp_name_func", + "kind": 8, + "parent_name": "", + "name": "set_lp_name_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1005, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_mat_func", + "kind": 8, + "parent_name": "", + "name": "set_mat_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1006, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_maxim_func", + "kind": 8, + "parent_name": "", + "name": "set_maxim_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1007, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_maxpivot_func", + "kind": 8, + "parent_name": "", + "name": "set_maxpivot_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1008, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_minim_func", + "kind": 8, + "parent_name": "", + "name": "set_minim_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1009, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_mip_gap_func", + "kind": 8, + "parent_name": "", + "name": "set_mip_gap_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1010, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_multiprice_func", + "kind": 8, + "parent_name": "", + "name": "set_multiprice_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1011, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_negrange_func", + "kind": 8, + "parent_name": "", + "name": "set_negrange_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1012, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_obj_func", + "kind": 8, + "parent_name": "", + "name": "set_obj_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1013, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_obj_bound_func", + "kind": 8, + "parent_name": "", + "name": "set_obj_bound_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1014, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_obj_fn_func", + "kind": 8, + "parent_name": "", + "name": "set_obj_fn_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1015, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_obj_fnex_func", + "kind": 8, + "parent_name": "", + "name": "set_obj_fnex_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1016, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_obj_in_basis_func", + "kind": 8, + "parent_name": "", + "name": "set_obj_in_basis_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1017, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_outputfile_func", + "kind": 8, + "parent_name": "", + "name": "set_outputfile_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1018, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_outputstream_func", + "kind": 8, + "parent_name": "", + "name": "set_outputstream_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1019, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_partialprice_func", + "kind": 8, + "parent_name": "", + "name": "set_partialprice_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1020, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_pivoting_func", + "kind": 8, + "parent_name": "", + "name": "set_pivoting_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1021, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_preferdual_func", + "kind": 8, + "parent_name": "", + "name": "set_preferdual_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1022, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_presolve_func", + "kind": 8, + "parent_name": "", + "name": "set_presolve_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1023, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_print_sol_func", + "kind": 8, + "parent_name": "", + "name": "set_print_sol_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1024, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_pseudocosts_func", + "kind": 8, + "parent_name": "", + "name": "set_pseudocosts_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1025, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_rh_func", + "kind": 8, + "parent_name": "", + "name": "set_rh_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1026, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_rh_range_func", + "kind": 8, + "parent_name": "", + "name": "set_rh_range_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1027, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_rh_vec_func", + "kind": 8, + "parent_name": "", + "name": "set_rh_vec_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1028, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_row_func", + "kind": 8, + "parent_name": "", + "name": "set_row_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1029, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_rowex_func", + "kind": 8, + "parent_name": "", + "name": "set_rowex_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1030, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_row_name_func", + "kind": 8, + "parent_name": "", + "name": "set_row_name_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1031, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_scalelimit_func", + "kind": 8, + "parent_name": "", + "name": "set_scalelimit_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1032, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_scaling_func", + "kind": 8, + "parent_name": "", + "name": "set_scaling_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1033, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_semicont_func", + "kind": 8, + "parent_name": "", + "name": "set_semicont_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1034, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_sense_func", + "kind": 8, + "parent_name": "", + "name": "set_sense_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1035, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_simplextype_func", + "kind": 8, + "parent_name": "", + "name": "set_simplextype_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1036, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_solutionlimit_func", + "kind": 8, + "parent_name": "", + "name": "set_solutionlimit_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1037, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_timeout_func", + "kind": 8, + "parent_name": "", + "name": "set_timeout_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1038, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_trace_func", + "kind": 8, + "parent_name": "", + "name": "set_trace_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1039, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_upbo_func", + "kind": 8, + "parent_name": "", + "name": "set_upbo_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1040, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_var_branch_func", + "kind": 8, + "parent_name": "", + "name": "set_var_branch_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1041, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_var_weights_func", + "kind": 8, + "parent_name": "", + "name": "set_var_weights_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1042, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_verbose_func", + "kind": 8, + "parent_name": "", + "name": "set_verbose_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1043, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_XLI_func", + "kind": 8, + "parent_name": "", + "name": "set_XLI_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1044, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@solve_func", + "kind": 8, + "parent_name": "", + "name": "solve_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1045, + "column": 23, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@str_add_column_func", + "kind": 8, + "parent_name": "", + "name": "str_add_column_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1046, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@str_add_constraint_func", + "kind": 8, + "parent_name": "", + "name": "str_add_constraint_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1047, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@str_add_lag_con_func", + "kind": 8, + "parent_name": "", + "name": "str_add_lag_con_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1048, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@str_set_obj_fn_func", + "kind": 8, + "parent_name": "", + "name": "str_set_obj_fn_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1049, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@str_set_rh_vec_func", + "kind": 8, + "parent_name": "", + "name": "str_set_rh_vec_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1050, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@time_elapsed_func", + "kind": 8, + "parent_name": "", + "name": "time_elapsed_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1051, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@unscale_func", + "kind": 8, + "parent_name": "", + "name": "unscale_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1052, + "column": 24, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@write_lp_func", + "kind": 8, + "parent_name": "", + "name": "write_lp_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1053, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@write_LP_func", + "kind": 8, + "parent_name": "", + "name": "write_LP_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1054, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@write_mps_func", + "kind": 8, + "parent_name": "", + "name": "write_mps_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1055, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@write_MPS_func", + "kind": 8, + "parent_name": "", + "name": "write_MPS_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1056, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@write_freemps_func", + "kind": 8, + "parent_name": "", + "name": "write_freemps_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1057, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@write_freeMPS_func", + "kind": 8, + "parent_name": "", + "name": "write_freeMPS_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1058, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@write_XLI_func", + "kind": 8, + "parent_name": "", + "name": "write_XLI_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1059, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@write_basis_func", + "kind": 8, + "parent_name": "", + "name": "write_basis_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1060, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@write_params_func", + "kind": 8, + "parent_name": "", + "name": "write_params_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1061, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@userabortfunc", + "kind": 8, + "parent_name": "", + "name": "userabortfunc", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1066, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@reportfunc", + "kind": 8, + "parent_name": "", + "name": "reportfunc", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1067, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@explainfunc", + "kind": 8, + "parent_name": "", + "name": "explainfunc", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1068, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@getvectorfunc", + "kind": 8, + "parent_name": "", + "name": "getvectorfunc", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1069, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@getpackedfunc", + "kind": 8, + "parent_name": "", + "name": "getpackedfunc", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1070, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@get_OF_activefunc", + "kind": 8, + "parent_name": "", + "name": "get_OF_activefunc", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1071, + "column": 27, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@getMDOfunc", + "kind": 8, + "parent_name": "", + "name": "getMDOfunc", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1072, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@invertfunc", + "kind": 8, + "parent_name": "", + "name": "invertfunc", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1073, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@set_actionfunc", + "kind": 8, + "parent_name": "", + "name": "set_actionfunc", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1074, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@is_actionfunc", + "kind": 8, + "parent_name": "", + "name": "is_actionfunc", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1075, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@clear_actionfunc", + "kind": 8, + "parent_name": "", + "name": "clear_actionfunc", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1076, + "column": 26, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@BFPchar", + "kind": 8, + "parent_name": "", + "name": "BFPchar", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1081, + "column": 32, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@BFP_lp", + "kind": 8, + "parent_name": "", + "name": "BFP_lp", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1082, + "column": 31, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@BFP_lpint", + "kind": 8, + "parent_name": "", + "name": "BFP_lpint", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1083, + "column": 31, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@BFPint_lp", + "kind": 8, + "parent_name": "", + "name": "BFPint_lp", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1084, + "column": 31, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@BFPint_lpint", + "kind": 8, + "parent_name": "", + "name": "BFPint_lpint", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1085, + "column": 31, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@BFPreal_lp", + "kind": 8, + "parent_name": "", + "name": "BFPreal_lp", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1086, + "column": 31, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@BFPrealp_lp", + "kind": 8, + "parent_name": "", + "name": "BFPrealp_lp", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1087, + "column": 32, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@BFP_lpbool", + "kind": 8, + "parent_name": "", + "name": "BFP_lpbool", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1088, + "column": 31, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@BFPint_lpbool", + "kind": 8, + "parent_name": "", + "name": "BFPint_lpbool", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1089, + "column": 31, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@BFPint_lpintintboolbool", + "kind": 8, + "parent_name": "", + "name": "BFPint_lpintintboolbool", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1090, + "column": 31, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@BFP_lprealint", + "kind": 8, + "parent_name": "", + "name": "BFP_lprealint", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1091, + "column": 31, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@BFP_lprealintrealint", + "kind": 8, + "parent_name": "", + "name": "BFP_lprealintrealint", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1092, + "column": 31, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@BFPbool_lp", + "kind": 8, + "parent_name": "", + "name": "BFPbool_lp", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1093, + "column": 31, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@BFPbool_lpbool", + "kind": 8, + "parent_name": "", + "name": "BFPbool_lpbool", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1094, + "column": 31, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@BFPbool_lpint", + "kind": 8, + "parent_name": "", + "name": "BFPbool_lpint", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1095, + "column": 31, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@BFPbool_lpintintchar", + "kind": 8, + "parent_name": "", + "name": "BFPbool_lpintintchar", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1096, + "column": 31, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@BFPbool_lpintintint", + "kind": 8, + "parent_name": "", + "name": "BFPbool_lpintintint", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1097, + "column": 31, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@BFPlreal_lpintintreal", + "kind": 8, + "parent_name": "", + "name": "BFPlreal_lpintintreal", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1098, + "column": 31, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@BFPreal_lplrealreal", + "kind": 8, + "parent_name": "", + "name": "BFPreal_lplrealreal", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1099, + "column": 31, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@getcolumnex_func", + "kind": 8, + "parent_name": "", + "name": "getcolumnex_func", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1101, + "column": 31, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@BFPint_lpintrealcbintint", + "kind": 8, + "parent_name": "", + "name": "BFPint_lpintrealcbintint", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1102, + "column": 31, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@XLIchar", + "kind": 8, + "parent_name": "", + "name": "XLIchar", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1106, + "column": 32, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@XLIbool_lpintintint", + "kind": 8, + "parent_name": "", + "name": "XLIbool_lpintintint", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1107, + "column": 31, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@XLIbool_lpcharcharcharint", + "kind": 8, + "parent_name": "", + "name": "XLIbool_lpcharcharcharint", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1108, + "column": 31, + "hidden": false + }, + { + "usr": "c:lp_lib.h@T@XLIbool_lpcharcharbool", + "kind": 8, + "parent_name": "", + "name": "XLIbool_lpcharcharbool", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1109, + "column": 31, + "hidden": false + }, + { + "usr": "c:@S@_lprec", + "kind": 3, + "parent_name": "", + "name": "_lprec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_lib.h", + "line": 1114, + "column": 8, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_matrix.h", + "file_last_write": 1686589611.0, + "definitions": [ + { + "usr": "c:lp_matrix.h@425@macro@HEADER_lp_matrix", + "kind": 9, + "parent_name": "", + "name": "HEADER_lp_matrix", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_matrix.h", + "line": 11, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_matrix.h@693@macro@MAT_ROUNDNONE", + "kind": 9, + "parent_name": "", + "name": "MAT_ROUNDNONE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_matrix.h", + "line": 26, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_matrix.h@730@macro@MAT_ROUNDABS", + "kind": 9, + "parent_name": "", + "name": "MAT_ROUNDABS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_matrix.h", + "line": 27, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_matrix.h@767@macro@MAT_ROUNDREL", + "kind": 9, + "parent_name": "", + "name": "MAT_ROUNDREL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_matrix.h", + "line": 28, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_matrix.h@804@macro@MAT_ROUNDABSREL", + "kind": 9, + "parent_name": "", + "name": "MAT_ROUNDABSREL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_matrix.h", + "line": 29, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_matrix.h@868@macro@MAT_ROUNDRC", + "kind": 9, + "parent_name": "", + "name": "MAT_ROUNDRC", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_matrix.h", + "line": 30, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_matrix.h@905@macro@MAT_ROUNDRCMIN", + "kind": 9, + "parent_name": "", + "name": "MAT_ROUNDRCMIN", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_matrix.h", + "line": 31, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_matrix.h@971@macro@MAT_ROUNDDEFAULT", + "kind": 9, + "parent_name": "", + "name": "MAT_ROUNDDEFAULT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_matrix.h", + "line": 33, + "column": 10, + "hidden": false + }, + { + "usr": "c:lp_matrix.h@1292@macro@NoLoopUnroll", + "kind": 9, + "parent_name": "", + "name": "NoLoopUnroll", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_matrix.h", + "line": 40, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_matrix.h@1358@macro@DirectArrayOF", + "kind": 9, + "parent_name": "", + "name": "DirectArrayOF", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_matrix.h", + "line": 41, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_matrix.h@1531@macro@CAM_Record", + "kind": 9, + "parent_name": "", + "name": "CAM_Record", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_matrix.h", + "line": 45, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_matrix.h@1568@macro@CAM_Vector", + "kind": 9, + "parent_name": "", + "name": "CAM_Vector", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_matrix.h", + "line": 46, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_matrix.h@1667@macro@MatrixColAccess", + "kind": 9, + "parent_name": "", + "name": "MatrixColAccess", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_matrix.h", + "line": 50, + "column": 10, + "hidden": false + }, + { + "usr": "c:lp_matrix.h@2672@macro@SET_MAT_ijA", + "kind": 9, + "parent_name": "", + "name": "SET_MAT_ijA", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_matrix.h", + "line": 69, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_matrix.h@2870@macro@COL_MAT_COLNR", + "kind": 9, + "parent_name": "", + "name": "COL_MAT_COLNR", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_matrix.h", + "line": 72, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_matrix.h@2932@macro@COL_MAT_ROWNR", + "kind": 9, + "parent_name": "", + "name": "COL_MAT_ROWNR", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_matrix.h", + "line": 73, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_matrix.h@2994@macro@COL_MAT_VALUE", + "kind": 9, + "parent_name": "", + "name": "COL_MAT_VALUE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_matrix.h", + "line": 74, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_matrix.h@3056@macro@COL_MAT_COPY", + "kind": 9, + "parent_name": "", + "name": "COL_MAT_COPY", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_matrix.h", + "line": 75, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_matrix.h@3296@macro@COL_MAT_MOVE", + "kind": 9, + "parent_name": "", + "name": "COL_MAT_MOVE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_matrix.h", + "line": 78, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_matrix.h@3566@macro@COL_MAT2_COLNR", + "kind": 9, + "parent_name": "", + "name": "COL_MAT2_COLNR", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_matrix.h", + "line": 81, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_matrix.h@3629@macro@COL_MAT2_ROWNR", + "kind": 9, + "parent_name": "", + "name": "COL_MAT2_ROWNR", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_matrix.h", + "line": 82, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_matrix.h@3692@macro@COL_MAT2_VALUE", + "kind": 9, + "parent_name": "", + "name": "COL_MAT2_VALUE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_matrix.h", + "line": 83, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_matrix.h@3755@macro@matRowColStep", + "kind": 9, + "parent_name": "", + "name": "matRowColStep", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_matrix.h", + "line": 84, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_matrix.h@3792@macro@matValueStep", + "kind": 9, + "parent_name": "", + "name": "matValueStep", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_matrix.h", + "line": 85, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_matrix.h@3917@macro@RAM_Index", + "kind": 9, + "parent_name": "", + "name": "RAM_Index", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_matrix.h", + "line": 91, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_matrix.h@3954@macro@RAM_FullCopy", + "kind": 9, + "parent_name": "", + "name": "RAM_FullCopy", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_matrix.h", + "line": 92, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_matrix.h@3991@macro@MatrixRowAccess", + "kind": 9, + "parent_name": "", + "name": "MatrixRowAccess", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_matrix.h", + "line": 93, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_matrix.h@4070@macro@ROW_MAT_COLNR", + "kind": 9, + "parent_name": "", + "name": "ROW_MAT_COLNR", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_matrix.h", + "line": 96, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_matrix.h@4139@macro@ROW_MAT_ROWNR", + "kind": 9, + "parent_name": "", + "name": "ROW_MAT_ROWNR", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_matrix.h", + "line": 97, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_matrix.h@4208@macro@ROW_MAT_VALUE", + "kind": 9, + "parent_name": "", + "name": "ROW_MAT_VALUE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_matrix.h", + "line": 98, + "column": 9, + "hidden": false + }, + { + "usr": "c:@S@_MATitem", + "kind": 3, + "parent_name": "", + "name": "_MATitem", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_matrix.h", + "line": 18, + "column": 16, + "hidden": false + }, + { + "usr": "c:lp_matrix.h@T@MATitem", + "kind": 8, + "parent_name": "", + "name": "MATitem", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_matrix.h", + "line": 23, + "column": 3, + "hidden": false + }, + { + "usr": "c:@S@_MATrec", + "kind": 3, + "parent_name": "", + "name": "_MATrec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_matrix.h", + "line": 113, + "column": 16, + "hidden": false + }, + { + "usr": "c:lp_matrix.h@T@MATrec", + "kind": 8, + "parent_name": "", + "name": "MATrec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_matrix.h", + "line": 164, + "column": 3, + "hidden": false + }, + { + "usr": "c:@S@_DeltaVrec", + "kind": 3, + "parent_name": "", + "name": "_DeltaVrec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_matrix.h", + "line": 166, + "column": 16, + "hidden": false + }, + { + "usr": "c:lp_matrix.h@T@DeltaVrec", + "kind": 8, + "parent_name": "", + "name": "DeltaVrec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_matrix.h", + "line": 171, + "column": 3, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_mipbb.h", + "file_last_write": 1686589611.0, + "definitions": [ + { + "usr": "c:lp_mipbb.h@424@macro@HEADER_lp_mipbb", + "kind": 9, + "parent_name": "", + "name": "HEADER_lp_mipbb", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_mipbb.h", + "line": 11, + "column": 9, + "hidden": false + }, + { + "usr": "c:@S@_BBrec", + "kind": 3, + "parent_name": "", + "name": "_BBrec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_mipbb.h", + "line": 18, + "column": 16, + "hidden": false + }, + { + "usr": "c:lp_mipbb.h@T@BBrec", + "kind": 8, + "parent_name": "", + "name": "BBrec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_mipbb.h", + "line": 43, + "column": 3, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "file_last_write": 1686589611.0, + "definitions": [ + { + "usr": "c:lp_types.h@424@macro@HEADER_lp_types", + "kind": 9, + "parent_name": "", + "name": "HEADER_lp_types", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 11, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@782@macro@LLONG", + "kind": 9, + "parent_name": "", + "name": "LLONG", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 23, + "column": 13, + "hidden": false + }, + { + "usr": "c:lp_types.h@882@macro@COUNTER", + "kind": 9, + "parent_name": "", + "name": "COUNTER", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 30, + "column": 11, + "hidden": false + }, + { + "usr": "c:lp_types.h@931@macro@REAL", + "kind": 9, + "parent_name": "", + "name": "REAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 34, + "column": 11, + "hidden": false + }, + { + "usr": "c:lp_types.h@994@macro@REALXP", + "kind": 9, + "parent_name": "", + "name": "REALXP", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 39, + "column": 13, + "hidden": false + }, + { + "usr": "c:lp_types.h@1316@macro@LREAL", + "kind": 9, + "parent_name": "", + "name": "LREAL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 49, + "column": 13, + "hidden": false + }, + { + "usr": "c:lp_types.h@1429@macro@RESULTVALUEMASK", + "kind": 9, + "parent_name": "", + "name": "RESULTVALUEMASK", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 53, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@1602@macro@INDEXVALUEMASK", + "kind": 9, + "parent_name": "", + "name": "INDEXVALUEMASK", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 55, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@1716@macro@DEF_STRBUFSIZE", + "kind": 9, + "parent_name": "", + "name": "DEF_STRBUFSIZE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 58, + "column": 11, + "hidden": false + }, + { + "usr": "c:lp_types.h@2365@macro@MYBOOL", + "kind": 9, + "parent_name": "", + "name": "MYBOOL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 86, + "column": 11, + "hidden": false + }, + { + "usr": "c:lp_types.h@2726@macro@FALSE", + "kind": 9, + "parent_name": "", + "name": "FALSE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 97, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@2762@macro@TRUE", + "kind": 9, + "parent_name": "", + "name": "TRUE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 98, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@2798@macro@AUTOMATIC", + "kind": 9, + "parent_name": "", + "name": "AUTOMATIC", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 99, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@2834@macro@DYNAMIC", + "kind": 9, + "parent_name": "", + "name": "DYNAMIC", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 100, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@2912@macro@COMP_PREFERCANDIDATE", + "kind": 9, + "parent_name": "", + "name": "COMP_PREFERCANDIDATE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 103, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@2948@macro@COMP_PREFERNONE", + "kind": 9, + "parent_name": "", + "name": "COMP_PREFERNONE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 104, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@2984@macro@COMP_PREFERINCUMBENT", + "kind": 9, + "parent_name": "", + "name": "COMP_PREFERINCUMBENT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 105, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@3056@macro@LIB_LOADED", + "kind": 9, + "parent_name": "", + "name": "LIB_LOADED", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 108, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@3092@macro@LIB_NOTFOUND", + "kind": 9, + "parent_name": "", + "name": "LIB_NOTFOUND", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 109, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@3128@macro@LIB_NOINFO", + "kind": 9, + "parent_name": "", + "name": "LIB_NOINFO", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 110, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@3164@macro@LIB_NOFUNCTION", + "kind": 9, + "parent_name": "", + "name": "LIB_NOFUNCTION", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 111, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@3200@macro@LIB_VERINVALID", + "kind": 9, + "parent_name": "", + "name": "LIB_VERINVALID", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 112, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@3236@macro@LIB_STR_LOADED", + "kind": 9, + "parent_name": "", + "name": "LIB_STR_LOADED", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 113, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@3292@macro@LIB_STR_NOTFOUND", + "kind": 9, + "parent_name": "", + "name": "LIB_STR_NOTFOUND", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 114, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@3343@macro@LIB_STR_NOINFO", + "kind": 9, + "parent_name": "", + "name": "LIB_STR_NOINFO", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 115, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@3395@macro@LIB_STR_NOFUNCTION", + "kind": 9, + "parent_name": "", + "name": "LIB_STR_NOFUNCTION", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 116, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@3455@macro@LIB_STR_VERINVALID", + "kind": 9, + "parent_name": "", + "name": "LIB_STR_VERINVALID", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 117, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@3512@macro@LIB_STR_MAXLEN", + "kind": 9, + "parent_name": "", + "name": "LIB_STR_MAXLEN", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 118, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@3796@macro@__WINAPI", + "kind": 9, + "parent_name": "", + "name": "__WINAPI", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 124, + "column": 10, + "hidden": false + }, + { + "usr": "c:lp_types.h@3938@macro@__VACALL", + "kind": 9, + "parent_name": "", + "name": "__VACALL", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 130, + "column": 10, + "hidden": false + }, + { + "usr": "c:lp_types.h@4356@macro@__EXPORT_TYPE", + "kind": 9, + "parent_name": "", + "name": "__EXPORT_TYPE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 152, + "column": 13, + "hidden": false + }, + { + "usr": "c:lp_types.h@4419@macro@__EXTERN_C", + "kind": 9, + "parent_name": "", + "name": "__EXTERN_C", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 157, + "column": 13, + "hidden": false + }, + { + "usr": "c:lp_types.h@4902@macro@STATIC", + "kind": 9, + "parent_name": "", + "name": "STATIC", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 188, + "column": 11, + "hidden": false + }, + { + "usr": "c:lp_types.h@4980@macro@INLINE", + "kind": 9, + "parent_name": "", + "name": "INLINE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 193, + "column": 13, + "hidden": false + }, + { + "usr": "c:lp_types.h@5334@macro@my_limitrange", + "kind": 9, + "parent_name": "", + "name": "my_limitrange", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 203, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@5434@macro@my_mod", + "kind": 9, + "parent_name": "", + "name": "my_mod", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 205, + "column": 11, + "hidden": false + }, + { + "usr": "c:lp_types.h@5485@macro@my_if", + "kind": 9, + "parent_name": "", + "name": "my_if", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 207, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@5536@macro@my_sign", + "kind": 9, + "parent_name": "", + "name": "my_sign", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 208, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@5597@macro@my_chsign", + "kind": 9, + "parent_name": "", + "name": "my_chsign", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 210, + "column": 11, + "hidden": false + }, + { + "usr": "c:lp_types.h@5824@macro@my_flipsign", + "kind": 9, + "parent_name": "", + "name": "my_flipsign", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 214, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@5894@macro@my_roundzero", + "kind": 9, + "parent_name": "", + "name": "my_roundzero", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 215, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@5965@macro@my_avoidtiny", + "kind": 9, + "parent_name": "", + "name": "my_avoidtiny", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 216, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@6046@macro@my_infinite", + "kind": 9, + "parent_name": "", + "name": "my_infinite", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 219, + "column": 11, + "hidden": false + }, + { + "usr": "c:lp_types.h@6187@macro@my_inflimit", + "kind": 9, + "parent_name": "", + "name": "my_inflimit", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 223, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@6376@macro@my_precision", + "kind": 9, + "parent_name": "", + "name": "my_precision", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 227, + "column": 11, + "hidden": false + }, + { + "usr": "c:lp_types.h@6437@macro@my_reldiff", + "kind": 9, + "parent_name": "", + "name": "my_reldiff", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 229, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@6510@macro@my_boundstr", + "kind": 9, + "parent_name": "", + "name": "my_boundstr", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 230, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@6637@macro@my_boolstr", + "kind": 9, + "parent_name": "", + "name": "my_boolstr", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 232, + "column": 11, + "hidden": false + }, + { + "usr": "c:lp_types.h@6703@macro@my_basisstr", + "kind": 9, + "parent_name": "", + "name": "my_basisstr", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 234, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@6773@macro@my_simplexstr", + "kind": 9, + "parent_name": "", + "name": "my_simplexstr", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 235, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@6838@macro@my_plural_std", + "kind": 9, + "parent_name": "", + "name": "my_plural_std", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 236, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@6896@macro@my_plural_y", + "kind": 9, + "parent_name": "", + "name": "my_plural_y", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 237, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@6957@macro@my_lowbound", + "kind": 9, + "parent_name": "", + "name": "my_lowbound", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 238, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@7506@macro@my_lowbo", + "kind": 9, + "parent_name": "", + "name": "my_lowbo", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 248, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@7548@macro@my_upbo", + "kind": 9, + "parent_name": "", + "name": "my_upbo", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 249, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@7621@macro@my_rangebo", + "kind": 9, + "parent_name": "", + "name": "my_rangebo", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 250, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@7677@macro@my_unbounded", + "kind": 9, + "parent_name": "", + "name": "my_unbounded", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 252, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@7786@macro@my_bounded", + "kind": 9, + "parent_name": "", + "name": "my_bounded", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 253, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@8191@macro@UNIONTYPE", + "kind": 9, + "parent_name": "", + "name": "UNIONTYPE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 263, + "column": 13, + "hidden": false + }, + { + "usr": "c:lp_types.h@8605@macro@OBJ_STEPS", + "kind": 9, + "parent_name": "", + "name": "OBJ_STEPS", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 280, + "column": 9, + "hidden": false + }, + { + "usr": "c:lp_types.h@T@lprec", + "kind": 8, + "parent_name": "", + "name": "lprec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 257, + "column": 27, + "hidden": false + }, + { + "usr": "c:lp_types.h@T@INVrec", + "kind": 8, + "parent_name": "", + "name": "INVrec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 258, + "column": 27, + "hidden": false + }, + { + "usr": "c:@S@_B4rec", + "kind": 3, + "parent_name": "", + "name": "_B4rec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 270, + "column": 16, + "hidden": false + }, + { + "usr": "c:lp_types.h@T@B4rec", + "kind": 8, + "parent_name": "", + "name": "B4rec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 278, + "column": 3, + "hidden": false + }, + { + "usr": "c:@S@_OBJmonrec", + "kind": 3, + "parent_name": "", + "name": "_OBJmonrec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 281, + "column": 16, + "hidden": false + }, + { + "usr": "c:lp_types.h@T@OBJmonrec", + "kind": 8, + "parent_name": "", + "name": "OBJmonrec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 296, + "column": 3, + "hidden": false + }, + { + "usr": "c:@S@_edgerec", + "kind": 3, + "parent_name": "", + "name": "_edgerec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 298, + "column": 16, + "hidden": false + }, + { + "usr": "c:lp_types.h@T@edgerec", + "kind": 8, + "parent_name": "", + "name": "edgerec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 301, + "column": 3, + "hidden": false + }, + { + "usr": "c:@S@_pricerec", + "kind": 3, + "parent_name": "", + "name": "_pricerec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 303, + "column": 16, + "hidden": false + }, + { + "usr": "c:lp_types.h@T@pricerec", + "kind": 8, + "parent_name": "", + "name": "pricerec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 311, + "column": 3, + "hidden": false + }, + { + "usr": "c:@S@_multirec", + "kind": 3, + "parent_name": "", + "name": "_multirec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 312, + "column": 16, + "hidden": false + }, + { + "usr": "c:lp_types.h@T@multirec", + "kind": 8, + "parent_name": "", + "name": "multirec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_types.h", + "line": 337, + "column": 3, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_utils.h", + "file_last_write": 1686589611.0, + "definitions": [ + { + "usr": "c:lp_utils.h@424@macro@HEADER_lp_utils", + "kind": 9, + "parent_name": "", + "name": "HEADER_lp_utils", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_utils.h", + "line": 11, + "column": 9, + "hidden": false + }, + { + "usr": "c:@S@_workarraysrec", + "kind": 3, + "parent_name": "", + "name": "_workarraysrec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_utils.h", + "line": 28, + "column": 16, + "hidden": false + }, + { + "usr": "c:lp_utils.h@T@workarraysrec", + "kind": 8, + "parent_name": "", + "name": "workarraysrec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_utils.h", + "line": 35, + "column": 3, + "hidden": false + }, + { + "usr": "c:@S@_LLrec", + "kind": 3, + "parent_name": "", + "name": "_LLrec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_utils.h", + "line": 37, + "column": 16, + "hidden": false + }, + { + "usr": "c:lp_utils.h@T@LLrec", + "kind": 8, + "parent_name": "", + "name": "LLrec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_utils.h", + "line": 44, + "column": 3, + "hidden": false + }, + { + "usr": "c:@S@_PVrec", + "kind": 3, + "parent_name": "", + "name": "_PVrec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_utils.h", + "line": 46, + "column": 16, + "hidden": false + }, + { + "usr": "c:lp_utils.h@T@PVrec", + "kind": 8, + "parent_name": "", + "name": "PVrec", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/lpsolve/headers/run_headers/lp_utils.h", + "line": 52, + "column": 3, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/minimum_ellipsoid/bnmin_main.h", + "file_last_write": 1686589611.0, + "definitions": [ + { + "usr": "c:@F@version#", + "kind": 6, + "parent_name": "", + "name": "version", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/minimum_ellipsoid/bnmin_main.h", + "line": 33, + "column": 23, + "hidden": false + }, + { + "usr": "c:@S@BaseErr", + "kind": 2, + "parent_name": "", + "name": "BaseErr", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/minimum_ellipsoid/bnmin_main.h", + "line": 39, + "column": 11, + "hidden": false + }, + { + "usr": "c:@S@NParsErr", + "kind": 2, + "parent_name": "", + "name": "NParsErr", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/minimum_ellipsoid/bnmin_main.h", + "line": 50, + "column": 11, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/minimum_ellipsoid/khach.h", + "file_last_write": 1686589611.0, + "definitions": [ + { + "usr": "c:@S@KhachiyanEllipsoid", + "kind": 3, + "parent_name": "", + "name": "KhachiyanEllipsoid", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/minimum_ellipsoid/khach.h", + "line": 47, + "column": 10, + "hidden": false + }, + { + "usr": "c:@F@InvertLP#&1$@N@boost@N@numeric@N@ublas@S@matrix>#d#$@N@boost@N@numeric@N@ublas@S@basic_row_major>#k#K#$@N@boost@N@numeric@N@ublas@S@unbounded_array>#d#$@N@std@S@allocator>#d#&S1_#", + "kind": 6, + "parent_name": "", + "name": "InvertLP(const ublas::matrix &, ublas::matrix &)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/minimum_ellipsoid/khach.h", + "line": 69, + "column": 15, + "hidden": false + }, + { + "usr": "c:@F@Lift#&1$@N@boost@N@numeric@N@ublas@S@matrix>#d#$@N@boost@N@numeric@N@ublas@S@basic_row_major>#k#K#$@N@boost@N@numeric@N@ublas@S@unbounded_array>#d#$@N@std@S@allocator>#d#&S1_#", + "kind": 6, + "parent_name": "", + "name": "Lift(const ublas::matrix &, ublas::matrix &)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/minimum_ellipsoid/khach.h", + "line": 81, + "column": 15, + "hidden": false + }, + { + "usr": "c:@F@genDiag#&1$@N@boost@N@numeric@N@ublas@S@vector>#d#$@N@boost@N@numeric@N@ublas@S@unbounded_array>#d#$@N@std@S@allocator>#d#&$@N@boost@N@numeric@N@ublas@S@matrix>#d#$@N@boost@N@numeric@N@ublas@S@basic_row_major>#k#K#S2_#", + "kind": 6, + "parent_name": "", + "name": "genDiag(const ublas::vector &, ublas::matrix &)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/minimum_ellipsoid/khach.h", + "line": 95, + "column": 15, + "hidden": false + }, + { + "usr": "c:@F@KaLambda#&1$@N@boost@N@numeric@N@ublas@S@matrix>#d#$@N@boost@N@numeric@N@ublas@S@basic_row_major>#k#K#$@N@boost@N@numeric@N@ublas@S@unbounded_array>#d#$@N@std@S@allocator>#d#&1$@N@boost@N@numeric@N@ublas@S@vector>#d#S3_#&S1_#", + "kind": 6, + "parent_name": "", + "name": "KaLambda(const ublas::matrix &, const ublas::vector &, ublas::matrix &)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/minimum_ellipsoid/khach.h", + "line": 106, + "column": 15, + "hidden": false + }, + { + "usr": "c:@F@KhachiyanIter#&1$@N@boost@N@numeric@N@ublas@S@matrix>#d#$@N@boost@N@numeric@N@ublas@S@basic_row_major>#k#K#$@N@boost@N@numeric@N@ublas@S@unbounded_array>#d#$@N@std@S@allocator>#d#&$@N@boost@N@numeric@N@ublas@S@vector>#d#S3_#", + "kind": 6, + "parent_name": "", + "name": "KhachiyanIter(const ublas::matrix &, ublas::vector &)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/minimum_ellipsoid/khach.h", + "line": 119, + "column": 17, + "hidden": false + }, + { + "usr": "c:@F@KaInvertDual#&1$@N@boost@N@numeric@N@ublas@S@matrix>#d#$@N@boost@N@numeric@N@ublas@S@basic_row_major>#k#K#$@N@boost@N@numeric@N@ublas@S@unbounded_array>#d#$@N@std@S@allocator>#d#&1$@N@boost@N@numeric@N@ublas@S@vector>#d#S3_#&S1_#&S6_#", + "kind": 6, + "parent_name": "", + "name": "KaInvertDual(const ublas::matrix &, const ublas::vector &, ublas::matrix &, ublas::vector &)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/minimum_ellipsoid/khach.h", + "line": 153, + "column": 15, + "hidden": false + }, + { + "usr": "c:@F@KhachiyanAlgo#&1$@N@boost@N@numeric@N@ublas@S@matrix>#d#$@N@boost@N@numeric@N@ublas@S@basic_row_major>#k#K#$@N@boost@N@numeric@N@ublas@S@unbounded_array>#d#$@N@std@S@allocator>#d#d#k#&S1_#&$@N@boost@N@numeric@N@ublas@S@vector>#d#S3_#", + "kind": 6, + "parent_name": "", + "name": "KhachiyanAlgo(const ublas::matrix &, double, size_t, ublas::matrix &, ublas::vector &)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/minimum_ellipsoid/khach.h", + "line": 178, + "column": 17, + "hidden": false + }, + { + "usr": "c:@F@KhachiyanAlgo#&1$@N@std@S@set>#$@S@MCPoint#$@N@std@S@less>#S2_#$@N@std@S@allocator>#S2_#d#k#&$@S@KhachiyanEllipsoid#", + "kind": 6, + "parent_name": "", + "name": "KhachiyanAlgo(const std::set &, double, size_t, KhachiyanEllipsoid &)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/minimum_ellipsoid/khach.h", + "line": 202, + "column": 17, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/minimum_ellipsoid/mcpoint.h", + "file_last_write": 1686589611.0, + "definitions": [ + { + "usr": "c:@S@MCPoint", + "kind": 3, + "parent_name": "", + "name": "MCPoint", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/minimum_ellipsoid/mcpoint.h", + "line": 39, + "column": 12, + "hidden": false + }, + { + "usr": "c:@S@MCPoint@F@operator=#&1$@S@MCPoint#", + "kind": 7, + "parent_name": "MCPoint", + "name": "operator=(const MCPoint &)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/minimum_ellipsoid/mcpoint.h", + "line": 82, + "column": 19, + "hidden": false + }, + { + "usr": "c:@F@operator<#&1$@S@MCPoint#S0_#", + "kind": 6, + "parent_name": "", + "name": "operator<(const MCPoint &, const MCPoint &)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/minimum_ellipsoid/mcpoint.h", + "line": 93, + "column": 17, + "hidden": false + }, + { + "usr": "c:@S@WPPoint", + "kind": 3, + "parent_name": "", + "name": "WPPoint", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/minimum_ellipsoid/mcpoint.h", + "line": 98, + "column": 12, + "hidden": false + }, + { + "usr": "c:@F@moment1#&1$@N@std@N@__cxx11@S@list>#$@S@WPPoint#$@N@std@S@allocator>#S2_#&$@N@std@S@vector>#d#$@N@std@S@allocator>#d#", + "kind": 6, + "parent_name": "", + "name": "moment1(const std::list &, std::vector &)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/minimum_ellipsoid/mcpoint.h", + "line": 166, + "column": 15, + "hidden": false + }, + { + "usr": "c:@F@moment1#&1$@N@std@N@__cxx11@S@list>#$@S@WPPoint#$@N@std@S@allocator>#S2_#d#&$@N@std@S@vector>#d#$@N@std@S@allocator>#d#", + "kind": 6, + "parent_name": "", + "name": "moment1(const std::list &, double, std::vector &)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/minimum_ellipsoid/mcpoint.h", + "line": 182, + "column": 15, + "hidden": false + }, + { + "usr": "c:@F@moment2#&1$@N@std@N@__cxx11@S@list>#$@S@WPPoint#$@N@std@S@allocator>#S2_#&1$@N@std@S@vector>#d#$@N@std@S@allocator>#d#&S5_#", + "kind": 6, + "parent_name": "", + "name": "moment2(const std::list &, const std::vector &, std::vector &)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/minimum_ellipsoid/mcpoint.h", + "line": 192, + "column": 15, + "hidden": false + }, + { + "usr": "c:@F@moment2#&1$@N@std@N@__cxx11@S@list>#$@S@WPPoint#$@N@std@S@allocator>#S2_#&1$@N@std@S@vector>#d#$@N@std@S@allocator>#d#d#&S5_#", + "kind": 6, + "parent_name": "", + "name": "moment2(const std::list &, const std::vector &, double, std::vector &)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/minimum_ellipsoid/mcpoint.h", + "line": 209, + "column": 15, + "hidden": false + }, + { + "usr": "c:@F@moment1#&1$@N@std@S@set>#$@S@MCPoint#$@N@std@S@less>#S2_#$@N@std@S@allocator>#S2_#&$@N@std@S@vector>#d#$@N@std@S@allocator>#d#", + "kind": 6, + "parent_name": "", + "name": "moment1(const std::set &, std::vector &)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/minimum_ellipsoid/mcpoint.h", + "line": 219, + "column": 15, + "hidden": false + }, + { + "usr": "c:@F@moment2#&1$@N@std@S@set>#$@S@MCPoint#$@N@std@S@less>#S2_#$@N@std@S@allocator>#S2_#&1$@N@std@S@vector>#d#$@N@std@S@allocator>#d#&S6_#", + "kind": 6, + "parent_name": "", + "name": "moment2(const std::set &, const std::vector &, std::vector &)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/minimum_ellipsoid/mcpoint.h", + "line": 247, + "column": 15, + "hidden": false + }, + { + "usr": "c:@F@omoment2#&1$@N@std@S@set>#$@S@MCPoint#$@N@std@S@less>#S2_#$@N@std@S@allocator>#S2_#&1$@N@std@S@vector>#d#$@N@std@S@allocator>#d#&S6_#", + "kind": 6, + "parent_name": "", + "name": "omoment2(const std::set &, const std::vector &, std::vector &)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/minimum_ellipsoid/mcpoint.h", + "line": 273, + "column": 15, + "hidden": false + }, + { + "usr": "c:@F@omoment2#&1$@N@std@S@set>#$@S@MCPoint#$@N@std@S@less>#S2_#$@N@std@S@allocator>#S2_#&$@N@std@S@vector>#d#$@N@std@S@allocator>#d#", + "kind": 6, + "parent_name": "", + "name": "omoment2(const std::set &, std::vector &)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/minimum_ellipsoid/mcpoint.h", + "line": 302, + "column": 15, + "hidden": false + }, + { + "usr": "c:@F@StdDev#&1$@N@std@S@set>#$@S@MCPoint#$@N@std@S@less>#S2_#$@N@std@S@allocator>#S2_#&$@N@std@S@vector>#d#$@N@std@S@allocator>#d#", + "kind": 6, + "parent_name": "", + "name": "StdDev(const std::set &, std::vector &)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/minimum_ellipsoid/mcpoint.h", + "line": 311, + "column": 15, + "hidden": false + }, + { + "usr": "c:@F@postHist#&1$@N@std@N@__cxx11@S@list>#$@S@WPPoint#$@N@std@S@allocator>#S2_#d#&1$@N@std@S@vector>#d#$@N@std@S@allocator>#d#S4_#k#&S5_#", + "kind": 6, + "parent_name": "", + "name": "postHist(const std::list &, double, const std::vector &, const std::vector &, size_t, std::vector &)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/minimum_ellipsoid/mcpoint.h", + "line": 365, + "column": 15, + "hidden": false + }, + { + "usr": "c:@F@marginHist#&1$@N@std@N@__cxx11@S@list>#$@S@WPPoint#$@N@std@S@allocator>#S2_#k#d#d#d#k#&$@N@std@S@vector>#d#$@N@std@S@allocator>#d#", + "kind": 6, + "parent_name": "", + "name": "marginHist(const std::list &, size_t, double, double, double, size_t, std::vector &)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/minimum_ellipsoid/mcpoint.h", + "line": 411, + "column": 15, + "hidden": false + }, + { + "usr": "c:@F@marginHist2D#&1$@N@std@N@__cxx11@S@list>#$@S@WPPoint#$@N@std@S@allocator>#S2_#d#k#d#d#k#d#d#k#&$@N@std@S@vector>#d#$@N@std@S@allocator>#d#", + "kind": 6, + "parent_name": "", + "name": "marginHist2D(const std::list &, double, size_t, double, double, size_t, double, double, size_t, std::vector &)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/external/minimum_ellipsoid/mcpoint.h", + "line": 441, + "column": 15, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/extractMatPoly.h", + "file_last_write": 1686589611.0, + "definitions": [], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/frustum_of_simplex.cpp", + "file_last_write": 1686590027.0, + "definitions": [ + { + "usr": "c:@F@frustum_of_simplex#I#d#", + "kind": 6, + "parent_name": "", + "name": "frustum_of_simplex(Rcpp::NumericVector, double)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/frustum_of_simplex.cpp", + "line": 33, + "column": 8, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/SDPAFormatManager.h", + "file_last_write": 1686589862.0, + "definitions": [ + { + "usr": "c:@ST>1#T@SdpaFormatManager", + "kind": 2, + "parent_name": "", + "name": "SdpaFormatManager", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/SDPAFormatManager.h", + "line": 34, + "column": 7, + "hidden": false + }, + { + "usr": "c:SDPAFormatManager.h@ST>1#T@SdpaFormatManager@T@string_it", + "kind": 8, + "parent_name": "", + "name": "string_it", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/SDPAFormatManager.h", + "line": 36, + "column": 35, + "hidden": false + }, + { + "usr": "c:SDPAFormatManager.h@ST>1#T@SdpaFormatManager@T@listVector", + "kind": 8, + "parent_name": "", + "name": "listVector", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/SDPAFormatManager.h", + "line": 37, + "column": 27, + "hidden": false + }, + { + "usr": "c:SDPAFormatManager.h@ST>1#T@SdpaFormatManager@T@MT", + "kind": 8, + "parent_name": "", + "name": "MT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/SDPAFormatManager.h", + "line": 39, + "column": 61, + "hidden": false + }, + { + "usr": "c:SDPAFormatManager.h@ST>1#T@SdpaFormatManager@T@VT", + "kind": 8, + "parent_name": "", + "name": "VT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/SDPAFormatManager.h", + "line": 40, + "column": 48, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/cartesian_geom/cartesian_kernel.h", + "file_last_write": 1686589862.0, + "definitions": [ + { + "usr": "c:@ST>1#T@Cartesian", + "kind": 2, + "parent_name": "", + "name": "Cartesian", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/cartesian_geom/cartesian_kernel.h", + "line": 28, + "column": 7, + "hidden": false + }, + { + "usr": "c:cartesian_kernel.h@ST>1#T@Cartesian@T@Self", + "kind": 8, + "parent_name": "", + "name": "Self", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/cartesian_geom/cartesian_kernel.h", + "line": 31, + "column": 24, + "hidden": false + }, + { + "usr": "c:cartesian_kernel.h@ST>1#T@Cartesian@T@FT", + "kind": 8, + "parent_name": "", + "name": "FT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/cartesian_geom/cartesian_kernel.h", + "line": 32, + "column": 32, + "hidden": false + }, + { + "usr": "c:cartesian_kernel.h@ST>1#T@Cartesian@T@Point", + "kind": 8, + "parent_name": "", + "name": "Point", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/cartesian_geom/cartesian_kernel.h", + "line": 33, + "column": 36, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/cartesian_geom/point.h", + "file_last_write": 1686589862.0, + "definitions": [ + { + "usr": "c:@ST>1#T@point", + "kind": 2, + "parent_name": "", + "name": "point", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/cartesian_geom/point.h", + "line": 17, + "column": 7, + "hidden": false + }, + { + "usr": "c:point.h@ST>1#T@point@T@iter", + "kind": 8, + "parent_name": "", + "name": "iter", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/cartesian_geom/point.h", + "line": 23, + "column": 60, + "hidden": false + }, + { + "usr": "c:point.h@ST>1#T@point@T@Coeff", + "kind": 8, + "parent_name": "", + "name": "Coeff", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/cartesian_geom/point.h", + "line": 25, + "column": 61, + "hidden": false + }, + { + "usr": "c:point.h@ST>1#T@point@T@FT", + "kind": 8, + "parent_name": "", + "name": "FT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/cartesian_geom/point.h", + "line": 26, + "column": 29, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/ball.h", + "file_last_write": 1686589862.0, + "definitions": [ + { + "usr": "c:@ST>1#T@Ball", + "kind": 2, + "parent_name": "", + "name": "Ball", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/ball.h", + "line": 17, + "column": 8, + "hidden": false + }, + { + "usr": "c:ball.h@ST>1#T@Ball@T@PointType", + "kind": 8, + "parent_name": "", + "name": "PointType", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/ball.h", + "line": 19, + "column": 19, + "hidden": false + }, + { + "usr": "c:ball.h@ST>1#T@Ball@T@NT", + "kind": 8, + "parent_name": "", + "name": "NT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/ball.h", + "line": 20, + "column": 32, + "hidden": false + }, + { + "usr": "c:ball.h@ST>1#T@Ball@T@viterator", + "kind": 8, + "parent_name": "", + "name": "viterator", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/ball.h", + "line": 21, + "column": 48, + "hidden": false + }, + { + "usr": "c:ball.h@ST>1#T@Ball@T@VT", + "kind": 8, + "parent_name": "", + "name": "VT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/ball.h", + "line": 22, + "column": 48, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/ballintersectconvex.h", + "file_last_write": 1686589862.0, + "definitions": [ + { + "usr": "c:@ST>2#T#T@BallIntersectPolytope", + "kind": 2, + "parent_name": "", + "name": "BallIntersectPolytope", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/ballintersectconvex.h", + "line": 16, + "column": 7, + "hidden": false + }, + { + "usr": "c:ballintersectconvex.h@ST>2#T#T@BallIntersectPolytope@T@MT", + "kind": 8, + "parent_name": "", + "name": "MT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/ballintersectconvex.h", + "line": 21, + "column": 35, + "hidden": false + }, + { + "usr": "c:ballintersectconvex.h@ST>2#T#T@BallIntersectPolytope@T@VT", + "kind": 8, + "parent_name": "", + "name": "VT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/ballintersectconvex.h", + "line": 22, + "column": 35, + "hidden": false + }, + { + "usr": "c:ballintersectconvex.h@ST>2#T#T@BallIntersectPolytope@T@NT", + "kind": 8, + "parent_name": "", + "name": "NT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/ballintersectconvex.h", + "line": 23, + "column": 32, + "hidden": false + }, + { + "usr": "c:ballintersectconvex.h@ST>2#T#T@BallIntersectPolytope@T@PointType", + "kind": 8, + "parent_name": "", + "name": "PointType", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/ballintersectconvex.h", + "line": 24, + "column": 39, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/ellipsoids.h", + "file_last_write": 1686589862.0, + "definitions": [ + { + "usr": "c:@ST>3#T#T#T@copula_ellipsoid", + "kind": 2, + "parent_name": "", + "name": "copula_ellipsoid", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/ellipsoids.h", + "line": 19, + "column": 7, + "hidden": false + }, + { + "usr": "c:ellipsoids.h@ST>3#T#T#T@copula_ellipsoid@T@NT", + "kind": 8, + "parent_name": "", + "name": "NT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/ellipsoids.h", + "line": 21, + "column": 32, + "hidden": false + }, + { + "usr": "c:ellipsoids.h@ST>3#T#T#T@copula_ellipsoid@T@viterator", + "kind": 8, + "parent_name": "", + "name": "viterator", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/ellipsoids.h", + "line": 22, + "column": 48, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/hpolytope.h", + "file_last_write": 1686589862.0, + "definitions": [ + { + "usr": "c:@ST>1#T@HPolytope", + "kind": 2, + "parent_name": "", + "name": "HPolytope", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/hpolytope.h", + "line": 21, + "column": 7, + "hidden": false + }, + { + "usr": "c:hpolytope.h@ST>1#T@HPolytope@T@PointType", + "kind": 8, + "parent_name": "", + "name": "PointType", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/hpolytope.h", + "line": 23, + "column": 19, + "hidden": false + }, + { + "usr": "c:hpolytope.h@ST>1#T@HPolytope@T@NT", + "kind": 8, + "parent_name": "", + "name": "NT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/hpolytope.h", + "line": 24, + "column": 32, + "hidden": false + }, + { + "usr": "c:hpolytope.h@ST>1#T@HPolytope@T@viterator", + "kind": 8, + "parent_name": "", + "name": "viterator", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/hpolytope.h", + "line": 25, + "column": 48, + "hidden": false + }, + { + "usr": "c:hpolytope.h@ST>1#T@HPolytope@T@MT", + "kind": 8, + "parent_name": "", + "name": "MT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/hpolytope.h", + "line": 28, + "column": 61, + "hidden": false + }, + { + "usr": "c:hpolytope.h@ST>1#T@HPolytope@T@VT", + "kind": 8, + "parent_name": "", + "name": "VT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/hpolytope.h", + "line": 29, + "column": 48, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/spectrahedra/LMI.h", + "file_last_write": 1686589862.0, + "definitions": [ + { + "usr": "c:@ST>3#T#T#T@LMI", + "kind": 2, + "parent_name": "", + "name": "LMI", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/spectrahedra/LMI.h", + "line": 19, + "column": 7, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/spectrahedra/spectrahedron.h", + "file_last_write": 1686589862.0, + "definitions": [ + { + "usr": "c:@ST>3#T#T#T@Spectrahedron", + "kind": 2, + "parent_name": "", + "name": "Spectrahedron", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/spectrahedra/spectrahedron.h", + "line": 20, + "column": 7, + "hidden": false + }, + { + "usr": "c:spectrahedron.h@ST>3#T#T#T@Spectrahedron@T@pairNT", + "kind": 8, + "parent_name": "", + "name": "pairNT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/spectrahedra/spectrahedron.h", + "line": 24, + "column": 31, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/vpolyintersectvpoly.h", + "file_last_write": 1686589862.0, + "definitions": [ + { + "usr": "c:@ST>2#T#T@IntersectionOfVpoly", + "kind": 2, + "parent_name": "", + "name": "IntersectionOfVpoly", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/vpolyintersectvpoly.h", + "line": 21, + "column": 7, + "hidden": false + }, + { + "usr": "c:vpolyintersectvpoly.h@ST>2#T#T@IntersectionOfVpoly@T@NT", + "kind": 8, + "parent_name": "", + "name": "NT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/vpolyintersectvpoly.h", + "line": 23, + "column": 36, + "hidden": false + }, + { + "usr": "c:vpolyintersectvpoly.h@ST>2#T#T@IntersectionOfVpoly@T@PointType", + "kind": 8, + "parent_name": "", + "name": "PointType", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/vpolyintersectvpoly.h", + "line": 24, + "column": 43, + "hidden": false + }, + { + "usr": "c:vpolyintersectvpoly.h@ST>2#T#T@IntersectionOfVpoly@T@Point", + "kind": 8, + "parent_name": "", + "name": "Point", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/vpolyintersectvpoly.h", + "line": 25, + "column": 23, + "hidden": false + }, + { + "usr": "c:vpolyintersectvpoly.h@ST>2#T#T@IntersectionOfVpoly@T@MT", + "kind": 8, + "parent_name": "", + "name": "MT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/vpolyintersectvpoly.h", + "line": 26, + "column": 36, + "hidden": false + }, + { + "usr": "c:vpolyintersectvpoly.h@ST>2#T#T@IntersectionOfVpoly@T@VT", + "kind": 8, + "parent_name": "", + "name": "VT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/vpolyintersectvpoly.h", + "line": 27, + "column": 36, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/vpolytope.h", + "file_last_write": 1686589862.0, + "definitions": [ + { + "usr": "c:@ST>1#T@VPolytope", + "kind": 2, + "parent_name": "", + "name": "VPolytope", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/vpolytope.h", + "line": 25, + "column": 7, + "hidden": false + }, + { + "usr": "c:vpolytope.h@ST>1#T@VPolytope@T@PointType", + "kind": 8, + "parent_name": "", + "name": "PointType", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/vpolytope.h", + "line": 27, + "column": 19, + "hidden": false + }, + { + "usr": "c:vpolytope.h@ST>1#T@VPolytope@T@NT", + "kind": 8, + "parent_name": "", + "name": "NT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/vpolytope.h", + "line": 28, + "column": 32, + "hidden": false + }, + { + "usr": "c:vpolytope.h@ST>1#T@VPolytope@T@MT", + "kind": 8, + "parent_name": "", + "name": "MT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/vpolytope.h", + "line": 29, + "column": 61, + "hidden": false + }, + { + "usr": "c:vpolytope.h@ST>1#T@VPolytope@T@VT", + "kind": 8, + "parent_name": "", + "name": "VT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/vpolytope.h", + "line": 30, + "column": 48, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/zonoIntersecthpoly.h", + "file_last_write": 1686589862.0, + "definitions": [ + { + "usr": "c:@ST>2#T#T@ZonoIntersectHPoly", + "kind": 2, + "parent_name": "", + "name": "ZonoIntersectHPoly", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/zonoIntersecthpoly.h", + "line": 13, + "column": 7, + "hidden": false + }, + { + "usr": "c:zonoIntersecthpoly.h@ST>2#T#T@ZonoIntersectHPoly@T@NT", + "kind": 8, + "parent_name": "", + "name": "NT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/zonoIntersecthpoly.h", + "line": 18, + "column": 36, + "hidden": false + }, + { + "usr": "c:zonoIntersecthpoly.h@ST>2#T#T@ZonoIntersectHPoly@T@VT", + "kind": 8, + "parent_name": "", + "name": "VT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/zonoIntersecthpoly.h", + "line": 19, + "column": 36, + "hidden": false + }, + { + "usr": "c:zonoIntersecthpoly.h@ST>2#T#T@ZonoIntersectHPoly@T@MT", + "kind": 8, + "parent_name": "", + "name": "MT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/zonoIntersecthpoly.h", + "line": 20, + "column": 36, + "hidden": false + }, + { + "usr": "c:zonoIntersecthpoly.h@ST>2#T#T@ZonoIntersectHPoly@T@PointType", + "kind": 8, + "parent_name": "", + "name": "PointType", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/zonoIntersecthpoly.h", + "line": 21, + "column": 42, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/zpolytope.h", + "file_last_write": 1686589862.0, + "definitions": [ + { + "usr": "c:@ST>1#T@Zonotope", + "kind": 2, + "parent_name": "", + "name": "Zonotope", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/zpolytope.h", + "line": 22, + "column": 7, + "hidden": false + }, + { + "usr": "c:zpolytope.h@ST>1#T@Zonotope@T@PointType", + "kind": 8, + "parent_name": "", + "name": "PointType", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/zpolytope.h", + "line": 24, + "column": 19, + "hidden": false + }, + { + "usr": "c:zpolytope.h@ST>1#T@Zonotope@T@NT", + "kind": 8, + "parent_name": "", + "name": "NT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/zpolytope.h", + "line": 25, + "column": 32, + "hidden": false + }, + { + "usr": "c:zpolytope.h@ST>1#T@Zonotope@T@MT", + "kind": 8, + "parent_name": "", + "name": "MT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/zpolytope.h", + "line": 26, + "column": 64, + "hidden": false + }, + { + "usr": "c:zpolytope.h@ST>1#T@Zonotope@T@VT", + "kind": 8, + "parent_name": "", + "name": "VT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/zpolytope.h", + "line": 27, + "column": 50, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/generators/boost_random_number_generator.hpp", + "file_last_write": 1686589862.0, + "definitions": [], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/generators/h_polytopes_generator.h", + "file_last_write": 1686589862.0, + "definitions": [], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/generators/known_polytope_generators.h", + "file_last_write": 1686589862.0, + "definitions": [], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/generators/v_polytopes_generators.h", + "file_last_write": 1686589862.0, + "definitions": [], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/generators/z_polytopes_generators.h", + "file_last_write": 1686589862.0, + "definitions": [], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/lp_oracles/misc_lp.h", + "file_last_write": 1686589862.0, + "definitions": [], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/lp_oracles/solve_lp.h", + "file_last_write": 1686589862.0, + "definitions": [], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/lp_oracles/vpolyoracles.h", + "file_last_write": 1686589862.0, + "definitions": [], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/lp_oracles/zpolyoracles.h", + "file_last_write": 1686589862.0, + "definitions": [], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/misc/linear_extensions.h", + "file_last_write": 1686589862.0, + "definitions": [ + { + "usr": "c:@F@linear_extensions_to_order_polytope#&$@N@std@S@basic_istream>#C#$@N@std@S@char_traits>#C#&$@N@std@S@basic_ostream>#C#S2_#", + "kind": 6, + "parent_name": "", + "name": "linear_extensions_to_order_polytope(std::istream &, std::ostream &)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/misc/linear_extensions.h", + "line": 7, + "column": 13, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/misc/misc.h", + "file_last_write": 1686589862.0, + "definitions": [], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/boundary_cdhr_walk.hpp", + "file_last_write": 1686589862.0, + "definitions": [ + { + "usr": "c:@S@BCDHRWalk", + "kind": 3, + "parent_name": "", + "name": "BCDHRWalk", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/boundary_cdhr_walk.hpp", + "line": 16, + "column": 8, + "hidden": false + }, + { + "usr": "c:@S@BCDHRWalk@ST>2#T#T@Walk", + "kind": 2, + "parent_name": "", + "name": "Walk", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/boundary_cdhr_walk.hpp", + "line": 23, + "column": 12, + "hidden": false + }, + { + "usr": "c:boundary_cdhr_walk.hpp@S@BCDHRWalk@ST>2#T#T@Walk@T@Point", + "kind": 8, + "parent_name": "", + "name": "Point", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/boundary_cdhr_walk.hpp", + "line": 25, + "column": 46, + "hidden": false + }, + { + "usr": "c:boundary_cdhr_walk.hpp@S@BCDHRWalk@ST>2#T#T@Walk@T@NT", + "kind": 8, + "parent_name": "", + "name": "NT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/boundary_cdhr_walk.hpp", + "line": 26, + "column": 36, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/boundary_rdhr_walk.hpp", + "file_last_write": 1686589862.0, + "definitions": [ + { + "usr": "c:@S@BRDHRWalk", + "kind": 3, + "parent_name": "", + "name": "BRDHRWalk", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/boundary_rdhr_walk.hpp", + "line": 16, + "column": 8, + "hidden": false + }, + { + "usr": "c:@S@BRDHRWalk@ST>2#T#T@Walk", + "kind": 2, + "parent_name": "", + "name": "Walk", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/boundary_rdhr_walk.hpp", + "line": 24, + "column": 12, + "hidden": false + }, + { + "usr": "c:boundary_rdhr_walk.hpp@S@BRDHRWalk@ST>2#T#T@Walk@T@Point", + "kind": 8, + "parent_name": "", + "name": "Point", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/boundary_rdhr_walk.hpp", + "line": 26, + "column": 46, + "hidden": false + }, + { + "usr": "c:boundary_rdhr_walk.hpp@S@BRDHRWalk@ST>2#T#T@Walk@T@NT", + "kind": 8, + "parent_name": "", + "name": "NT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/boundary_rdhr_walk.hpp", + "line": 27, + "column": 36, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/gaussian_ball_walk.hpp", + "file_last_write": 1686589862.0, + "definitions": [ + { + "usr": "c:@S@GaussianBallWalk", + "kind": 3, + "parent_name": "", + "name": "GaussianBallWalk", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/gaussian_ball_walk.hpp", + "line": 16, + "column": 8, + "hidden": false + }, + { + "usr": "c:@S@GaussianBallWalk@S@parameters", + "kind": 3, + "parent_name": "", + "name": "parameters", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/gaussian_ball_walk.hpp", + "line": 27, + "column": 12, + "hidden": false + }, + { + "usr": "c:@S@GaussianBallWalk@ST>2#T#T@Walk", + "kind": 2, + "parent_name": "", + "name": "Walk", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/gaussian_ball_walk.hpp", + "line": 43, + "column": 8, + "hidden": false + }, + { + "usr": "c:gaussian_ball_walk.hpp@S@GaussianBallWalk@ST>2#T#T@Walk@T@Point", + "kind": 8, + "parent_name": "", + "name": "Point", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/gaussian_ball_walk.hpp", + "line": 45, + "column": 42, + "hidden": false + }, + { + "usr": "c:gaussian_ball_walk.hpp@S@GaussianBallWalk@ST>2#T#T@Walk@T@NT", + "kind": 8, + "parent_name": "", + "name": "NT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/gaussian_ball_walk.hpp", + "line": 46, + "column": 32, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/gaussian_cdhr_walk.hpp", + "file_last_write": 1686589862.0, + "definitions": [ + { + "usr": "c:@S@GaussianCDHRWalk", + "kind": 3, + "parent_name": "", + "name": "GaussianCDHRWalk", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/gaussian_cdhr_walk.hpp", + "line": 61, + "column": 8, + "hidden": false + }, + { + "usr": "c:@S@GaussianCDHRWalk@S@parameters", + "kind": 3, + "parent_name": "", + "name": "parameters", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/gaussian_cdhr_walk.hpp", + "line": 64, + "column": 12, + "hidden": false + }, + { + "usr": "c:@S@GaussianCDHRWalk@ST>2#T#T@Walk", + "kind": 2, + "parent_name": "", + "name": "Walk", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/gaussian_cdhr_walk.hpp", + "line": 72, + "column": 8, + "hidden": false + }, + { + "usr": "c:gaussian_cdhr_walk.hpp@S@GaussianCDHRWalk@ST>2#T#T@Walk@T@Point", + "kind": 8, + "parent_name": "", + "name": "Point", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/gaussian_cdhr_walk.hpp", + "line": 74, + "column": 42, + "hidden": false + }, + { + "usr": "c:gaussian_cdhr_walk.hpp@S@GaussianCDHRWalk@ST>2#T#T@Walk@T@NT", + "kind": 8, + "parent_name": "", + "name": "NT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/gaussian_cdhr_walk.hpp", + "line": 75, + "column": 32, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/gaussian_helpers.hpp", + "file_last_write": 1686589862.0, + "definitions": [ + { + "usr": "c:gaussian_helpers.hpp@70@macro@EXP_CHORD_TOLERENCE", + "kind": 9, + "parent_name": "", + "name": "EXP_CHORD_TOLERENCE", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/gaussian_helpers.hpp", + "line": 4, + "column": 9, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/gaussian_rdhr_walk.hpp", + "file_last_write": 1686589862.0, + "definitions": [ + { + "usr": "c:@S@GaussianRDHRWalk", + "kind": 3, + "parent_name": "", + "name": "GaussianRDHRWalk", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/gaussian_rdhr_walk.hpp", + "line": 66, + "column": 8, + "hidden": false + }, + { + "usr": "c:@S@GaussianRDHRWalk@S@parameters", + "kind": 3, + "parent_name": "", + "name": "parameters", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/gaussian_rdhr_walk.hpp", + "line": 69, + "column": 12, + "hidden": false + }, + { + "usr": "c:@S@GaussianRDHRWalk@ST>2#T#T@Walk", + "kind": 2, + "parent_name": "", + "name": "Walk", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/gaussian_rdhr_walk.hpp", + "line": 77, + "column": 8, + "hidden": false + }, + { + "usr": "c:gaussian_rdhr_walk.hpp@S@GaussianRDHRWalk@ST>2#T#T@Walk@T@Point", + "kind": 8, + "parent_name": "", + "name": "Point", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/gaussian_rdhr_walk.hpp", + "line": 79, + "column": 42, + "hidden": false + }, + { + "usr": "c:gaussian_rdhr_walk.hpp@S@GaussianRDHRWalk@ST>2#T#T@Walk@T@NT", + "kind": 8, + "parent_name": "", + "name": "NT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/gaussian_rdhr_walk.hpp", + "line": 80, + "column": 32, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/random_walks.hpp", + "file_last_write": 1686589862.0, + "definitions": [], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_ball_walk.hpp", + "file_last_write": 1686589862.0, + "definitions": [ + { + "usr": "c:@S@BallWalk", + "kind": 3, + "parent_name": "", + "name": "BallWalk", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_ball_walk.hpp", + "line": 17, + "column": 8, + "hidden": false + }, + { + "usr": "c:@S@BallWalk@S@parameters", + "kind": 3, + "parent_name": "", + "name": "parameters", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_ball_walk.hpp", + "line": 27, + "column": 12, + "hidden": false + }, + { + "usr": "c:@S@BallWalk@ST>2#T#T@Walk", + "kind": 2, + "parent_name": "", + "name": "Walk", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_ball_walk.hpp", + "line": 43, + "column": 12, + "hidden": false + }, + { + "usr": "c:uniform_ball_walk.hpp@S@BallWalk@ST>2#T#T@Walk@T@Point", + "kind": 8, + "parent_name": "", + "name": "Point", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_ball_walk.hpp", + "line": 45, + "column": 46, + "hidden": false + }, + { + "usr": "c:uniform_ball_walk.hpp@S@BallWalk@ST>2#T#T@Walk@T@NT", + "kind": 8, + "parent_name": "", + "name": "NT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_ball_walk.hpp", + "line": 46, + "column": 36, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp", + "file_last_write": 1686589862.0, + "definitions": [ + { + "usr": "c:@ST>1#T@compute_diameter", + "kind": 2, + "parent_name": "", + "name": "compute_diameter", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp", + "line": 28, + "column": 8, + "hidden": false + }, + { + "usr": "c:@S@BilliardWalk", + "kind": 3, + "parent_name": "", + "name": "BilliardWalk", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp", + "line": 179, + "column": 8, + "hidden": false + }, + { + "usr": "c:@S@BilliardWalk@S@parameters", + "kind": 3, + "parent_name": "", + "name": "parameters", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp", + "line": 189, + "column": 12, + "hidden": false + }, + { + "usr": "c:@S@BilliardWalk@ST>2#T#T@Walk", + "kind": 2, + "parent_name": "", + "name": "Walk", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp", + "line": 206, + "column": 8, + "hidden": false + }, + { + "usr": "c:uniform_billiard_walk.hpp@S@BilliardWalk@ST>2#T#T@Walk@T@Point", + "kind": 8, + "parent_name": "", + "name": "Point", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp", + "line": 208, + "column": 42, + "hidden": false + }, + { + "usr": "c:uniform_billiard_walk.hpp@S@BilliardWalk@ST>2#T#T@Walk@T@NT", + "kind": 8, + "parent_name": "", + "name": "NT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp", + "line": 209, + "column": 32, + "hidden": false + }, + { + "usr": "c:uniform_billiard_walk.hpp@S@BilliardWalk@ST>2#T#T@Walk@T@Hpolytope", + "kind": 8, + "parent_name": "", + "name": "Hpolytope", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp", + "line": 210, + "column": 30, + "hidden": false + }, + { + "usr": "c:uniform_billiard_walk.hpp@S@BilliardWalk@ST>2#T#T@Walk@T@zonotope", + "kind": 8, + "parent_name": "", + "name": "zonotope", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp", + "line": 211, + "column": 29, + "hidden": false + }, + { + "usr": "c:uniform_billiard_walk.hpp@S@BilliardWalk@ST>2#T#T@Walk@T@ZonoHPoly", + "kind": 8, + "parent_name": "", + "name": "ZonoHPoly", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp", + "line": 212, + "column": 54, + "hidden": false + }, + { + "usr": "c:uniform_billiard_walk.hpp@S@BilliardWalk@ST>2#T#T@Walk@T@BallType", + "kind": 8, + "parent_name": "", + "name": "BallType", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp", + "line": 213, + "column": 25, + "hidden": false + }, + { + "usr": "c:uniform_billiard_walk.hpp@S@BilliardWalk@ST>2#T#T@Walk@T@BallPolytope", + "kind": 8, + "parent_name": "", + "name": "BallPolytope", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp", + "line": 214, + "column": 54, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_cdhr_walk.hpp", + "file_last_write": 1686589862.0, + "definitions": [ + { + "usr": "c:@S@CDHRWalk", + "kind": 3, + "parent_name": "", + "name": "CDHRWalk", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_cdhr_walk.hpp", + "line": 23, + "column": 8, + "hidden": false + }, + { + "usr": "c:@S@CDHRWalk@S@parameters", + "kind": 3, + "parent_name": "", + "name": "parameters", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_cdhr_walk.hpp", + "line": 25, + "column": 12, + "hidden": false + }, + { + "usr": "c:@S@CDHRWalk@ST>2#T#T@Walk", + "kind": 2, + "parent_name": "", + "name": "Walk", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_cdhr_walk.hpp", + "line": 33, + "column": 8, + "hidden": false + }, + { + "usr": "c:uniform_cdhr_walk.hpp@S@CDHRWalk@ST>2#T#T@Walk@T@Point", + "kind": 8, + "parent_name": "", + "name": "Point", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_cdhr_walk.hpp", + "line": 35, + "column": 42, + "hidden": false + }, + { + "usr": "c:uniform_cdhr_walk.hpp@S@CDHRWalk@ST>2#T#T@Walk@T@NT", + "kind": 8, + "parent_name": "", + "name": "NT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_cdhr_walk.hpp", + "line": 36, + "column": 32, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_rdhr_walk.hpp", + "file_last_write": 1686589862.0, + "definitions": [ + { + "usr": "c:@S@RDHRWalk", + "kind": 3, + "parent_name": "", + "name": "RDHRWalk", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_rdhr_walk.hpp", + "line": 24, + "column": 8, + "hidden": false + }, + { + "usr": "c:@S@RDHRWalk@S@parameters", + "kind": 3, + "parent_name": "", + "name": "parameters", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_rdhr_walk.hpp", + "line": 26, + "column": 12, + "hidden": false + }, + { + "usr": "c:@S@RDHRWalk@ST>2#T#T@Walk", + "kind": 2, + "parent_name": "", + "name": "Walk", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_rdhr_walk.hpp", + "line": 34, + "column": 8, + "hidden": false + }, + { + "usr": "c:uniform_rdhr_walk.hpp@S@RDHRWalk@ST>2#T#T@Walk@T@Point", + "kind": 8, + "parent_name": "", + "name": "Point", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_rdhr_walk.hpp", + "line": 36, + "column": 42, + "hidden": false + }, + { + "usr": "c:uniform_rdhr_walk.hpp@S@RDHRWalk@ST>2#T#T@Walk@T@NT", + "kind": 8, + "parent_name": "", + "name": "NT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_rdhr_walk.hpp", + "line": 37, + "column": 32, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/rounding.h", + "file_last_write": 1686589862.0, + "definitions": [], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/sampling/random_point_generators.hpp", + "file_last_write": 1686589862.0, + "definitions": [ + { + "usr": "c:@ST>1#T@RandomPointGenerator", + "kind": 2, + "parent_name": "", + "name": "RandomPointGenerator", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/sampling/random_point_generators.hpp", + "line": 16, + "column": 8, + "hidden": false + }, + { + "usr": "c:@ST>1#T@GaussianRandomPointGenerator", + "kind": 2, + "parent_name": "", + "name": "GaussianRandomPointGenerator", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/sampling/random_point_generators.hpp", + "line": 73, + "column": 8, + "hidden": false + }, + { + "usr": "c:@ST>1#T@BoundaryRandomPointGenerator", + "kind": 2, + "parent_name": "", + "name": "BoundaryRandomPointGenerator", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/sampling/random_point_generators.hpp", + "line": 134, + "column": 8, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/sampling/sampling.hpp", + "file_last_write": 1686589862.0, + "definitions": [], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/sampling/simplex.hpp", + "file_last_write": 1686589862.0, + "definitions": [], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/sampling/sphere.hpp", + "file_last_write": 1686589862.0, + "definitions": [ + { + "usr": "c:@ST>1#T@GetDirection", + "kind": 2, + "parent_name": "", + "name": "GetDirection", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/sampling/sphere.hpp", + "line": 16, + "column": 8, + "hidden": false + }, + { + "usr": "c:sphere.hpp@ST>1#T@GetDirection@T@NT", + "kind": 8, + "parent_name": "", + "name": "NT", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/sampling/sphere.hpp", + "line": 18, + "column": 32, + "hidden": false + }, + { + "usr": "c:@ST>1#T@GetPointInDsphere", + "kind": 2, + "parent_name": "", + "name": "GetPointInDsphere", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/sampling/sphere.hpp", + "line": 43, + "column": 8, + "hidden": false + }, + { + "usr": "c:@ST>1#T@GetPointOnDsphere", + "kind": 2, + "parent_name": "", + "name": "GetPointOnDsphere", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/sampling/sphere.hpp", + "line": 59, + "column": 8, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/copulas.h", + "file_last_write": 1686589862.0, + "definitions": [], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/exact_vols.h", + "file_last_write": 1686589862.0, + "definitions": [ + { + "usr": "c:@F@comb#I#I#", + "kind": 6, + "parent_name": "", + "name": "comb(int, int)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/exact_vols.h", + "line": 20, + "column": 40, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/rotating.hpp", + "file_last_write": 1686589862.0, + "definitions": [], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/rounding.hpp", + "file_last_write": 1686589862.0, + "definitions": [], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/sampling_policies.hpp", + "file_last_write": 1686589862.0, + "definitions": [ + { + "usr": "c:@S@PushBackWalkPolicy", + "kind": 3, + "parent_name": "", + "name": "PushBackWalkPolicy", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/sampling_policies.hpp", + "line": 11, + "column": 8, + "hidden": false + }, + { + "usr": "c:@ST>1#T@CountingWalkPolicy", + "kind": 2, + "parent_name": "", + "name": "CountingWalkPolicy", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/sampling_policies.hpp", + "line": 22, + "column": 8, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp", + "file_last_write": 1686589862.0, + "definitions": [ + { + "usr": "c:@ST>1#T@cooling_ball_parameters", + "kind": 2, + "parent_name": "", + "name": "cooling_ball_parameters", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp", + "line": 30, + "column": 8, + "hidden": false + }, + { + "usr": "c:@ST>1#T@estimate_ratio_parameters", + "kind": 3, + "parent_name": "", + "name": "estimate_ratio_parameters", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp", + "line": 361, + "column": 8, + "hidden": false + }, + { + "usr": "c:@ST>1#T@estimate_ratio_interval_parameters", + "kind": 3, + "parent_name": "", + "name": "estimate_ratio_interval_parameters", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp", + "line": 504, + "column": 8, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_gaussians.hpp", + "file_last_write": 1686589862.0, + "definitions": [ + { + "usr": "c:@ST>1#T@update_delta", + "kind": 2, + "parent_name": "", + "name": "update_delta", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_gaussians.hpp", + "line": 31, + "column": 8, + "hidden": false + }, + { + "usr": "c:@ST>1#T@gaussian_annealing_parameters", + "kind": 2, + "parent_name": "", + "name": "gaussian_annealing_parameters", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_gaussians.hpp", + "line": 288, + "column": 8, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_hpoly.hpp", + "file_last_write": 1686589862.0, + "definitions": [], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_sequence_of_balls.hpp", + "file_last_write": 1686589862.0, + "definitions": [], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/inner_ball.cpp", + "file_last_write": 1686590040.0, + "definitions": [ + { + "usr": "c:@F@inner_ball#I#", + "kind": 6, + "parent_name": "", + "name": "inner_ball(Rcpp::Reference)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/inner_ball.cpp", + "line": 35, + "column": 21, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/load_sdpa_format_file.cpp", + "file_last_write": 1686590057.0, + "definitions": [ + { + "usr": "c:@F@load_sdpa_format_file#$@N@Rcpp@S@Nullable>#$@N@std@N@__cxx11@S@basic_string>#C#$@N@std@S@char_traits>#C#$@N@std@S@allocator>#C#", + "kind": 6, + "parent_name": "", + "name": "load_sdpa_format_file(Rcpp::Nullable)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/load_sdpa_format_file.cpp", + "line": 30, + "column": 12, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/poly_gen.cpp", + "file_last_write": 1686590098.0, + "definitions": [ + { + "usr": "c:@F@poly_gen#I#b#b#I#I#$@N@Rcpp@S@Nullable>#d#", + "kind": 6, + "parent_name": "", + "name": "poly_gen(int, bool, bool, int, int, Rcpp::Nullable)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/poly_gen.cpp", + "line": 40, + "column": 21, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/rotating.cpp", + "file_last_write": 1686590126.0, + "definitions": [ + { + "usr": "c:@F@rotating#I#$@N@Rcpp@S@Nullable>#I#S0_#", + "kind": 6, + "parent_name": "", + "name": "rotating(Rcpp::Reference, Rcpp::Nullable, Rcpp::Nullable)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/rotating.cpp", + "line": 32, + "column": 21, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/rounding.cpp", + "file_last_write": 1686590147.0, + "definitions": [ + { + "usr": "c:@F@rounding#I#$@N@Rcpp@S@Nullable>#I#$@N@Rcpp@S@Nullable>#d#", + "kind": 6, + "parent_name": "", + "name": "rounding(Rcpp::Reference, Rcpp::Nullable, Rcpp::Nullable)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/rounding.cpp", + "line": 33, + "column": 12, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/sample_points.cpp", + "file_last_write": 1686590162.0, + "definitions": [ + { + "usr": "c:@F@sample_points#I#I#$@N@Rcpp@S@Nullable>#I#S0_#", + "kind": 6, + "parent_name": "", + "name": "sample_points(Rcpp::Reference, int, Rcpp::Nullable, Rcpp::Nullable)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/sample_points.cpp", + "line": 124, + "column": 21, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/volume.cpp", + "file_last_write": 1686590184.0, + "definitions": [ + { + "usr": "c:@F@volume#I#$@N@Rcpp@S@Nullable>#I#b#", + "kind": 6, + "parent_name": "", + "name": "volume(Rcpp::Reference, Rcpp::Nullable, bool)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/volume.cpp", + "line": 124, + "column": 8, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/write_sdpa_format_file.cpp", + "file_last_write": 1686590204.0, + "definitions": [ + { + "usr": "c:@F@write_sdpa_format_file#I#I#$@N@std@N@__cxx11@S@basic_string>#C#$@N@std@S@char_traits>#C#$@N@std@S@allocator>#C#", + "kind": 6, + "parent_name": "", + "name": "write_sdpa_format_file(Rcpp::Reference, Rcpp::NumericVector, std::string)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/write_sdpa_format_file.cpp", + "line": 43, + "column": 6, + "hidden": false + } + ], + "hidden": false + }, + { + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/zonotope_approximation.cpp", + "file_last_write": 1686590217.0, + "definitions": [ + { + "usr": "c:@F@zono_approx#I#$@N@Rcpp@S@Nullable>#b#$@N@Rcpp@S@Nullable>#I#$@N@Rcpp@S@Nullable>#d#", + "kind": 6, + "parent_name": "", + "name": "zono_approx(Rcpp::Reference, Rcpp::Nullable, Rcpp::Nullable, Rcpp::Nullable)", + "file": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/zonotope_approximation.cpp", + "line": 31, + "column": 12, + "hidden": false + } + ], + "hidden": false + } +] \ No newline at end of file diff --git a/.Rproj.user/CF1601EC/pcs/debug-breakpoints.pper b/.Rproj.user/CF1601EC/pcs/debug-breakpoints.pper new file mode 100644 index 00000000..4893a8a7 --- /dev/null +++ b/.Rproj.user/CF1601EC/pcs/debug-breakpoints.pper @@ -0,0 +1,5 @@ +{ + "debugBreakpointsState": { + "breakpoints": [] + } +} \ No newline at end of file diff --git a/.Rproj.user/CF1601EC/pcs/files-pane.pper b/.Rproj.user/CF1601EC/pcs/files-pane.pper new file mode 100644 index 00000000..f093fe61 --- /dev/null +++ b/.Rproj.user/CF1601EC/pcs/files-pane.pper @@ -0,0 +1,9 @@ +{ + "sortOrder": [ + { + "columnIndex": 2, + "ascending": true + } + ], + "path": "D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R" +} \ No newline at end of file diff --git a/.Rproj.user/CF1601EC/pcs/source-pane.pper b/.Rproj.user/CF1601EC/pcs/source-pane.pper new file mode 100644 index 00000000..a528f3b7 --- /dev/null +++ b/.Rproj.user/CF1601EC/pcs/source-pane.pper @@ -0,0 +1,3 @@ +{ + "activeTab": -1 +} \ No newline at end of file diff --git a/.Rproj.user/CF1601EC/pcs/windowlayoutstate.pper b/.Rproj.user/CF1601EC/pcs/windowlayoutstate.pper new file mode 100644 index 00000000..3d528875 --- /dev/null +++ b/.Rproj.user/CF1601EC/pcs/windowlayoutstate.pper @@ -0,0 +1,14 @@ +{ + "left": { + "splitterpos": 330, + "topwindowstate": "HIDE", + "panelheight": 769, + "windowheight": 807 + }, + "right": { + "splitterpos": 496, + "topwindowstate": "NORMAL", + "panelheight": 769, + "windowheight": 807 + } +} \ No newline at end of file diff --git a/.Rproj.user/CF1601EC/pcs/workbench-pane.pper b/.Rproj.user/CF1601EC/pcs/workbench-pane.pper new file mode 100644 index 00000000..6860e6b5 --- /dev/null +++ b/.Rproj.user/CF1601EC/pcs/workbench-pane.pper @@ -0,0 +1,5 @@ +{ + "TabSet1": 3, + "TabSet2": 2, + "TabZoom": {} +} \ No newline at end of file diff --git a/.Rproj.user/CF1601EC/persistent-state b/.Rproj.user/CF1601EC/persistent-state new file mode 100644 index 00000000..32ad50eb --- /dev/null +++ b/.Rproj.user/CF1601EC/persistent-state @@ -0,0 +1,8 @@ +build-last-errors="[{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":60,\"column\":39,\"message\":\"ignoring attributes on template argument '__m128' [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":61,\"column\":40,\"message\":\"ignoring attributes on template argument '__m128i' [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":62,\"column\":40,\"message\":\"ignoring attributes on template argument '__m128d' [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":161,\"column\":43,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":162,\"column\":43,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":163,\"column\":43,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":718,\"column\":35,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":741,\"column\":35,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":764,\"column\":35,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":778,\"column\":34,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":783,\"column\":34,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":790,\"column\":34,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core\",\"line\":3,\"column\":1,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h\",\"line\":22,\"column\":70,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h\",\"line\":15,\"column\":70,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h\",\"line\":22,\"column\":70,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(4) float>::half' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h\",\"line\":47,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) long long int>::half' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":60,\"column\":39,\"message\":\"ignoring attributes on template argument '__m128' [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":61,\"column\":40,\"message\":\"ignoring attributes on template argument '__m128i' [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":62,\"column\":40,\"message\":\"ignoring attributes on template argument '__m128d' [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":161,\"column\":43,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":162,\"column\":43,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":163,\"column\":43,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":718,\"column\":35,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":741,\"column\":35,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":764,\"column\":35,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":778,\"column\":34,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":783,\"column\":34,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":790,\"column\":34,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core\",\"line\":3,\"column\":1,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h\",\"line\":22,\"column\":70,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h\",\"line\":15,\"column\":70,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h\",\"line\":22,\"column\":70,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(4) float>::half' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h\",\"line\":47,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) long long int>::half' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp\",\"line\":194,\"column\":21,\"message\":\"unnecessary parentheses in declaration of 'assert_arg' [-Wparentheses]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp\",\"line\":199,\"column\":21,\"message\":\"unnecessary parentheses in declaration of 'assert_not_arg' [-Wparentheses]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/copula.cpp\",\"line\":93,\"column\":24,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/copula.cpp\",\"line\":94,\"column\":31,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/copula.cpp\",\"line\":106,\"column\":19,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/copula.cpp\",\"line\":107,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/copula.cpp\",\"line\":81,\"column\":63,\"message\":\"unused variable 'i' [-Wunused-variable]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/copula.cpp\",\"line\":81,\"column\":66,\"message\":\"unused variable 'j' [-Wunused-variable]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":351,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":352,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":353,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":385,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":385,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/Memory.h\",\"line\":470,\"column\":60,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":60,\"column\":39,\"message\":\"ignoring attributes on template argument '__m128' [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":61,\"column\":40,\"message\":\"ignoring attributes on template argument '__m128i' [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":62,\"column\":40,\"message\":\"ignoring attributes on template argument '__m128d' [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":161,\"column\":43,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":162,\"column\":43,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":163,\"column\":43,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":718,\"column\":35,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":741,\"column\":35,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":764,\"column\":35,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":778,\"column\":34,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":783,\"column\":34,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":790,\"column\":34,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core\",\"line\":3,\"column\":1,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h\",\"line\":22,\"column\":70,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h\",\"line\":15,\"column\":70,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h\",\"line\":22,\"column\":70,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(4) float>::half' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h\",\"line\":47,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) long long int>::half' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp\",\"line\":194,\"column\":21,\"message\":\"unnecessary parentheses in declaration of 'assert_arg' [-Wparentheses]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp\",\"line\":199,\"column\":21,\"message\":\"unnecessary parentheses in declaration of 'assert_not_arg' [-Wparentheses]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/detail/iterator.hpp\",\"line\":111,\"column\":21,\"message\":\"'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/detail/iterator.hpp\",\"line\":149,\"column\":21,\"message\":\"'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/detail/iterator.hpp\",\"line\":204,\"column\":21,\"message\":\"'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/direct_sampling.cpp\",\"line\":89,\"column\":36,\"message\":\"comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/direct_sampling.cpp\",\"line\":95,\"column\":36,\"message\":\"comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/direct_sampling.cpp\",\"line\":52,\"column\":50,\"message\":\"typedef 'VT' locally defined but not used [-Wunused-local-typedefs]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":60,\"column\":39,\"message\":\"ignoring attributes on template argument '__m128' [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":61,\"column\":40,\"message\":\"ignoring attributes on template argument '__m128i' [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":62,\"column\":40,\"message\":\"ignoring attributes on template argument '__m128d' [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":161,\"column\":43,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":162,\"column\":43,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":163,\"column\":43,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":718,\"column\":35,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":741,\"column\":35,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":764,\"column\":35,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":778,\"column\":34,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":783,\"column\":34,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":790,\"column\":34,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core\",\"line\":3,\"column\":1,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h\",\"line\":22,\"column\":70,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h\",\"line\":15,\"column\":70,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h\",\"line\":22,\"column\":70,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(4) float>::half' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h\",\"line\":47,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) long long int>::half' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp\",\"line\":194,\"column\":21,\"message\":\"unnecessary parentheses in declaration of 'assert_arg' [-Wparentheses]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp\",\"line\":199,\"column\":21,\"message\":\"unnecessary parentheses in declaration of 'assert_not_arg' [-Wparentheses]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/detail/iterator.hpp\",\"line\":111,\"column\":21,\"message\":\"'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/detail/iterator.hpp\",\"line\":149,\"column\":21,\"message\":\"'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/detail/iterator.hpp\",\"line\":204,\"column\":21,\"message\":\"'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":391,\"column\":73,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":392,\"column\":73,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":393,\"column\":73,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1981,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1537,\"column\":103,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1592,\"column\":135,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1593,\"column\":135,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1594,\"column\":135,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1595,\"column\":135,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":75,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":76,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":77,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h\",\"line\":60,\"column\":121,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h\",\"line\":60,\"column\":121,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h\",\"line\":61,\"column\":121,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h\",\"line\":61,\"column\":121,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":112,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":112,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":351,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":352,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":353,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/Memory.h\",\"line\":470,\"column\":60,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":385,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":385,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1981,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1847,\"column\":33,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1847,\"column\":33,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":351,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":352,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":353,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":351,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":352,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":353,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":385,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":385,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":385,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":385,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":75,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":76,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":77,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":112,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":112,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h\",\"line\":227,\"column\":7,\"message\":\"'result' may be used uninitialized [-Wmaybe-uninitialized]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h\",\"line\":332,\"column\":12,\"message\":\"'result' may be used uninitialized [-Wmaybe-uninitialized]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":60,\"column\":39,\"message\":\"ignoring attributes on template argument '__m128' [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":61,\"column\":40,\"message\":\"ignoring attributes on template argument '__m128i' [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":62,\"column\":40,\"message\":\"ignoring attributes on template argument '__m128d' [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":161,\"column\":43,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":162,\"column\":43,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":163,\"column\":43,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":718,\"column\":35,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":741,\"column\":35,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":764,\"column\":35,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":778,\"column\":34,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":783,\"column\":34,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":790,\"column\":34,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core\",\"line\":3,\"column\":1,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h\",\"line\":22,\"column\":70,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h\",\"line\":15,\"column\":70,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h\",\"line\":22,\"column\":70,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(4) float>::half' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h\",\"line\":47,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) long long int>::half' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":60,\"column\":39,\"message\":\"ignoring attributes on template argument '__m128' [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":61,\"column\":40,\"message\":\"ignoring attributes on template argument '__m128i' [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":62,\"column\":40,\"message\":\"ignoring attributes on template argument '__m128d' [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":161,\"column\":43,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":162,\"column\":43,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":163,\"column\":43,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":718,\"column\":35,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":741,\"column\":35,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":764,\"column\":35,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":778,\"column\":34,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":783,\"column\":34,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":790,\"column\":34,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core\",\"line\":3,\"column\":1,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h\",\"line\":22,\"column\":70,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h\",\"line\":15,\"column\":70,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h\",\"line\":22,\"column\":70,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(4) float>::half' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h\",\"line\":47,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) long long int>::half' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp\",\"line\":194,\"column\":21,\"message\":\"unnecessary parentheses in declaration of 'assert_arg' [-Wparentheses]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp\",\"line\":199,\"column\":21,\"message\":\"unnecessary parentheses in declaration of 'assert_not_arg' [-Wparentheses]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/detail/iterator.hpp\",\"line\":111,\"column\":21,\"message\":\"'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/detail/iterator.hpp\",\"line\":149,\"column\":21,\"message\":\"'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/detail/iterator.hpp\",\"line\":204,\"column\":21,\"message\":\"'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/vpolytope.h\",\"line\":278,\"column\":30,\"message\":\"comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/vpolytope.h\",\"line\":408,\"column\":30,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/vpolytope.h\",\"line\":411,\"column\":22,\"message\":\"unused variable 'j' [-Wunused-variable]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/lp_oracles/vpolyoracles.h\",\"line\":311,\"column\":8,\"message\":\"unused variable 'res' [-Wunused-variable]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/lp_oracles/solve_lp.h\",\"line\":204,\"column\":19,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/lp_oracles/solve_lp.h\",\"line\":206,\"column\":19,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/lp_oracles/solve_lp.h\",\"line\":208,\"column\":18,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/lp_oracles/solve_lp.h\",\"line\":210,\"column\":24,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/lp_oracles/solve_lp.h\",\"line\":216,\"column\":19,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/lp_oracles/solve_lp.h\",\"line\":218,\"column\":18,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/lp_oracles/solve_lp.h\",\"line\":220,\"column\":24,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/lp_oracles/solve_lp.h\",\"line\":229,\"column\":17,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/lp_oracles/solve_lp.h\",\"line\":229,\"column\":25,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/lp_oracles/solve_lp.h\",\"line\":285,\"column\":17,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/cartesian_geom/point.h\",\"line\":157,\"column\":21,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'const unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":351,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":352,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":353,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":385,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":385,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":75,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":76,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":77,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":391,\"column\":73,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":392,\"column\":73,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":393,\"column\":73,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/Memory.h\",\"line\":470,\"column\":60,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h\",\"line\":60,\"column\":121,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h\",\"line\":60,\"column\":121,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h\",\"line\":61,\"column\":121,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h\",\"line\":61,\"column\":121,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":112,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":112,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1981,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1537,\"column\":103,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1592,\"column\":135,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1593,\"column\":135,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1594,\"column\":135,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1595,\"column\":135,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1847,\"column\":33,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1847,\"column\":33,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":351,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":352,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":353,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":351,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":352,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":353,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":385,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":385,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":385,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":385,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1981,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":75,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":76,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":77,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":112,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":112,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h\",\"line\":227,\"column\":7,\"message\":\"'result' may be used uninitialized [-Wmaybe-uninitialized]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h\",\"line\":332,\"column\":12,\"message\":\"'result' may be used uninitialized [-Wmaybe-uninitialized]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":60,\"column\":39,\"message\":\"ignoring attributes on template argument '__m128' [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":61,\"column\":40,\"message\":\"ignoring attributes on template argument '__m128i' [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":62,\"column\":40,\"message\":\"ignoring attributes on template argument '__m128d' [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":161,\"column\":43,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":162,\"column\":43,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":163,\"column\":43,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":718,\"column\":35,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":741,\"column\":35,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":764,\"column\":35,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":778,\"column\":34,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":783,\"column\":34,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":790,\"column\":34,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core\",\"line\":3,\"column\":1,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h\",\"line\":22,\"column\":70,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h\",\"line\":15,\"column\":70,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h\",\"line\":22,\"column\":70,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(4) float>::half' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h\",\"line\":47,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) long long int>::half' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp\",\"line\":194,\"column\":21,\"message\":\"unnecessary parentheses in declaration of 'assert_arg' [-Wparentheses]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp\",\"line\":199,\"column\":21,\"message\":\"unnecessary parentheses in declaration of 'assert_not_arg' [-Wparentheses]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/load_sdpa_format_file.cpp\",\"line\":37,\"column\":28,\"message\":\"typedef 'RNGType' locally defined but not used [-Wunused-local-typedefs]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/load_sdpa_format_file.cpp\",\"line\":38,\"column\":29,\"message\":\"typedef 'LMI' locally defined but not used [-Wunused-local-typedefs]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/SDPAFormatManager.h\",\"line\":130,\"column\":35,\"message\":\"comparison of integer expressions of different signedness: 'std::__cxx11::list<double, std::allocator<double> >::size_type' {aka 'long long unsigned int'} and 'int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/SDPAFormatManager.h\",\"line\":139,\"column\":38,\"message\":\"comparison of integer expressions of different signedness: 'std::__cxx11::list<double, std::allocator<double> >::size_type' {aka 'long long unsigned int'} and 'int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/SDPAFormatManager.h\",\"line\":153,\"column\":41,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'std::vector<Eigen::Matrix<double, -1, -1>, std::allocator<Eigen::Matrix<double, -1, -1> > >::size_type' {aka 'long long unsigned int'} [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/SDPAFormatManager.h\",\"line\":106,\"column\":32,\"message\":\"unused variable 'sz' [-Wunused-variable]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/spectrahedra/LMI.h\",\"line\":82,\"column\":41,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/spectrahedra/LMI.h\",\"line\":83,\"column\":50,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":60,\"column\":39,\"message\":\"ignoring attributes on template argument '__m128' [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":61,\"column\":40,\"message\":\"ignoring attributes on template argument '__m128i' [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":62,\"column\":40,\"message\":\"ignoring attributes on template argument '__m128d' [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":161,\"column\":43,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":162,\"column\":43,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":163,\"column\":43,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":718,\"column\":35,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":741,\"column\":35,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":764,\"column\":35,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":778,\"column\":34,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":783,\"column\":34,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":790,\"column\":34,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core\",\"line\":3,\"column\":1,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h\",\"line\":22,\"column\":70,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h\",\"line\":15,\"column\":70,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h\",\"line\":22,\"column\":70,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(4) float>::half' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h\",\"line\":47,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) long long int>::half' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp\",\"line\":194,\"column\":21,\"message\":\"unnecessary parentheses in declaration of 'assert_arg' [-Wparentheses]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp\",\"line\":199,\"column\":21,\"message\":\"unnecessary parentheses in declaration of 'assert_not_arg' [-Wparentheses]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/detail/iterator.hpp\",\"line\":111,\"column\":21,\"message\":\"'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/detail/iterator.hpp\",\"line\":149,\"column\":21,\"message\":\"'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/detail/iterator.hpp\",\"line\":204,\"column\":21,\"message\":\"'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/generators/v_polytopes_generators.h\",\"line\":32,\"column\":23,\"message\":\"typedef 'Point' locally defined but not used [-Wunused-local-typedefs]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/generators/z_polytopes_generators.h\",\"line\":61,\"column\":38,\"message\":\"typedef 'NT' locally defined but not used [-Wunused-local-typedefs]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/generators/z_polytopes_generators.h\",\"line\":78,\"column\":32,\"message\":\"comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/generators/z_polytopes_generators.h\",\"line\":80,\"column\":36,\"message\":\"comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/generators/z_polytopes_generators.h\",\"line\":36,\"column\":32,\"message\":\"comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/generators/z_polytopes_generators.h\",\"line\":38,\"column\":36,\"message\":\"comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/generators/z_polytopes_generators.h\",\"line\":115,\"column\":32,\"message\":\"comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/generators/z_polytopes_generators.h\",\"line\":117,\"column\":36,\"message\":\"comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/generators/v_polytopes_generators.h\",\"line\":44,\"column\":18,\"message\":\"unused variable 'j' [-Wunused-variable]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/generators/v_polytopes_generators.h\",\"line\":109,\"column\":27,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/generators/v_polytopes_generators.h\",\"line\":124,\"column\":27,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long long unsigned int'} [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/generators/v_polytopes_generators.h\",\"line\":126,\"column\":31,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/generators/v_polytopes_generators.h\",\"line\":134,\"column\":27,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/generators/v_polytopes_generators.h\",\"line\":135,\"column\":31,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/generators/v_polytopes_generators.h\",\"line\":151,\"column\":27,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/generators/v_polytopes_generators.h\",\"line\":155,\"column\":35,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/generators/v_polytopes_generators.h\",\"line\":103,\"column\":18,\"message\":\"unused variable 'j' [-Wunused-variable]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/generators/h_polytopes_generator.h\",\"line\":34,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/generators/h_polytopes_generator.h\",\"line\":82,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":75,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":76,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":77,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":391,\"column\":73,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":392,\"column\":73,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":393,\"column\":73,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h\",\"line\":60,\"column\":121,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h\",\"line\":60,\"column\":121,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h\",\"line\":61,\"column\":121,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h\",\"line\":61,\"column\":121,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":112,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":112,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":351,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":352,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":353,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/Memory.h\",\"line\":470,\"column\":60,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":385,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":385,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1981,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1537,\"column\":103,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1592,\"column\":135,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1593,\"column\":135,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1594,\"column\":135,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1595,\"column\":135,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1847,\"column\":33,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1847,\"column\":33,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":351,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":352,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":353,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":351,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":352,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":353,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":385,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":385,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":385,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":385,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":75,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":76,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":77,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":112,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":112,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h\",\"line\":227,\"column\":7,\"message\":\"'result' may be used uninitialized [-Wmaybe-uninitialized]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h\",\"line\":332,\"column\":12,\"message\":\"'result' may be used uninitialized [-Wmaybe-uninitialized]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":60,\"column\":39,\"message\":\"ignoring attributes on template argument '__m128' [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":61,\"column\":40,\"message\":\"ignoring attributes on template argument '__m128i' [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":62,\"column\":40,\"message\":\"ignoring attributes on template argument '__m128d' [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":161,\"column\":43,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":162,\"column\":43,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":163,\"column\":43,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":718,\"column\":35,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":741,\"column\":35,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":764,\"column\":35,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":778,\"column\":34,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":783,\"column\":34,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":790,\"column\":34,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core\",\"line\":3,\"column\":1,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h\",\"line\":22,\"column\":70,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h\",\"line\":15,\"column\":70,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h\",\"line\":22,\"column\":70,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(4) float>::half' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h\",\"line\":47,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) long long int>::half' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp\",\"line\":194,\"column\":21,\"message\":\"unnecessary parentheses in declaration of 'assert_arg' [-Wparentheses]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp\",\"line\":199,\"column\":21,\"message\":\"unnecessary parentheses in declaration of 'assert_not_arg' [-Wparentheses]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/detail/iterator.hpp\",\"line\":111,\"column\":21,\"message\":\"'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/detail/iterator.hpp\",\"line\":149,\"column\":21,\"message\":\"'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/detail/iterator.hpp\",\"line\":204,\"column\":21,\"message\":\"'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/rotating.cpp\",\"line\":42,\"column\":53,\"message\":\"typedef 'InterVP' locally defined but not used [-Wunused-local-typedefs]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/rotating.hpp\",\"line\":50,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/rotating.hpp\",\"line\":51,\"column\":27,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/rotating.hpp\",\"line\":50,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/rotating.hpp\",\"line\":51,\"column\":27,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/rotating.hpp\",\"line\":50,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/rotating.hpp\",\"line\":51,\"column\":27,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":391,\"column\":73,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":392,\"column\":73,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":393,\"column\":73,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1537,\"column\":103,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1592,\"column\":135,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1593,\"column\":135,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1594,\"column\":135,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1595,\"column\":135,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":75,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":76,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":77,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":112,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":112,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":351,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":352,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":353,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/Memory.h\",\"line\":470,\"column\":60,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":385,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":385,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1981,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h\",\"line\":60,\"column\":121,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h\",\"line\":60,\"column\":121,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h\",\"line\":61,\"column\":121,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h\",\"line\":61,\"column\":121,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":351,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":352,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":353,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":351,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":352,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":353,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1981,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":385,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":385,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":385,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":385,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1847,\"column\":33,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1847,\"column\":33,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":75,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":76,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":77,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":112,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":112,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h\",\"line\":227,\"column\":7,\"message\":\"'result' may be used uninitialized [-Wmaybe-uninitialized]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h\",\"line\":332,\"column\":12,\"message\":\"'result' may be used uninitialized [-Wmaybe-uninitialized]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":60,\"column\":39,\"message\":\"ignoring attributes on template argument '__m128' [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":61,\"column\":40,\"message\":\"ignoring attributes on template argument '__m128i' [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":62,\"column\":40,\"message\":\"ignoring attributes on template argument '__m128d' [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":161,\"column\":43,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":162,\"column\":43,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":163,\"column\":43,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":718,\"column\":35,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":741,\"column\":35,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":764,\"column\":35,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":778,\"column\":34,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":783,\"column\":34,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":790,\"column\":34,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core\",\"line\":3,\"column\":1,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h\",\"line\":22,\"column\":70,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h\",\"line\":15,\"column\":70,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h\",\"line\":22,\"column\":70,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(4) float>::half' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h\",\"line\":47,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) long long int>::half' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp\",\"line\":194,\"column\":21,\"message\":\"unnecessary parentheses in declaration of 'assert_arg' [-Wparentheses]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp\",\"line\":199,\"column\":21,\"message\":\"unnecessary parentheses in declaration of 'assert_not_arg' [-Wparentheses]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/detail/iterator.hpp\",\"line\":111,\"column\":21,\"message\":\"'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/detail/iterator.hpp\",\"line\":149,\"column\":21,\"message\":\"'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/detail/iterator.hpp\",\"line\":204,\"column\":21,\"message\":\"'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_gaussians.hpp\",\"line\":166,\"column\":48,\"message\":\"typedef 'viterator' locally defined but not used [-Wunused-local-typedefs]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_gaussians.hpp\",\"line\":221,\"column\":35,\"message\":\"typedef 'VT' locally defined but not used [-Wunused-local-typedefs]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/vpolytope.h\",\"line\":278,\"column\":30,\"message\":\"comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/rounding.hpp\",\"line\":70,\"column\":25,\"message\":\"comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/rounding.hpp\",\"line\":70,\"column\":25,\"message\":\"comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/rounding.hpp\",\"line\":70,\"column\":25,\"message\":\"comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/rounding.hpp\",\"line\":70,\"column\":25,\"message\":\"comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/rounding.hpp\",\"line\":70,\"column\":25,\"message\":\"comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/rounding.hpp\",\"line\":70,\"column\":25,\"message\":\"comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/rounding.hpp\",\"line\":70,\"column\":25,\"message\":\"comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/rounding.hpp\",\"line\":70,\"column\":25,\"message\":\"comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/rounding.hpp\",\"line\":70,\"column\":25,\"message\":\"comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/vpolytope.h\",\"line\":408,\"column\":30,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/vpolytope.h\",\"line\":411,\"column\":22,\"message\":\"unused variable 'j' [-Wunused-variable]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/lp_oracles/vpolyoracles.h\",\"line\":311,\"column\":8,\"message\":\"unused variable 'res' [-Wunused-variable]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":253,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":268,\"column\":20,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":253,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":268,\"column\":20,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":253,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":268,\"column\":20,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/hpolytope.h\",\"line\":313,\"column\":12,\"message\":\"unused variable 'mult' [-Wunused-variable]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/hpolytope.h\",\"line\":315,\"column\":22,\"message\":\"unused variable 'j' [-Wunused-variable]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":313,\"column\":19,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":321,\"column\":26,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":313,\"column\":19,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":321,\"column\":26,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":84,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":313,\"column\":19,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":321,\"column\":26,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/lp_oracles/zpolyoracles.h\",\"line\":140,\"column\":8,\"message\":\"unused variable 'res' [-Wunused-variable]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":391,\"column\":73,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":392,\"column\":73,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":393,\"column\":73,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1537,\"column\":103,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1592,\"column\":135,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1593,\"column\":135,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1594,\"column\":135,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1595,\"column\":135,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":75,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":76,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":77,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":112,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":112,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/Memory.h\",\"line\":470,\"column\":60,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1981,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":75,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":76,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":77,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h\",\"line\":60,\"column\":121,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h\",\"line\":60,\"column\":121,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h\",\"line\":61,\"column\":121,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h\",\"line\":61,\"column\":121,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":351,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":352,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":353,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":112,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":112,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1847,\"column\":33,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1847,\"column\":33,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1981,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":385,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":385,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":351,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":352,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":353,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":351,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":352,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":353,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":385,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":385,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":385,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":385,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":75,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":76,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":77,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":112,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":112,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"d:/softwares/rtools/rtools43/x86_64-w64-mingw32.static.posix/lib/gcc/x86_64-w64-mingw32.static.posix/12.2.0/include/c++/bits/stl_pair.h\",\"line\":535,\"column\":42,\"message\":\"'facet' may be used uninitialized [-Wmaybe-uninitialized]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"d:/softwares/rtools/rtools43/x86_64-w64-mingw32.static.posix/lib/gcc/x86_64-w64-mingw32.static.posix/12.2.0/include/c++/bits/stl_pair.h\",\"line\":535,\"column\":42,\"message\":\"'facet' may be used uninitialized [-Wmaybe-uninitialized]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h\",\"line\":347,\"column\":29,\"message\":\"'outvert' may be used uninitialized [-Wmaybe-uninitialized]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":60,\"column\":39,\"message\":\"ignoring attributes on template argument '__m128' [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":61,\"column\":40,\"message\":\"ignoring attributes on template argument '__m128i' [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":62,\"column\":40,\"message\":\"ignoring attributes on template argument '__m128d' [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":161,\"column\":43,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":162,\"column\":43,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":163,\"column\":43,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":718,\"column\":35,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":741,\"column\":35,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":764,\"column\":35,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":778,\"column\":34,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":783,\"column\":34,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":790,\"column\":34,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core\",\"line\":3,\"column\":1,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h\",\"line\":22,\"column\":70,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h\",\"line\":15,\"column\":70,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h\",\"line\":22,\"column\":70,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(4) float>::half' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h\",\"line\":47,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) long long int>::half' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp\",\"line\":194,\"column\":21,\"message\":\"unnecessary parentheses in declaration of 'assert_arg' [-Wparentheses]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp\",\"line\":199,\"column\":21,\"message\":\"unnecessary parentheses in declaration of 'assert_not_arg' [-Wparentheses]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/detail/iterator.hpp\",\"line\":111,\"column\":21,\"message\":\"'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/detail/iterator.hpp\",\"line\":149,\"column\":21,\"message\":\"'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/detail/iterator.hpp\",\"line\":204,\"column\":21,\"message\":\"'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_gaussians.hpp\",\"line\":166,\"column\":48,\"message\":\"typedef 'viterator' locally defined but not used [-Wunused-local-typedefs]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_gaussians.hpp\",\"line\":221,\"column\":35,\"message\":\"typedef 'VT' locally defined but not used [-Wunused-local-typedefs]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/sample_points.cpp\",\"line\":172,\"column\":8,\"message\":\"unused variable 'radius' [-Wunused-variable]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/vpolytope.h\",\"line\":278,\"column\":30,\"message\":\"comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/vpolytope.h\",\"line\":408,\"column\":30,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/vpolytope.h\",\"line\":411,\"column\":22,\"message\":\"unused variable 'j' [-Wunused-variable]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/lp_oracles/vpolyoracles.h\",\"line\":311,\"column\":8,\"message\":\"unused variable 'res' [-Wunused-variable]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/lp_oracles/zpolyoracles.h\",\"line\":52,\"column\":10,\"message\":\"unused variable 'infinite' [-Wunused-variable]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/lp_oracles/solve_lp.h\",\"line\":204,\"column\":19,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/lp_oracles/solve_lp.h\",\"line\":206,\"column\":19,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/lp_oracles/solve_lp.h\",\"line\":208,\"column\":18,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/lp_oracles/solve_lp.h\",\"line\":210,\"column\":24,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/lp_oracles/solve_lp.h\",\"line\":216,\"column\":19,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/lp_oracles/solve_lp.h\",\"line\":218,\"column\":18,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/lp_oracles/solve_lp.h\",\"line\":220,\"column\":24,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/lp_oracles/solve_lp.h\",\"line\":229,\"column\":17,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/lp_oracles/solve_lp.h\",\"line\":229,\"column\":25,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/lp_oracles/solve_lp.h\",\"line\":285,\"column\":17,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/cartesian_geom/point.h\",\"line\":157,\"column\":21,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'const unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/sampling/sampling.hpp\",\"line\":129,\"column\":18,\"message\":\"unused variable 'n' [-Wunused-variable]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/sampling/sampling.hpp\",\"line\":129,\"column\":18,\"message\":\"unused variable 'n' [-Wunused-variable]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/sampling/sampling.hpp\",\"line\":129,\"column\":18,\"message\":\"unused variable 'n' [-Wunused-variable]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/sampling/sampling.hpp\",\"line\":129,\"column\":18,\"message\":\"unused variable 'n' [-Wunused-variable]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/sampling/sampling.hpp\",\"line\":129,\"column\":18,\"message\":\"unused variable 'n' [-Wunused-variable]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/sampling/sampling.hpp\",\"line\":129,\"column\":18,\"message\":\"unused variable 'n' [-Wunused-variable]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/sampling/sampling.hpp\",\"line\":129,\"column\":18,\"message\":\"unused variable 'n' [-Wunused-variable]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/sampling/sampling.hpp\",\"line\":129,\"column\":18,\"message\":\"unused variable 'n' [-Wunused-variable]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":253,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":268,\"column\":20,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":253,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":268,\"column\":20,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":253,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":268,\"column\":20,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":253,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":268,\"column\":20,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/hpolytope.h\",\"line\":313,\"column\":12,\"message\":\"unused variable 'mult' [-Wunused-variable]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/hpolytope.h\",\"line\":315,\"column\":22,\"message\":\"unused variable 'j' [-Wunused-variable]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/hpolytope.h\",\"line\":236,\"column\":22,\"message\":\"unused variable 'j' [-Wunused-variable]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":313,\"column\":19,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":321,\"column\":26,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":313,\"column\":19,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":321,\"column\":26,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":84,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":313,\"column\":19,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":321,\"column\":26,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":313,\"column\":19,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":321,\"column\":26,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/lp_oracles/zpolyoracles.h\",\"line\":140,\"column\":8,\"message\":\"unused variable 'res' [-Wunused-variable]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":351,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":352,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":353,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":75,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":76,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":77,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":385,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":385,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":112,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":112,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/Memory.h\",\"line\":470,\"column\":60,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":391,\"column\":73,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":392,\"column\":73,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":393,\"column\":73,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h\",\"line\":60,\"column\":121,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h\",\"line\":60,\"column\":121,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h\",\"line\":61,\"column\":121,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h\",\"line\":61,\"column\":121,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":75,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":76,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":77,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1981,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1537,\"column\":103,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1592,\"column\":135,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1593,\"column\":135,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1594,\"column\":135,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1595,\"column\":135,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1981,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":112,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":112,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1847,\"column\":33,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1847,\"column\":33,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":351,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":352,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":353,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":351,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":352,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":353,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":385,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":385,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":385,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":385,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":75,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":76,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":77,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":112,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":112,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"d:/softwares/rtools/rtools43/x86_64-w64-mingw32.static.posix/lib/gcc/x86_64-w64-mingw32.static.posix/12.2.0/include/c++/bits/stl_pair.h\",\"line\":535,\"column\":42,\"message\":\"'facet' may be used uninitialized [-Wmaybe-uninitialized]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"d:/softwares/rtools/rtools43/x86_64-w64-mingw32.static.posix/lib/gcc/x86_64-w64-mingw32.static.posix/12.2.0/include/c++/bits/stl_pair.h\",\"line\":535,\"column\":42,\"message\":\"'facet' may be used uninitialized [-Wmaybe-uninitialized]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h\",\"line\":347,\"column\":29,\"message\":\"'outvert' may be used uninitialized [-Wmaybe-uninitialized]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":60,\"column\":39,\"message\":\"ignoring attributes on template argument '__m128' [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":61,\"column\":40,\"message\":\"ignoring attributes on template argument '__m128i' [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":62,\"column\":40,\"message\":\"ignoring attributes on template argument '__m128d' [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":161,\"column\":43,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":162,\"column\":43,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":163,\"column\":43,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":718,\"column\":35,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":741,\"column\":35,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":764,\"column\":35,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":778,\"column\":34,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":783,\"column\":34,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":790,\"column\":34,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core\",\"line\":3,\"column\":1,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h\",\"line\":22,\"column\":70,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h\",\"line\":15,\"column\":70,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h\",\"line\":22,\"column\":70,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(4) float>::half' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h\",\"line\":47,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) long long int>::half' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp\",\"line\":194,\"column\":21,\"message\":\"unnecessary parentheses in declaration of 'assert_arg' [-Wparentheses]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp\",\"line\":199,\"column\":21,\"message\":\"unnecessary parentheses in declaration of 'assert_not_arg' [-Wparentheses]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/detail/iterator.hpp\",\"line\":111,\"column\":21,\"message\":\"'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/detail/iterator.hpp\",\"line\":149,\"column\":21,\"message\":\"'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/detail/iterator.hpp\",\"line\":204,\"column\":21,\"message\":\"'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_gaussians.hpp\",\"line\":166,\"column\":48,\"message\":\"typedef 'viterator' locally defined but not used [-Wunused-local-typedefs]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_gaussians.hpp\",\"line\":221,\"column\":35,\"message\":\"typedef 'VT' locally defined but not used [-Wunused-local-typedefs]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp\",\"line\":707,\"column\":35,\"message\":\"typedef 'VT' locally defined but not used [-Wunused-local-typedefs]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp\",\"line\":708,\"column\":31,\"message\":\"typedef 'PointList' locally defined but not used [-Wunused-local-typedefs]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_hpoly.hpp\",\"line\":269,\"column\":31,\"message\":\"typedef 'PointList' locally defined but not used [-Wunused-local-typedefs]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/volume.cpp\",\"line\":34,\"column\":30,\"message\":\"typedef 'Hpolytope' locally defined but not used [-Wunused-local-typedefs]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_hpoly.hpp\",\"line\":359,\"column\":27,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'std::vector<HPolytope<point<Cartesian<double> > >, std::allocator<HPolytope<point<Cartesian<double> > > > >::size_type' {aka 'long long unsigned int'} [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_hpoly.hpp\",\"line\":359,\"column\":27,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'std::vector<HPolytope<point<Cartesian<double> > >, std::allocator<HPolytope<point<Cartesian<double> > > > >::size_type' {aka 'long long unsigned int'} [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_hpoly.hpp\",\"line\":359,\"column\":27,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'std::vector<HPolytope<point<Cartesian<double> > >, std::allocator<HPolytope<point<Cartesian<double> > > > >::size_type' {aka 'long long unsigned int'} [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_hpoly.hpp\",\"line\":359,\"column\":27,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'std::vector<HPolytope<point<Cartesian<double> > >, std::allocator<HPolytope<point<Cartesian<double> > > > >::size_type' {aka 'long long unsigned int'} [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/rounding.hpp\",\"line\":70,\"column\":25,\"message\":\"comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/rounding.hpp\",\"line\":70,\"column\":25,\"message\":\"comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/vpolytope.h\",\"line\":278,\"column\":30,\"message\":\"comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/rounding.hpp\",\"line\":70,\"column\":25,\"message\":\"comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/rounding.hpp\",\"line\":70,\"column\":25,\"message\":\"comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_hpoly.hpp\",\"line\":53,\"column\":16,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'const unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_hpoly.hpp\",\"line\":45,\"column\":46,\"message\":\"unused variable 'N' [-Wunused-variable]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_hpoly.hpp\",\"line\":45,\"column\":66,\"message\":\"unused variable 'count' [-Wunused-variable]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_hpoly.hpp\",\"line\":47,\"column\":19,\"message\":\"unused variable 'print' [-Wunused-variable]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp\",\"line\":673,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp\",\"line\":673,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp\",\"line\":673,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp\",\"line\":673,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp\",\"line\":673,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp\",\"line\":673,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp\",\"line\":673,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp\",\"line\":673,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp\",\"line\":673,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/rounding.hpp\",\"line\":70,\"column\":25,\"message\":\"comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/rounding.hpp\",\"line\":70,\"column\":25,\"message\":\"comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/lp_oracles/solve_lp.h\",\"line\":204,\"column\":19,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/lp_oracles/solve_lp.h\",\"line\":206,\"column\":19,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/lp_oracles/solve_lp.h\",\"line\":208,\"column\":18,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/lp_oracles/solve_lp.h\",\"line\":210,\"column\":24,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/lp_oracles/solve_lp.h\",\"line\":216,\"column\":19,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/lp_oracles/solve_lp.h\",\"line\":218,\"column\":18,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/lp_oracles/solve_lp.h\",\"line\":220,\"column\":24,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/lp_oracles/solve_lp.h\",\"line\":229,\"column\":17,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/lp_oracles/solve_lp.h\",\"line\":229,\"column\":25,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/lp_oracles/solve_lp.h\",\"line\":285,\"column\":17,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/rounding.hpp\",\"line\":70,\"column\":25,\"message\":\"comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/rounding.hpp\",\"line\":70,\"column\":25,\"message\":\"comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp\",\"line\":630,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp\",\"line\":673,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp\",\"line\":673,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp\",\"line\":673,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp\",\"line\":673,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp\",\"line\":673,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp\",\"line\":673,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp\",\"line\":673,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp\",\"line\":673,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/vpolytope.h\",\"line\":408,\"column\":30,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/vpolytope.h\",\"line\":411,\"column\":22,\"message\":\"unused variable 'j' [-Wunused-variable]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/lp_oracles/vpolyoracles.h\",\"line\":311,\"column\":8,\"message\":\"unused variable 'res' [-Wunused-variable]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp\",\"line\":630,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp\",\"line\":673,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp\",\"line\":673,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp\",\"line\":673,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp\",\"line\":673,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp\",\"line\":673,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp\",\"line\":673,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp\",\"line\":673,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp\",\"line\":673,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_hpoly.hpp\",\"line\":113,\"column\":17,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'const unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_hpoly.hpp\",\"line\":108,\"column\":9,\"message\":\"unused variable 'n' [-Wunused-variable]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":253,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":268,\"column\":20,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":253,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":268,\"column\":20,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp\",\"line\":630,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp\",\"line\":673,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp\",\"line\":673,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp\",\"line\":673,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp\",\"line\":673,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp\",\"line\":673,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp\",\"line\":673,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp\",\"line\":673,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp\",\"line\":673,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/cartesian_geom/point.h\",\"line\":157,\"column\":21,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'const unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/vpolyintersectvpoly.h\",\"line\":313,\"column\":30,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp\",\"line\":630,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp\",\"line\":673,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp\",\"line\":673,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp\",\"line\":673,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp\",\"line\":673,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp\",\"line\":673,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp\",\"line\":673,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp\",\"line\":673,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp\",\"line\":673,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":253,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":268,\"column\":20,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/hpolytope.h\",\"line\":236,\"column\":22,\"message\":\"unused variable 'j' [-Wunused-variable]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp\",\"line\":180,\"column\":17,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'const unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp\",\"line\":236,\"column\":17,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'const unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":253,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":268,\"column\":20,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":253,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":268,\"column\":20,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp\",\"line\":180,\"column\":17,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'const unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":253,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":268,\"column\":20,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":84,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":313,\"column\":19,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":321,\"column\":26,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":313,\"column\":19,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":321,\"column\":26,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp\",\"line\":180,\"column\":17,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'const unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":253,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":268,\"column\":20,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":253,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":268,\"column\":20,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp\",\"line\":180,\"column\":17,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'const unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":253,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":268,\"column\":20,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":313,\"column\":19,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":321,\"column\":26,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/hpolytope.h\",\"line\":313,\"column\":12,\"message\":\"unused variable 'mult' [-Wunused-variable]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/hpolytope.h\",\"line\":315,\"column\":22,\"message\":\"unused variable 'j' [-Wunused-variable]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":313,\"column\":19,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":321,\"column\":26,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":313,\"column\":19,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":321,\"column\":26,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":313,\"column\":19,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":321,\"column\":26,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/lp_oracles/zpolyoracles.h\",\"line\":52,\"column\":10,\"message\":\"unused variable 'infinite' [-Wunused-variable]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/lp_oracles/zpolyoracles.h\",\"line\":140,\"column\":8,\"message\":\"unused variable 'res' [-Wunused-variable]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":313,\"column\":19,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":321,\"column\":26,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":313,\"column\":19,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":321,\"column\":26,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":313,\"column\":19,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":321,\"column\":26,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":391,\"column\":73,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":392,\"column\":73,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":393,\"column\":73,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1537,\"column\":103,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1592,\"column\":135,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1593,\"column\":135,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1594,\"column\":135,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1595,\"column\":135,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":75,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":76,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":77,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":351,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":352,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":353,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":112,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":112,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":385,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":385,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/Memory.h\",\"line\":470,\"column\":60,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1981,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1981,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":75,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":76,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":77,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h\",\"line\":60,\"column\":121,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h\",\"line\":60,\"column\":121,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h\",\"line\":61,\"column\":121,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h\",\"line\":61,\"column\":121,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1847,\"column\":33,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1847,\"column\":33,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":112,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":112,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":351,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":352,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":353,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":351,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":352,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":353,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":385,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":385,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":385,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":385,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":75,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":76,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":77,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":112,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":112,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"d:/softwares/rtools/rtools43/x86_64-w64-mingw32.static.posix/lib/gcc/x86_64-w64-mingw32.static.posix/12.2.0/include/c++/bits/stl_pair.h\",\"line\":535,\"column\":42,\"message\":\"'facet' may be used uninitialized [-Wmaybe-uninitialized]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"d:/softwares/rtools/rtools43/x86_64-w64-mingw32.static.posix/lib/gcc/x86_64-w64-mingw32.static.posix/12.2.0/include/c++/bits/stl_pair.h\",\"line\":535,\"column\":42,\"message\":\"'facet' may be used uninitialized [-Wmaybe-uninitialized]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h\",\"line\":347,\"column\":29,\"message\":\"'outvert' may be used uninitialized [-Wmaybe-uninitialized]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":60,\"column\":39,\"message\":\"ignoring attributes on template argument '__m128' [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":61,\"column\":40,\"message\":\"ignoring attributes on template argument '__m128i' [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":62,\"column\":40,\"message\":\"ignoring attributes on template argument '__m128d' [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":161,\"column\":43,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":162,\"column\":43,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":163,\"column\":43,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":718,\"column\":35,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":741,\"column\":35,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":764,\"column\":35,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":778,\"column\":34,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":783,\"column\":34,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":790,\"column\":34,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core\",\"line\":3,\"column\":1,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h\",\"line\":22,\"column\":70,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h\",\"line\":15,\"column\":70,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h\",\"line\":22,\"column\":70,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(4) float>::half' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h\",\"line\":47,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) long long int>::half' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp\",\"line\":194,\"column\":21,\"message\":\"unnecessary parentheses in declaration of 'assert_arg' [-Wparentheses]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp\",\"line\":199,\"column\":21,\"message\":\"unnecessary parentheses in declaration of 'assert_not_arg' [-Wparentheses]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/write_sdpa_format_file.cpp\",\"line\":52,\"column\":28,\"message\":\"typedef 'RNGType' locally defined but not used [-Wunused-local-typedefs]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/spectrahedra/LMI.h\",\"line\":82,\"column\":41,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/spectrahedra/LMI.h\",\"line\":83,\"column\":50,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/SDPAFormatManager.h\",\"line\":235,\"column\":27,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'std::vector<Eigen::Matrix<double, -1, -1> >::size_type' {aka 'long long unsigned int'} [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":60,\"column\":39,\"message\":\"ignoring attributes on template argument '__m128' [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":61,\"column\":40,\"message\":\"ignoring attributes on template argument '__m128i' [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":62,\"column\":40,\"message\":\"ignoring attributes on template argument '__m128d' [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":161,\"column\":43,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":162,\"column\":43,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":163,\"column\":43,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":718,\"column\":35,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":741,\"column\":35,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":764,\"column\":35,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":778,\"column\":34,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":783,\"column\":34,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h\",\"line\":790,\"column\":34,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core\",\"line\":3,\"column\":1,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h\",\"line\":22,\"column\":70,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h\",\"line\":15,\"column\":70,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h\",\"line\":22,\"column\":70,\"message\":\"ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(4) float>::half' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<float>::type' {aka '__m128'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h\",\"line\":47,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) long long int>::half' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<int>::type' {aka '__m128i'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp\",\"line\":194,\"column\":21,\"message\":\"unnecessary parentheses in declaration of 'assert_arg' [-Wparentheses]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp\",\"line\":199,\"column\":21,\"message\":\"unnecessary parentheses in declaration of 'assert_not_arg' [-Wparentheses]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/detail/iterator.hpp\",\"line\":111,\"column\":21,\"message\":\"'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/detail/iterator.hpp\",\"line\":149,\"column\":21,\"message\":\"'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/detail/iterator.hpp\",\"line\":204,\"column\":21,\"message\":\"'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_gaussians.hpp\",\"line\":166,\"column\":48,\"message\":\"typedef 'viterator' locally defined but not used [-Wunused-local-typedefs]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_gaussians.hpp\",\"line\":221,\"column\":35,\"message\":\"typedef 'VT' locally defined but not used [-Wunused-local-typedefs]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp\",\"line\":707,\"column\":35,\"message\":\"typedef 'VT' locally defined but not used [-Wunused-local-typedefs]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp\",\"line\":708,\"column\":31,\"message\":\"typedef 'PointList' locally defined but not used [-Wunused-local-typedefs]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_hpoly.hpp\",\"line\":269,\"column\":31,\"message\":\"typedef 'PointList' locally defined but not used [-Wunused-local-typedefs]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_hpoly.hpp\",\"line\":359,\"column\":27,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'std::vector<HPolytope<point<Cartesian<double> > >, std::allocator<HPolytope<point<Cartesian<double> > > > >::size_type' {aka 'long long unsigned int'} [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp\",\"line\":630,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp\",\"line\":673,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp\",\"line\":673,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_hpoly.hpp\",\"line\":53,\"column\":16,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'const unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_hpoly.hpp\",\"line\":45,\"column\":46,\"message\":\"unused variable 'N' [-Wunused-variable]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_hpoly.hpp\",\"line\":45,\"column\":66,\"message\":\"unused variable 'count' [-Wunused-variable]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_hpoly.hpp\",\"line\":47,\"column\":19,\"message\":\"unused variable 'print' [-Wunused-variable]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/rounding.hpp\",\"line\":70,\"column\":25,\"message\":\"comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp\",\"line\":673,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp\",\"line\":673,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp\",\"line\":673,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp\",\"line\":180,\"column\":17,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'const unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_balls.hpp\",\"line\":236,\"column\":17,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'const unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":253,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":268,\"column\":20,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":253,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":268,\"column\":20,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_hpoly.hpp\",\"line\":113,\"column\":17,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'const unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/volume/volume_cooling_hpoly.hpp\",\"line\":108,\"column\":9,\"message\":\"unused variable 'n' [-Wunused-variable]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":253,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":268,\"column\":20,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":84,\"column\":23,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":313,\"column\":19,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":321,\"column\":26,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":313,\"column\":19,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":321,\"column\":26,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":313,\"column\":19,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/random_walks/uniform_billiard_walk.hpp\",\"line\":321,\"column\":26,\"message\":\"comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/lp_oracles/zpolyoracles.h\",\"line\":52,\"column\":10,\"message\":\"unused variable 'infinite' [-Wunused-variable]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/hpolytope.h\",\"line\":313,\"column\":12,\"message\":\"unused variable 'mult' [-Wunused-variable]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/hpolytope.h\",\"line\":315,\"column\":22,\"message\":\"unused variable 'j' [-Wunused-variable]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":391,\"column\":73,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":392,\"column\":73,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":393,\"column\":73,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1537,\"column\":103,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1592,\"column\":135,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1593,\"column\":135,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1594,\"column\":135,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1595,\"column\":135,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1847,\"column\":33,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1847,\"column\":33,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":75,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":76,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":77,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":112,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":112,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":351,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":352,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":353,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":44,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":187,\"column\":83,\"message\":\"ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h\",\"line\":205,\"column\":88,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1981,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h\",\"line\":1981,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/Memory.h\",\"line\":470,\"column\":60,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":385,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":385,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":351,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":352,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":353,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":351,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":352,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":353,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h\",\"line\":60,\"column\":121,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h\",\"line\":60,\"column\":121,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h\",\"line\":61,\"column\":121,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h\",\"line\":61,\"column\":121,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":385,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":385,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":385,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":385,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":75,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":76,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":77,\"column\":71,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":112,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h\",\"line\":112,\"column\":62,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":650,\"column\":74,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h\",\"line\":55,\"column\":30,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h\",\"line\":989,\"column\":54,\"message\":\"ignoring attributes on template argument 'Eigen::internal::packet_traits<double>::type' {aka '__m128d'} [-Wignored-attributes]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"d:/softwares/rtools/rtools43/x86_64-w64-mingw32.static.posix/lib/gcc/x86_64-w64-mingw32.static.posix/12.2.0/include/c++/bits/stl_pair.h\",\"line\":535,\"column\":42,\"message\":\"'facet' may be used uninitialized [-Wmaybe-uninitialized]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h\",\"line\":227,\"column\":7,\"message\":\"'result' may be used uninitialized [-Wmaybe-uninitialized]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h\",\"line\":332,\"column\":12,\"message\":\"'result' may be used uninitialized [-Wmaybe-uninitialized]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true},{\"type\":1,\"path\":\"D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/src/include/convex_bodies/zonoIntersecthpoly.h\",\"line\":179,\"column\":34,\"message\":\"'facet' may be used uninitialized [-Wmaybe-uninitialized]\",\"log_path\":\"\",\"log_line\":-1,\"show_error_list\":true}]" +build-last-errors-base-dir="D:/Personal_Projects/GeomScale/Codebase/Forked_Volesti_R/" +build-last-outputs="[{\"type\":0,\"output\":\"==> Rcpp::compileAttributes()\\n\\n\"},{\"type\":1,\"output\":\"* Updated src/RcppExports.cpp\\r\\n* Updated R/RcppExports.R\\r\\n\"},{\"type\":1,\"output\":\"\\n\"},{\"type\":0,\"output\":\"==> Rcmd.exe INSTALL --preclean --no-multiarch --with-keep.source Forked_Volesti_R\\n\\n\"},{\"type\":1,\"output\":\"* installing to library 'D:/Softwares/R/R-4.3.0/library'\\r\\n\"},{\"type\":1,\"output\":\"* installing *source* package 'volesti' ...\\r\\n\"},{\"type\":1,\"output\":\"** using staged installation\\r\\n\"},{\"type\":1,\"output\":\"** libs\\r\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"g++ -std=gnu++17 -I\\\"D:/Softwares/R/R-4.3.0/include\\\" -DNDEBUG -Iexternal -Iexternal/lpsolve/headers/run_headers -Iexternal/minimum_ellipsoid -Iinclude -Iinclude/convex_bodies/spectrahedra -I'D:/Softwares/R/R-4.3.0/library/Rcpp/include' -I'D:/Softwares/R/R-4.3.0/library/RcppEigen/include' -I'D:/Softwares/R/R-4.3.0/library/BH/include' -I\\\"D:/Softwares/RTools/rtools43/x86_64-w64-mingw32.static.posix/include\\\" -lm -ldl -DBOOST_NO_AUTO_PTR -O2 -Wall -mfpmath=sse -msse2 -mstackrealign -c RcppExports.cpp -o RcppExports.o\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"using C++ compiler: 'g++.exe (GCC) 12.2.0'\\r\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:397,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Dense:1,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/RcppEigenForward.h:30,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/RcppEigen.h:25,\\n\"},{\"type\":1,\"output\":\" from RcppExports.cpp:4:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:60:39: warning: ignoring attributes on template argument '__m128' [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 60 | template<> struct is_arithmetic<__m128> { enum { value = true }; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:61:40: warning: ignoring attributes on template argument '__m128i' [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 61 | template<> struct is_arithmetic<__m128i> { enum { value = true }; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:62:40: warning: ignoring attributes on template argument '__m128d' [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 62 | template<> struct is_arithmetic<__m128d> { enum { value = true }; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:161:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 161 | template<> struct unpacket_traits { typedef float type; enum {size=4, alignment=Aligned16}; typedef Packet4f half; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:162:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 162 | template<> struct unpacket_traits { typedef double type; enum {size=2, alignment=Aligned16}; typedef Packet2d half; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:163:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 163 | template<> struct unpacket_traits { typedef int type; enum {size=4, alignment=Aligned16}; typedef Packet4i half; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:718:35: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 718 | struct palign_impl\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:741:35: warning: ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 741 | struct palign_impl\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:764:35: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 764 | struct palign_impl\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:778:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 778 | ptranspose(PacketBlock& kernel) {\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:783:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 783 | ptranspose(PacketBlock& kernel) {\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:790:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 790 | ptranspose(PacketBlock& kernel) {\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:377:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:15:70: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 15 | template<> struct conj_helper { \\\\\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:232:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL'\\n\"},{\"type\":1,\"output\":\" 232 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet2cf,Packet4f)\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:22:70: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 22 | template<> struct conj_helper { \\\\\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:232:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL'\\n\"},{\"type\":1,\"output\":\" 232 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet2cf,Packet4f)\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:15:70: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 15 | template<> struct conj_helper { \\\\\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:417:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL'\\n\"},{\"type\":1,\"output\":\" 417 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet1cd,Packet2d)\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:22:70: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 22 | template<> struct conj_helper { \\\\\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:417:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL'\\n\"},{\"type\":1,\"output\":\" 417 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet1cd,Packet2d)\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:370:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:243:49: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SSE.h:24:46: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(4) float>::half' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:439:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:46:50: required from 'class Eigen::QuaternionBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:250:7: required from 'class Eigen::Quaternion'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SSE.h:27:3: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:243:49: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SSE.h:88:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:46:50: required from 'class Eigen::QuaternionBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:250:7: required from 'class Eigen::Quaternion'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SSE.h:92:3: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/SparseCore:37,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Sparse:26,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/RcppEigenForward.h:31:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h: In instantiation of 'class Eigen::SparseMatrixBase >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseCompressedBase.h:36:7: required from 'class Eigen::SparseCompressedBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrix.h:96:7: required from 'class Eigen::SparseMatrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/IterativeSolvers/ConstrainedConjGrad.h:61:25: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h:47:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 47 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h:168:29: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) long long int>::half' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h:168:29: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h:178:72: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h:179:36: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"g++ -std=gnu++17 -I\\\"D:/Softwares/R/R-4.3.0/include\\\" -DNDEBUG -Iexternal -Iexternal/lpsolve/headers/run_headers -Iexternal/minimum_ellipsoid -Iinclude -Iinclude/convex_bodies/spectrahedra -I'D:/Softwares/R/R-4.3.0/library/Rcpp/include' -I'D:/Softwares/R/R-4.3.0/library/RcppEigen/include' -I'D:/Softwares/R/R-4.3.0/library/BH/include' -I\\\"D:/Softwares/RTools/rtools43/x86_64-w64-mingw32.static.posix/include\\\" -lm -ldl -DBOOST_NO_AUTO_PTR -O2 -Wall -mfpmath=sse -msse2 -mstackrealign -c copula.cpp -o copula.o\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:397,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Dense:1,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/RcppEigenForward.h:30,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/RcppEigen.h:25,\\n\"},{\"type\":1,\"output\":\" from copula.cpp:11:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:60:39: warning: ignoring attributes on template argument '__m128' [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 60 | template<> struct is_arithmetic<__m128> { enum { value = true }; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:61:40: warning: ignoring attributes on template argument '__m128i' [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 61 | template<> struct is_arithmetic<__m128i> { enum { value = true }; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:62:40: warning: ignoring attributes on template argument '__m128d' [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 62 | template<> struct is_arithmetic<__m128d> { enum { value = true }; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:161:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 161 | template<> struct unpacket_traits { typedef float type; enum {size=4, alignment=Aligned16}; typedef Packet4f half; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:162:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 162 | template<> struct unpacket_traits { typedef double type; enum {size=2, alignment=Aligned16}; typedef Packet2d half; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:163:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 163 | template<> struct unpacket_traits { typedef int type; enum {size=4, alignment=Aligned16}; typedef Packet4i half; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:718:35: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 718 | struct palign_impl\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:741:35: warning: ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 741 | struct palign_impl\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:764:35: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 764 | struct palign_impl\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:778:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 778 | ptranspose(PacketBlock& kernel) {\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:783:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 783 | ptranspose(PacketBlock& kernel) {\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:790:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 790 | ptranspose(PacketBlock& kernel) {\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:377:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:15:70: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 15 | template<> struct conj_helper { \\\\\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:232:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL'\\n\"},{\"type\":1,\"output\":\" 232 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet2cf,Packet4f)\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:22:70: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 22 | template<> struct conj_helper { \\\\\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:232:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL'\\n\"},{\"type\":1,\"output\":\" 232 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet2cf,Packet4f)\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:15:70: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 15 | template<> struct conj_helper { \\\\\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:417:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL'\\n\"},{\"type\":1,\"output\":\" 417 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet1cd,Packet2d)\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:22:70: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 22 | template<> struct conj_helper { \\\\\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:417:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL'\\n\"},{\"type\":1,\"output\":\" 417 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet1cd,Packet2d)\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:370:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:243:49: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SSE.h:24:46: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(4) float>::half' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:439:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:46:50: required from 'class Eigen::QuaternionBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:250:7: required from 'class Eigen::Quaternion'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SSE.h:27:3: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:243:49: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SSE.h:88:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:46:50: required from 'class Eigen::QuaternionBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:250:7: required from 'class Eigen::Quaternion'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SSE.h:92:3: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/SparseCore:37,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Sparse:26,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/RcppEigenForward.h:31:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h: In instantiation of 'class Eigen::SparseMatrixBase >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseCompressedBase.h:36:7: required from 'class Eigen::SparseCompressedBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrix.h:96:7: required from 'class Eigen::SparseMatrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/IterativeSolvers/ConstrainedConjGrad.h:61:25: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h:47:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 47 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h:168:29: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) long long int>::half' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h:168:29: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h:178:72: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h:179:36: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/aux_/na_assert.hpp:23,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/arg.hpp:25,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/placeholders.hpp:24,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/iterator/iterator_categories.hpp:16,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/iterator/iterator_concepts.hpp:10,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/range/concepts.hpp:20,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/range/size_type.hpp:20,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/range/size.hpp:21,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/random/hyperexponential_distribution.hpp:29,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/random.hpp:70,\\n\"},{\"type\":1,\"output\":\" from copula.cpp:15:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp:194:21: warning: unnecessary parentheses in declaration of 'assert_arg' [-Wparentheses]\\n\"},{\"type\":1,\"output\":\" 194 | failed ************ (Pred::************\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 195 | assert_arg( void (*)(Pred), typename assert_arg_pred::type )\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 196 | );\\n\"},{\"type\":1,\"output\":\" | ~ \\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp:194:21: note: remove parentheses\\n\"},{\"type\":1,\"output\":\" 194 | failed ************ (Pred::************\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" | -\\n\"},{\"type\":1,\"output\":\" 195 | assert_arg( void (*)(Pred), typename assert_arg_pred::type )\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 196 | );\\n\"},{\"type\":1,\"output\":\" | ~ \\n\"},{\"type\":1,\"output\":\" | -\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp:199:21: warning: unnecessary parentheses in declaration of 'assert_not_arg' [-Wparentheses]\\n\"},{\"type\":1,\"output\":\" 199 | failed ************ (boost::mpl::not_::************\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 200 | assert_not_arg( void (*)(Pred), typename assert_arg_pred_not::type )\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 201 | );\\n\"},{\"type\":1,\"output\":\" | ~ \\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp:199:21: note: remove parentheses\\n\"},{\"type\":1,\"output\":\" 199 | failed ************ (boost::mpl::not_::************\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" | -\\n\"},{\"type\":1,\"output\":\" 200 | assert_not_arg( void (*)(Pred), typename assert_arg_pred_not::type )\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 201 | );\\n\"},{\"type\":1,\"output\":\" | ~ \\n\"},{\"type\":1,\"output\":\" | -\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"copula.cpp:92:12: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"copula.cpp:92:12: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"copula.cpp: In function 'Rcpp::NumericMatrix copula(Rcpp::Nullable >, Rcpp::Nullable >, Rcpp::Nullable >, Rcpp::Nullable, Rcpp::Nullable, Rcpp::Nullable)':\\n\"},{\"type\":1,\"output\":\"copula.cpp:93:24: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 93 | for (int i=0; i, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"include/cartesian_geom/point.h:22:53: required from 'class point >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/ellipsoids.h:21:32: required from 'class copula_ellipsoid >, Eigen::Matrix, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"copula.cpp:98:23: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"copula.cpp:106:19: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 106 | for(int i=0; i >(r1).size(), i, j;\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"copula.cpp:81:66: warning: unused variable 'j' [-Wunused-variable]\\n\"},{\"type\":1,\"output\":\" 81 | unsigned int dim = Rcpp::as >(r1).size(), i, j;\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/ellipsoids.h:42:46: required from 'copula_ellipsoid::NT copula_ellipsoid::mat_mult(Point) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/copulas.h:172:24: required from 'std::vector > hypfam_ellfam(int, int, int, std::vector, ellipsoid, double) [with Point = point >; RNGType = boost::random::mersenne_twister_engine; ellipsoid = copula_ellipsoid >, Eigen::Matrix, Eigen::Matrix >; NT = double]'\\n\"},{\"type\":1,\"output\":\"copula.cpp:99:51: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base >, Eigen::Matrix, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl >, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product >, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/ellipsoids.h:42:48: required from 'copula_ellipsoid::NT copula_ellipsoid::mat_mult(Point) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/copulas.h:172:24: required from 'std::vector > hypfam_ellfam(int, int, int, std::vector, ellipsoid, double) [with Point = point >; RNGType = boost::random::mersenne_twister_engine; ellipsoid = copula_ellipsoid >, Eigen::Matrix, Eigen::Matrix >; NT = double]'\\n\"},{\"type\":1,\"output\":\"copula.cpp:99:51: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, Eigen::Matrix, 0>, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, Eigen::Matrix, 0>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::Matrix, 0>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:121:7: required from 'class Eigen::internal::dense_product_base >, Eigen::Matrix, 0>, Eigen::Matrix, 0, 6>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl >, Eigen::Matrix, 0>, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product >, Eigen::Matrix, 0>, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/ellipsoids.h:42:50: required from 'copula_ellipsoid::NT copula_ellipsoid::mat_mult(Point) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/copulas.h:172:24: required from 'std::vector > hypfam_ellfam(int, int, int, std::vector, ellipsoid, double) [with Point = point >; RNGType = boost::random::mersenne_twister_engine; ellipsoid = copula_ellipsoid >, Eigen::Matrix, Eigen::Matrix >; NT = double]'\\n\"},{\"type\":1,\"output\":\"copula.cpp:99:51: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:174:81: required from 'class Eigen::DenseBase >, Eigen::Matrix, 0>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::Matrix, 0>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:121:7: required from 'class Eigen::internal::dense_product_base >, Eigen::Matrix, 0>, Eigen::Matrix, 0, 6>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl >, Eigen::Matrix, 0>, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product >, Eigen::Matrix, 0>, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/ellipsoids.h:42:50: required from 'copula_ellipsoid::NT copula_ellipsoid::mat_mult(Point) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/copulas.h:172:24: required from 'std::vector > hypfam_ellfam(int, int, int, std::vector, ellipsoid, double) [with Point = point >; RNGType = boost::random::mersenne_twister_engine; ellipsoid = copula_ellipsoid >, Eigen::Matrix, Eigen::Matrix >; NT = double]'\\n\"},{\"type\":1,\"output\":\"copula.cpp:99:51: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:131:44: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:96:8: required from 'struct Eigen::internal::product_evaluator >, Eigen::Matrix, 0>, Eigen::Matrix, 0>, 6, Eigen::DenseShape, Eigen::DenseShape, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:29:8: required from 'struct Eigen::internal::evaluator >, Eigen::Matrix, 0>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:132:22: required from 'Eigen::internal::dense_product_base::operator const Scalar() const [with Lhs = Eigen::Product >, Eigen::Matrix, 0>; Rhs = Eigen::Matrix; int Option = 0; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/ellipsoids.h:42:50: required from 'copula_ellipsoid::NT copula_ellipsoid::mat_mult(Point) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/copulas.h:172:24: required from 'std::vector > hypfam_ellfam(int, int, int, std::vector, ellipsoid, double) [with Point = point >; RNGType = boost::random::mersenne_twister_engine; ellipsoid = copula_ellipsoid >, Eigen::Matrix, Eigen::Matrix >; NT = double]'\\n\"},{\"type\":1,\"output\":\"copula.cpp:99:51: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, Eigen::Matrix, 0> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, Eigen::Matrix, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::Matrix, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl >, Eigen::Matrix, 0>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:251:39: required from 'static void Eigen::internal::generic_product_impl::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::Product >, Eigen::Matrix, 0>; Rhs = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:124:75: required from 'Eigen::internal::product_evaluator, ProductTag, LhsShape, RhsShape>::product_evaluator(const XprType&) [with Lhs = Eigen::Product >, Eigen::Matrix, 0>; Rhs = Eigen::Matrix; int Options = 0; int ProductTag = 6; LhsShape = Eigen::DenseShape; RhsShape = Eigen::DenseShape; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Matrix; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Product >, Eigen::Matrix, 0>; XprType = Eigen::Product >, Eigen::Matrix, 0>, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:35:90: required from 'Eigen::internal::evaluator >::evaluator(const XprType&) [with Lhs = Eigen::Product >, Eigen::Matrix, 0>; Rhs = Eigen::Matrix; int Options = 0; XprType = Eigen::Product >, Eigen::Matrix, 0>, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:132:22: required from 'Eigen::internal::dense_product_base::operator const Scalar() const [with Lhs = Eigen::Product >, Eigen::Matrix, 0>; Rhs = Eigen::Matrix; int Option = 0; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/ellipsoids.h:42:50: required from 'copula_ellipsoid::NT copula_ellipsoid::mat_mult(Point) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/copulas.h:172:24: required from 'std::vector > hypfam_ellfam(int, int, int, std::vector, ellipsoid, double) [with Point = point >; RNGType = boost::random::mersenne_twister_engine; ellipsoid = copula_ellipsoid >, Eigen::Matrix, Eigen::Matrix >; NT = double]'\\n\"},{\"type\":1,\"output\":\"copula.cpp:99:51: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose >, Eigen::Matrix, 0> >, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose >, Eigen::Matrix, 0> >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose >, Eigen::Matrix, 0> >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose >, Eigen::Matrix, 0> >, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose >, Eigen::Matrix, 0> >, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:251:54: required from 'static void Eigen::internal::generic_product_impl::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::Product >, Eigen::Matrix, 0>; Rhs = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:124:75: required from 'Eigen::internal::product_evaluator, ProductTag, LhsShape, RhsShape>::product_evaluator(const XprType&) [with Lhs = Eigen::Product >, Eigen::Matrix, 0>; Rhs = Eigen::Matrix; int Options = 0; int ProductTag = 6; LhsShape = Eigen::DenseShape; RhsShape = Eigen::DenseShape; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Matrix; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Product >, Eigen::Matrix, 0>; XprType = Eigen::Product >, Eigen::Matrix, 0>, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:35:90: required from 'Eigen::internal::evaluator >::evaluator(const XprType&) [with Lhs = Eigen::Product >, Eigen::Matrix, 0>; Rhs = Eigen::Matrix; int Options = 0; XprType = Eigen::Product >, Eigen::Matrix, 0>, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:132:22: required from 'Eigen::internal::dense_product_base::operator const Scalar() const [with Lhs = Eigen::Product >, Eigen::Matrix, 0>; Rhs = Eigen::Matrix; int Option = 0; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/ellipsoids.h:42:50: required from 'copula_ellipsoid::NT copula_ellipsoid::mat_mult(Point) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/copulas.h:172:24: required from 'std::vector > hypfam_ellfam(int, int, int, std::vector, ellipsoid, double) [with Point = point >; RNGType = boost::random::mersenne_twister_engine; ellipsoid = copula_ellipsoid >, Eigen::Matrix, Eigen::Matrix >; NT = double]'\\n\"},{\"type\":1,\"output\":\"copula.cpp:99:51: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:131:44: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:124:75: required from 'Eigen::internal::product_evaluator, ProductTag, LhsShape, RhsShape>::product_evaluator(const XprType&) [with Lhs = Eigen::Product >, Eigen::Matrix, 0>; Rhs = Eigen::Matrix; int Options = 0; int ProductTag = 6; LhsShape = Eigen::DenseShape; RhsShape = Eigen::DenseShape; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Matrix; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Product >, Eigen::Matrix, 0>; XprType = Eigen::Product >, Eigen::Matrix, 0>, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:35:90: required from 'Eigen::internal::evaluator >::evaluator(const XprType&) [with Lhs = Eigen::Product >, Eigen::Matrix, 0>; Rhs = Eigen::Matrix; int Options = 0; XprType = Eigen::Product >, Eigen::Matrix, 0>, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:132:22: required from 'Eigen::internal::dense_product_base::operator const Scalar() const [with Lhs = Eigen::Product >, Eigen::Matrix, 0>; Rhs = Eigen::Matrix; int Option = 0; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/ellipsoids.h:42:50: required from 'copula_ellipsoid::NT copula_ellipsoid::mat_mult(Point) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/copulas.h:172:24: required from 'std::vector > hypfam_ellfam(int, int, int, std::vector, ellipsoid, double) [with Point = point >; RNGType = boost::random::mersenne_twister_engine; ellipsoid = copula_ellipsoid >, Eigen::Matrix, Eigen::Matrix >; NT = double]'\\n\"},{\"type\":1,\"output\":\"copula.cpp:99:51: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose >, Eigen::Matrix, 0> >, const Eigen::Matrix >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Transpose >, Eigen::Matrix, 0> >, const Eigen::Matrix > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose >, Eigen::Matrix, 0> >, const Eigen::Matrix >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose >, Eigen::Matrix, 0> >, const Eigen::Matrix >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:251:64: required from 'static void Eigen::internal::generic_product_impl::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::Product >, Eigen::Matrix, 0>; Rhs = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:124:75: required from 'Eigen::internal::product_evaluator, ProductTag, LhsShape, RhsShape>::product_evaluator(const XprType&) [with Lhs = Eigen::Product >, Eigen::Matrix, 0>; Rhs = Eigen::Matrix; int Options = 0; int ProductTag = 6; LhsShape = Eigen::DenseShape; RhsShape = Eigen::DenseShape; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Matrix; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Product >, Eigen::Matrix, 0>; XprType = Eigen::Product >, Eigen::Matrix, 0>, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:35:90: required from 'Eigen::internal::evaluator >::evaluator(const XprType&) [with Lhs = Eigen::Product >, Eigen::Matrix, 0>; Rhs = Eigen::Matrix; int Options = 0; XprType = Eigen::Product >, Eigen::Matrix, 0>, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:132:22: required from 'Eigen::internal::dense_product_base::operator const Scalar() const [with Lhs = Eigen::Product >, Eigen::Matrix, 0>; Rhs = Eigen::Matrix; int Option = 0; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/ellipsoids.h:42:50: required from 'copula_ellipsoid::NT copula_ellipsoid::mat_mult(Point) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/copulas.h:172:24: required from 'std::vector > hypfam_ellfam(int, int, int, std::vector, ellipsoid, double) [with Point = point >; RNGType = boost::random::mersenne_twister_engine; ellipsoid = copula_ellipsoid >, Eigen::Matrix, Eigen::Matrix >; NT = double]'\\n\"},{\"type\":1,\"output\":\"copula.cpp:99:51: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:327:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:501:10: required from 'Derived& Eigen::DenseBase::setZero() [with Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:16: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:124:75: required from 'Eigen::internal::product_evaluator, ProductTag, LhsShape, RhsShape>::product_evaluator(const XprType&) [with Lhs = Eigen::Product >, Eigen::Matrix, 0>; Rhs = Eigen::Matrix; int Options = 0; int ProductTag = 6; LhsShape = Eigen::DenseShape; RhsShape = Eigen::DenseShape; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Matrix; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Product >, Eigen::Matrix, 0>; XprType = Eigen::Product >, Eigen::Matrix, 0>, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:35:90: required from 'Eigen::internal::evaluator >::evaluator(const XprType&) [with Lhs = Eigen::Product >, Eigen::Matrix, 0>; Rhs = Eigen::Matrix; int Options = 0; XprType = Eigen::Product >, Eigen::Matrix, 0>, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:132:22: required from 'Eigen::internal::dense_product_base::operator const Scalar() const [with Lhs = Eigen::Product >, Eigen::Matrix, 0>; Rhs = Eigen::Matrix; int Option = 0; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/ellipsoids.h:42:50: required from 'copula_ellipsoid::NT copula_ellipsoid::mat_mult(Point) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/copulas.h:172:24: required from 'std::vector > hypfam_ellfam(int, int, int, std::vector, ellipsoid, double) [with Point = point >; RNGType = boost::random::mersenne_twister_engine; ellipsoid = copula_ellipsoid >, Eigen::Matrix, Eigen::Matrix >; NT = double]'\\n\"},{\"type\":1,\"output\":\"copula.cpp:99:51: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:124:75: required from 'Eigen::internal::product_evaluator, ProductTag, LhsShape, RhsShape>::product_evaluator(const XprType&) [with Lhs = Eigen::Product >, Eigen::Matrix, 0>; Rhs = Eigen::Matrix; int Options = 0; int ProductTag = 6; LhsShape = Eigen::DenseShape; RhsShape = Eigen::DenseShape; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Matrix; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Product >, Eigen::Matrix, 0>; XprType = Eigen::Product >, Eigen::Matrix, 0>, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:35:90: required from 'Eigen::internal::evaluator >::evaluator(const XprType&) [with Lhs = Eigen::Product >, Eigen::Matrix, 0>; Rhs = Eigen::Matrix; int Options = 0; XprType = Eigen::Product >, Eigen::Matrix, 0>, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:132:22: required from 'Eigen::internal::dense_product_base::operator const Scalar() const [with Lhs = Eigen::Product >, Eigen::Matrix, 0>; Rhs = Eigen::Matrix; int Option = 0; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/ellipsoids.h:42:50: required from 'copula_ellipsoid::NT copula_ellipsoid::mat_mult(Point) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/copulas.h:172:24: required from 'std::vector > hypfam_ellfam(int, int, int, std::vector, ellipsoid, double) [with Point = point >; RNGType = boost::random::mersenne_twister_engine; ellipsoid = copula_ellipsoid >, Eigen::Matrix, Eigen::Matrix >; NT = double]'\\n\"},{\"type\":1,\"output\":\"copula.cpp:99:51: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:197:26: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:124:75: required from 'Eigen::internal::product_evaluator, ProductTag, LhsShape, RhsShape>::product_evaluator(const XprType&) [with Lhs = Eigen::Product >, Eigen::Matrix, 0>; Rhs = Eigen::Matrix; int Options = 0; int ProductTag = 6; LhsShape = Eigen::DenseShape; RhsShape = Eigen::DenseShape; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Matrix; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Product >, Eigen::Matrix, 0>; XprType = Eigen::Product >, Eigen::Matrix, 0>, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:35:90: required from 'Eigen::internal::evaluator >::evaluator(const XprType&) [with Lhs = Eigen::Product >, Eigen::Matrix, 0>; Rhs = Eigen::Matrix; int Options = 0; XprType = Eigen::Product >, Eigen::Matrix, 0>, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:132:22: required from 'Eigen::internal::dense_product_base::operator const Scalar() const [with Lhs = Eigen::Product >, Eigen::Matrix, 0>; Rhs = Eigen::Matrix; int Option = 0; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/ellipsoids.h:42:50: required from 'copula_ellipsoid::NT copula_ellipsoid::mat_mult(Point) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/copulas.h:172:24: required from 'std::vector > hypfam_ellfam(int, int, int, std::vector, ellipsoid, double) [with Point = point >; RNGType = boost::random::mersenne_twister_engine; ellipsoid = copula_ellipsoid >, Eigen::Matrix, Eigen::Matrix >; NT = double]'\\n\"},{\"type\":1,\"output\":\"copula.cpp:99:51: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase > >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:197:43: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:124:75: required from 'Eigen::internal::product_evaluator, ProductTag, LhsShape, RhsShape>::product_evaluator(const XprType&) [with Lhs = Eigen::Product >, Eigen::Matrix, 0>; Rhs = Eigen::Matrix; int Options = 0; int ProductTag = 6; LhsShape = Eigen::DenseShape; RhsShape = Eigen::DenseShape; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Matrix; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Product >, Eigen::Matrix, 0>; XprType = Eigen::Product >, Eigen::Matrix, 0>, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:35:90: required from 'Eigen::internal::evaluator >::evaluator(const XprType&) [with Lhs = Eigen::Product >, Eigen::Matrix, 0>; Rhs = Eigen::Matrix; int Options = 0; XprType = Eigen::Product >, Eigen::Matrix, 0>, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:132:22: required from 'Eigen::internal::dense_product_base::operator const Scalar() const [with Lhs = Eigen::Product >, Eigen::Matrix, 0>; Rhs = Eigen::Matrix; int Option = 0; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/ellipsoids.h:42:50: required from 'copula_ellipsoid::NT copula_ellipsoid::mat_mult(Point) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/copulas.h:172:24: required from 'std::vector > hypfam_ellfam(int, int, int, std::vector, ellipsoid, double) [with Point = point >; RNGType = boost::random::mersenne_twister_engine; ellipsoid = copula_ellipsoid >, Eigen::Matrix, Eigen::Matrix >; NT = double]'\\n\"},{\"type\":1,\"output\":\"copula.cpp:99:51: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 19 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:124:75: required from 'Eigen::internal::product_evaluator, ProductTag, LhsShape, RhsShape>::product_evaluator(const XprType&) [with Lhs = Eigen::Product >, Eigen::Matrix, 0>; Rhs = Eigen::Matrix; int Options = 0; int ProductTag = 6; LhsShape = Eigen::DenseShape; RhsShape = Eigen::DenseShape; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Matrix; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Product >, Eigen::Matrix, 0>; XprType = Eigen::Product >, Eigen::Matrix, 0>, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:35:90: required from 'Eigen::internal::evaluator >::evaluator(const XprType&) [with Lhs = Eigen::Product >, Eigen::Matrix, 0>; Rhs = Eigen::Matrix; int Options = 0; XprType = Eigen::Product >, Eigen::Matrix, 0>, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:132:22: required from 'Eigen::internal::dense_product_base::operator const Scalar() const [with Lhs = Eigen::Product >, Eigen::Matrix, 0>; Rhs = Eigen::Matrix; int Option = 0; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/ellipsoids.h:42:50: required from 'copula_ellipsoid::NT copula_ellipsoid::mat_mult(Point) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/copulas.h:172:24: required from 'std::vector > hypfam_ellfam(int, int, int, std::vector, ellipsoid, double) [with Point = point >; RNGType = boost::random::mersenne_twister_engine; ellipsoid = copula_ellipsoid >, Eigen::Matrix, Eigen::Matrix >; NT = double]'\\n\"},{\"type\":1,\"output\":\"copula.cpp:99:51: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:499:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'struct Eigen::internal::general_matrix_vector_product, 1, false, double, Eigen::internal::const_blas_data_mapper, false, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:339:132: required from 'static void Eigen::internal::gemv_dense_selector<2, 1, true>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose >; Rhs = Eigen::Transpose > >; Dest = Eigen::Transpose >; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:197:12: required from 'static void Eigen::internal::gemv_dense_selector<1, StorageOrder, BlasCompatible>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; Dest = Eigen::Matrix; int StorageOrder = 0; bool BlasCompatible = true; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:383:34: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Matrix; Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; Derived = Eigen::internal::generic_product_impl >, Eigen::Matrix, Eigen::DenseShape, Eigen::DenseShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: required from 'static void Eigen::internal::generic_product_impl_base::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; Derived = Eigen::internal::generic_product_impl >, Eigen::Matrix, Eigen::DenseShape, Eigen::DenseShape, 7>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:124:75: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:124:75: required from 'Eigen::internal::product_evaluator, ProductTag, LhsShape, RhsShape>::product_evaluator(const XprType&) [with Lhs = Eigen::Product >, Eigen::Matrix, 0>; Rhs = Eigen::Matrix; int Options = 0; int ProductTag = 6; LhsShape = Eigen::DenseShape; RhsShape = Eigen::DenseShape; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Matrix; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Product >, Eigen::Matrix, 0>; XprType = Eigen::Product >, Eigen::Matrix, 0>, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:35:90: required from 'Eigen::internal::evaluator >::evaluator(const XprType&) [with Lhs = Eigen::Product >, Eigen::Matrix, 0>; Rhs = Eigen::Matrix; int Options = 0; XprType = Eigen::Product >, Eigen::Matrix, 0>, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:132:22: required from 'Eigen::internal::dense_product_base::operator const Scalar() const [with Lhs = Eigen::Product >, Eigen::Matrix, 0>; Rhs = Eigen::Matrix; int Option = 0; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/ellipsoids.h:42:50: required from 'copula_ellipsoid::NT copula_ellipsoid::mat_mult(Point) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/copulas.h:172:24: required from 'std::vector > hypfam_ellfam(int, int, int, std::vector, ellipsoid, double) [with Point = point >; RNGType = boost::random::mersenne_twister_engine; ellipsoid = copula_ellipsoid >, Eigen::Matrix, Eigen::Matrix >; NT = double]'\\n\"},{\"type\":1,\"output\":\"copula.cpp:99:51: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:351:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 351 | typedef typename conditional::type LhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:352:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 352 | typedef typename conditional::type RhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:353:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 353 | typedef typename conditional::type ResPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase >, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase >, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase >, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 21 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:124:75: required from 'Eigen::internal::product_evaluator, ProductTag, LhsShape, RhsShape>::product_evaluator(const XprType&) [with Lhs = Eigen::Product >, Eigen::Matrix, 0>; Rhs = Eigen::Matrix; int Options = 0; int ProductTag = 6; LhsShape = Eigen::DenseShape; RhsShape = Eigen::DenseShape; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Matrix; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Product >, Eigen::Matrix, 0>; XprType = Eigen::Product >, Eigen::Matrix, 0>, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:35:90: required from 'Eigen::internal::evaluator >::evaluator(const XprType&) [with Lhs = Eigen::Product >, Eigen::Matrix, 0>; Rhs = Eigen::Matrix; int Options = 0; XprType = Eigen::Product >, Eigen::Matrix, 0>, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:132:22: required from 'Eigen::internal::dense_product_base::operator const Scalar() const [with Lhs = Eigen::Product >, Eigen::Matrix, 0>; Rhs = Eigen::Matrix; int Option = 0; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/ellipsoids.h:42:50: required from 'copula_ellipsoid::NT copula_ellipsoid::mat_mult(Point) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/copulas.h:172:24: required from 'std::vector > hypfam_ellfam(int, int, int, std::vector, ellipsoid, double) [with Point = point >; RNGType = boost::random::mersenne_twister_engine; ellipsoid = copula_ellipsoid >, Eigen::Matrix, Eigen::Matrix >; NT = double]'\\n\"},{\"type\":1,\"output\":\"copula.cpp:99:51: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'static void Eigen::internal::general_matrix_vector_product::run(Index, Index, const LhsMapper&, const RhsMapper&, ResScalar*, Index, ResScalar) [with Index = long long int; LhsScalar = double; LhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateLhs = false; RhsScalar = double; RhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateRhs = false; int Version = 0; ResScalar = double]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:339:132: required from 'static void Eigen::internal::gemv_dense_selector<2, 1, true>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose >; Rhs = Eigen::Transpose > >; Dest = Eigen::Transpose >; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:197:12: required from 'static void Eigen::internal::gemv_dense_selector<1, StorageOrder, BlasCompatible>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; Dest = Eigen::Matrix; int StorageOrder = 0; bool BlasCompatible = true; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:383:34: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Matrix; Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; Derived = Eigen::internal::generic_product_impl >, Eigen::Matrix, Eigen::DenseShape, Eigen::DenseShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: required from 'static void Eigen::internal::generic_product_impl_base::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; Derived = Eigen::internal::generic_product_impl >, Eigen::Matrix, Eigen::DenseShape, Eigen::DenseShape, 7>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:124:75: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:124:75: required from 'Eigen::internal::product_evaluator, ProductTag, LhsShape, RhsShape>::product_evaluator(const XprType&) [with Lhs = Eigen::Product >, Eigen::Matrix, 0>; Rhs = Eigen::Matrix; int Options = 0; int ProductTag = 6; LhsShape = Eigen::DenseShape; RhsShape = Eigen::DenseShape; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Matrix; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Product >, Eigen::Matrix, 0>; XprType = Eigen::Product >, Eigen::Matrix, 0>, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:35:90: required from 'Eigen::internal::evaluator >::evaluator(const XprType&) [with Lhs = Eigen::Product >, Eigen::Matrix, 0>; Rhs = Eigen::Matrix; int Options = 0; XprType = Eigen::Product >, Eigen::Matrix, 0>, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:132:22: required from 'Eigen::internal::dense_product_base::operator const Scalar() const [with Lhs = Eigen::Product >, Eigen::Matrix, 0>; Rhs = Eigen::Matrix; int Option = 0; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/ellipsoids.h:42:50: required from 'copula_ellipsoid::NT copula_ellipsoid::mat_mult(Point) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/copulas.h:172:24: required from 'std::vector > hypfam_ellfam(int, int, int, std::vector, ellipsoid, double) [with Point = point >; RNGType = boost::random::mersenne_twister_engine; ellipsoid = copula_ellipsoid >, Eigen::Matrix, Eigen::Matrix >; NT = double]'\\n\"},{\"type\":1,\"output\":\"copula.cpp:99:51: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:385:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 385 | conj_helper pcj;\\n\"},{\"type\":1,\"output\":\" | ^~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:385:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:371:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/Memory.h: In instantiation of 'Index Eigen::internal::first_default_aligned(const Scalar*, Index) [with Scalar = double; Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/BlasUtil.h:263:43: required from 'Index Eigen::internal::blas_data_mapper::firstAligned(Index) const [with Scalar = const double; Index = long long int; int StorageOrder = 0; int AlignmentType = 0]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:400:40: required from 'static void Eigen::internal::general_matrix_vector_product::run(Index, Index, const LhsMapper&, const RhsMapper&, ResScalar*, Index, ResScalar) [with Index = long long int; LhsScalar = double; LhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateLhs = false; RhsScalar = double; RhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:339:132: required from 'static void Eigen::internal::gemv_dense_selector<2, 1, true>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose >; Rhs = Eigen::Transpose > >; Dest = Eigen::Transpose >; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:197:12: required from 'static void Eigen::internal::gemv_dense_selector<1, StorageOrder, BlasCompatible>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; Dest = Eigen::Matrix; int StorageOrder = 0; bool BlasCompatible = true; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:383:34: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:124:75: required from 'Eigen::internal::product_evaluator, ProductTag, LhsShape, RhsShape>::product_evaluator(const XprType&) [with Lhs = Eigen::Product >, Eigen::Matrix, 0>; Rhs = Eigen::Matrix; int Options = 0; int ProductTag = 6; LhsShape = Eigen::DenseShape; RhsShape = Eigen::DenseShape; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Matrix; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Product >, Eigen::Matrix, 0>; XprType = Eigen::Product >, Eigen::Matrix, 0>, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:35:90: required from 'Eigen::internal::evaluator >::evaluator(const XprType&) [with Lhs = Eigen::Product >, Eigen::Matrix, 0>; Rhs = Eigen::Matrix; int Options = 0; XprType = Eigen::Product >, Eigen::Matrix, 0>, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:132:22: required from 'Eigen::internal::dense_product_base::operator const Scalar() const [with Lhs = Eigen::Product >, Eigen::Matrix, 0>; Rhs = Eigen::Matrix; int Option = 0; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/ellipsoids.h:42:50: required from 'copula_ellipsoid::NT copula_ellipsoid::mat_mult(Point) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/copulas.h:172:24: required from 'std::vector > hypfam_ellfam(int, int, int, std::vector, ellipsoid, double) [with Point = point >; RNGType = boost::random::mersenne_twister_engine; ellipsoid = copula_ellipsoid >, Eigen::Matrix, Eigen::Matrix >; NT = double]'\\n\"},{\"type\":1,\"output\":\"copula.cpp:99:51: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/Memory.h:470:60: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 470 | return first_aligned::alignment>(array, size);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"g++ -std=gnu++17 -I\\\"D:/Softwares/R/R-4.3.0/include\\\" -DNDEBUG -Iexternal -Iexternal/lpsolve/headers/run_headers -Iexternal/minimum_ellipsoid -Iinclude -Iinclude/convex_bodies/spectrahedra -I'D:/Softwares/R/R-4.3.0/library/Rcpp/include' -I'D:/Softwares/R/R-4.3.0/library/RcppEigen/include' -I'D:/Softwares/R/R-4.3.0/library/BH/include' -I\\\"D:/Softwares/RTools/rtools43/x86_64-w64-mingw32.static.posix/include\\\" -lm -ldl -DBOOST_NO_AUTO_PTR -O2 -Wall -mfpmath=sse -msse2 -mstackrealign -c direct_sampling.cpp -o direct_sampling.o\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:397,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Dense:1,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/RcppEigenForward.h:30,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/RcppEigen.h:25,\\n\"},{\"type\":1,\"output\":\" from direct_sampling.cpp:11:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:60:39: warning: ignoring attributes on template argument '__m128' [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 60 | template<> struct is_arithmetic<__m128> { enum { value = true }; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:61:40: warning: ignoring attributes on template argument '__m128i' [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 61 | template<> struct is_arithmetic<__m128i> { enum { value = true }; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:62:40: warning: ignoring attributes on template argument '__m128d' [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 62 | template<> struct is_arithmetic<__m128d> { enum { value = true }; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:161:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 161 | template<> struct unpacket_traits { typedef float type; enum {size=4, alignment=Aligned16}; typedef Packet4f half; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:162:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 162 | template<> struct unpacket_traits { typedef double type; enum {size=2, alignment=Aligned16}; typedef Packet2d half; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:163:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 163 | template<> struct unpacket_traits { typedef int type; enum {size=4, alignment=Aligned16}; typedef Packet4i half; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:718:35: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 718 | struct palign_impl\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:741:35: warning: ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 741 | struct palign_impl\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:764:35: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 764 | struct palign_impl\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:778:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 778 | ptranspose(PacketBlock& kernel) {\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:783:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 783 | ptranspose(PacketBlock& kernel) {\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:790:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 790 | ptranspose(PacketBlock& kernel) {\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:377:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:15:70: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 15 | template<> struct conj_helper { \\\\\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:232:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL'\\n\"},{\"type\":1,\"output\":\" 232 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet2cf,Packet4f)\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:22:70: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 22 | template<> struct conj_helper { \\\\\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:232:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL'\\n\"},{\"type\":1,\"output\":\" 232 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet2cf,Packet4f)\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:15:70: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 15 | template<> struct conj_helper { \\\\\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:417:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL'\\n\"},{\"type\":1,\"output\":\" 417 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet1cd,Packet2d)\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:22:70: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 22 | template<> struct conj_helper { \\\\\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:417:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL'\\n\"},{\"type\":1,\"output\":\" 417 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet1cd,Packet2d)\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:370:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:243:49: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SSE.h:24:46: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(4) float>::half' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:439:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:46:50: required from 'class Eigen::QuaternionBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:250:7: required from 'class Eigen::Quaternion'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SSE.h:27:3: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:243:49: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SSE.h:88:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:46:50: required from 'class Eigen::QuaternionBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:250:7: required from 'class Eigen::Quaternion'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SSE.h:92:3: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/SparseCore:37,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Sparse:26,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/RcppEigenForward.h:31:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h: In instantiation of 'class Eigen::SparseMatrixBase >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseCompressedBase.h:36:7: required from 'class Eigen::SparseCompressedBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrix.h:96:7: required from 'class Eigen::SparseMatrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/IterativeSolvers/ConstrainedConjGrad.h:61:25: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h:47:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 47 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h:168:29: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) long long int>::half' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h:168:29: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h:178:72: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h:179:36: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/aux_/na_assert.hpp:23,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/arg.hpp:25,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/placeholders.hpp:24,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/iterator/iterator_categories.hpp:16,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/iterator/iterator_concepts.hpp:10,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/range/concepts.hpp:20,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/range/size_type.hpp:20,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/range/size.hpp:21,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/random/hyperexponential_distribution.hpp:29,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/random.hpp:70,\\n\"},{\"type\":1,\"output\":\" from direct_sampling.cpp:14:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp:194:21: warning: unnecessary parentheses in declaration of 'assert_arg' [-Wparentheses]\\n\"},{\"type\":1,\"output\":\" 194 | failed ************ (Pred::************\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 195 | assert_arg( void (*)(Pred), typename assert_arg_pred::type )\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 196 | );\\n\"},{\"type\":1,\"output\":\" | ~ \\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp:194:21: note: remove parentheses\\n\"},{\"type\":1,\"output\":\" 194 | failed ************ (Pred::************\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" | -\\n\"},{\"type\":1,\"output\":\" 195 | assert_arg( void (*)(Pred), typename assert_arg_pred::type )\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 196 | );\\n\"},{\"type\":1,\"output\":\" | ~ \\n\"},{\"type\":1,\"output\":\" | -\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp:199:21: warning: unnecessary parentheses in declaration of 'assert_not_arg' [-Wparentheses]\\n\"},{\"type\":1,\"output\":\" 199 | failed ************ (boost::mpl::not_::************\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 200 | assert_not_arg( void (*)(Pred), typename assert_arg_pred_not::type )\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 201 | );\\n\"},{\"type\":1,\"output\":\" | ~ \\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp:199:21: note: remove parentheses\\n\"},{\"type\":1,\"output\":\" 199 | failed ************ (boost::mpl::not_::************\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" | -\\n\"},{\"type\":1,\"output\":\" 200 | assert_not_arg( void (*)(Pred), typename assert_arg_pred_not::type )\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 201 | );\\n\"},{\"type\":1,\"output\":\" | ~ \\n\"},{\"type\":1,\"output\":\" | -\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/traits.hpp:21,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/storage.hpp:27,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/vector.hpp:21,\\n\"},{\"type\":1,\"output\":\" from external/minimum_ellipsoid/khach.h:25,\\n\"},{\"type\":1,\"output\":\" from include/convex_bodies/vpolytope.h:19,\\n\"},{\"type\":1,\"output\":\" from include/volume/volume_sequence_of_balls.hpp:27,\\n\"},{\"type\":1,\"output\":\" from direct_sampling.cpp:18:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/detail/iterator.hpp:111:21: warning: 'template struct std::iterator' is deprecated [-Wdeprecated-declarations]\\n\"},{\"type\":1,\"output\":\" 111 | public std::iterator {\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~\\n\"},{\"type\":1,\"output\":\"In file included from d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\bits\\\\stl_algobase.h:65,\\n\"},{\"type\":1,\"output\":\" from d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\bits\\\\specfun.h:45,\\n\"},{\"type\":1,\"output\":\" from d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\cmath:1935,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/Rcpp/include/Rcpp/platform/compiler.h:100,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/Rcpp/include/Rcpp/r/headers.h:62,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/Rcpp/include/RcppCommon.h:30,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/Rcpp/include/Rcpp.h:27,\\n\"},{\"type\":1,\"output\":\" from direct_sampling.cpp:10:\\n\"},{\"type\":1,\"output\":\"d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\bits\\\\stl_iterator_base_types.h:127:34: note: declared here\\n\"},{\"type\":1,\"output\":\" 127 | struct _GLIBCXX17_DEPRECATED iterator\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/detail/iterator.hpp:149:21: warning: 'template struct std::iterator' is deprecated [-Wdeprecated-declarations]\\n\"},{\"type\":1,\"output\":\" 149 | public std::iterator {\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~\\n\"},{\"type\":1,\"output\":\"d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\bits\\\\stl_iterator_base_types.h:127:34: note: declared here\\n\"},{\"type\":1,\"output\":\" 127 | struct _GLIBCXX17_DEPRECATED iterator\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/detail/iterator.hpp:204:21: warning: 'template struct std::iterator' is deprecated [-Wdeprecated-declarations]\\n\"},{\"type\":1,\"output\":\" 204 | public std::iterator {\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~\\n\"},{\"type\":1,\"output\":\"d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\bits\\\\stl_iterator_base_types.h:127:34: note: declared here\\n\"},{\"type\":1,\"output\":\" 127 | struct _GLIBCXX17_DEPRECATED iterator\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"direct_sampling.cpp: In function 'Rcpp::NumericMatrix direct_sampling(Rcpp::List, int)':\\n\"},{\"type\":1,\"output\":\"direct_sampling.cpp:89:36: warning: comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 89 | for (unsigned int k = 0; k < numpoints; ++k) {\\n\"},{\"type\":1,\"output\":\" | ~~^~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"include/cartesian_geom/point.h:22:53: required from 'class point >'\\n\"},{\"type\":1,\"output\":\"direct_sampling.cpp:90:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"include/cartesian_geom/point.h:22:53: required from 'class point >'\\n\"},{\"type\":1,\"output\":\"direct_sampling.cpp:90:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"direct_sampling.cpp:95:36: warning: comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 95 | for (unsigned int k = 0; k < numpoints; ++k) {\\n\"},{\"type\":1,\"output\":\" | ~~^~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"direct_sampling.cpp:113:15: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: required from 'class Eigen::MapBase, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, 1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, -1, 1, true, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, -1, 1, true>'\\n\"},{\"type\":1,\"output\":\"direct_sampling.cpp:117:19: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"direct_sampling.cpp:52:50: warning: typedef 'VT' locally defined but not used [-Wunused-local-typedefs]\\n\"},{\"type\":1,\"output\":\" 52 | typedef Eigen::Matrix VT;\\n\"},{\"type\":1,\"output\":\" | ^~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/SelfCwiseBinaryOp.h:20:67: required from 'Derived& Eigen::DenseBase::operator*=(const Scalar&) [with Derived = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/cartesian_geom/point.h:141:16: required from 'void point::operator*=(FT) [with K = Cartesian; FT = double]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sphere.hpp:67:28: required from 'static Point GetPointOnDsphere::apply(const unsigned int&, const NT&, RandomNumberGenerator&) [with NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"direct_sampling.cpp:90:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:445:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, 1, true>; SrcXprType = Eigen::Matrix; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, 1, true>; SrcXprType = Eigen::Matrix; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, 1, true>; Src = Eigen::Matrix; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, 1, true>; Src = Eigen::Matrix; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Block, -1, 1, true>; Src = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Assign.h:66:28: required from 'Derived& Eigen::MatrixBase::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Matrix; Derived = Eigen::Block, -1, 1, true>]'\\n\"},{\"type\":1,\"output\":\"direct_sampling.cpp:117:48: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"g++ -std=gnu++17 -I\\\"D:/Softwares/R/R-4.3.0/include\\\" -DNDEBUG -Iexternal -Iexternal/lpsolve/headers/run_headers -Iexternal/minimum_ellipsoid -Iinclude -Iinclude/convex_bodies/spectrahedra -I'D:/Softwares/R/R-4.3.0/library/Rcpp/include' -I'D:/Softwares/R/R-4.3.0/library/RcppEigen/include' -I'D:/Softwares/R/R-4.3.0/library/BH/include' -I\\\"D:/Softwares/RTools/rtools43/x86_64-w64-mingw32.static.posix/include\\\" -lm -ldl -DBOOST_NO_AUTO_PTR -O2 -Wall -mfpmath=sse -msse2 -mstackrealign -c exact_vol.cpp -o exact_vol.o\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:397,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Dense:1,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/RcppEigenForward.h:30,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/RcppEigen.h:25,\\n\"},{\"type\":1,\"output\":\" from exact_vol.cpp:9:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:60:39: warning: ignoring attributes on template argument '__m128' [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 60 | template<> struct is_arithmetic<__m128> { enum { value = true }; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:61:40: warning: ignoring attributes on template argument '__m128i' [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 61 | template<> struct is_arithmetic<__m128i> { enum { value = true }; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:62:40: warning: ignoring attributes on template argument '__m128d' [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 62 | template<> struct is_arithmetic<__m128d> { enum { value = true }; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:161:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 161 | template<> struct unpacket_traits { typedef float type; enum {size=4, alignment=Aligned16}; typedef Packet4f half; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:162:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 162 | template<> struct unpacket_traits { typedef double type; enum {size=2, alignment=Aligned16}; typedef Packet2d half; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:163:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 163 | template<> struct unpacket_traits { typedef int type; enum {size=4, alignment=Aligned16}; typedef Packet4i half; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:718:35: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 718 | struct palign_impl\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:741:35: warning: ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 741 | struct palign_impl\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:764:35: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 764 | struct palign_impl\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:778:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 778 | ptranspose(PacketBlock& kernel) {\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:783:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 783 | ptranspose(PacketBlock& kernel) {\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:790:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 790 | ptranspose(PacketBlock& kernel) {\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:377:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:15:70: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 15 | template<> struct conj_helper { \\\\\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:232:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL'\\n\"},{\"type\":1,\"output\":\" 232 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet2cf,Packet4f)\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:22:70: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 22 | template<> struct conj_helper { \\\\\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:232:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL'\\n\"},{\"type\":1,\"output\":\" 232 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet2cf,Packet4f)\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:15:70: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 15 | template<> struct conj_helper { \\\\\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:417:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL'\\n\"},{\"type\":1,\"output\":\" 417 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet1cd,Packet2d)\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:22:70: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 22 | template<> struct conj_helper { \\\\\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:417:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL'\\n\"},{\"type\":1,\"output\":\" 417 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet1cd,Packet2d)\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:370:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:243:49: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SSE.h:24:46: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(4) float>::half' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:439:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:46:50: required from 'class Eigen::QuaternionBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:250:7: required from 'class Eigen::Quaternion'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SSE.h:27:3: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:243:49: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SSE.h:88:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:46:50: required from 'class Eigen::QuaternionBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:250:7: required from 'class Eigen::Quaternion'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SSE.h:92:3: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/SparseCore:37,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Sparse:26,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/RcppEigenForward.h:31:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h: In instantiation of 'class Eigen::SparseMatrixBase >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseCompressedBase.h:36:7: required from 'class Eigen::SparseCompressedBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrix.h:96:7: required from 'class Eigen::SparseMatrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/IterativeSolvers/ConstrainedConjGrad.h:61:25: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h:47:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 47 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h:168:29: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) long long int>::half' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h:168:29: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h:178:72: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h:179:36: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/aux_/na_assert.hpp:23,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/arg.hpp:25,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/placeholders.hpp:24,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/iterator/iterator_categories.hpp:16,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/iterator/iterator_concepts.hpp:10,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/range/concepts.hpp:20,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/range/size_type.hpp:20,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/range/size.hpp:21,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/random/hyperexponential_distribution.hpp:29,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/random.hpp:70,\\n\"},{\"type\":1,\"output\":\" from exact_vol.cpp:11:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp:194:21: warning: unnecessary parentheses in declaration of 'assert_arg' [-Wparentheses]\\n\"},{\"type\":1,\"output\":\" 194 | failed ************ (Pred::************\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 195 | assert_arg( void (*)(Pred), typename assert_arg_pred::type )\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 196 | );\\n\"},{\"type\":1,\"output\":\" | ~ \\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp:194:21: note: remove parentheses\\n\"},{\"type\":1,\"output\":\" 194 | failed ************ (Pred::************\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" | -\\n\"},{\"type\":1,\"output\":\" 195 | assert_arg( void (*)(Pred), typename assert_arg_pred::type )\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 196 | );\\n\"},{\"type\":1,\"output\":\" | ~ \\n\"},{\"type\":1,\"output\":\" | -\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp:199:21: warning: unnecessary parentheses in declaration of 'assert_not_arg' [-Wparentheses]\\n\"},{\"type\":1,\"output\":\" 199 | failed ************ (boost::mpl::not_::************\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 200 | assert_not_arg( void (*)(Pred), typename assert_arg_pred_not::type )\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 201 | );\\n\"},{\"type\":1,\"output\":\" | ~ \\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp:199:21: note: remove parentheses\\n\"},{\"type\":1,\"output\":\" 199 | failed ************ (boost::mpl::not_::************\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" | -\\n\"},{\"type\":1,\"output\":\" 200 | assert_not_arg( void (*)(Pred), typename assert_arg_pred_not::type )\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 201 | );\\n\"},{\"type\":1,\"output\":\" | ~ \\n\"},{\"type\":1,\"output\":\" | -\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/traits.hpp:21,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/storage.hpp:27,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/vector.hpp:21,\\n\"},{\"type\":1,\"output\":\" from external/minimum_ellipsoid/khach.h:25,\\n\"},{\"type\":1,\"output\":\" from include/convex_bodies/vpolytope.h:19,\\n\"},{\"type\":1,\"output\":\" from exact_vol.cpp:17:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/detail/iterator.hpp:111:21: warning: 'template struct std::iterator' is deprecated [-Wdeprecated-declarations]\\n\"},{\"type\":1,\"output\":\" 111 | public std::iterator {\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~\\n\"},{\"type\":1,\"output\":\"In file included from d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\bits\\\\stl_algobase.h:65,\\n\"},{\"type\":1,\"output\":\" from d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\bits\\\\specfun.h:45,\\n\"},{\"type\":1,\"output\":\" from d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\cmath:1935,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/Rcpp/include/Rcpp/platform/compiler.h:100,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/Rcpp/include/Rcpp/r/headers.h:62,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/Rcpp/include/RcppCommon.h:30,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/Rcpp/include/Rcpp.h:27,\\n\"},{\"type\":1,\"output\":\" from exact_vol.cpp:8:\\n\"},{\"type\":1,\"output\":\"d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\bits\\\\stl_iterator_base_types.h:127:34: note: declared here\\n\"},{\"type\":1,\"output\":\" 127 | struct _GLIBCXX17_DEPRECATED iterator\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/detail/iterator.hpp:149:21: warning: 'template struct std::iterator' is deprecated [-Wdeprecated-declarations]\\n\"},{\"type\":1,\"output\":\" 149 | public std::iterator {\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~\\n\"},{\"type\":1,\"output\":\"d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\bits\\\\stl_iterator_base_types.h:127:34: note: declared here\\n\"},{\"type\":1,\"output\":\" 127 | struct _GLIBCXX17_DEPRECATED iterator\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/detail/iterator.hpp:204:21: warning: 'template struct std::iterator' is deprecated [-Wdeprecated-declarations]\\n\"},{\"type\":1,\"output\":\" 204 | public std::iterator {\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~\\n\"},{\"type\":1,\"output\":\"d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\bits\\\\stl_iterator_base_types.h:127:34: note: declared here\\n\"},{\"type\":1,\"output\":\" 127 | struct _GLIBCXX17_DEPRECATED iterator\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:71:27: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:71:27: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:93:55: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:94:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: required from 'class Eigen::MapBase, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, 1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, -1, 1, true, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, -1, 1, true>'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:94:26: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, true>, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, true>, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, true>, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, -1, 1, true>, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:97:40: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:111:25: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"include/volume/exact_vols.h:53:14: required from 'NT exact_zonotope_vol(const Polytope&) [with NT = double; Polytope = Zonotope > >]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:112:37: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base >, Eigen::Matrix, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl >, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product >, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:72:31: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix, const Eigen::Transpose > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix, const Eigen::Transpose > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix, const Eigen::Transpose > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Matrix, const Eigen::Transpose >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:73:24: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:73:45: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:73:45: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Diagonal.h:63:53: required from 'class Eigen::Diagonal, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:91:21: required from 'class Eigen::Tridiagonalization >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:105:62: required from 'class Eigen::SelfAdjointEigenSolver >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Diagonal.h:63:53: required from 'class Eigen::Diagonal, -1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:96:21: required from 'class Eigen::Tridiagonalization >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:105:62: required from 'class Eigen::SelfAdjointEigenSolver >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:438:19: required from 'class Eigen::ColPivHouseholderQR >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:247:10: required from 'struct Eigen::internal::qr_preconditioner_impl, 2, 0, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:607:110: required from 'class Eigen::JacobiSVD, 2>'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:93:40: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, -1, -1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, -1, -1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CommaInitializer.h:95:21: required from 'Eigen::CommaInitializer& Eigen::CommaInitializer::operator,(const Eigen::DenseBase&) [with OtherDerived = Eigen::CwiseUnaryOp, const Eigen::Matrix >; XprType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/exact_vols.h:53:12: required from 'NT exact_zonotope_vol(const Polytope&) [with NT = double; Polytope = Zonotope > >]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:112:37: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:433:34: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:683:29: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, -1, -1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:689:32: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:689:60: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Diagonal.h:63:53: required from 'class Eigen::Diagonal, const Eigen::Matrix >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:697:61: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, -1, 1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:757:62: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/VectorBlock.h:56:47: required from 'class Eigen::VectorBlock, -1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:769:65: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/TriangularMatrix.h:174:44: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:232:121: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/misc/RealSvd2x2.h:25:26: required from 'void Eigen::internal::real_2x2_jacobi_svd(const MatrixType&, Index, Index, Eigen::JacobiRotation*, Eigen::JacobiRotation*) [with MatrixType = Eigen::Matrix; RealScalar = double; Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:722:42: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:279:10: required from 'void Eigen::MatrixBase::applyOnTheLeft(Eigen::Index, Eigen::Index, const Eigen::JacobiRotation&) [with OtherScalar = double; Derived = Eigen::Matrix; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:725:40: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:445:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Matrix; SrcXprType = Eigen::Block, -1, 1, true>; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Matrix; SrcXprType = Eigen::Block, -1, 1, true>; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Block, -1, 1, true>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Block, -1, 1, true>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Block, -1, 1, true>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Block, -1, 1, true>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:94:30: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, Eigen::internal::member_sum, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix >, Eigen::internal::member_sum, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix >, Eigen::internal::member_sum, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/VectorwiseOp.h:56:7: required from 'class Eigen::PartialReduxExpr, const Eigen::Matrix >, Eigen::internal::member_sum, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:523:46: required from 'void Eigen::PartialPivLU::compute() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:99:42: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:327:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:662:21: required from 'Derived& Eigen::PlainObjectBase::setOnes(Eigen::Index, Eigen::Index) [with Derived = Eigen::Matrix; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:420:22: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Diagonal.h:63:53: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Diagonal.h:63:53: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:520:87: required from 'Eigen::ComputationInfo Eigen::internal::computeFromTridiagonal_impl(DiagType&, SubDiagType&, Eigen::Index, bool, MatrixType&) [with MatrixType = Eigen::Matrix; DiagType = Eigen::Matrix; SubDiagType = Eigen::Matrix; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:439:49: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, true>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, 2, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, 2, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, 2, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, 2, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, 2, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, 2, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/misc/RealSvd2x2.h:46:19: required from 'void Eigen::internal::real_2x2_jacobi_svd(const MatrixType&, Index, Index, Eigen::JacobiRotation*, Eigen::JacobiRotation*) [with MatrixType = Eigen::Matrix; RealScalar = double; Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:722:42: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:174:81: required from 'class Eigen::DenseBase, 1, 2, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, 2, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, 2, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: required from 'class Eigen::MapBase, 1, 2, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 1, 2, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/misc/RealSvd2x2.h:46:19: required from 'void Eigen::internal::real_2x2_jacobi_svd(const MatrixType&, Index, Index, Eigen::JacobiRotation*, Eigen::JacobiRotation*) [with MatrixType = Eigen::Matrix; RealScalar = double; Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:722:42: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:454:5: required from 'void Eigen::internal::apply_rotation_in_the_plane(Eigen::DenseBase&, Eigen::DenseBase&, const Eigen::JacobiRotation&) [with VectorX = Eigen::Block, 1, -1, false>; VectorY = Eigen::Block, 1, -1, false>; OtherScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:281:40: required from 'void Eigen::MatrixBase::applyOnTheLeft(Eigen::Index, Eigen::Index, const Eigen::JacobiRotation&) [with OtherScalar = double; Derived = Eigen::Matrix; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:725:40: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:71:51: required from 'class Eigen::internal::visitor_evaluator, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:110:17: required from 'void Eigen::DenseBase::visit(Visitor&) const [with Visitor = Eigen::internal::max_coeff_visitor, -1, 1, false> >; Derived = Eigen::Block, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:266:14: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::maxCoeff(IndexType*) const [with IndexType = long long int; Derived = Eigen::Block, -1, 1, false>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:769:88: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:99:42: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:368:46: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:368:35: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:520:87: required from 'Eigen::ComputationInfo Eigen::internal::computeFromTridiagonal_impl(DiagType&, SubDiagType&, Eigen::Index, bool, MatrixType&) [with MatrixType = Eigen::Matrix; DiagType = Eigen::Matrix; SubDiagType = Eigen::Matrix; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:439:49: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:163:27: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:165:25: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:166:55: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, false> >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, false> >, 0, 5>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, false> >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, false> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:166:34: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:126:41: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:128:25: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:129:29: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0, 5>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:129:41: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/TriangularMatrix.h:174:44: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:92:96: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 2>, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 2>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 2>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, 2>, Eigen::Matrix, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, 2>, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, 2>, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:94:66: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/TriangularMatrix.h:174:44: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 1>, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, 1>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, 1>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base >, 1>, Eigen::Matrix, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl >, 1>, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product >, 1>, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:95:66: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 5>, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, 5>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, 5>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, 5>, Eigen::Matrix, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, false>, 5>, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false>, 5>, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:96:22: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:747:33: required from 'static Derived& Eigen::internal::setIdentity_impl::run(Derived&) [with Derived = Eigen::Matrix; bool Big = false]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:776:50: required from 'Derived& Eigen::MatrixBase::setIdentity() [with Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:793:21: required from 'Derived& Eigen::MatrixBase::setIdentity(Eigen::Index, Eigen::Index) [with Derived = Eigen::Matrix; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:690:45: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, 2, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:454:5: required from 'void Eigen::internal::apply_rotation_in_the_plane(Eigen::DenseBase&, Eigen::DenseBase&, const Eigen::JacobiRotation&) [with VectorX = Eigen::Block, 1, 2, false>; VectorY = Eigen::Block, 1, 2, false>; OtherScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:281:40: required from 'void Eigen::MatrixBase::applyOnTheLeft(Eigen::Index, Eigen::Index, const Eigen::JacobiRotation&) [with OtherScalar = double; Derived = Eigen::Matrix; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/misc/RealSvd2x2.h:46:19: required from 'void Eigen::internal::real_2x2_jacobi_svd(const MatrixType&, Index, Index, Eigen::JacobiRotation*, Eigen::JacobiRotation*) [with MatrixType = Eigen::Matrix; RealScalar = double; Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:722:42: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:99:42: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:99:42: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:492:30: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:99:42: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseUnaryOp, const Eigen::Matrix >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_max_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Matrix > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_max_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Matrix >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:438:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::maxCoeff() const [with Derived = Eigen::CwiseUnaryOp, const Eigen::Matrix >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:433:45: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, -1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, -1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, true>, -1, 1, false>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:454:5: required from 'void Eigen::internal::apply_rotation_in_the_plane(Eigen::DenseBase&, Eigen::DenseBase&, const Eigen::JacobiRotation&) [with VectorX = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; VectorY = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; OtherScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:296:40: required from 'void Eigen::MatrixBase::applyOnTheRight(Eigen::Index, Eigen::Index, const Eigen::JacobiRotation&) [with OtherScalar = double; Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:862:24: required from 'void Eigen::internal::tridiagonal_qr_step(RealScalar*, RealScalar*, Index, Index, Scalar*, Index) [with int StorageOrder = 0; RealScalar = double; Scalar = double; Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:520:87: required from 'Eigen::ComputationInfo Eigen::internal::computeFromTridiagonal_impl(DiagType&, SubDiagType&, Eigen::Index, bool, MatrixType&) [with MatrixType = Eigen::Matrix; DiagType = Eigen::Matrix; SubDiagType = Eigen::Matrix; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:439:49: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:126:38: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:126:41: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0, 5>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:129:41: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, true>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false>, -1, 1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, 1, true>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false>, -1, 1, true>, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:63:90: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:63:57: required from 'void Eigen::internal::make_block_householder_triangular_factor(TriangularFactorType&, const VectorsType&, const CoeffsType&) [with TriangularFactorType = Eigen::Matrix; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false>, -1, -1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:64:57: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:67:61: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>; SrcXprType = Eigen::CwiseUnaryOp, const Eigen::Matrix >; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>; SrcXprType = Eigen::CwiseUnaryOp, const Eigen::Matrix >; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>; Src = Eigen::CwiseUnaryOp, const Eigen::Matrix >; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>; Src = Eigen::CwiseUnaryOp, const Eigen::Matrix >; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Block, -1, -1, false>; Src = Eigen::CwiseUnaryOp, const Eigen::Matrix >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Assign.h:66:28: required from 'Derived& Eigen::MatrixBase::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::CwiseUnaryOp, const Eigen::Matrix >; Derived = Eigen::Block, -1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CommaInitializer.h:95:64: required from 'Eigen::CommaInitializer& Eigen::CommaInitializer::operator,(const Eigen::DenseBase&) [with OtherDerived = Eigen::CwiseUnaryOp, const Eigen::Matrix >; XprType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/exact_vols.h:53:12: required from 'NT exact_zonotope_vol(const Polytope&) [with NT = double; Polytope = Zonotope > >]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:112:37: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:99:42: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:99:42: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:381:43: required from 'static Eigen::Index Eigen::internal::partial_lu_impl::unblocked_lu(MatrixType&, PivIndex*, PivIndex&) [with Scalar = double; int StorageOrder = 0; PivIndex = int; Eigen::Index = long long int; MatrixType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:436:26: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:99:42: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:99:42: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:99:42: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0, 5>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:406:78: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:99:42: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, true>, -1, 1, false>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, 1, true>, -1, 1, false>, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:91:22: required from 'void Eigen::MatrixBase::makeHouseholder(EssentialPart&, Scalar&, RealScalar&) const [with EssentialPart = Eigen::VectorBlock, -1, 1, true>, -1, 1, false>, -1>; Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; Scalar = double; RealScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:45:18: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:44: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block, -1, 1, false>; U = Eigen::Block, -1, 1, true>, -1, 1, false>; bool NeedToTranspose = false; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false>, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, false>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, 1, false>, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointRank2Update.h:33:74: required from 'static void Eigen::internal::selfadjoint_rank2_update_selector::run(Scalar*, Index, const UType&, const VType&, const Scalar&) [with Scalar = double; Index = long long int; UType = Eigen::Block, -1, 1, true>, -1, 1, false>; VType = Eigen::Block, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointRank2Update.h:86:10: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointRank2Update.h:34:60: required from 'static void Eigen::internal::selfadjoint_rank2_update_selector::run(Scalar*, Index, const UType&, const VType&, const Scalar&) [with Scalar = double; Index = long long int; UType = Eigen::Block, -1, 1, true>, -1, 1, false>; VType = Eigen::Block, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointRank2Update.h:86:10: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointRank2Update.h:34:23: required from 'static void Eigen::internal::selfadjoint_rank2_update_selector::run(Scalar*, Index, const UType&, const VType&, const Scalar&) [with Scalar = double; Index = long long int; UType = Eigen::Block, -1, 1, true>, -1, 1, false>; VType = Eigen::Block, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointRank2Update.h:86:10: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, -1, 1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:40: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, -1, 1, true>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:71:51: required from 'class Eigen::internal::visitor_evaluator, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:110:17: required from 'void Eigen::DenseBase::visit(Visitor&) const [with Visitor = Eigen::internal::max_coeff_visitor, 1, -1, false> >; Derived = Eigen::Block, 1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:266:14: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::maxCoeff(IndexType*) const [with IndexType = long long int; Derived = Eigen::Block, 1, -1, false>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:519:90: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:475:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:40: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:40: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:76:71: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, true>, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:141:7: required from 'Eigen::DenseCoeffsBase::CoeffReturnType Eigen::DenseCoeffsBase::coeff(Eigen::Index) const [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; CoeffReturnType = const double&; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:77:20: required from 'void Eigen::MatrixBase::makeHouseholder(EssentialPart&, Scalar&, RealScalar&) const [with EssentialPart = Eigen::VectorBlock, -1, 1, true>, -1, 1, false>, -1>; Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; Scalar = double; RealScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:45:18: required from 'void Eigen::MatrixBase::makeHouseholderInPlace(Scalar&, RealScalar&) [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; Scalar = double; RealScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:361:59: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, CoeffVectorType&) [with MatrixType = Eigen::Matrix; CoeffVectorType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:445:31: required from 'static void Eigen::internal::tridiagonalization_inplace_selector::run(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix; MatrixType = Eigen::Matrix; int Size = -1; bool IsComplex = false]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:369:102: required from 'struct Eigen::internal::plain_object_eval, -1, -1, false>, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:369:45: required from 'struct Eigen::internal::generic_product_impl, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Src = Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/NoAlias.h:42:31: required from 'ExpressionType& Eigen::NoAlias::operator=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>; ExpressionType = Eigen::Map, 0, Eigen::Stride<0, 0> >; StorageBase = Eigen::MatrixBase]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:163:19: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:369:102: required from 'struct Eigen::internal::plain_object_eval, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:370:45: required from 'struct Eigen::internal::generic_product_impl, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Src = Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/NoAlias.h:42:31: required from 'ExpressionType& Eigen::NoAlias::operator=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>; ExpressionType = Eigen::Map, 0, Eigen::Stride<0, 0> >; StorageBase = Eigen::MatrixBase]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:163:19: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:141:7: required from 'Eigen::DenseCoeffsBase::CoeffReturnType Eigen::DenseCoeffsBase::coeff(Eigen::Index) const [with Derived = Eigen::Block, -1, 1, false>; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:181:19: required from 'Eigen::DenseCoeffsBase::CoeffReturnType Eigen::DenseCoeffsBase::operator()(Eigen::Index) const [with Derived = Eigen::Block, -1, 1, false>; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:63:53: required from 'void Eigen::internal::make_block_householder_triangular_factor(TriangularFactorType&, const VectorsType&, const CoeffsType&) [with TriangularFactorType = Eigen::Matrix; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::Matrix >, -1, 1, true, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::Matrix >, -1, 1, true, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::Matrix >, -1, 1, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1307:33: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:99:42: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix >, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix >, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::Matrix >, 1, -1, false, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::Matrix >, 1, -1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::Matrix >, 1, -1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1309:33: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:99:42: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:961:41: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:522:41: required from 'struct Eigen::internal::unary_evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:71:51: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:533:31: required from 'void Eigen::PartialPivLU::compute() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:99:42: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:961:41: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:522:41: required from 'struct Eigen::internal::unary_evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:71:51: required from 'class Eigen::internal::visitor_evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:110:17: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:99:42: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:522:41: required from 'struct Eigen::internal::unary_evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:71:51: required from 'class Eigen::internal::visitor_evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:110:17: required from 'void Eigen::DenseBase::visit(Visitor&) const [with Visitor = Eigen::internal::max_coeff_visitor, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:266:14: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:99:42: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::Matrix; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_max_op; Derived = Eigen::internal::redux_evaluator >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_max_op; Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:438:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::maxCoeff() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:509:85: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:475:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Matrix; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Matrix; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:689:18: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:496:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: In instantiation of 'class Eigen::internal::gebp_traits':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularSolverMatrix.h:64:27: required from 'static void Eigen::internal::triangular_solve_matrix::run(Index, Index, const Scalar*, Index, Scalar*, Index, Index, Eigen::internal::level3_blocking&) [with Scalar = double; Index = long long int; int Mode = 5; bool Conjugate = false; int TriStorageOrder = 0; int OtherInnerStride = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/SolveTriangular.h:102:12: required from 'static void Eigen::internal::triangular_solver_selector::run(const Lhs&, Rhs&) [with Lhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; int Side = 1; int Mode = 5]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/SolveTriangular.h:182:21: required from 'void Eigen::TriangularViewImpl<_MatrixType, _Mode, Eigen::Dense>::solveInPlace(const Eigen::MatrixBase&) const [with int Side = 1; OtherDerived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; _MatrixType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; unsigned int _Mode = 5]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/TriangularMatrix.h:509:37: required from 'void Eigen::TriangularViewImpl<_MatrixType, _Mode, Eigen::Dense>::solveInPlace(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; _MatrixType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; unsigned int _Mode = 5]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:490:62: required from 'static Eigen::Index Eigen::internal::partial_lu_impl::blocked_lu(Eigen::Index, Eigen::Index, Scalar*, Eigen::Index, PivIndex*, PivIndex&, Eigen::Index) [with Scalar = double; int StorageOrder = 0; PivIndex = int; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:509:17: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:99:42: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:391:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 391 | typedef typename conditional::type LhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:392:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 392 | typedef typename conditional::type RhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:393:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 393 | typedef typename conditional::type ResPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, true>, -1, 1, false>, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, 1, true>, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:522:41: required from 'struct Eigen::internal::unary_evaluator, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::Block, -1, -1, false>, -1, 1, true>; Functor = add_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::Block, -1, -1, false>, -1, 1, true>; Functor = Eigen::internal::add_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Src = Eigen::Block, -1, -1, false>, -1, 1, true>; Func = add_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Src = Eigen::Block, -1, -1, false>, -1, 1, true>; Func = add_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:177:18: required from 'Derived& Eigen::MatrixBase::operator+=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::Block, -1, -1, false>, -1, 1, true>; Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:164:9: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, -1, false>, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:280:48: required from 'void Eigen::internal::outer_product_selector_run(Dst&, const Lhs&, const Rhs&, const Func&, const false_type&) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >; Rhs = Eigen::Transpose, -1, 1, false> >; Func = generic_product_impl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, false> >, Eigen::DenseShape, Eigen::DenseShape, 5>::sub]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:329:41: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::Block, -1, -1, false>, 1, -1, false>; Functor = add_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::Block, -1, -1, false>, 1, -1, false>; Functor = Eigen::internal::add_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Src = Eigen::Block, -1, -1, false>, 1, -1, false>; Func = add_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Src = Eigen::Block, -1, -1, false>, 1, -1, false>; Func = add_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:177:18: required from 'Derived& Eigen::MatrixBase::operator+=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::Block, -1, -1, false>, 1, -1, false>; Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:127:9: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:961:41: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; SrcXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Functor = swap_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; SrcXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Functor = Eigen::internal::swap_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Src = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Func = swap_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Src = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Func = swap_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:418:22: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:99:42: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; SrcXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Functor = swap_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; SrcXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Functor = Eigen::internal::swap_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Src = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Func = swap_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Src = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Func = swap_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:418:22: required from 'void Eigen::DenseBase::swap(const Eigen::DenseBase&) [with OtherDerived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Derived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:480:24: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:99:42: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: In instantiation of 'void Eigen::internal::gemm_pack_rhs::operator()(Scalar*, const DataMapper&, Index, Index, Index, Index) [with Scalar = double; Index = long long int; DataMapper = Eigen::internal::blas_data_mapper; int nr = 4; bool Conjugate = false; bool PanelMode = true]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularSolverMatrix.h:153:19: required from 'static void Eigen::internal::triangular_solve_matrix::run(Index, Index, const Scalar*, Index, Scalar*, Index, Index, Eigen::internal::level3_blocking&) [with Scalar = double; Index = long long int; int Mode = 5; bool Conjugate = false; int TriStorageOrder = 0; int OtherInnerStride = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/SolveTriangular.h:102:12: required from 'static void Eigen::internal::triangular_solver_selector::run(const Lhs&, Rhs&) [with Lhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; int Side = 1; int Mode = 5]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/SolveTriangular.h:182:21: required from 'void Eigen::TriangularViewImpl<_MatrixType, _Mode, Eigen::Dense>::solveInPlace(const Eigen::MatrixBase&) const [with int Side = 1; OtherDerived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; _MatrixType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; unsigned int _Mode = 5]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/TriangularMatrix.h:509:37: required from 'void Eigen::TriangularViewImpl<_MatrixType, _Mode, Eigen::Dense>::solveInPlace(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; _MatrixType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; unsigned int _Mode = 5]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:490:62: required from 'static Eigen::Index Eigen::internal::partial_lu_impl::blocked_lu(Eigen::Index, Eigen::Index, Scalar*, Eigen::Index, PivIndex*, PivIndex&, Eigen::Index) [with Scalar = double; int StorageOrder = 0; PivIndex = int; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:509:17: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:99:42: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1981:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 1981 | PacketBlock kernel;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: In instantiation of 'void Eigen::internal::gebp_kernel::operator()(const DataMapper&, const LhsScalar*, const RhsScalar*, Index, Index, Index, ResScalar, Index, Index, Index, Index) [with LhsScalar = double; RhsScalar = double; Index = long long int; DataMapper = Eigen::internal::blas_data_mapper; int mr = 4; int nr = 4; bool ConjugateLhs = false; bool ConjugateRhs = false; ResScalar = double]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularSolverMatrix.h:162:24: required from 'static void Eigen::internal::triangular_solve_matrix::run(Index, Index, const Scalar*, Index, Scalar*, Index, Index, Eigen::internal::level3_blocking&) [with Scalar = double; Index = long long int; int Mode = 5; bool Conjugate = false; int TriStorageOrder = 0; int OtherInnerStride = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/SolveTriangular.h:102:12: required from 'static void Eigen::internal::triangular_solver_selector::run(const Lhs&, Rhs&) [with Lhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; int Side = 1; int Mode = 5]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/SolveTriangular.h:182:21: required from 'void Eigen::TriangularViewImpl<_MatrixType, _Mode, Eigen::Dense>::solveInPlace(const Eigen::MatrixBase&) const [with int Side = 1; OtherDerived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; _MatrixType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; unsigned int _Mode = 5]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/TriangularMatrix.h:509:37: required from 'void Eigen::TriangularViewImpl<_MatrixType, _Mode, Eigen::Dense>::solveInPlace(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; _MatrixType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; unsigned int _Mode = 5]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:490:62: required from 'static Eigen::Index Eigen::internal::partial_lu_impl::blocked_lu(Eigen::Index, Eigen::Index, Scalar*, Eigen::Index, PivIndex*, PivIndex&, Eigen::Index) [with Scalar = double; int StorageOrder = 0; PivIndex = int; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:509:17: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:99:42: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1537:103: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 1537 | const int SResPacketHalfSize = unpacket_traits::half>::size;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1592:135: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 1592 | typedef typename conditional=8,typename unpacket_traits::half,SResPacket>::type SResPacketHalf;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1593:135: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 1593 | typedef typename conditional=8,typename unpacket_traits::half,SLhsPacket>::type SLhsPacketHalf;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1594:135: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 1594 | typedef typename conditional=8,typename unpacket_traits::half,SRhsPacket>::type SRhsPacketHalf;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1595:135: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 1595 | typedef typename conditional=8,typename unpacket_traits::half,SAccPacket>::type SAccPacketHalf;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:436:50: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:99:42: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, Eigen::Matrix, 1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, Eigen::Matrix, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::Matrix, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base >, Eigen::Matrix, 1, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl >, Eigen::Matrix, 1, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product >, Eigen::Matrix, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:436:50: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product >, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:72:15: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, false>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:165:45: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:51: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block, -1, 1, false>; U = Eigen::Block, -1, 1, true>, -1, 1, false>; bool NeedToTranspose = false; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: required from 'typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType Eigen::MatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Block, -1, 1, true>, -1, 1, false>; Derived = Eigen::Block, -1, 1, false>; typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType = double; typename Eigen::internal::traits::Scalar = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:370:86: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true> >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Block, -1, 1, true> > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:46: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, -1, 1, true>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::norm() const [with Derived = Eigen::Block, -1, 1, true>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:505:52: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Block, -1, 1, true>, -1, 1, false> > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:46: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::norm() const [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:565:77: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:327:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:501:10: required from 'Derived& Eigen::DenseBase::setZero() [with Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:16: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::Matrix >, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Matrix >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/VectorwiseOp.h:104:1: required from 'ResultType Eigen::internal::member_sum::operator()(const XprType&) const [with XprType = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; ResultType = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1307:23: required from 'const Eigen::internal::evaluator >::Scalar Eigen::internal::evaluator >::coeff(Eigen::Index, Eigen::Index) const [with ArgType = const Eigen::CwiseUnaryOp, const Eigen::Matrix >; MemberOp = Eigen::internal::member_sum; int Direction = 0; Scalar = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:381:29: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:99:42: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::Matrix >, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Matrix >, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::Block, const Eigen::Matrix >, 1, -1, false>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::Block, const Eigen::Matrix >, 1, -1, false>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/VectorwiseOp.h:104:1: required from 'ResultType Eigen::internal::member_sum::operator()(const XprType&) const [with XprType = Eigen::Block, const Eigen::Matrix >, 1, -1, false>; ResultType = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1309:23: required from 'const Eigen::internal::evaluator >::Scalar Eigen::internal::evaluator >::coeff(Eigen::Index, Eigen::Index) const [with ArgType = const Eigen::CwiseUnaryOp, const Eigen::Matrix >; MemberOp = Eigen::internal::member_sum; int Direction = 0; Scalar = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:381:29: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:99:42: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>; SrcXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>; Functor = swap_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>; SrcXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>; Functor = Eigen::internal::swap_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>; Src = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>; Func = swap_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>; Src = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>; Func = swap_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:418:22: required from 'void Eigen::DenseBase::swap(const Eigen::DenseBase&) [with OtherDerived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>; Derived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:390:25: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:99:42: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:274:18: required from 'void Eigen::internal::outer_product_selector_run(Dst&, const Lhs&, const Rhs&, const Func&, const false_type&) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; Lhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>; Rhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>; Func = generic_product_impl, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, Eigen::DenseShape, Eigen::DenseShape, 5>::sub]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:329:41: required from 'static void Eigen::internal::generic_product_impl::subTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; Lhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>; Rhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:178:42: required from 'static void Eigen::internal::Assignment, Eigen::internal::sub_assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::sub_assign_op&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; Lhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>; Rhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; Src = Eigen::Product, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0>; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/NoAlias.h:58:31: required from 'ExpressionType& Eigen::NoAlias::operator-=(const StorageBase&) [with OtherDerived = Eigen::Product, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0>; ExpressionType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; StorageBase = Eigen::MatrixBase]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:406:53: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:99:42: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:99:42: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:280:48: required from 'void Eigen::internal::outer_product_selector_run(Dst&, const Lhs&, const Rhs&, const Func&, const false_type&) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; Lhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>; Rhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>; Func = generic_product_impl, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, Eigen::DenseShape, Eigen::DenseShape, 5>::sub]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:329:41: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:99:42: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:46: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:76:71: required from 'void Eigen::MatrixBase::makeHouseholder(EssentialPart&, Scalar&, RealScalar&) const [with EssentialPart = Eigen::VectorBlock, -1, 1, true>, -1, 1, false>, -1>; Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; Scalar = double; RealScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:45:18: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 2, Eigen::Stride<0, 0> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 2, Eigen::Stride<0, 0> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 2, Eigen::Stride<0, 0> >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 2, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 2, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 2, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, false>, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:499:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'struct Eigen::internal::general_matrix_vector_product, 0, false, double, Eigen::internal::const_blas_data_mapper, false, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:244:134: required from 'static void Eigen::internal::gemv_dense_selector<2, 0, true>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; Dest = Eigen::Map, 0, Eigen::Stride<0, 0> >; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:383:34: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: required from 'static void Eigen::internal::generic_product_impl_base::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:75:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 75 | typedef typename conditional::type LhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:76:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 76 | typedef typename conditional::type RhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:77:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 77 | typedef typename conditional::type ResPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 2, Eigen::Stride<0, 0> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 2, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 2, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 2, Eigen::Stride<0, 0> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 2, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:287:40: required from 'static void Eigen::internal::gemv_dense_selector<2, 0, true>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; Dest = Eigen::Map, 0, Eigen::Stride<0, 0> >; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:383:34: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, 0, Eigen::Stride<0, 0> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:197:26: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false> > >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, 1, false> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:197:43: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:961:41: required from 'struct Eigen::internal::evaluator, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false>; SrcXprType = Eigen::Matrix; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false>; SrcXprType = Eigen::Matrix; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Src = Eigen::Matrix; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:797:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Src = Eigen::Product, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, true>, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false>; SrcXprType = Eigen::Matrix; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false>; SrcXprType = Eigen::Matrix; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Src = Eigen::Matrix; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:797:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Src = Eigen::Product, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Src = Eigen::Product, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Assign.h:66:28: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:59: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, -1, -1, false>; int Mode = 5; bool LhsIsTriangular = true; Lhs = const Eigen::Block, -1, -1, false>; Rhs = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:74: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, -1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, -1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false>, -1, -1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:462:59: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, -1, -1, false>; int Mode = 5; bool LhsIsTriangular = true; Lhs = const Eigen::Block, -1, -1, false>; Rhs = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, true>, -1, 1, false>, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Assign.h:66:28: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:503:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h: In instantiation of 'static void Eigen::internal::selfadjoint_matrix_vector_product::run(Index, const Scalar*, Index, const Scalar*, Scalar*, Scalar) [with Scalar = double; Index = long long int; int StorageOrder = 0; int UpLo = 1; bool ConjugateLhs = false; bool ConjugateRhs = false; int Version = 0]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:227:7: required from 'static void Eigen::internal::selfadjoint_product_impl::run(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, -1, 1, false>; Lhs = Eigen::Block, -1, -1, false>; int LhsMode = 17; Rhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:772:109: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, -1, 1, false>; Lhs = Eigen::SelfAdjointView, -1, -1, false>, 1>; Rhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; int ProductTag = 7; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Block, -1, 1, false>; Lhs = Eigen::SelfAdjointView, -1, -1, false>, 1>; Rhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::SelfAdjointShape, Eigen::DenseShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: required from 'static void Eigen::internal::generic_product_impl_base::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Block, -1, 1, false>; Lhs = Eigen::SelfAdjointView, -1, -1, false>, 1>; Rhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::SelfAdjointShape, Eigen::DenseShape, 7>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Block, -1, 1, false>; Lhs = Eigen::SelfAdjointView, -1, -1, false>, 1>; Rhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:60:121: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 60 | conj_helper::IsComplex && EIGEN_LOGICAL_XOR(ConjugateLhs, IsRowMajor), ConjugateRhs> pcj0;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:60:121: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:61:121: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 61 | conj_helper::IsComplex && EIGEN_LOGICAL_XOR(ConjugateLhs, !IsRowMajor), ConjugateRhs> pcj1;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:61:121: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false> > >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, 1, true>, -1, 1, false> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:197:43: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'static void Eigen::internal::general_matrix_vector_product::run(Index, Index, const LhsMapper&, const RhsMapper&, ResScalar*, Index, RhsScalar) [with Index = long long int; LhsScalar = double; LhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateLhs = false; RhsScalar = double; RhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateRhs = false; int Version = 0; ResScalar = double]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:244:134: required from 'static void Eigen::internal::gemv_dense_selector<2, 0, true>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; Dest = Eigen::Map, 0, Eigen::Stride<0, 0> >; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:383:34: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: required from 'static void Eigen::internal::generic_product_impl_base::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:112:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 112 | conj_helper pcj;\\n\"},{\"type\":1,\"output\":\" | ^~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:112:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'struct Eigen::internal::general_matrix_vector_product, 1, false, double, Eigen::internal::const_blas_data_mapper, false, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:339:132: required from 'static void Eigen::internal::gemv_dense_selector<2, 1, true>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, -1, 1, false> > >; Dest = Eigen::Transpose, 0, Eigen::Stride<0, 0> > >; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:197:12: required from 'static void Eigen::internal::gemv_dense_selector<1, StorageOrder, BlasCompatible>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, 1, false> >; Rhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Dest = Eigen::Map, 0, Eigen::Stride<0, 0> >; int StorageOrder = 0; bool BlasCompatible = true; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:383:34: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Transpose, -1, 1, false> >; Rhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Transpose, -1, 1, false> >; Rhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Derived = Eigen::internal::generic_product_impl, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: required from 'static void Eigen::internal::generic_product_impl_base::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Transpose, -1, 1, false> >; Rhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Derived = Eigen::internal::generic_product_impl, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:351:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 351 | typedef typename conditional::type LhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:352:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 352 | typedef typename conditional::type RhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:353:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 353 | typedef typename conditional::type ResPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> > >, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, true>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, true>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, 1, -1, true>, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:32: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:48: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; int Mode = 5; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = const Eigen::Block, -1, -1, false>, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:751:113: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:150:68: required from 'static void Eigen::internal::product_triangular_matrix_matrix::run(Index, Index, Index, const Scalar*, Index, const Scalar*, Index, Scalar*, Index, Index, const Scalar&, Eigen::internal::level3_blocking&) [with Scalar = double; Index = long long int; int Mode = 5; int LhsStorageOrder = 0; bool ConjugateLhs = false; int RhsStorageOrder = 0; bool ConjugateRhs = false; int ResInnerStride = 1; int Version = 0]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:443:12: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, -1, -1, false>; int Mode = 5; bool LhsIsTriangular = true; Lhs = const Eigen::Block, -1, -1, false>; Rhs = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Diagonal.h:63:53: required from 'class Eigen::Diagonal, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:153:32: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:174:81: required from 'class Eigen::DenseBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Diagonal.h:63:53: required from 'class Eigen::Diagonal, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:153:32: required from 'static void Eigen::internal::product_triangular_matrix_matrix::run(Index, Index, Index, const Scalar*, Index, const Scalar*, Index, Scalar*, Index, Index, const Scalar&, Eigen::internal::level3_blocking&) [with Scalar = double; Index = long long int; int Mode = 5; int LhsStorageOrder = 0; bool ConjugateLhs = false; int RhsStorageOrder = 0; bool ConjugateRhs = false; int ResInnerStride = 1; int Version = 0]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:443:12: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, -1, -1, false>; int Mode = 5; bool LhsIsTriangular = true; Lhs = const Eigen::Block, -1, -1, false>; Rhs = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Matrix >, -1, 1, true> >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/VectorwiseOp.h:104:1: required from 'ResultType Eigen::internal::member_sum::operator()(const XprType&) const [with XprType = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; ResultType = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1307:23: required from 'const Eigen::internal::evaluator >::Scalar Eigen::internal::evaluator >::coeff(Eigen::Index, Eigen::Index) const [with ArgType = const Eigen::CwiseUnaryOp, const Eigen::Matrix >; MemberOp = Eigen::internal::member_sum; int Direction = 0; Scalar = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:381:29: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:99:42: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:371:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/Memory.h: In instantiation of 'Index Eigen::internal::first_default_aligned(const Scalar*, Index) [with Scalar = double; Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:88:68: required from 'static void Eigen::internal::selfadjoint_matrix_vector_product::run(Index, const Scalar*, Index, const Scalar*, Scalar*, Scalar) [with Scalar = double; Index = long long int; int StorageOrder = 0; int UpLo = 1; bool ConjugateLhs = false; bool ConjugateRhs = false; int Version = 0]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:227:7: required from 'static void Eigen::internal::selfadjoint_product_impl::run(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, -1, 1, false>; Lhs = Eigen::Block, -1, -1, false>; int LhsMode = 17; Rhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:772:109: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, -1, 1, false>; Lhs = Eigen::SelfAdjointView, -1, -1, false>, 1>; Rhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; int ProductTag = 7; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Block, -1, 1, false>; Lhs = Eigen::SelfAdjointView, -1, -1, false>, 1>; Rhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::SelfAdjointShape, Eigen::DenseShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: required from 'static void Eigen::internal::generic_product_impl_base::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Block, -1, 1, false>; Lhs = Eigen::SelfAdjointView, -1, -1, false>, 1>; Rhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::SelfAdjointShape, Eigen::DenseShape, 7>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/Memory.h:470:60: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 470 | return first_aligned::alignment>(array, size);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'static void Eigen::internal::general_matrix_vector_product::run(Index, Index, const LhsMapper&, const RhsMapper&, ResScalar*, Index, ResScalar) [with Index = long long int; LhsScalar = double; LhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateLhs = false; RhsScalar = double; RhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateRhs = false; int Version = 0; ResScalar = double]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:339:132: required from 'static void Eigen::internal::gemv_dense_selector<2, 1, true>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, -1, 1, false> > >; Dest = Eigen::Transpose, 0, Eigen::Stride<0, 0> > >; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:197:12: required from 'static void Eigen::internal::gemv_dense_selector<1, StorageOrder, BlasCompatible>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, 1, false> >; Rhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Dest = Eigen::Map, 0, Eigen::Stride<0, 0> >; int StorageOrder = 0; bool BlasCompatible = true; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:383:34: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Transpose, -1, 1, false> >; Rhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Transpose, -1, 1, false> >; Rhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Derived = Eigen::internal::generic_product_impl, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: required from 'static void Eigen::internal::generic_product_impl_base::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Transpose, -1, 1, false> >; Rhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Derived = Eigen::internal::generic_product_impl, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:385:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 385 | conj_helper pcj;\\n\"},{\"type\":1,\"output\":\" | ^~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:385:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/BlasUtil.h:464:13: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, -1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, -1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, true>, 1, -1, false> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, true>, 1, -1, false> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, true>, 1, -1, false> >, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/VectorBlock.h:56:47: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:341:54: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >; Dest = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; int Mode = 6; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:59: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Matrix; int Mode = 6; bool LhsIsTriangular = true; Lhs = const Eigen::Transpose, -1, -1, false> >; Rhs = Eigen::Block, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:74: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false> >, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false> >, -1, -1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false> >, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false> >, -1, -1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:462:59: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Matrix; int Mode = 6; bool LhsIsTriangular = true; Lhs = const Eigen::Transpose, -1, -1, false> >; Rhs = Eigen::Block, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: In instantiation of 'void Eigen::internal::gemm_pack_rhs::operator()(Scalar*, const DataMapper&, Index, Index, Index, Index) [with Scalar = double; Index = long long int; DataMapper = Eigen::internal::const_blas_data_mapper; int nr = 4; bool Conjugate = false; bool PanelMode = false]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:175:15: required from 'static void Eigen::internal::product_triangular_matrix_matrix::run(Index, Index, Index, const Scalar*, Index, const Scalar*, Index, Scalar*, Index, Index, const Scalar&, Eigen::internal::level3_blocking&) [with Scalar = double; Index = long long int; int Mode = 5; int LhsStorageOrder = 0; bool ConjugateLhs = false; int RhsStorageOrder = 0; bool ConjugateRhs = false; int ResInnerStride = 1; int Version = 0]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:443:12: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, -1, -1, false>; int Mode = 5; bool LhsIsTriangular = true; Lhs = const Eigen::Block, -1, -1, false>; Rhs = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, -1, -1, false>; Lhs = Eigen::TriangularView, -1, -1, false>, 5>; Rhs = Eigen::Matrix; int ProductTag = 8; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Block, -1, -1, false>; Lhs = Eigen::TriangularView, -1, -1, false>, 5>; Rhs = Eigen::Matrix; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, 5>, Eigen::Matrix, Eigen::TriangularShape, Eigen::DenseShape, 8>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:357:18: required from 'static void Eigen::internal::generic_product_impl_base::subTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Block, -1, -1, false>; Lhs = Eigen::TriangularView, -1, -1, false>, 5>; Rhs = Eigen::Matrix; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, 5>, Eigen::Matrix, Eigen::TriangularShape, Eigen::DenseShape, 8>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:178:42: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1981:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 1981 | PacketBlock kernel;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: In instantiation of 'void Eigen::internal::gemm_pack_lhs::operator()(Scalar*, const DataMapper&, Index, Index, Index, Index) [with Scalar = double; Index = long long int; DataMapper = Eigen::internal::const_blas_data_mapper; int Pack1 = 4; int Pack2 = 2; bool Conjugate = false; bool PanelMode = false]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixMatrix.h:182:17: required from 'static void Eigen::internal::general_matrix_matrix_product::run(Index, Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, Index, ResScalar, Eigen::internal::level3_blocking&, Eigen::internal::GemmParallelInfo*) [with Index = long long int; LhsScalar = double; int LhsStorageOrder = 1; bool ConjugateLhs = false; RhsScalar = double; int RhsStorageOrder = 0; bool ConjugateRhs = false; int ResInnerStride = 1; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixMatrix.h:228:14: required from 'void Eigen::internal::gemm_functor::operator()(Index, Index, Index, Index, Eigen::internal::GemmParallelInfo*) const [with Scalar = double; Index = long long int; Gemm = Eigen::internal::general_matrix_matrix_product; Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; Dest = Eigen::Matrix; BlockingType = Eigen::internal::gemm_blocking_space<0, double, double, -1, -1, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/Parallelizer.h:98:7: required from 'void Eigen::internal::parallelize_gemm(const Functor&, Index, Index, Index, bool) [with bool Condition = true; Functor = gemm_functor, Eigen::Transpose >, Eigen::Matrix, Eigen::Matrix, gemm_blocking_space<0, double, double, -1, -1, -1, 1, false> >; Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixMatrix.h:487:9: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixMatrix.h:437:20: required from 'static void Eigen::internal::generic_product_impl::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product >, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:72:15: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1847:33: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 1847 | PacketBlock kernel;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1847:33: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::OuterStride<> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::OuterStride<> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::OuterStride<> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Map.h:94:79: required from 'class Eigen::Map, 0, Eigen::OuterStride<> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:115:18: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Map.h:94:79: required from 'class Eigen::Map, 0, Eigen::Stride<0, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:119:18: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::InnerStride<> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::InnerStride<> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::InnerStride<> >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::InnerStride<> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::InnerStride<> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::InnerStride<> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::OuterStride<> >, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::OuterStride<> >, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::OuterStride<> >, 1, -1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::Stride<0, 0> >, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, 0, Eigen::Stride<0, 0> >, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:137:106: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:137:77: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const ResScalar&) [with Index = long long int; int Mode = 6; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:332:12: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'struct Eigen::internal::general_matrix_vector_product, 1, false, double, Eigen::internal::const_blas_data_mapper, false, 1>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:145:123: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const ResScalar&) [with Index = long long int; int Mode = 6; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:332:12: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >; Dest = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; int Mode = 6; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; int Mode = 5; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = const Eigen::Block, -1, -1, false>, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:751:113: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>; int ProductTag = 7; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>; Derived = Eigen::internal::generic_product_impl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, Eigen::DenseShape, Eigen::TriangularShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:351:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 351 | typedef typename conditional::type LhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:352:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 352 | typedef typename conditional::type RhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:353:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 353 | typedef typename conditional::type ResPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'struct Eigen::internal::general_matrix_vector_product, 1, false, double, Eigen::internal::const_blas_data_mapper, false, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:154:113: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const ResScalar&) [with Index = long long int; int Mode = 6; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:332:12: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >; Dest = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; int Mode = 6; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; int Mode = 5; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = const Eigen::Block, -1, -1, false>, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:751:113: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>; int ProductTag = 7; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>; Derived = Eigen::internal::generic_product_impl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, Eigen::DenseShape, Eigen::TriangularShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:351:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 351 | typedef typename conditional::type LhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:352:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 352 | typedef typename conditional::type RhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:353:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 353 | typedef typename conditional::type ResPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Diagonal.h:63:53: required from 'class Eigen::Diagonal, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:153:32: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:327:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:501:10: required from 'Derived& Eigen::DenseBase::setZero() [with Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:151:29: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:327:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Diagonal, 0>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:501:10: required from 'Derived& Eigen::DenseBase::setZero() [with Derived = Eigen::Diagonal, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:153:42: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, false>, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >; Derived = Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:305:135: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'static void Eigen::internal::general_matrix_vector_product::run(Index, Index, const LhsMapper&, const RhsMapper&, ResScalar*, Index, ResScalar) [with Index = long long int; LhsScalar = double; LhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateLhs = false; RhsScalar = double; RhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateRhs = false; int Version = 1; ResScalar = double]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:145:123: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const ResScalar&) [with Index = long long int; int Mode = 6; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:332:12: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >; Dest = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; int Mode = 6; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; int Mode = 5; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = const Eigen::Block, -1, -1, false>, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:751:113: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>; int ProductTag = 7; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>; Derived = Eigen::internal::generic_product_impl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, Eigen::DenseShape, Eigen::TriangularShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:385:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 385 | conj_helper pcj;\\n\"},{\"type\":1,\"output\":\" | ^~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:385:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'static void Eigen::internal::general_matrix_vector_product::run(Index, Index, const LhsMapper&, const RhsMapper&, ResScalar*, Index, ResScalar) [with Index = long long int; LhsScalar = double; LhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateLhs = false; RhsScalar = double; RhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateRhs = false; int Version = 0; ResScalar = double]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:154:113: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const ResScalar&) [with Index = long long int; int Mode = 6; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:332:12: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >; Dest = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; int Mode = 6; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; int Mode = 5; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = const Eigen::Block, -1, -1, false>, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:751:113: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>; int ProductTag = 7; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>; Derived = Eigen::internal::generic_product_impl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, Eigen::DenseShape, Eigen::TriangularShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:385:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:385:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, 1, -1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:961:41: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:270:41: required from 'struct Eigen::internal::unary_evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:327:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:501:10: required from 'Derived& Eigen::DenseBase::setZero() [with Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:151:29: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Derived = Eigen::Block, -1, -1, false>, -1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:31: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Derived = Eigen::Block, -1, -1, false>, -1, -1, true>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:462:32: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >; Derived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:305:135: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:99:42: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:99:42: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:578:37: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:99:42: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:99:42: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:578:52: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index, Eigen::Index) const [with Lhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; int ProductTag = 8; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:631:63: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:99:42: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 1, -1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, 1, -1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase >, 1, -1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense >, 1, -1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product >, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:72:15: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 1, -1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, 1, -1, true> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, 1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, 1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl >, 1, -1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:578:37: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product >, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:72:15: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, 1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product >, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:72:15: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:578:52: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index, Eigen::Index) const [with Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; int ProductTag = 8; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Matrix; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Transpose >; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:631:63: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product >, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:72:15: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:32: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, true>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, true>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, 1, -1, true>, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:48: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:462:59: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Matrix; int Mode = 2; bool LhsIsTriangular = true; Lhs = Eigen::Matrix; Rhs = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, -1, -1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, -1, -1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase >, -1, -1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense >, -1, -1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:462:59: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Matrix; int Mode = 1; bool LhsIsTriangular = true; Lhs = const Eigen::Transpose >; Rhs = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:137:114: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const ResScalar&) [with Index = long long int; int Mode = 6; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:332:12: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >; Dest = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; int Mode = 6; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:961:41: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:270:41: required from 'struct Eigen::internal::unary_evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: [ skipping 29 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:270:41: required from 'struct Eigen::internal::unary_evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: [ skipping 27 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, true>, 1, -1, false> >, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >; Derived = Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:341:27: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase >, -1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase >, -1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase >, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 21 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, true>, 1, -1, false> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, true>, 1, -1, false> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, true>, 1, -1, false> >, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 1, -1, true>, 1, -1, false> >, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 19 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:282:54: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false> >; Rhs = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; Dest = Eigen::Transpose >; int Mode = 1; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Derived = Eigen::Block, -1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:31: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false> >, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Derived = Eigen::Block, -1, -1, true>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:462:32: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:270:41: required from 'struct Eigen::internal::unary_evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: [ skipping 19 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:99:42: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:99:42: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator >, 1, -1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator >, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:270:41: required from 'struct Eigen::internal::unary_evaluator >, 1, -1, true> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator >, 1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator >, 1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: [ skipping 19 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product >, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:72:15: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product >, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:72:15: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::OuterStride<> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::OuterStride<> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::OuterStride<> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Map.h:94:79: required from 'class Eigen::Map, 0, Eigen::OuterStride<> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:44:18: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::InnerStride<> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::InnerStride<> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::InnerStride<> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::InnerStride<> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::InnerStride<> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Map.h:94:79: required from 'class Eigen::Map, 0, Eigen::InnerStride<> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:48:18: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 22 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, -1, 1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::OuterStride<> >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::OuterStride<> >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::OuterStride<> >, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::OuterStride<> >, -1, 1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 19 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 20 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:66:56: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const RhsScalar&) [with Index = long long int; int Mode = 1; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:266:12: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'struct Eigen::internal::general_matrix_vector_product, 0, false, double, Eigen::internal::const_blas_data_mapper, false, 1>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:74:123: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const RhsScalar&) [with Index = long long int; int Mode = 1; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:266:12: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false> >; Rhs = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; Dest = Eigen::Transpose >; int Mode = 1; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Matrix; int Mode = 2; Lhs = Eigen::Block, 1, -1, true>, 1, -1, false>; Rhs = Eigen::Block, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:751:113: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::Block, 1, -1, true>, 1, -1, false>; Rhs = Eigen::TriangularView, -1, -1, false>, 2>; int ProductTag = 7; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Matrix; Lhs = Eigen::Block, 1, -1, true>, 1, -1, false>; Rhs = Eigen::TriangularView, -1, -1, false>, 2>; Derived = Eigen::internal::generic_product_impl, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, Eigen::DenseShape, Eigen::TriangularShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:75:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 75 | typedef typename conditional::type LhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:76:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 76 | typedef typename conditional::type RhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:77:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 77 | typedef typename conditional::type ResPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'static void Eigen::internal::general_matrix_vector_product::run(Index, Index, const LhsMapper&, const RhsMapper&, ResScalar*, Index, RhsScalar) [with Index = long long int; LhsScalar = double; LhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateLhs = false; RhsScalar = double; RhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateRhs = false; int Version = 1; ResScalar = double]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:74:123: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const RhsScalar&) [with Index = long long int; int Mode = 1; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:266:12: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false> >; Rhs = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; Dest = Eigen::Transpose >; int Mode = 1; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Matrix; int Mode = 2; Lhs = Eigen::Block, 1, -1, true>, 1, -1, false>; Rhs = Eigen::Block, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:751:113: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::Block, 1, -1, true>, 1, -1, false>; Rhs = Eigen::TriangularView, -1, -1, false>, 2>; int ProductTag = 7; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Matrix; Lhs = Eigen::Block, 1, -1, true>, 1, -1, false>; Rhs = Eigen::TriangularView, -1, -1, false>, 2>; Derived = Eigen::internal::generic_product_impl, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, Eigen::DenseShape, Eigen::TriangularShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:112:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 112 | conj_helper pcj;\\n\"},{\"type\":1,\"output\":\" | ^~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:112:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:578:75: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index, Eigen::Index) const [with Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; int ProductTag = 8; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Matrix; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Transpose >; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:631:63: required from 'void Eigen::internal::generic_dense_assignment_kernel::assignCoeff(Eigen::Index, Eigen::Index) [with DstEvaluatorTypeT = Eigen::internal::evaluator >; SrcEvaluatorTypeT = Eigen::internal::evaluator >, Eigen::Matrix, 1> >; Functor = Eigen::internal::assign_op; int Version = 0; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:645:16: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product >, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:72:15: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 18 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator >, -1, -1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator >, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 18 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, true>, 1, -1, false> >, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 1, -1, true>, 1, -1, false> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 19 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator >, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block >, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block >, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >; Derived = Eigen::Block >, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:282:27: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:961:41: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: [ skipping 22 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >; Functor = add_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >; Functor = Eigen::internal::add_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 20 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >; Functor = add_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >; Functor = Eigen::internal::add_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >; Func = add_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >; Func = add_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:177:18: required from 'Derived& Eigen::MatrixBase::operator+=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >; Derived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:66:28: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"exact_vol.cpp:110:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h: In function 'static void Eigen::internal::selfadjoint_product_impl::run(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, -1, 1, false>; Lhs = Eigen::Block, -1, -1, false>; int LhsMode = 17; Rhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:227:7: warning: 'result' may be used uninitialized [-Wmaybe-uninitialized]\\n\"},{\"type\":1,\"output\":\" 225 | internal::selfadjoint_matrix_vector_product::Flags&RowMajorBit) ? RowMajor : ColMajor,\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 226 | int(LhsUpLo), bool(LhsBlasTraits::NeedToConjugate), bool(RhsBlasTraits::NeedToConjugate)>::run\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 227 | (\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\" 228 | lhs.rows(), // size\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 229 | &lhs.coeffRef(0,0), lhs.outerStride(), // lhs info\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 230 | actualRhsPtr, // rhs info\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 231 | actualDestPtr, // result info\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 232 | actualAlpha // scale factor\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 233 | );\\n\"},{\"type\":1,\"output\":\" | ~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:39:24: note: by argument 4 of type 'const double*' to 'static void Eigen::internal::selfadjoint_matrix_vector_product::run(Index, const Scalar*, Index, const Scalar*, Scalar*, Scalar) [with Scalar = double; Index = long long int; int StorageOrder = 0; int UpLo = 1; bool ConjugateLhs = false; bool ConjugateRhs = false; int Version = 0]' declared here\\n\"},{\"type\":1,\"output\":\" 39 | EIGEN_DONT_INLINE void selfadjoint_matrix_vector_product::run(\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:507:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h: In static member function 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >; Dest = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; int Mode = 6]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:332:12: warning: 'result' may be used uninitialized [-Wmaybe-uninitialized]\\n\"},{\"type\":1,\"output\":\" 327 | internal::triangular_matrix_vector_product\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 328 | \\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 332 | ::run(actualLhs.rows(),actualLhs.cols(),\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 333 | actualLhs.data(),actualLhs.outerStride(),\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 334 | actualRhsPtr,1,\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 335 | dest.data(),dest.innerStride(),\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 336 | actualAlpha);\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:105:24: note: by argument 5 of type 'const double*' to 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const ResScalar&) [with Index = long long int; int Mode = 6; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0]' declared here\\n\"},{\"type\":1,\"output\":\" 105 | EIGEN_DONT_INLINE void triangular_matrix_vector_product\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"g++ -std=gnu++17 -I\\\"D:/Softwares/R/R-4.3.0/include\\\" -DNDEBUG -Iexternal -Iexternal/lpsolve/headers/run_headers -Iexternal/minimum_ellipsoid -Iinclude -Iinclude/convex_bodies/spectrahedra -I'D:/Softwares/R/R-4.3.0/library/Rcpp/include' -I'D:/Softwares/R/R-4.3.0/library/RcppEigen/include' -I'D:/Softwares/R/R-4.3.0/library/BH/include' -I\\\"D:/Softwares/RTools/rtools43/x86_64-w64-mingw32.static.posix/include\\\" -lm -ldl -DBOOST_NO_AUTO_PTR -O2 -Wall -mfpmath=sse -msse2 -mstackrealign -c frustum_of_simplex.cpp -o frustum_of_simplex.o\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:397,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Dense:1,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/RcppEigenForward.h:30,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/RcppEigen.h:25,\\n\"},{\"type\":1,\"output\":\" from frustum_of_simplex.cpp:8:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:60:39: warning: ignoring attributes on template argument '__m128' [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 60 | template<> struct is_arithmetic<__m128> { enum { value = true }; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:61:40: warning: ignoring attributes on template argument '__m128i' [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 61 | template<> struct is_arithmetic<__m128i> { enum { value = true }; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:62:40: warning: ignoring attributes on template argument '__m128d' [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 62 | template<> struct is_arithmetic<__m128d> { enum { value = true }; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:161:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 161 | template<> struct unpacket_traits { typedef float type; enum {size=4, alignment=Aligned16}; typedef Packet4f half; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:162:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 162 | template<> struct unpacket_traits { typedef double type; enum {size=2, alignment=Aligned16}; typedef Packet2d half; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:163:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 163 | template<> struct unpacket_traits { typedef int type; enum {size=4, alignment=Aligned16}; typedef Packet4i half; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:718:35: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 718 | struct palign_impl\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:741:35: warning: ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 741 | struct palign_impl\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:764:35: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 764 | struct palign_impl\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:778:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 778 | ptranspose(PacketBlock& kernel) {\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:783:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 783 | ptranspose(PacketBlock& kernel) {\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:790:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 790 | ptranspose(PacketBlock& kernel) {\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:377:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:15:70: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 15 | template<> struct conj_helper { \\\\\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:232:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL'\\n\"},{\"type\":1,\"output\":\" 232 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet2cf,Packet4f)\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:22:70: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 22 | template<> struct conj_helper { \\\\\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:232:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL'\\n\"},{\"type\":1,\"output\":\" 232 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet2cf,Packet4f)\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:15:70: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 15 | template<> struct conj_helper { \\\\\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:417:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL'\\n\"},{\"type\":1,\"output\":\" 417 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet1cd,Packet2d)\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:22:70: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 22 | template<> struct conj_helper { \\\\\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:417:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL'\\n\"},{\"type\":1,\"output\":\" 417 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet1cd,Packet2d)\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:370:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:243:49: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SSE.h:24:46: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(4) float>::half' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:439:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:46:50: required from 'class Eigen::QuaternionBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:250:7: required from 'class Eigen::Quaternion'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SSE.h:27:3: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:243:49: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SSE.h:88:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:46:50: required from 'class Eigen::QuaternionBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:250:7: required from 'class Eigen::Quaternion'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SSE.h:92:3: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/SparseCore:37,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Sparse:26,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/RcppEigenForward.h:31:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h: In instantiation of 'class Eigen::SparseMatrixBase >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseCompressedBase.h:36:7: required from 'class Eigen::SparseCompressedBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrix.h:96:7: required from 'class Eigen::SparseMatrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/IterativeSolvers/ConstrainedConjGrad.h:61:25: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h:47:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 47 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h:168:29: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) long long int>::half' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h:168:29: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h:178:72: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h:179:36: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"g++ -std=gnu++17 -I\\\"D:/Softwares/R/R-4.3.0/include\\\" -DNDEBUG -Iexternal -Iexternal/lpsolve/headers/run_headers -Iexternal/minimum_ellipsoid -Iinclude -Iinclude/convex_bodies/spectrahedra -I'D:/Softwares/R/R-4.3.0/library/Rcpp/include' -I'D:/Softwares/R/R-4.3.0/library/RcppEigen/include' -I'D:/Softwares/R/R-4.3.0/library/BH/include' -I\\\"D:/Softwares/RTools/rtools43/x86_64-w64-mingw32.static.posix/include\\\" -lm -ldl -DBOOST_NO_AUTO_PTR -O2 -Wall -mfpmath=sse -msse2 -mstackrealign -c inner_ball.cpp -o inner_ball.o\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:397,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Dense:1,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/RcppEigenForward.h:30,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/RcppEigen.h:25,\\n\"},{\"type\":1,\"output\":\" from inner_ball.cpp:7:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:60:39: warning: ignoring attributes on template argument '__m128' [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 60 | template<> struct is_arithmetic<__m128> { enum { value = true }; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:61:40: warning: ignoring attributes on template argument '__m128i' [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 61 | template<> struct is_arithmetic<__m128i> { enum { value = true }; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:62:40: warning: ignoring attributes on template argument '__m128d' [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 62 | template<> struct is_arithmetic<__m128d> { enum { value = true }; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:161:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 161 | template<> struct unpacket_traits { typedef float type; enum {size=4, alignment=Aligned16}; typedef Packet4f half; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:162:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 162 | template<> struct unpacket_traits { typedef double type; enum {size=2, alignment=Aligned16}; typedef Packet2d half; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:163:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 163 | template<> struct unpacket_traits { typedef int type; enum {size=4, alignment=Aligned16}; typedef Packet4i half; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:718:35: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 718 | struct palign_impl\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:741:35: warning: ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 741 | struct palign_impl\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:764:35: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 764 | struct palign_impl\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:778:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 778 | ptranspose(PacketBlock& kernel) {\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:783:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 783 | ptranspose(PacketBlock& kernel) {\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:790:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 790 | ptranspose(PacketBlock& kernel) {\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:377:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:15:70: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 15 | template<> struct conj_helper { \\\\\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:232:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL'\\n\"},{\"type\":1,\"output\":\" 232 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet2cf,Packet4f)\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:22:70: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 22 | template<> struct conj_helper { \\\\\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:232:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL'\\n\"},{\"type\":1,\"output\":\" 232 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet2cf,Packet4f)\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:15:70: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 15 | template<> struct conj_helper { \\\\\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:417:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL'\\n\"},{\"type\":1,\"output\":\" 417 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet1cd,Packet2d)\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:22:70: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 22 | template<> struct conj_helper { \\\\\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:417:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL'\\n\"},{\"type\":1,\"output\":\" 417 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet1cd,Packet2d)\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:370:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:243:49: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SSE.h:24:46: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(4) float>::half' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:439:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:46:50: required from 'class Eigen::QuaternionBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:250:7: required from 'class Eigen::Quaternion'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SSE.h:27:3: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:243:49: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SSE.h:88:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:46:50: required from 'class Eigen::QuaternionBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:250:7: required from 'class Eigen::Quaternion'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SSE.h:92:3: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/SparseCore:37,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Sparse:26,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/RcppEigenForward.h:31:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h: In instantiation of 'class Eigen::SparseMatrixBase >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseCompressedBase.h:36:7: required from 'class Eigen::SparseCompressedBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrix.h:96:7: required from 'class Eigen::SparseMatrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/IterativeSolvers/ConstrainedConjGrad.h:61:25: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h:47:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 47 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h:168:29: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) long long int>::half' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h:168:29: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h:178:72: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h:179:36: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/aux_/na_assert.hpp:23,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/arg.hpp:25,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/placeholders.hpp:24,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/iterator/iterator_categories.hpp:16,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/iterator/iterator_concepts.hpp:10,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/range/concepts.hpp:20,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/range/size_type.hpp:20,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/range/size.hpp:21,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/random/hyperexponential_distribution.hpp:29,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/random.hpp:70,\\n\"},{\"type\":1,\"output\":\" from inner_ball.cpp:10:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp:194:21: warning: unnecessary parentheses in declaration of 'assert_arg' [-Wparentheses]\\n\"},{\"type\":1,\"output\":\" 194 | failed ************ (Pred::************\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 195 | assert_arg( void (*)(Pred), typename assert_arg_pred::type )\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 196 | );\\n\"},{\"type\":1,\"output\":\" | ~ \\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp:194:21: note: remove parentheses\\n\"},{\"type\":1,\"output\":\" 194 | failed ************ (Pred::************\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" | -\\n\"},{\"type\":1,\"output\":\" 195 | assert_arg( void (*)(Pred), typename assert_arg_pred::type )\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 196 | );\\n\"},{\"type\":1,\"output\":\" | ~ \\n\"},{\"type\":1,\"output\":\" | -\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp:199:21: warning: unnecessary parentheses in declaration of 'assert_not_arg' [-Wparentheses]\\n\"},{\"type\":1,\"output\":\" 199 | failed ************ (boost::mpl::not_::************\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 200 | assert_not_arg( void (*)(Pred), typename assert_arg_pred_not::type )\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 201 | );\\n\"},{\"type\":1,\"output\":\" | ~ \\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp:199:21: note: remove parentheses\\n\"},{\"type\":1,\"output\":\" 199 | failed ************ (boost::mpl::not_::************\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" | -\\n\"},{\"type\":1,\"output\":\" 200 | assert_not_arg( void (*)(Pred), typename assert_arg_pred_not::type )\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 201 | );\\n\"},{\"type\":1,\"output\":\" | ~ \\n\"},{\"type\":1,\"output\":\" | -\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/traits.hpp:21,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/storage.hpp:27,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/vector.hpp:21,\\n\"},{\"type\":1,\"output\":\" from external/minimum_ellipsoid/khach.h:25,\\n\"},{\"type\":1,\"output\":\" from include/convex_bodies/vpolytope.h:19,\\n\"},{\"type\":1,\"output\":\" from include/volume/volume_sequence_of_balls.hpp:27,\\n\"},{\"type\":1,\"output\":\" from inner_ball.cpp:14:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/detail/iterator.hpp:111:21: warning: 'template struct std::iterator' is deprecated [-Wdeprecated-declarations]\\n\"},{\"type\":1,\"output\":\" 111 | public std::iterator {\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~\\n\"},{\"type\":1,\"output\":\"In file included from d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\bits\\\\stl_algobase.h:65,\\n\"},{\"type\":1,\"output\":\" from d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\bits\\\\specfun.h:45,\\n\"},{\"type\":1,\"output\":\" from d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\cmath:1935,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/Rcpp/include/Rcpp/platform/compiler.h:100,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/Rcpp/include/Rcpp/r/headers.h:62,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/Rcpp/include/RcppCommon.h:30,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/Rcpp/include/Rcpp.h:27,\\n\"},{\"type\":1,\"output\":\" from inner_ball.cpp:6:\\n\"},{\"type\":1,\"output\":\"d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\bits\\\\stl_iterator_base_types.h:127:34: note: declared here\\n\"},{\"type\":1,\"output\":\" 127 | struct _GLIBCXX17_DEPRECATED iterator\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/detail/iterator.hpp:149:21: warning: 'template struct std::iterator' is deprecated [-Wdeprecated-declarations]\\n\"},{\"type\":1,\"output\":\" 149 | public std::iterator {\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~\\n\"},{\"type\":1,\"output\":\"d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\bits\\\\stl_iterator_base_types.h:127:34: note: declared here\\n\"},{\"type\":1,\"output\":\" 127 | struct _GLIBCXX17_DEPRECATED iterator\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/detail/iterator.hpp:204:21: warning: 'template struct std::iterator' is deprecated [-Wdeprecated-declarations]\\n\"},{\"type\":1,\"output\":\" 204 | public std::iterator {\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~\\n\"},{\"type\":1,\"output\":\"d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\bits\\\\stl_iterator_base_types.h:127:34: note: declared here\\n\"},{\"type\":1,\"output\":\" 127 | struct _GLIBCXX17_DEPRECATED iterator\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:52:25: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:52:25: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"include/cartesian_geom/point.h:22:53: required from 'class point >'\\n\"},{\"type\":1,\"output\":\"d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\bits\\\\stl_pair.h:191:11: required from 'struct std::pair >, double>'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:67:27: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:79:59: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h: In instantiation of 'std::pair VPolytope::ComputeInnerBall() [with Point = point >; typename Point::FT = double]':\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:80:44: required from here\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:278:30: warning: comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 278 | for ( i=0; i < rpit->dimension(); i++){\\n\"},{\"type\":1,\"output\":\" | ~~^~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:41: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h: In instantiation of 'bool VPolytope::get_points_for_rounding(PointList&) [with PointList = std::__cxx11::list >, std::allocator > > >; Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:267:37: required from 'std::pair VPolytope::ComputeInnerBall() [with Point = point >; typename Point::FT = double]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:80:44: required from here\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:408:30: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 408 | if (num_of_vertices()>20*_d) {\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~^~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 1, -1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, 1, -1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, 1, -1, false>'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:415:26: required from 'bool VPolytope::get_points_for_rounding(PointList&) [with PointList = std::__cxx11::list >, std::allocator > > >; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:267:37: required from 'std::pair VPolytope::ComputeInnerBall() [with Point = point >; typename Point::FT = double]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:80:44: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h: In instantiation of 'bool VPolytope::get_points_for_rounding(PointList&) [with PointList = std::__cxx11::list >, std::allocator > > >; Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:267:37: required from 'std::pair VPolytope::ComputeInnerBall() [with Point = point >; typename Point::FT = double]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:80:44: required from here\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:411:22: warning: unused variable 'j' [-Wunused-variable]\\n\"},{\"type\":1,\"output\":\" 411 | unsigned int j;\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"In file included from include/convex_bodies/vpolytope.h:18:\\n\"},{\"type\":1,\"output\":\"include/lp_oracles/vpolyoracles.h: In instantiation of 'std::pair<_FIter, _FIter> intersect_double_line_Vpoly(const MT&, const Point&, const Point&, NT*, int*) [with NT = double; MT = Eigen::Matrix; Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:297:50: required from 'std::pair VPolytope::ComputeInnerBall() [with Point = point >; typename Point::FT = double]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:80:44: required from here\\n\"},{\"type\":1,\"output\":\"include/lp_oracles/vpolyoracles.h:311:8: warning: unused variable 'res' [-Wunused-variable]\\n\"},{\"type\":1,\"output\":\" 311 | NT res;\\n\"},{\"type\":1,\"output\":\" | ^~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base >, Eigen::Matrix, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl >, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product >, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:72:31: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix, const Eigen::Transpose > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix, const Eigen::Transpose > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix, const Eigen::Transpose > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Matrix, const Eigen::Transpose >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:73:24: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:73:45: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:73:45: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Diagonal.h:63:53: required from 'class Eigen::Diagonal, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:91:21: required from 'class Eigen::Tridiagonalization >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:105:62: required from 'class Eigen::SelfAdjointEigenSolver >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Diagonal.h:63:53: required from 'class Eigen::Diagonal, -1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:96:21: required from 'class Eigen::Tridiagonalization >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:105:62: required from 'class Eigen::SelfAdjointEigenSolver >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:438:19: required from 'class Eigen::ColPivHouseholderQR >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:247:10: required from 'struct Eigen::internal::qr_preconditioner_impl, 2, 0, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:607:110: required from 'class Eigen::JacobiSVD, 2>'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:93:40: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"In file included from include/convex_bodies/hpolytope.h:17,\\n\"},{\"type\":1,\"output\":\" from include/volume/volume_sequence_of_balls.hpp:26:\\n\"},{\"type\":1,\"output\":\"include/lp_oracles/solve_lp.h: In instantiation of 'Point PointInIntersection(MT, MT, Point, bool&) [with VT = Eigen::Matrix; MT = Eigen::Matrix; Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:128:32: required from 'bool IntersectionOfVpoly::is_feasible() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:99:35: required from here\\n\"},{\"type\":1,\"output\":\"include/lp_oracles/solve_lp.h:204:19: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 204 | for (i = 0; i< d+2; ++i) {\\n\"},{\"type\":1,\"output\":\" | ~^~~~~\\n\"},{\"type\":1,\"output\":\"include/lp_oracles/solve_lp.h:206:19: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 206 | for(j=0; j >, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base >, Eigen::Matrix, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl >, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product >, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"include/lp_oracles/solve_lp.h:289:23: required from 'Point PointInIntersection(MT, MT, Point, bool&) [with VT = Eigen::Matrix; MT = Eigen::Matrix; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:128:32: required from 'bool IntersectionOfVpoly::is_feasible() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:99:35: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"In file included from include/cartesian_geom/cartesian_kernel.h:25,\\n\"},{\"type\":1,\"output\":\" from inner_ball.cpp:9:\\n\"},{\"type\":1,\"output\":\"include/cartesian_geom/point.h: In instantiation of 'bool point::operator==(point&) const [with K = Cartesian]':\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:154:22: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:100:47: required from here\\n\"},{\"type\":1,\"output\":\"include/cartesian_geom/point.h:157:21: warning: comparison of integer expressions of different signedness: 'int' and 'const unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 157 | for (i=0 ; i, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, 1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, -1, 1, true, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, -1, 1, true>'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:193:18: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:100:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Matrix, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:193:48: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:100:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Inverse.h:69:7: required from 'class Eigen::InverseImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Inverse.h:43:7: required from 'class Eigen::Inverse >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:22: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:100:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, Eigen::Matrix, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:204:15: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:100:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, Eigen::Matrix, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:207:16: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:100:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:208:20: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:100:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:208:20: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:100:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:433:34: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:683:29: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, -1, -1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:689:32: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:689:60: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Diagonal.h:63:53: required from 'class Eigen::Diagonal, const Eigen::Matrix >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:697:61: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, -1, 1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:757:62: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/VectorBlock.h:56:47: required from 'class Eigen::VectorBlock, -1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:769:65: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:40: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, 1, -1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::norm() const [with Derived = Eigen::Block, 1, -1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:199:31: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:100:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:40: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Matrix; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::norm() const [with Derived = Eigen::Matrix; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:205:25: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:100:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/TriangularMatrix.h:174:44: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:232:121: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/misc/RealSvd2x2.h:25:26: required from 'void Eigen::internal::real_2x2_jacobi_svd(const MatrixType&, Index, Index, Eigen::JacobiRotation*, Eigen::JacobiRotation*) [with MatrixType = Eigen::Matrix; RealScalar = double; Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:722:42: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Block, 1, -1, false>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Block, 1, -1, false>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Block, 1, -1, false>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:415:19: required from 'bool VPolytope::get_points_for_rounding(PointList&) [with PointList = std::__cxx11::list >, std::allocator > > >; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:267:37: required from 'std::pair VPolytope::ComputeInnerBall() [with Point = point >; typename Point::FT = double]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:80:44: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:327:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:662:21: required from 'Derived& Eigen::PlainObjectBase::setOnes(Eigen::Index, Eigen::Index) [with Derived = Eigen::Matrix; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:420:22: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Diagonal.h:63:53: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Diagonal.h:63:53: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:520:87: required from 'Eigen::ComputationInfo Eigen::internal::computeFromTridiagonal_impl(DiagType&, SubDiagType&, Eigen::Index, bool, MatrixType&) [with MatrixType = Eigen::Matrix; DiagType = Eigen::Matrix; SubDiagType = Eigen::Matrix; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:439:49: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, true>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, 2, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, 2, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, 2, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, 2, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, 2, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, 2, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/misc/RealSvd2x2.h:46:19: required from 'void Eigen::internal::real_2x2_jacobi_svd(const MatrixType&, Index, Index, Eigen::JacobiRotation*, Eigen::JacobiRotation*) [with MatrixType = Eigen::Matrix; RealScalar = double; Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:722:42: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:174:81: required from 'class Eigen::DenseBase, 1, 2, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, 2, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, 2, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: required from 'class Eigen::MapBase, 1, 2, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 1, 2, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/misc/RealSvd2x2.h:46:19: required from 'void Eigen::internal::real_2x2_jacobi_svd(const MatrixType&, Index, Index, Eigen::JacobiRotation*, Eigen::JacobiRotation*) [with MatrixType = Eigen::Matrix; RealScalar = double; Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:722:42: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:445:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:454:5: required from 'void Eigen::internal::apply_rotation_in_the_plane(Eigen::DenseBase&, Eigen::DenseBase&, const Eigen::JacobiRotation&) [with VectorX = Eigen::Block, 1, -1, false>; VectorY = Eigen::Block, 1, -1, false>; OtherScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:281:40: required from 'void Eigen::MatrixBase::applyOnTheLeft(Eigen::Index, Eigen::Index, const Eigen::JacobiRotation&) [with OtherScalar = double; Derived = Eigen::Matrix; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:725:40: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:454:5: required from 'void Eigen::internal::apply_rotation_in_the_plane(Eigen::DenseBase&, Eigen::DenseBase&, const Eigen::JacobiRotation&) [with VectorX = Eigen::Block, -1, 1, true>; VectorY = Eigen::Block, -1, 1, true>; OtherScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:296:40: required from 'void Eigen::MatrixBase::applyOnTheRight(Eigen::Index, Eigen::Index, const Eigen::JacobiRotation&) [with OtherScalar = double; Derived = Eigen::Matrix; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:726:53: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:71:51: required from 'class Eigen::internal::visitor_evaluator, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:110:17: required from 'void Eigen::DenseBase::visit(Visitor&) const [with Visitor = Eigen::internal::max_coeff_visitor, -1, 1, false> >; Derived = Eigen::Block, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:266:14: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::maxCoeff(IndexType*) const [with IndexType = long long int; Derived = Eigen::Block, -1, 1, false>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:769:88: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:368:46: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:368:35: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:520:87: required from 'Eigen::ComputationInfo Eigen::internal::computeFromTridiagonal_impl(DiagType&, SubDiagType&, Eigen::Index, bool, MatrixType&) [with MatrixType = Eigen::Matrix; DiagType = Eigen::Matrix; SubDiagType = Eigen::Matrix; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:439:49: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:163:27: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:165:25: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:166:55: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, false> >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, false> >, 0, 5>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, false> >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, false> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:166:34: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:126:41: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:128:25: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:129:29: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0, 5>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:129:41: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/TriangularMatrix.h:174:44: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:92:96: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 2>, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 2>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 2>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, 2>, Eigen::Matrix, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, 2>, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, 2>, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:94:66: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/TriangularMatrix.h:174:44: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 1>, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, 1>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, 1>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base >, 1>, Eigen::Matrix, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl >, 1>, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product >, 1>, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:95:66: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 5>, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, 5>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, 5>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, 5>, Eigen::Matrix, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, false>, 5>, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false>, 5>, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:96:22: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:747:33: required from 'static Derived& Eigen::internal::setIdentity_impl::run(Derived&) [with Derived = Eigen::Matrix; bool Big = false]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:776:50: required from 'Derived& Eigen::MatrixBase::setIdentity() [with Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:793:21: required from 'Derived& Eigen::MatrixBase::setIdentity(Eigen::Index, Eigen::Index) [with Derived = Eigen::Matrix; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:690:45: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, 2, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:454:5: required from 'void Eigen::internal::apply_rotation_in_the_plane(Eigen::DenseBase&, Eigen::DenseBase&, const Eigen::JacobiRotation&) [with VectorX = Eigen::Block, 1, 2, false>; VectorY = Eigen::Block, 1, 2, false>; OtherScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:281:40: required from 'void Eigen::MatrixBase::applyOnTheLeft(Eigen::Index, Eigen::Index, const Eigen::JacobiRotation&) [with OtherScalar = double; Derived = Eigen::Matrix; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/misc/RealSvd2x2.h:46:19: required from 'void Eigen::internal::real_2x2_jacobi_svd(const MatrixType&, Index, Index, Eigen::JacobiRotation*, Eigen::JacobiRotation*) [with MatrixType = Eigen::Matrix; RealScalar = double; Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:722:42: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseUnaryOp, const Eigen::Matrix >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_max_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Matrix > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_max_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Matrix >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:438:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::maxCoeff() const [with Derived = Eigen::CwiseUnaryOp, const Eigen::Matrix >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:433:45: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, -1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, -1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, true>, -1, 1, false>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:454:5: required from 'void Eigen::internal::apply_rotation_in_the_plane(Eigen::DenseBase&, Eigen::DenseBase&, const Eigen::JacobiRotation&) [with VectorX = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; VectorY = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; OtherScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:296:40: required from 'void Eigen::MatrixBase::applyOnTheRight(Eigen::Index, Eigen::Index, const Eigen::JacobiRotation&) [with OtherScalar = double; Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:862:24: required from 'void Eigen::internal::tridiagonal_qr_step(RealScalar*, RealScalar*, Index, Index, Scalar*, Index) [with int StorageOrder = 0; RealScalar = double; Scalar = double; Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:520:87: required from 'Eigen::ComputationInfo Eigen::internal::computeFromTridiagonal_impl(DiagType&, SubDiagType&, Eigen::Index, bool, MatrixType&) [with MatrixType = Eigen::Matrix; DiagType = Eigen::Matrix; SubDiagType = Eigen::Matrix; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:439:49: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:126:38: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:126:41: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0, 5>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:129:41: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, true>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false>, -1, 1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, 1, true>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false>, -1, 1, true>, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:63:90: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:63:57: required from 'void Eigen::internal::make_block_householder_triangular_factor(TriangularFactorType&, const VectorsType&, const CoeffsType&) [with TriangularFactorType = Eigen::Matrix; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false>, -1, -1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:64:57: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:67:61: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseUnaryOp, const Eigen::Matrix >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Matrix > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Matrix >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseUnaryOp, const Eigen::Matrix >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:46: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Matrix; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::norm() const [with Derived = Eigen::Matrix; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:205:25: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:100:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, true>, -1, 1, false>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, 1, true>, -1, 1, false>, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:91:22: required from 'void Eigen::MatrixBase::makeHouseholder(EssentialPart&, Scalar&, RealScalar&) const [with EssentialPart = Eigen::VectorBlock, -1, 1, true>, -1, 1, false>, -1>; Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; Scalar = double; RealScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:45:18: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:44: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block, -1, 1, false>; U = Eigen::Block, -1, 1, true>, -1, 1, false>; bool NeedToTranspose = false; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false>, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, false>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, 1, false>, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointRank2Update.h:33:74: required from 'static void Eigen::internal::selfadjoint_rank2_update_selector::run(Scalar*, Index, const UType&, const VType&, const Scalar&) [with Scalar = double; Index = long long int; UType = Eigen::Block, -1, 1, true>, -1, 1, false>; VType = Eigen::Block, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointRank2Update.h:86:10: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointRank2Update.h:34:60: required from 'static void Eigen::internal::selfadjoint_rank2_update_selector::run(Scalar*, Index, const UType&, const VType&, const Scalar&) [with Scalar = double; Index = long long int; UType = Eigen::Block, -1, 1, true>, -1, 1, false>; VType = Eigen::Block, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointRank2Update.h:86:10: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointRank2Update.h:34:23: required from 'static void Eigen::internal::selfadjoint_rank2_update_selector::run(Scalar*, Index, const UType&, const VType&, const Scalar&) [with Scalar = double; Index = long long int; UType = Eigen::Block, -1, 1, true>, -1, 1, false>; VType = Eigen::Block, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointRank2Update.h:86:10: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, -1, 1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:40: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, -1, 1, true>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:71:51: required from 'class Eigen::internal::visitor_evaluator, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:110:17: required from 'void Eigen::DenseBase::visit(Visitor&) const [with Visitor = Eigen::internal::max_coeff_visitor, 1, -1, false> >; Derived = Eigen::Block, 1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:266:14: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::maxCoeff(IndexType*) const [with IndexType = long long int; Derived = Eigen::Block, 1, -1, false>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:519:90: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:475:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:40: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Inverse.h:69:7: required from 'class Eigen::InverseImpl >, Eigen::SolverStorage>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Inverse.h:43:7: required from 'class Eigen::Inverse > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/InverseImpl.h:28:43: required from 'static void Eigen::internal::compute_inverse::run(const MatrixType&, ResultType&) [with MatrixType = Eigen::Matrix; ResultType = Eigen::Matrix; int Size = -1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/InverseImpl.h:310:60: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:100:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:40: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:76:71: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, true>, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:141:7: required from 'Eigen::DenseCoeffsBase::CoeffReturnType Eigen::DenseCoeffsBase::coeff(Eigen::Index) const [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; CoeffReturnType = const double&; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:77:20: required from 'void Eigen::MatrixBase::makeHouseholder(EssentialPart&, Scalar&, RealScalar&) const [with EssentialPart = Eigen::VectorBlock, -1, 1, true>, -1, 1, false>, -1>; Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; Scalar = double; RealScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:45:18: required from 'void Eigen::MatrixBase::makeHouseholderInPlace(Scalar&, RealScalar&) [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; Scalar = double; RealScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:361:59: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, CoeffVectorType&) [with MatrixType = Eigen::Matrix; CoeffVectorType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:445:31: required from 'static void Eigen::internal::tridiagonalization_inplace_selector::run(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix; MatrixType = Eigen::Matrix; int Size = -1; bool IsComplex = false]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:961:41: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:369:102: required from 'struct Eigen::internal::plain_object_eval, -1, -1, false>, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:369:45: required from 'struct Eigen::internal::generic_product_impl, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Src = Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/NoAlias.h:42:31: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:369:102: required from 'struct Eigen::internal::plain_object_eval, -1, -1, false>, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:369:45: required from 'struct Eigen::internal::generic_product_impl, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Src = Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/NoAlias.h:42:31: required from 'ExpressionType& Eigen::NoAlias::operator=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>; ExpressionType = Eigen::Map, 0, Eigen::Stride<0, 0> >; StorageBase = Eigen::MatrixBase]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:163:19: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:369:102: required from 'struct Eigen::internal::plain_object_eval, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:370:45: required from 'struct Eigen::internal::generic_product_impl, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Src = Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/NoAlias.h:42:31: required from 'ExpressionType& Eigen::NoAlias::operator=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>; ExpressionType = Eigen::Map, 0, Eigen::Stride<0, 0> >; StorageBase = Eigen::MatrixBase]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:163:19: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:141:7: required from 'Eigen::DenseCoeffsBase::CoeffReturnType Eigen::DenseCoeffsBase::coeff(Eigen::Index) const [with Derived = Eigen::Block, -1, 1, false>; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:181:19: required from 'Eigen::DenseCoeffsBase::CoeffReturnType Eigen::DenseCoeffsBase::operator()(Eigen::Index) const [with Derived = Eigen::Block, -1, 1, false>; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:63:53: required from 'void Eigen::internal::make_block_householder_triangular_factor(TriangularFactorType&, const VectorsType&, const CoeffsType&) [with TriangularFactorType = Eigen::Matrix; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::Matrix; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_max_op; Derived = Eigen::internal::redux_evaluator >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_max_op; Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:438:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::maxCoeff() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:509:85: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:475:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Matrix; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Matrix; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:689:18: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:499:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'struct Eigen::internal::general_matrix_vector_product, 1, false, double, Eigen::internal::const_blas_data_mapper, false, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:339:132: required from 'static void Eigen::internal::gemv_dense_selector<2, 1, true>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; Dest = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:383:34: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Matrix; Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; Derived = Eigen::internal::generic_product_impl >, Eigen::Matrix, Eigen::DenseShape, Eigen::DenseShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: required from 'static void Eigen::internal::generic_product_impl_base::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; Derived = Eigen::internal::generic_product_impl >, Eigen::Matrix, Eigen::DenseShape, Eigen::DenseShape, 7>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/lp_oracles/solve_lp.h:289:7: required from 'Point PointInIntersection(MT, MT, Point, bool&) [with VT = Eigen::Matrix; MT = Eigen::Matrix; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:128:32: required from 'bool IntersectionOfVpoly::is_feasible() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:99:35: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:351:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 351 | typedef typename conditional::type LhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:352:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 352 | typedef typename conditional::type RhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:353:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 353 | typedef typename conditional::type ResPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/lp_oracles/solve_lp.h:289:7: required from 'Point PointInIntersection(MT, MT, Point, bool&) [with VT = Eigen::Matrix; MT = Eigen::Matrix; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:128:32: required from 'bool IntersectionOfVpoly::is_feasible() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:99:35: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, true>, -1, 1, false>, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, 1, true>, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:522:41: required from 'struct Eigen::internal::unary_evaluator, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::Block, -1, -1, false>, -1, 1, true>; Functor = add_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::Block, -1, -1, false>, -1, 1, true>; Functor = Eigen::internal::add_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Src = Eigen::Block, -1, -1, false>, -1, 1, true>; Func = add_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Src = Eigen::Block, -1, -1, false>, -1, 1, true>; Func = add_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:177:18: required from 'Derived& Eigen::MatrixBase::operator+=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::Block, -1, -1, false>, -1, 1, true>; Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:164:9: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, -1, false>, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::Block, -1, -1, false>, 1, -1, false>; Functor = add_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::Block, -1, -1, false>, 1, -1, false>; Functor = Eigen::internal::add_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Src = Eigen::Block, -1, -1, false>, 1, -1, false>; Func = add_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Src = Eigen::Block, -1, -1, false>, 1, -1, false>; Func = add_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:177:18: required from 'Derived& Eigen::MatrixBase::operator+=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::Block, -1, -1, false>, 1, -1, false>; Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:127:9: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'static void Eigen::internal::general_matrix_vector_product::run(Index, Index, const LhsMapper&, const RhsMapper&, ResScalar*, Index, ResScalar) [with Index = long long int; LhsScalar = double; LhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateLhs = false; RhsScalar = double; RhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateRhs = false; int Version = 0; ResScalar = double]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:339:132: required from 'static void Eigen::internal::gemv_dense_selector<2, 1, true>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; Dest = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:383:34: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Matrix; Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; Derived = Eigen::internal::generic_product_impl >, Eigen::Matrix, Eigen::DenseShape, Eigen::DenseShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: required from 'static void Eigen::internal::generic_product_impl_base::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; Derived = Eigen::internal::generic_product_impl >, Eigen::Matrix, Eigen::DenseShape, Eigen::DenseShape, 7>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/lp_oracles/solve_lp.h:289:7: required from 'Point PointInIntersection(MT, MT, Point, bool&) [with VT = Eigen::Matrix; MT = Eigen::Matrix; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:128:32: required from 'bool IntersectionOfVpoly::is_feasible() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:99:35: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:385:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 385 | conj_helper pcj;\\n\"},{\"type\":1,\"output\":\" | ^~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:385:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, Eigen::Matrix, 1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, Eigen::Matrix, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::Matrix, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base >, Eigen::Matrix, 1, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl >, Eigen::Matrix, 1, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product >, Eigen::Matrix, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:436:50: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product >, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:72:15: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, false>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:165:45: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:51: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block, -1, 1, false>; U = Eigen::Block, -1, 1, true>, -1, 1, false>; bool NeedToTranspose = false; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: required from 'typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType Eigen::MatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Block, -1, 1, true>, -1, 1, false>; Derived = Eigen::Block, -1, 1, false>; typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType = double; typename Eigen::internal::traits::Scalar = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:370:86: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true> >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Block, -1, 1, true> > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:46: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, -1, 1, true>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::norm() const [with Derived = Eigen::Block, -1, 1, true>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:505:52: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Block, -1, 1, true>, -1, 1, false> > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:46: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::norm() const [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:565:77: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:327:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:501:10: required from 'Derived& Eigen::DenseBase::setZero() [with Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:16: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, Eigen::internal::member_sum, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix >, Eigen::internal::member_sum, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix >, Eigen::internal::member_sum, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/VectorwiseOp.h:56:7: required from 'class Eigen::PartialReduxExpr, const Eigen::Matrix >, Eigen::internal::member_sum, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:523:46: required from 'void Eigen::PartialPivLU::compute() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:100:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix, 1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, Eigen::Matrix, 1, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, Eigen::Matrix, 1, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, Eigen::Matrix, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:436:50: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:204:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:100:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:46: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:76:71: required from 'void Eigen::MatrixBase::makeHouseholder(EssentialPart&, Scalar&, RealScalar&) const [with EssentialPart = Eigen::VectorBlock, -1, 1, true>, -1, 1, false>, -1>; Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; Scalar = double; RealScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:45:18: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 2, Eigen::Stride<0, 0> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 2, Eigen::Stride<0, 0> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 2, Eigen::Stride<0, 0> >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 2, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 2, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 2, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, false>, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'struct Eigen::internal::general_matrix_vector_product, 0, false, double, Eigen::internal::const_blas_data_mapper, false, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:244:134: required from 'static void Eigen::internal::gemv_dense_selector<2, 0, true>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; Dest = Eigen::Map, 0, Eigen::Stride<0, 0> >; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:383:34: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: required from 'static void Eigen::internal::generic_product_impl_base::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:75:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 75 | typedef typename conditional::type LhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:76:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 76 | typedef typename conditional::type RhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:77:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 77 | typedef typename conditional::type ResPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 2, Eigen::Stride<0, 0> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 2, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 2, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 2, Eigen::Stride<0, 0> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 2, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:287:40: required from 'static void Eigen::internal::gemv_dense_selector<2, 0, true>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; Dest = Eigen::Map, 0, Eigen::Stride<0, 0> >; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:383:34: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, 0, Eigen::Stride<0, 0> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:197:26: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false> > >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, 1, false> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:197:43: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:961:41: required from 'struct Eigen::internal::evaluator, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false>; SrcXprType = Eigen::Matrix; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false>; SrcXprType = Eigen::Matrix; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Src = Eigen::Matrix; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:797:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Src = Eigen::Product, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, true>, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false>; SrcXprType = Eigen::Matrix; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false>; SrcXprType = Eigen::Matrix; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Src = Eigen::Matrix; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:797:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Src = Eigen::Product, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Src = Eigen::Product, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Assign.h:66:28: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:496:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: In instantiation of 'class Eigen::internal::gebp_traits':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:92:29: required from 'struct Eigen::internal::product_triangular_matrix_matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:443:12: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, -1, -1, false>; int Mode = 5; bool LhsIsTriangular = true; Lhs = const Eigen::Block, -1, -1, false>; Rhs = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, -1, -1, false>; Lhs = Eigen::TriangularView, -1, -1, false>, 5>; Rhs = Eigen::Matrix; int ProductTag = 8; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Block, -1, -1, false>; Lhs = Eigen::TriangularView, -1, -1, false>, 5>; Rhs = Eigen::Matrix; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, 5>, Eigen::Matrix, Eigen::TriangularShape, Eigen::DenseShape, 8>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:357:18: required from 'static void Eigen::internal::generic_product_impl_base::subTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Block, -1, -1, false>; Lhs = Eigen::TriangularView, -1, -1, false>, 5>; Rhs = Eigen::Matrix; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, 5>, Eigen::Matrix, Eigen::TriangularShape, Eigen::DenseShape, 8>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:178:42: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:391:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 391 | typedef typename conditional::type LhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:392:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 392 | typedef typename conditional::type RhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:393:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 393 | typedef typename conditional::type ResPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:59: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, -1, -1, false>; int Mode = 5; bool LhsIsTriangular = true; Lhs = const Eigen::Block, -1, -1, false>; Rhs = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:74: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, -1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, -1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false>, -1, -1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:462:59: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, -1, -1, false>; int Mode = 5; bool LhsIsTriangular = true; Lhs = const Eigen::Block, -1, -1, false>; Rhs = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:371:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/Memory.h: In instantiation of 'Index Eigen::internal::first_default_aligned(const Scalar*, Index) [with Scalar = double; Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/BlasUtil.h:263:43: required from 'Index Eigen::internal::blas_data_mapper::firstAligned(Index) const [with Scalar = const double; Index = long long int; int StorageOrder = 0; int AlignmentType = 0]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:400:40: required from 'static void Eigen::internal::general_matrix_vector_product::run(Index, Index, const LhsMapper&, const RhsMapper&, ResScalar*, Index, ResScalar) [with Index = long long int; LhsScalar = double; LhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateLhs = false; RhsScalar = double; RhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:339:132: required from 'static void Eigen::internal::gemv_dense_selector<2, 1, true>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; Dest = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:383:34: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Matrix; Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; Derived = Eigen::internal::generic_product_impl >, Eigen::Matrix, Eigen::DenseShape, Eigen::DenseShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/lp_oracles/solve_lp.h:289:7: required from 'Point PointInIntersection(MT, MT, Point, bool&) [with VT = Eigen::Matrix; MT = Eigen::Matrix; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:128:32: required from 'bool IntersectionOfVpoly::is_feasible() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:99:35: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/Memory.h:470:60: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 470 | return first_aligned::alignment>(array, size);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:100:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, true>, -1, 1, false>, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Assign.h:66:28: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:503:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h: In instantiation of 'static void Eigen::internal::selfadjoint_matrix_vector_product::run(Index, const Scalar*, Index, const Scalar*, Scalar*, Scalar) [with Scalar = double; Index = long long int; int StorageOrder = 0; int UpLo = 1; bool ConjugateLhs = false; bool ConjugateRhs = false; int Version = 0]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:227:7: required from 'static void Eigen::internal::selfadjoint_product_impl::run(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, -1, 1, false>; Lhs = Eigen::Block, -1, -1, false>; int LhsMode = 17; Rhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:772:109: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, -1, 1, false>; Lhs = Eigen::SelfAdjointView, -1, -1, false>, 1>; Rhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; int ProductTag = 7; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Block, -1, 1, false>; Lhs = Eigen::SelfAdjointView, -1, -1, false>, 1>; Rhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::SelfAdjointShape, Eigen::DenseShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: required from 'static void Eigen::internal::generic_product_impl_base::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Block, -1, 1, false>; Lhs = Eigen::SelfAdjointView, -1, -1, false>, 1>; Rhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::SelfAdjointShape, Eigen::DenseShape, 7>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Block, -1, 1, false>; Lhs = Eigen::SelfAdjointView, -1, -1, false>, 1>; Rhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:60:121: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 60 | conj_helper::IsComplex && EIGEN_LOGICAL_XOR(ConjugateLhs, IsRowMajor), ConjugateRhs> pcj0;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:60:121: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:61:121: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 61 | conj_helper::IsComplex && EIGEN_LOGICAL_XOR(ConjugateLhs, !IsRowMajor), ConjugateRhs> pcj1;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:61:121: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false> > >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, 1, true>, -1, 1, false> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:197:43: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'static void Eigen::internal::general_matrix_vector_product::run(Index, Index, const LhsMapper&, const RhsMapper&, ResScalar*, Index, RhsScalar) [with Index = long long int; LhsScalar = double; LhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateLhs = false; RhsScalar = double; RhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateRhs = false; int Version = 0; ResScalar = double]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:244:134: required from 'static void Eigen::internal::gemv_dense_selector<2, 0, true>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; Dest = Eigen::Map, 0, Eigen::Stride<0, 0> >; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:383:34: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: required from 'static void Eigen::internal::generic_product_impl_base::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:112:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 112 | conj_helper pcj;\\n\"},{\"type\":1,\"output\":\" | ^~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:112:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> > >, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, true>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, true>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, 1, -1, true>, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:32: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:48: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; int Mode = 5; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = const Eigen::Block, -1, -1, false>, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:751:113: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:150:68: required from 'static void Eigen::internal::product_triangular_matrix_matrix::run(Index, Index, Index, const Scalar*, Index, const Scalar*, Index, Scalar*, Index, Index, const Scalar&, Eigen::internal::level3_blocking&) [with Scalar = double; Index = long long int; int Mode = 5; int LhsStorageOrder = 0; bool ConjugateLhs = false; int RhsStorageOrder = 0; bool ConjugateRhs = false; int ResInnerStride = 1; int Version = 0]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:443:12: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, -1, -1, false>; int Mode = 5; bool LhsIsTriangular = true; Lhs = const Eigen::Block, -1, -1, false>; Rhs = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Diagonal.h:63:53: required from 'class Eigen::Diagonal, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:153:32: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:174:81: required from 'class Eigen::DenseBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Diagonal.h:63:53: required from 'class Eigen::Diagonal, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:153:32: required from 'static void Eigen::internal::product_triangular_matrix_matrix::run(Index, Index, Index, const Scalar*, Index, const Scalar*, Index, Scalar*, Index, Index, const Scalar&, Eigen::internal::level3_blocking&) [with Scalar = double; Index = long long int; int Mode = 5; int LhsStorageOrder = 0; bool ConjugateLhs = false; int RhsStorageOrder = 0; bool ConjugateRhs = false; int ResInnerStride = 1; int Version = 0]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:443:12: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, -1, -1, false>; int Mode = 5; bool LhsIsTriangular = true; Lhs = const Eigen::Block, -1, -1, false>; Rhs = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:100:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:100:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:492:30: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:100:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, Eigen::CwiseNullaryOp, Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, Eigen::CwiseNullaryOp, Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::CwiseNullaryOp, Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Solve.h:86:7: required from 'class Eigen::SolveImpl >, Eigen::CwiseNullaryOp, Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Solve.h:62:7: required from 'class Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:577:39: required from 'static void Eigen::internal::Assignment >, Eigen::internal::assign_op::Scalar>, Eigen::internal::Dense2Dense>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op::Scalar>&) [with DstXprType = Eigen::Matrix; MatrixType = Eigen::Matrix; SrcXprType = Eigen::Inverse > >; typename Eigen::PartialPivLU::Scalar = double; typename DstXprType::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:100:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/BlasUtil.h:464:13: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, -1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, -1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, true>, 1, -1, false> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, true>, 1, -1, false> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, true>, 1, -1, false> >, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/VectorBlock.h:56:47: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:341:54: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >; Dest = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; int Mode = 6; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:59: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Matrix; int Mode = 6; bool LhsIsTriangular = true; Lhs = const Eigen::Transpose, -1, -1, false> >; Rhs = Eigen::Block, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:74: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false> >, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false> >, -1, -1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false> >, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false> >, -1, -1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:462:59: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Matrix; int Mode = 6; bool LhsIsTriangular = true; Lhs = const Eigen::Transpose, -1, -1, false> >; Rhs = Eigen::Block, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: In instantiation of 'void Eigen::internal::gemm_pack_rhs::operator()(Scalar*, const DataMapper&, Index, Index, Index, Index) [with Scalar = double; Index = long long int; DataMapper = Eigen::internal::const_blas_data_mapper; int nr = 4; bool Conjugate = false; bool PanelMode = false]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:175:15: required from 'static void Eigen::internal::product_triangular_matrix_matrix::run(Index, Index, Index, const Scalar*, Index, const Scalar*, Index, Scalar*, Index, Index, const Scalar&, Eigen::internal::level3_blocking&) [with Scalar = double; Index = long long int; int Mode = 5; int LhsStorageOrder = 0; bool ConjugateLhs = false; int RhsStorageOrder = 0; bool ConjugateRhs = false; int ResInnerStride = 1; int Version = 0]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:443:12: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, -1, -1, false>; int Mode = 5; bool LhsIsTriangular = true; Lhs = const Eigen::Block, -1, -1, false>; Rhs = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, -1, -1, false>; Lhs = Eigen::TriangularView, -1, -1, false>, 5>; Rhs = Eigen::Matrix; int ProductTag = 8; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Block, -1, -1, false>; Lhs = Eigen::TriangularView, -1, -1, false>, 5>; Rhs = Eigen::Matrix; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, 5>, Eigen::Matrix, Eigen::TriangularShape, Eigen::DenseShape, 8>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:357:18: required from 'static void Eigen::internal::generic_product_impl_base::subTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Block, -1, -1, false>; Lhs = Eigen::TriangularView, -1, -1, false>, 5>; Rhs = Eigen::Matrix; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, 5>, Eigen::Matrix, Eigen::TriangularShape, Eigen::DenseShape, 8>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:178:42: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1981:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 1981 | PacketBlock kernel;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: In instantiation of 'void Eigen::internal::gebp_kernel::operator()(const DataMapper&, const LhsScalar*, const RhsScalar*, Index, Index, Index, ResScalar, Index, Index, Index, Index) [with LhsScalar = double; RhsScalar = double; Index = long long int; DataMapper = Eigen::internal::blas_data_mapper; int mr = 4; int nr = 4; bool ConjugateLhs = false; bool ConjugateRhs = false; ResScalar = double]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:205:22: required from 'static void Eigen::internal::product_triangular_matrix_matrix::run(Index, Index, Index, const Scalar*, Index, const Scalar*, Index, Scalar*, Index, Index, const Scalar&, Eigen::internal::level3_blocking&) [with Scalar = double; Index = long long int; int Mode = 5; int LhsStorageOrder = 0; bool ConjugateLhs = false; int RhsStorageOrder = 0; bool ConjugateRhs = false; int ResInnerStride = 1; int Version = 0]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:443:12: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, -1, -1, false>; int Mode = 5; bool LhsIsTriangular = true; Lhs = const Eigen::Block, -1, -1, false>; Rhs = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, -1, -1, false>; Lhs = Eigen::TriangularView, -1, -1, false>, 5>; Rhs = Eigen::Matrix; int ProductTag = 8; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Block, -1, -1, false>; Lhs = Eigen::TriangularView, -1, -1, false>, 5>; Rhs = Eigen::Matrix; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, 5>, Eigen::Matrix, Eigen::TriangularShape, Eigen::DenseShape, 8>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:357:18: required from 'static void Eigen::internal::generic_product_impl_base::subTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Block, -1, -1, false>; Lhs = Eigen::TriangularView, -1, -1, false>, 5>; Rhs = Eigen::Matrix; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, 5>, Eigen::Matrix, Eigen::TriangularShape, Eigen::DenseShape, 8>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:178:42: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1537:103: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 1537 | const int SResPacketHalfSize = unpacket_traits::half>::size;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1592:135: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 1592 | typedef typename conditional=8,typename unpacket_traits::half,SResPacket>::type SResPacketHalf;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1593:135: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 1593 | typedef typename conditional=8,typename unpacket_traits::half,SLhsPacket>::type SLhsPacketHalf;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1594:135: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 1594 | typedef typename conditional=8,typename unpacket_traits::half,SRhsPacket>::type SRhsPacketHalf;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1595:135: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 1595 | typedef typename conditional=8,typename unpacket_traits::half,SAccPacket>::type SAccPacketHalf;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:100:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:100:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:381:43: required from 'static Eigen::Index Eigen::internal::partial_lu_impl::unblocked_lu(MatrixType&, PivIndex*, PivIndex&) [with Scalar = double; int StorageOrder = 0; PivIndex = int; Eigen::Index = long long int; MatrixType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:436:26: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:100:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:100:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:100:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0, 5>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:406:78: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:100:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: In instantiation of 'void Eigen::internal::gemm_pack_lhs::operator()(Scalar*, const DataMapper&, Index, Index, Index, Index) [with Scalar = double; Index = long long int; DataMapper = Eigen::internal::const_blas_data_mapper; int Pack1 = 4; int Pack2 = 2; bool Conjugate = false; bool PanelMode = false]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixMatrix.h:182:17: required from 'static void Eigen::internal::general_matrix_matrix_product::run(Index, Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, Index, ResScalar, Eigen::internal::level3_blocking&, Eigen::internal::GemmParallelInfo*) [with Index = long long int; LhsScalar = double; int LhsStorageOrder = 1; bool ConjugateLhs = false; RhsScalar = double; int RhsStorageOrder = 0; bool ConjugateRhs = false; int ResInnerStride = 1; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixMatrix.h:228:14: required from 'void Eigen::internal::gemm_functor::operator()(Index, Index, Index, Index, Eigen::internal::GemmParallelInfo*) const [with Scalar = double; Index = long long int; Gemm = Eigen::internal::general_matrix_matrix_product; Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; Dest = Eigen::Matrix; BlockingType = Eigen::internal::gemm_blocking_space<0, double, double, -1, -1, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/Parallelizer.h:98:7: required from 'void Eigen::internal::parallelize_gemm(const Functor&, Index, Index, Index, bool) [with bool Condition = true; Functor = gemm_functor, Eigen::Transpose >, Eigen::Matrix, Eigen::Matrix, gemm_blocking_space<0, double, double, -1, -1, -1, 1, false> >; Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixMatrix.h:487:9: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixMatrix.h:437:20: required from 'static void Eigen::internal::generic_product_impl::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product >, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:72:15: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1847:33: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 1847 | PacketBlock kernel;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1847:33: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::OuterStride<> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::OuterStride<> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::OuterStride<> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Map.h:94:79: required from 'class Eigen::Map, 0, Eigen::OuterStride<> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:115:18: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Map.h:94:79: required from 'class Eigen::Map, 0, Eigen::Stride<0, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:119:18: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::InnerStride<> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::InnerStride<> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::InnerStride<> >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::InnerStride<> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::InnerStride<> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::InnerStride<> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::OuterStride<> >, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::OuterStride<> >, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::OuterStride<> >, 1, -1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::Stride<0, 0> >, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, 0, Eigen::Stride<0, 0> >, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:137:106: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:137:77: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const ResScalar&) [with Index = long long int; int Mode = 6; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:332:12: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'struct Eigen::internal::general_matrix_vector_product, 1, false, double, Eigen::internal::const_blas_data_mapper, false, 1>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:145:123: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const ResScalar&) [with Index = long long int; int Mode = 6; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:332:12: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >; Dest = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; int Mode = 6; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; int Mode = 5; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = const Eigen::Block, -1, -1, false>, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:751:113: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>; int ProductTag = 7; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>; Derived = Eigen::internal::generic_product_impl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, Eigen::DenseShape, Eigen::TriangularShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:351:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 351 | typedef typename conditional::type LhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:352:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 352 | typedef typename conditional::type RhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:353:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 353 | typedef typename conditional::type ResPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'struct Eigen::internal::general_matrix_vector_product, 1, false, double, Eigen::internal::const_blas_data_mapper, false, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:154:113: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const ResScalar&) [with Index = long long int; int Mode = 6; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:332:12: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >; Dest = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; int Mode = 6; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; int Mode = 5; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = const Eigen::Block, -1, -1, false>, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:751:113: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>; int ProductTag = 7; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>; Derived = Eigen::internal::generic_product_impl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, Eigen::DenseShape, Eigen::TriangularShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:351:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 351 | typedef typename conditional::type LhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:352:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 352 | typedef typename conditional::type RhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:353:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 353 | typedef typename conditional::type ResPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Diagonal.h:63:53: required from 'class Eigen::Diagonal, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:153:32: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:327:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:501:10: required from 'Derived& Eigen::DenseBase::setZero() [with Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:151:29: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:327:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Diagonal, 0>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:501:10: required from 'Derived& Eigen::DenseBase::setZero() [with Derived = Eigen::Diagonal, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:153:42: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, false>, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >; Derived = Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:305:135: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'static void Eigen::internal::general_matrix_vector_product::run(Index, Index, const LhsMapper&, const RhsMapper&, ResScalar*, Index, ResScalar) [with Index = long long int; LhsScalar = double; LhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateLhs = false; RhsScalar = double; RhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateRhs = false; int Version = 1; ResScalar = double]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:145:123: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const ResScalar&) [with Index = long long int; int Mode = 6; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:332:12: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >; Dest = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; int Mode = 6; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; int Mode = 5; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = const Eigen::Block, -1, -1, false>, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:751:113: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>; int ProductTag = 7; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>; Derived = Eigen::internal::generic_product_impl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, Eigen::DenseShape, Eigen::TriangularShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:385:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 385 | conj_helper pcj;\\n\"},{\"type\":1,\"output\":\" | ^~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:385:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'static void Eigen::internal::general_matrix_vector_product::run(Index, Index, const LhsMapper&, const RhsMapper&, ResScalar*, Index, ResScalar) [with Index = long long int; LhsScalar = double; LhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateLhs = false; RhsScalar = double; RhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateRhs = false; int Version = 0; ResScalar = double]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:154:113: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const ResScalar&) [with Index = long long int; int Mode = 6; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:332:12: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >; Dest = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; int Mode = 6; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; int Mode = 5; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = const Eigen::Block, -1, -1, false>, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:751:113: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>; int ProductTag = 7; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>; Derived = Eigen::internal::generic_product_impl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, Eigen::DenseShape, Eigen::TriangularShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:385:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:385:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::Matrix >, -1, 1, true, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::Matrix >, -1, 1, true, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::Matrix >, -1, 1, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1307:33: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:100:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix >, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix >, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::Matrix >, 1, -1, false, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::Matrix >, 1, -1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::Matrix >, 1, -1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1309:33: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:100:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:961:41: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:522:41: required from 'struct Eigen::internal::unary_evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:71:51: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:100:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:961:41: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:522:41: required from 'struct Eigen::internal::unary_evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:71:51: required from 'class Eigen::internal::visitor_evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:110:17: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:100:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:522:41: required from 'struct Eigen::internal::unary_evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:71:51: required from 'class Eigen::internal::visitor_evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:110:17: required from 'void Eigen::DenseBase::visit(Visitor&) const [with Visitor = Eigen::internal::max_coeff_visitor, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:266:14: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:100:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, 1, -1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:961:41: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:270:41: required from 'struct Eigen::internal::unary_evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:327:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:501:10: required from 'Derived& Eigen::DenseBase::setZero() [with Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:151:29: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Derived = Eigen::Block, -1, -1, false>, -1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:31: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Derived = Eigen::Block, -1, -1, false>, -1, -1, true>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:462:32: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 1, -1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, 1, -1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase >, 1, -1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense >, 1, -1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product >, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:72:15: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 1, -1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, 1, -1, true> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, 1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, 1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl >, 1, -1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:578:37: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product >, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:72:15: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, 1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product >, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:72:15: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:578:52: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index, Eigen::Index) const [with Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; int ProductTag = 8; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Matrix; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Transpose >; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:631:63: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product >, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:72:15: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:32: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, true>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, true>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, 1, -1, true>, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:48: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:462:59: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Matrix; int Mode = 2; bool LhsIsTriangular = true; Lhs = Eigen::Matrix; Rhs = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, -1, -1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, -1, -1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase >, -1, -1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense >, -1, -1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:462:59: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Matrix; int Mode = 1; bool LhsIsTriangular = true; Lhs = const Eigen::Transpose >; Rhs = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:961:41: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; SrcXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Functor = swap_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; SrcXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Functor = Eigen::internal::swap_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Src = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Func = swap_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Src = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Func = swap_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:418:22: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:100:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; SrcXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Functor = swap_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; SrcXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Functor = Eigen::internal::swap_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Src = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Func = swap_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Src = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Func = swap_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:418:22: required from 'void Eigen::DenseBase::swap(const Eigen::DenseBase&) [with OtherDerived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Derived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:480:24: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:100:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: In instantiation of 'void Eigen::internal::gemm_pack_rhs::operator()(Scalar*, const DataMapper&, Index, Index, Index, Index) [with Scalar = double; Index = long long int; DataMapper = Eigen::internal::blas_data_mapper; int nr = 4; bool Conjugate = false; bool PanelMode = true]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularSolverMatrix.h:153:19: required from 'static void Eigen::internal::triangular_solve_matrix::run(Index, Index, const Scalar*, Index, Scalar*, Index, Index, Eigen::internal::level3_blocking&) [with Scalar = double; Index = long long int; int Mode = 5; bool Conjugate = false; int TriStorageOrder = 0; int OtherInnerStride = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/SolveTriangular.h:102:12: required from 'static void Eigen::internal::triangular_solver_selector::run(const Lhs&, Rhs&) [with Lhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; int Side = 1; int Mode = 5]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/SolveTriangular.h:182:21: required from 'void Eigen::TriangularViewImpl<_MatrixType, _Mode, Eigen::Dense>::solveInPlace(const Eigen::MatrixBase&) const [with int Side = 1; OtherDerived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; _MatrixType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; unsigned int _Mode = 5]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/TriangularMatrix.h:509:37: required from 'void Eigen::TriangularViewImpl<_MatrixType, _Mode, Eigen::Dense>::solveInPlace(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; _MatrixType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; unsigned int _Mode = 5]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:490:62: required from 'static Eigen::Index Eigen::internal::partial_lu_impl::blocked_lu(Eigen::Index, Eigen::Index, Scalar*, Eigen::Index, PivIndex*, PivIndex&, Eigen::Index) [with Scalar = double; int StorageOrder = 0; PivIndex = int; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:509:17: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:100:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1981:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 1981 | PacketBlock kernel;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:436:50: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:100:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 1, -1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:204:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:100:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:578:37: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:204:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:100:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block, -1, 1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block, -1, 1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:578:52: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index, Eigen::Index) const [with Lhs = Eigen::Matrix; Rhs = Eigen::Matrix; int ProductTag = 8; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Matrix; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Matrix; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:631:63: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:204:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:100:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:137:114: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const ResScalar&) [with Index = long long int; int Mode = 6; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:332:12: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >; Dest = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; int Mode = 6; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:961:41: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:270:41: required from 'struct Eigen::internal::unary_evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: [ skipping 29 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:270:41: required from 'struct Eigen::internal::unary_evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: [ skipping 27 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, true>, 1, -1, false> >, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >; Derived = Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:341:27: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase >, -1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase >, -1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase >, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 21 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, true>, 1, -1, false> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, true>, 1, -1, false> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, true>, 1, -1, false> >, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 1, -1, true>, 1, -1, false> >, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 19 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:282:54: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false> >; Rhs = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; Dest = Eigen::Transpose >; int Mode = 1; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Derived = Eigen::Block, -1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:31: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false> >, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Derived = Eigen::Block, -1, -1, true>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:462:32: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::Matrix >, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Matrix >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/VectorwiseOp.h:104:1: required from 'ResultType Eigen::internal::member_sum::operator()(const XprType&) const [with XprType = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; ResultType = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1307:23: required from 'const Eigen::internal::evaluator >::Scalar Eigen::internal::evaluator >::coeff(Eigen::Index, Eigen::Index) const [with ArgType = const Eigen::CwiseUnaryOp, const Eigen::Matrix >; MemberOp = Eigen::internal::member_sum; int Direction = 0; Scalar = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:381:29: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:100:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::Matrix >, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Matrix >, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::Block, const Eigen::Matrix >, 1, -1, false>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::Block, const Eigen::Matrix >, 1, -1, false>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/VectorwiseOp.h:104:1: required from 'ResultType Eigen::internal::member_sum::operator()(const XprType&) const [with XprType = Eigen::Block, const Eigen::Matrix >, 1, -1, false>; ResultType = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1309:23: required from 'const Eigen::internal::evaluator >::Scalar Eigen::internal::evaluator >::coeff(Eigen::Index, Eigen::Index) const [with ArgType = const Eigen::CwiseUnaryOp, const Eigen::Matrix >; MemberOp = Eigen::internal::member_sum; int Direction = 0; Scalar = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:381:29: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:100:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>; SrcXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>; Functor = swap_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>; SrcXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>; Functor = Eigen::internal::swap_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>; Src = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>; Func = swap_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>; Src = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>; Func = swap_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:418:22: required from 'void Eigen::DenseBase::swap(const Eigen::DenseBase&) [with OtherDerived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>; Derived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:390:25: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:100:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:274:18: required from 'void Eigen::internal::outer_product_selector_run(Dst&, const Lhs&, const Rhs&, const Func&, const false_type&) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; Lhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>; Rhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>; Func = generic_product_impl, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, Eigen::DenseShape, Eigen::DenseShape, 5>::sub]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:329:41: required from 'static void Eigen::internal::generic_product_impl::subTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; Lhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>; Rhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:178:42: required from 'static void Eigen::internal::Assignment, Eigen::internal::sub_assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::sub_assign_op&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; Lhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>; Rhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; Src = Eigen::Product, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0>; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/NoAlias.h:58:31: required from 'ExpressionType& Eigen::NoAlias::operator-=(const StorageBase&) [with OtherDerived = Eigen::Product, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0>; ExpressionType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; StorageBase = Eigen::MatrixBase]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:406:53: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:100:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 20 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:100:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:280:48: required from 'void Eigen::internal::outer_product_selector_run(Dst&, const Lhs&, const Rhs&, const Func&, const false_type&) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; Lhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>; Rhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>; Func = generic_product_impl, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, Eigen::DenseShape, Eigen::DenseShape, 5>::sub]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:329:41: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:100:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator >, 1, -1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator >, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:270:41: required from 'struct Eigen::internal::unary_evaluator >, 1, -1, true> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator >, 1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator >, 1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: [ skipping 19 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product >, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:72:15: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product >, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:72:15: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::OuterStride<> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::OuterStride<> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::OuterStride<> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Map.h:94:79: required from 'class Eigen::Map, 0, Eigen::OuterStride<> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:44:18: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::InnerStride<> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::InnerStride<> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::InnerStride<> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::InnerStride<> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::InnerStride<> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Map.h:94:79: required from 'class Eigen::Map, 0, Eigen::InnerStride<> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:48:18: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 22 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, -1, 1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::OuterStride<> >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::OuterStride<> >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::OuterStride<> >, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::OuterStride<> >, -1, 1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 19 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 20 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:66:56: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const RhsScalar&) [with Index = long long int; int Mode = 1; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:266:12: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'struct Eigen::internal::general_matrix_vector_product, 0, false, double, Eigen::internal::const_blas_data_mapper, false, 1>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:74:123: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const RhsScalar&) [with Index = long long int; int Mode = 1; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:266:12: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false> >; Rhs = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; Dest = Eigen::Transpose >; int Mode = 1; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Matrix; int Mode = 2; Lhs = Eigen::Block, 1, -1, true>, 1, -1, false>; Rhs = Eigen::Block, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:751:113: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::Block, 1, -1, true>, 1, -1, false>; Rhs = Eigen::TriangularView, -1, -1, false>, 2>; int ProductTag = 7; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Matrix; Lhs = Eigen::Block, 1, -1, true>, 1, -1, false>; Rhs = Eigen::TriangularView, -1, -1, false>, 2>; Derived = Eigen::internal::generic_product_impl, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, Eigen::DenseShape, Eigen::TriangularShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:75:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 75 | typedef typename conditional::type LhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:76:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 76 | typedef typename conditional::type RhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:77:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 77 | typedef typename conditional::type ResPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::CwiseNullaryOp, Eigen::Matrix >, 2>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::CwiseNullaryOp, Eigen::Matrix >, 2> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::CwiseNullaryOp, Eigen::Matrix >, 2> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, Eigen::CwiseNullaryOp, Eigen::Matrix >, 2, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, Eigen::CwiseNullaryOp, Eigen::Matrix >, 2, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, Eigen::CwiseNullaryOp, Eigen::Matrix >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:237:28: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:100:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:270:41: required from 'struct Eigen::internal::unary_evaluator, 1, -1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block, -1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: [ skipping 19 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:204:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:100:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'static void Eigen::internal::general_matrix_vector_product::run(Index, Index, const LhsMapper&, const RhsMapper&, ResScalar*, Index, RhsScalar) [with Index = long long int; LhsScalar = double; LhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateLhs = false; RhsScalar = double; RhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateRhs = false; int Version = 1; ResScalar = double]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:74:123: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const RhsScalar&) [with Index = long long int; int Mode = 1; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:266:12: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false> >; Rhs = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; Dest = Eigen::Transpose >; int Mode = 1; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Matrix; int Mode = 2; Lhs = Eigen::Block, 1, -1, true>, 1, -1, false>; Rhs = Eigen::Block, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:751:113: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::Block, 1, -1, true>, 1, -1, false>; Rhs = Eigen::TriangularView, -1, -1, false>, 2>; int ProductTag = 7; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Matrix; Lhs = Eigen::Block, 1, -1, true>, 1, -1, false>; Rhs = Eigen::TriangularView, -1, -1, false>, 2>; Derived = Eigen::internal::generic_product_impl, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, Eigen::DenseShape, Eigen::TriangularShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:112:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 112 | conj_helper pcj;\\n\"},{\"type\":1,\"output\":\" | ^~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:112:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Matrix >, -1, 1, true> >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/VectorwiseOp.h:104:1: required from 'ResultType Eigen::internal::member_sum::operator()(const XprType&) const [with XprType = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; ResultType = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1307:23: required from 'const Eigen::internal::evaluator >::Scalar Eigen::internal::evaluator >::coeff(Eigen::Index, Eigen::Index) const [with ArgType = const Eigen::CwiseUnaryOp, const Eigen::Matrix >; MemberOp = Eigen::internal::member_sum; int Direction = 0; Scalar = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:381:29: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:100:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:578:75: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index, Eigen::Index) const [with Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; int ProductTag = 8; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Matrix; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Transpose >; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:631:63: required from 'void Eigen::internal::generic_dense_assignment_kernel::assignCoeff(Eigen::Index, Eigen::Index) [with DstEvaluatorTypeT = Eigen::internal::evaluator >; SrcEvaluatorTypeT = Eigen::internal::evaluator >, Eigen::Matrix, 1> >; Functor = Eigen::internal::assign_op; int Version = 0; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:645:16: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product >, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:72:15: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 18 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator >, -1, -1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator >, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 18 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, true>, 1, -1, false> >, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 1, -1, true>, 1, -1, false> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 19 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator >, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block >, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block >, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >; Derived = Eigen::Block >, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:282:27: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:961:41: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: [ skipping 22 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >; Functor = add_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >; Functor = Eigen::internal::add_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 20 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >; Functor = add_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >; Functor = Eigen::internal::add_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >; Func = add_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >; Func = add_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:177:18: required from 'Derived& Eigen::MatrixBase::operator+=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >; Derived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:66:28: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:87:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >; Derived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:305:135: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:100:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 24 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:100:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:578:37: [ skipping 22 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:100:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 24 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:100:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:578:52: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index, Eigen::Index) const [with Lhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; int ProductTag = 8; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:631:63: [ skipping 21 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:100:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:270:41: required from 'struct Eigen::internal::unary_evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: [ skipping 26 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:100:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 23 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:100:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix >, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix >, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, Eigen::Matrix >, 1, -1, false, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, Eigen::Matrix >, 1, -1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, Eigen::Matrix >, 1, -1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:1009:11: [ skipping 25 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:100:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, Eigen::Matrix >, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, false>; SrcXprType = Eigen::Block, Eigen::Matrix >, 1, -1, false>; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, false>; SrcXprType = Eigen::Block, Eigen::Matrix >, 1, -1, false>; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 1, -1, false>; Src = Eigen::Block, Eigen::Matrix >, 1, -1, false>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 1, -1, false>; Src = Eigen::Block, Eigen::Matrix >, 1, -1, false>; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Block, 1, -1, false>; Src = Eigen::Block, Eigen::Matrix >, 1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Assign.h:66:28: [ skipping 26 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"inner_ball.cpp:100:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h: In function 'static void Eigen::internal::selfadjoint_product_impl::run(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, -1, 1, false>; Lhs = Eigen::Block, -1, -1, false>; int LhsMode = 17; Rhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:227:7: warning: 'result' may be used uninitialized [-Wmaybe-uninitialized]\\n\"},{\"type\":1,\"output\":\" 225 | internal::selfadjoint_matrix_vector_product::Flags&RowMajorBit) ? RowMajor : ColMajor,\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 226 | int(LhsUpLo), bool(LhsBlasTraits::NeedToConjugate), bool(RhsBlasTraits::NeedToConjugate)>::run\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 227 | (\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\" 228 | lhs.rows(), // size\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 229 | &lhs.coeffRef(0,0), lhs.outerStride(), // lhs info\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 230 | actualRhsPtr, // rhs info\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 231 | actualDestPtr, // result info\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 232 | actualAlpha // scale factor\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 233 | );\\n\"},{\"type\":1,\"output\":\" | ~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:39:24: note: by argument 4 of type 'const double*' to 'static void Eigen::internal::selfadjoint_matrix_vector_product::run(Index, const Scalar*, Index, const Scalar*, Scalar*, Scalar) [with Scalar = double; Index = long long int; int StorageOrder = 0; int UpLo = 1; bool ConjugateLhs = false; bool ConjugateRhs = false; int Version = 0]' declared here\\n\"},{\"type\":1,\"output\":\" 39 | EIGEN_DONT_INLINE void selfadjoint_matrix_vector_product::run(\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:507:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h: In static member function 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >; Dest = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; int Mode = 6]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:332:12: warning: 'result' may be used uninitialized [-Wmaybe-uninitialized]\\n\"},{\"type\":1,\"output\":\" 327 | internal::triangular_matrix_vector_product\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 328 | \\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 332 | ::run(actualLhs.rows(),actualLhs.cols(),\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 333 | actualLhs.data(),actualLhs.outerStride(),\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 334 | actualRhsPtr,1,\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 335 | dest.data(),dest.innerStride(),\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 336 | actualAlpha);\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:105:24: note: by argument 5 of type 'const double*' to 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const ResScalar&) [with Index = long long int; int Mode = 6; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0]' declared here\\n\"},{\"type\":1,\"output\":\" 105 | EIGEN_DONT_INLINE void triangular_matrix_vector_product\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"g++ -std=gnu++17 -I\\\"D:/Softwares/R/R-4.3.0/include\\\" -DNDEBUG -Iexternal -Iexternal/lpsolve/headers/run_headers -Iexternal/minimum_ellipsoid -Iinclude -Iinclude/convex_bodies/spectrahedra -I'D:/Softwares/R/R-4.3.0/library/Rcpp/include' -I'D:/Softwares/R/R-4.3.0/library/RcppEigen/include' -I'D:/Softwares/R/R-4.3.0/library/BH/include' -I\\\"D:/Softwares/RTools/rtools43/x86_64-w64-mingw32.static.posix/include\\\" -lm -ldl -DBOOST_NO_AUTO_PTR -O2 -Wall -mfpmath=sse -msse2 -mstackrealign -c load_sdpa_format_file.cpp -o load_sdpa_format_file.o\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:397,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Dense:1,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/RcppEigenForward.h:30,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/RcppEigen.h:25,\\n\"},{\"type\":1,\"output\":\" from load_sdpa_format_file.cpp:11:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:60:39: warning: ignoring attributes on template argument '__m128' [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 60 | template<> struct is_arithmetic<__m128> { enum { value = true }; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:61:40: warning: ignoring attributes on template argument '__m128i' [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 61 | template<> struct is_arithmetic<__m128i> { enum { value = true }; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:62:40: warning: ignoring attributes on template argument '__m128d' [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 62 | template<> struct is_arithmetic<__m128d> { enum { value = true }; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:161:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 161 | template<> struct unpacket_traits { typedef float type; enum {size=4, alignment=Aligned16}; typedef Packet4f half; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:162:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 162 | template<> struct unpacket_traits { typedef double type; enum {size=2, alignment=Aligned16}; typedef Packet2d half; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:163:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 163 | template<> struct unpacket_traits { typedef int type; enum {size=4, alignment=Aligned16}; typedef Packet4i half; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:718:35: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 718 | struct palign_impl\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:741:35: warning: ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 741 | struct palign_impl\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:764:35: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 764 | struct palign_impl\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:778:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 778 | ptranspose(PacketBlock& kernel) {\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:783:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 783 | ptranspose(PacketBlock& kernel) {\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:790:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 790 | ptranspose(PacketBlock& kernel) {\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:377:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:15:70: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 15 | template<> struct conj_helper { \\\\\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:232:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL'\\n\"},{\"type\":1,\"output\":\" 232 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet2cf,Packet4f)\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:22:70: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 22 | template<> struct conj_helper { \\\\\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:232:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL'\\n\"},{\"type\":1,\"output\":\" 232 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet2cf,Packet4f)\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:15:70: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 15 | template<> struct conj_helper { \\\\\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:417:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL'\\n\"},{\"type\":1,\"output\":\" 417 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet1cd,Packet2d)\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:22:70: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 22 | template<> struct conj_helper { \\\\\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:417:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL'\\n\"},{\"type\":1,\"output\":\" 417 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet1cd,Packet2d)\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:370:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:243:49: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SSE.h:24:46: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(4) float>::half' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:439:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:46:50: required from 'class Eigen::QuaternionBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:250:7: required from 'class Eigen::Quaternion'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SSE.h:27:3: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:243:49: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SSE.h:88:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:46:50: required from 'class Eigen::QuaternionBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:250:7: required from 'class Eigen::Quaternion'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SSE.h:92:3: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/SparseCore:37,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Sparse:26,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/RcppEigenForward.h:31:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h: In instantiation of 'class Eigen::SparseMatrixBase >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseCompressedBase.h:36:7: required from 'class Eigen::SparseCompressedBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrix.h:96:7: required from 'class Eigen::SparseMatrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/IterativeSolvers/ConstrainedConjGrad.h:61:25: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h:47:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 47 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h:168:29: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) long long int>::half' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h:168:29: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h:178:72: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h:179:36: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/aux_/na_assert.hpp:23,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/arg.hpp:25,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/placeholders.hpp:24,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/iterator/iterator_categories.hpp:16,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/iterator/iterator_concepts.hpp:10,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/range/concepts.hpp:20,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/range/size_type.hpp:20,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/range/size.hpp:21,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/random/hyperexponential_distribution.hpp:29,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/random.hpp:70,\\n\"},{\"type\":1,\"output\":\" from load_sdpa_format_file.cpp:14:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp:194:21: warning: unnecessary parentheses in declaration of 'assert_arg' [-Wparentheses]\\n\"},{\"type\":1,\"output\":\" 194 | failed ************ (Pred::************\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 195 | assert_arg( void (*)(Pred), typename assert_arg_pred::type )\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 196 | );\\n\"},{\"type\":1,\"output\":\" | ~ \\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp:194:21: note: remove parentheses\\n\"},{\"type\":1,\"output\":\" 194 | failed ************ (Pred::************\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" | -\\n\"},{\"type\":1,\"output\":\" 195 | assert_arg( void (*)(Pred), typename assert_arg_pred::type )\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 196 | );\\n\"},{\"type\":1,\"output\":\" | ~ \\n\"},{\"type\":1,\"output\":\" | -\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp:199:21: warning: unnecessary parentheses in declaration of 'assert_not_arg' [-Wparentheses]\\n\"},{\"type\":1,\"output\":\" 199 | failed ************ (boost::mpl::not_::************\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 200 | assert_not_arg( void (*)(Pred), typename assert_arg_pred_not::type )\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 201 | );\\n\"},{\"type\":1,\"output\":\" | ~ \\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp:199:21: note: remove parentheses\\n\"},{\"type\":1,\"output\":\" 199 | failed ************ (boost::mpl::not_::************\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" | -\\n\"},{\"type\":1,\"output\":\" 200 | assert_not_arg( void (*)(Pred), typename assert_arg_pred_not::type )\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 201 | );\\n\"},{\"type\":1,\"output\":\" | ~ \\n\"},{\"type\":1,\"output\":\" | -\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/spectrahedra/LMI.h:45:8: required from 'class LMI, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/spectrahedra/spectrahedron.h:30:21: required from 'class Spectrahedron, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"load_sdpa_format_file.cpp:41:19: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/spectrahedra/LMI.h:45:8: required from 'class LMI, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/spectrahedra/spectrahedron.h:30:21: required from 'class Spectrahedron, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"load_sdpa_format_file.cpp:41:19: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"include/cartesian_geom/point.h:22:53: required from 'class point >'\\n\"},{\"type\":1,\"output\":\"load_sdpa_format_file.cpp:42:11: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"load_sdpa_format_file.cpp: In function 'Rcpp::List load_sdpa_format_file(Rcpp::Nullable >)':\\n\"},{\"type\":1,\"output\":\"load_sdpa_format_file.cpp:37:28: warning: typedef 'RNGType' locally defined but not used [-Wunused-local-typedefs]\\n\"},{\"type\":1,\"output\":\" 37 | typedef boost::mt19937 RNGType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~\\n\"},{\"type\":1,\"output\":\"load_sdpa_format_file.cpp:38:29: warning: typedef 'LMI' locally defined but not used [-Wunused-local-typedefs]\\n\"},{\"type\":1,\"output\":\" 38 | typedef LMI LMI;\\n\"},{\"type\":1,\"output\":\" | ^~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from load_sdpa_format_file.cpp:20:\\n\"},{\"type\":1,\"output\":\"include/SDPAFormatManager.h: In instantiation of 'void SdpaFormatManager::loadSDPAFormatFile(std::ifstream&, std::vector >&, VT&) [with NT = double; std::ifstream = std::basic_ifstream; VT = Eigen::Matrix]':\\n\"},{\"type\":1,\"output\":\"include/SDPAFormatManager.h:250:27: required from 'void SdpaFormatManager::loadSDPAFormatFile(std::ifstream&, Spectrahedron, Eigen::Matrix >&, Point&) [with Point = point >; NT = double; std::ifstream = std::basic_ifstream]'\\n\"},{\"type\":1,\"output\":\"load_sdpa_format_file.cpp:50:41: required from here\\n\"},{\"type\":1,\"output\":\"include/SDPAFormatManager.h:130:35: warning: comparison of integer expressions of different signedness: 'std::__cxx11::list >::size_type' {aka 'long long unsigned int'} and 'int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 130 | if (blockStructure.size() != blocksNum)\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"include/SDPAFormatManager.h:139:38: warning: comparison of integer expressions of different signedness: 'std::__cxx11::list >::size_type' {aka 'long long unsigned int'} and 'int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 139 | while (constantVector.size() < variablesNum) {\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"include/SDPAFormatManager.h:153:41: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector, std::allocator > >::size_type' {aka 'long long unsigned int'} [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 153 | for (int atMatrix = 0; atMatrix < matrices.size(); atMatrix++) {\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~^~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"include/SDPAFormatManager.h:207:41: required from 'void SdpaFormatManager::loadSDPAFormatFile(std::ifstream&, std::vector >&, VT&) [with NT = double; std::ifstream = std::basic_ifstream; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/SDPAFormatManager.h:250:27: required from 'void SdpaFormatManager::loadSDPAFormatFile(std::ifstream&, Spectrahedron, Eigen::Matrix >&, Point&) [with Point = point >; NT = double; std::ifstream = std::basic_ifstream]'\\n\"},{\"type\":1,\"output\":\"load_sdpa_format_file.cpp:50:41: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"include/SDPAFormatManager.h:207:41: required from 'void SdpaFormatManager::loadSDPAFormatFile(std::ifstream&, std::vector >&, VT&) [with NT = double; std::ifstream = std::basic_ifstream; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/SDPAFormatManager.h:250:27: required from 'void SdpaFormatManager::loadSDPAFormatFile(std::ifstream&, Spectrahedron, Eigen::Matrix >&, Point&) [with Point = point >; NT = double; std::ifstream = std::basic_ifstream]'\\n\"},{\"type\":1,\"output\":\"load_sdpa_format_file.cpp:50:41: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"include/SDPAFormatManager.h: In instantiation of 'void SdpaFormatManager::loadSDPAFormatFile(std::ifstream&, std::vector >&, VT&) [with NT = double; std::ifstream = std::basic_ifstream; VT = Eigen::Matrix]':\\n\"},{\"type\":1,\"output\":\"include/SDPAFormatManager.h:250:27: required from 'void SdpaFormatManager::loadSDPAFormatFile(std::ifstream&, Spectrahedron, Eigen::Matrix >&, Point&) [with Point = point >; NT = double; std::ifstream = std::basic_ifstream]'\\n\"},{\"type\":1,\"output\":\"load_sdpa_format_file.cpp:50:41: required from here\\n\"},{\"type\":1,\"output\":\"include/SDPAFormatManager.h:106:32: warning: unused variable 'sz' [-Wunused-variable]\\n\"},{\"type\":1,\"output\":\" 106 | std::string::size_type sz;\\n\"},{\"type\":1,\"output\":\" | ^~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from load_sdpa_format_file.cpp:18:\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/spectrahedra/LMI.h: In instantiation of 'void LMI, Eigen::Matrix >::setVectorMatrix() [with NT = double]':\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/spectrahedra/LMI.h:61:9: required from 'LMI, Eigen::Matrix >::LMI(const std::vector >&) [with NT = double]'\\n\"},{\"type\":1,\"output\":\"include/SDPAFormatManager.h:251:25: required from 'void SdpaFormatManager::loadSDPAFormatFile(std::ifstream&, Spectrahedron, Eigen::Matrix >&, Point&) [with Point = point >; NT = double; std::ifstream = std::basic_ifstream]'\\n\"},{\"type\":1,\"output\":\"load_sdpa_format_file.cpp:50:41: required from here\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/spectrahedra/LMI.h:82:41: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 82 | for (int at_row = 0; at_row < m; at_row++)\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~^~~\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/spectrahedra/LMI.h:83:50: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 83 | for (int at_col = at_row; at_col < m; at_col++) {\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~^~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:327:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:536:21: required from 'Derived& Eigen::PlainObjectBase::setZero(Eigen::Index, Eigen::Index) [with Derived = Eigen::Matrix; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"include/SDPAFormatManager.h:155:27: required from 'void SdpaFormatManager::loadSDPAFormatFile(std::ifstream&, std::vector >&, VT&) [with NT = double; std::ifstream = std::basic_ifstream; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/SDPAFormatManager.h:250:27: required from 'void SdpaFormatManager::loadSDPAFormatFile(std::ifstream&, Spectrahedron, Eigen::Matrix >&, Point&) [with Point = point >; NT = double; std::ifstream = std::basic_ifstream]'\\n\"},{\"type\":1,\"output\":\"load_sdpa_format_file.cpp:50:41: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:327:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:518:21: required from 'Derived& Eigen::PlainObjectBase::setZero(Eigen::Index) [with Derived = Eigen::Matrix; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"include/SDPAFormatManager.h:211:34: required from 'void SdpaFormatManager::loadSDPAFormatFile(std::ifstream&, std::vector >&, VT&) [with NT = double; std::ifstream = std::basic_ifstream; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/SDPAFormatManager.h:250:27: required from 'void SdpaFormatManager::loadSDPAFormatFile(std::ifstream&, Spectrahedron, Eigen::Matrix >&, Point&) [with Point = point >; NT = double; std::ifstream = std::basic_ifstream]'\\n\"},{\"type\":1,\"output\":\"load_sdpa_format_file.cpp:50:41: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"g++ -std=gnu++17 -I\\\"D:/Softwares/R/R-4.3.0/include\\\" -DNDEBUG -Iexternal -Iexternal/lpsolve/headers/run_headers -Iexternal/minimum_ellipsoid -Iinclude -Iinclude/convex_bodies/spectrahedra -I'D:/Softwares/R/R-4.3.0/library/Rcpp/include' -I'D:/Softwares/R/R-4.3.0/library/RcppEigen/include' -I'D:/Softwares/R/R-4.3.0/library/BH/include' -I\\\"D:/Softwares/RTools/rtools43/x86_64-w64-mingw32.static.posix/include\\\" -lm -ldl -DBOOST_NO_AUTO_PTR -O2 -Wall -mfpmath=sse -msse2 -mstackrealign -c poly_gen.cpp -o poly_gen.o\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:397,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Dense:1,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/RcppEigenForward.h:30,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/RcppEigen.h:25,\\n\"},{\"type\":1,\"output\":\" from poly_gen.cpp:11:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:60:39: warning: ignoring attributes on template argument '__m128' [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 60 | template<> struct is_arithmetic<__m128> { enum { value = true }; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:61:40: warning: ignoring attributes on template argument '__m128i' [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 61 | template<> struct is_arithmetic<__m128i> { enum { value = true }; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:62:40: warning: ignoring attributes on template argument '__m128d' [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 62 | template<> struct is_arithmetic<__m128d> { enum { value = true }; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:161:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 161 | template<> struct unpacket_traits { typedef float type; enum {size=4, alignment=Aligned16}; typedef Packet4f half; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:162:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 162 | template<> struct unpacket_traits { typedef double type; enum {size=2, alignment=Aligned16}; typedef Packet2d half; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:163:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 163 | template<> struct unpacket_traits { typedef int type; enum {size=4, alignment=Aligned16}; typedef Packet4i half; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:718:35: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 718 | struct palign_impl\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:741:35: warning: ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 741 | struct palign_impl\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:764:35: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 764 | struct palign_impl\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:778:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 778 | ptranspose(PacketBlock& kernel) {\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:783:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 783 | ptranspose(PacketBlock& kernel) {\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:790:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 790 | ptranspose(PacketBlock& kernel) {\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:377:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:15:70: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 15 | template<> struct conj_helper { \\\\\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:232:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL'\\n\"},{\"type\":1,\"output\":\" 232 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet2cf,Packet4f)\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:22:70: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 22 | template<> struct conj_helper { \\\\\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:232:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL'\\n\"},{\"type\":1,\"output\":\" 232 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet2cf,Packet4f)\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:15:70: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 15 | template<> struct conj_helper { \\\\\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:417:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL'\\n\"},{\"type\":1,\"output\":\" 417 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet1cd,Packet2d)\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:22:70: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 22 | template<> struct conj_helper { \\\\\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:417:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL'\\n\"},{\"type\":1,\"output\":\" 417 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet1cd,Packet2d)\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:370:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:243:49: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SSE.h:24:46: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(4) float>::half' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:439:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:46:50: required from 'class Eigen::QuaternionBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:250:7: required from 'class Eigen::Quaternion'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SSE.h:27:3: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:243:49: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SSE.h:88:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:46:50: required from 'class Eigen::QuaternionBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:250:7: required from 'class Eigen::Quaternion'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SSE.h:92:3: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/SparseCore:37,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Sparse:26,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/RcppEigenForward.h:31:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h: In instantiation of 'class Eigen::SparseMatrixBase >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseCompressedBase.h:36:7: required from 'class Eigen::SparseCompressedBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrix.h:96:7: required from 'class Eigen::SparseMatrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/IterativeSolvers/ConstrainedConjGrad.h:61:25: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h:47:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 47 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h:168:29: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) long long int>::half' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h:168:29: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h:178:72: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h:179:36: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/aux_/na_assert.hpp:23,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/arg.hpp:25,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/placeholders.hpp:24,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/iterator/iterator_categories.hpp:16,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/iterator/iterator_concepts.hpp:10,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/range/concepts.hpp:20,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/range/size_type.hpp:20,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/range/size.hpp:21,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/random/hyperexponential_distribution.hpp:29,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/random.hpp:70,\\n\"},{\"type\":1,\"output\":\" from poly_gen.cpp:14:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp:194:21: warning: unnecessary parentheses in declaration of 'assert_arg' [-Wparentheses]\\n\"},{\"type\":1,\"output\":\" 194 | failed ************ (Pred::************\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 195 | assert_arg( void (*)(Pred), typename assert_arg_pred::type )\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 196 | );\\n\"},{\"type\":1,\"output\":\" | ~ \\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp:194:21: note: remove parentheses\\n\"},{\"type\":1,\"output\":\" 194 | failed ************ (Pred::************\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" | -\\n\"},{\"type\":1,\"output\":\" 195 | assert_arg( void (*)(Pred), typename assert_arg_pred::type )\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 196 | );\\n\"},{\"type\":1,\"output\":\" | ~ \\n\"},{\"type\":1,\"output\":\" | -\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp:199:21: warning: unnecessary parentheses in declaration of 'assert_not_arg' [-Wparentheses]\\n\"},{\"type\":1,\"output\":\" 199 | failed ************ (boost::mpl::not_::************\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 200 | assert_not_arg( void (*)(Pred), typename assert_arg_pred_not::type )\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 201 | );\\n\"},{\"type\":1,\"output\":\" | ~ \\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp:199:21: note: remove parentheses\\n\"},{\"type\":1,\"output\":\" 199 | failed ************ (boost::mpl::not_::************\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" | -\\n\"},{\"type\":1,\"output\":\" 200 | assert_not_arg( void (*)(Pred), typename assert_arg_pred_not::type )\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 201 | );\\n\"},{\"type\":1,\"output\":\" | ~ \\n\"},{\"type\":1,\"output\":\" | -\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/traits.hpp:21,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/storage.hpp:27,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/vector.hpp:21,\\n\"},{\"type\":1,\"output\":\" from external/minimum_ellipsoid/khach.h:25,\\n\"},{\"type\":1,\"output\":\" from include/convex_bodies/vpolytope.h:19,\\n\"},{\"type\":1,\"output\":\" from poly_gen.cpp:19:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/detail/iterator.hpp:111:21: warning: 'template struct std::iterator' is deprecated [-Wdeprecated-declarations]\\n\"},{\"type\":1,\"output\":\" 111 | public std::iterator {\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~\\n\"},{\"type\":1,\"output\":\"In file included from d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\bits\\\\stl_algobase.h:65,\\n\"},{\"type\":1,\"output\":\" from d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\bits\\\\specfun.h:45,\\n\"},{\"type\":1,\"output\":\" from d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\cmath:1935,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/Rcpp/include/Rcpp/platform/compiler.h:100,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/Rcpp/include/Rcpp/r/headers.h:62,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/Rcpp/include/RcppCommon.h:30,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/Rcpp/include/Rcpp.h:27,\\n\"},{\"type\":1,\"output\":\" from poly_gen.cpp:10:\\n\"},{\"type\":1,\"output\":\"d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\bits\\\\stl_iterator_base_types.h:127:34: note: declared here\\n\"},{\"type\":1,\"output\":\" 127 | struct _GLIBCXX17_DEPRECATED iterator\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/detail/iterator.hpp:149:21: warning: 'template struct std::iterator' is deprecated [-Wdeprecated-declarations]\\n\"},{\"type\":1,\"output\":\" 149 | public std::iterator {\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~\\n\"},{\"type\":1,\"output\":\"d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\bits\\\\stl_iterator_base_types.h:127:34: note: declared here\\n\"},{\"type\":1,\"output\":\" 127 | struct _GLIBCXX17_DEPRECATED iterator\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/detail/iterator.hpp:204:21: warning: 'template struct std::iterator' is deprecated [-Wdeprecated-declarations]\\n\"},{\"type\":1,\"output\":\" 204 | public std::iterator {\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~\\n\"},{\"type\":1,\"output\":\"d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\bits\\\\stl_iterator_base_types.h:127:34: note: declared here\\n\"},{\"type\":1,\"output\":\" 127 | struct _GLIBCXX17_DEPRECATED iterator\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from poly_gen.cpp:23:\\n\"},{\"type\":1,\"output\":\"include/generators/v_polytopes_generators.h: In function 'Polytope random_vpoly(unsigned int, unsigned int, double)':\\n\"},{\"type\":1,\"output\":\"include/generators/v_polytopes_generators.h:32:23: warning: typedef 'Point' locally defined but not used [-Wunused-local-typedefs]\\n\"},{\"type\":1,\"output\":\" 32 | typedef PointType Point;\\n\"},{\"type\":1,\"output\":\" | ^~~~~\\n\"},{\"type\":1,\"output\":\"In file included from poly_gen.cpp:24:\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h: In function 'Polytope gen_zonotope_uniform(int, int, double)':\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:61:38: warning: typedef 'NT' locally defined but not used [-Wunused-local-typedefs]\\n\"},{\"type\":1,\"output\":\" 61 | typedef typename Polytope::NT NT;\\n\"},{\"type\":1,\"output\":\" | ^~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"include/cartesian_geom/point.h:22:53: required from 'class point >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:25:32: required from 'class Zonotope > >'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"include/cartesian_geom/point.h:22:53: required from 'class point >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:25:32: required from 'class Zonotope > >'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:30:8: required from 'class Zonotope > >'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h: In instantiation of 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]':\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:78:32: warning: comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 78 | for (unsigned int i = 0; i < m; ++i) {\\n\"},{\"type\":1,\"output\":\" | ~~^~~\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:80:36: warning: comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 80 | for (unsigned int j = 0; j < dim; ++j) {\\n\"},{\"type\":1,\"output\":\" | ~~^~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: required from 'class Eigen::MapBase, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 1, -1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, 1, -1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, 1, -1, false>'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:83:14: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::Block, 1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, 1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, 1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:83:26: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, 1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, 1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, 1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, 1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, 1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:83:26: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, 1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, 1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, 1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, 1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, 1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:84:29: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h: In instantiation of 'Polytope gen_zonotope_gaussian(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]':\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:59:79: required from here\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:36:32: warning: comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 36 | for (unsigned int i = 0; i < m; ++i) {\\n\"},{\"type\":1,\"output\":\" | ~~^~~\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:38:36: warning: comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 38 | for (unsigned int j = 0; j < dim; ++j) {\\n\"},{\"type\":1,\"output\":\" | ~~^~~~~\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h: In instantiation of 'Polytope gen_zonotope_exponential(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]':\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:61:82: required from here\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:115:32: warning: comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 115 | for (unsigned int i = 0; i < m; ++i) {\\n\"},{\"type\":1,\"output\":\" | ~~^~~\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:117:36: warning: comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 117 | for (unsigned int j = 0; j < dim; ++j) {\\n\"},{\"type\":1,\"output\":\" | ~~^~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"include/generators/v_polytopes_generators.h:69:20: required from 'Polytope random_vpoly(unsigned int, unsigned int, double) [with Polytope = VPolytope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:78:71: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"include/generators/v_polytopes_generators.h: In instantiation of 'Polytope random_vpoly(unsigned int, unsigned int, double) [with Polytope = VPolytope > >; RNGType = boost::random::mersenne_twister_engine]':\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:78:71: required from here\\n\"},{\"type\":1,\"output\":\"include/generators/v_polytopes_generators.h:44:18: warning: unused variable 'j' [-Wunused-variable]\\n\"},{\"type\":1,\"output\":\" 44 | unsigned int j;\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"include/generators/v_polytopes_generators.h: In instantiation of 'Polytope random_vpoly_incube(unsigned int, unsigned int, double) [with Polytope = VPolytope > >; RNGType = boost::random::mersenne_twister_engine]':\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:81:78: required from here\\n\"},{\"type\":1,\"output\":\"include/generators/v_polytopes_generators.h:109:27: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 109 | for (int j = 0; j < d; ++j) {\\n\"},{\"type\":1,\"output\":\" | ~~^~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/generators/v_polytopes_generators.h:124:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector::size_type' {aka 'long long unsigned int'} [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 124 | for (int i = 0; i < indices.size(); ++i) {\\n\"},{\"type\":1,\"output\":\" | ~~^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"include/generators/v_polytopes_generators.h:126:31: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 126 | for (int j = 0; j < d; ++j) {\\n\"},{\"type\":1,\"output\":\" | ~~^~~\\n\"},{\"type\":1,\"output\":\"include/generators/v_polytopes_generators.h:134:27: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 134 | for (int i = 0; i < k; ++i) {\\n\"},{\"type\":1,\"output\":\" | ~~^~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/generators/v_polytopes_generators.h:135:31: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 135 | for (int j = 0; j < d; ++j) {\\n\"},{\"type\":1,\"output\":\" | ~~^~~\\n\"},{\"type\":1,\"output\":\"include/generators/v_polytopes_generators.h:151:27: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 151 | for (int i = 0; i < k; ++i) {\\n\"},{\"type\":1,\"output\":\" | ~~^~~\\n\"},{\"type\":1,\"output\":\"include/generators/v_polytopes_generators.h:155:35: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 155 | for (int j = 0; j < d; ++j) V2(count_row, j) = V(i,j);\\n\"},{\"type\":1,\"output\":\" | ~~^~~\\n\"},{\"type\":1,\"output\":\"include/generators/v_polytopes_generators.h:103:18: warning: unused variable 'j' [-Wunused-variable]\\n\"},{\"type\":1,\"output\":\" 103 | unsigned int j, count_row,it=0;\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"In file included from poly_gen.cpp:22:\\n\"},{\"type\":1,\"output\":\"include/generators/h_polytopes_generator.h: In instantiation of 'Polytope random_hpoly(unsigned int, unsigned int, double) [with Polytope = HPolytope > >; RNGType = boost::random::mersenne_twister_engine]':\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:103:71: required from here\\n\"},{\"type\":1,\"output\":\"include/generators/h_polytopes_generator.h:34:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 34 | for (int i = 0; i < m; ++i) {\\n\"},{\"type\":1,\"output\":\" | ~~^~~\\n\"},{\"type\":1,\"output\":\"include/generators/h_polytopes_generator.h: In instantiation of 'Polytope random_hpoly_ball(unsigned int, unsigned int, double) [with Polytope = HPolytope > >; RNGType = boost::random::mersenne_twister_engine]':\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:106:76: required from here\\n\"},{\"type\":1,\"output\":\"include/generators/h_polytopes_generator.h:82:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 82 | for (int i = 0; i < m; ++i) {\\n\"},{\"type\":1,\"output\":\" | ~~^~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:41: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, -1, -1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, -1, -1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CommaInitializer.h:95:21: required from 'Eigen::CommaInitializer& Eigen::CommaInitializer::operator,(const Eigen::DenseBase&) [with OtherDerived = Eigen::Matrix; XprType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"extractMatPoly.h:32:23: required from 'Rcpp::NumericMatrix extractMatPoly(Polytope) [with Polytope = Zonotope > >; Rcpp::NumericMatrix = Rcpp::Matrix<14>]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:38: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:40: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, 1, -1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::norm() const [with Derived = Eigen::Block, 1, -1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:83:40: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Block, 1, -1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::Block, 1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Assign.h:66:28: required from 'Derived& Eigen::MatrixBase::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::Block, 1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Derived = Eigen::Block, 1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:83:17: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base >, Eigen::Matrix, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl >, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product >, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:72:31: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix, const Eigen::Transpose > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix, const Eigen::Transpose > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix, const Eigen::Transpose > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Matrix, const Eigen::Transpose >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:73:24: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:73:45: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:73:45: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Diagonal.h:63:53: required from 'class Eigen::Diagonal, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:91:21: required from 'class Eigen::Tridiagonalization >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:105:62: required from 'class Eigen::SelfAdjointEigenSolver >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Diagonal.h:63:53: required from 'class Eigen::Diagonal, -1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:96:21: required from 'class Eigen::Tridiagonalization >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:105:62: required from 'class Eigen::SelfAdjointEigenSolver >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:93:40: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:445:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:522:41: required from 'struct Eigen::internal::unary_evaluator, const Eigen::Block, 1, -1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Block, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, 1, -1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, 1, -1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:46: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, 1, -1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::norm() const [with Derived = Eigen::Block, 1, -1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:83:40: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:433:34: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:683:29: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:689:32: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:689:60: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Diagonal.h:63:53: required from 'class Eigen::Diagonal, const Eigen::Matrix >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:697:61: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:750:35: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, -1, 1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:757:62: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:769:65: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false> >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:829:17: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 1, -1, false>; Src = Eigen::Matrix; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 1, -1, false>; Src = Eigen::Matrix; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Block, 1, -1, false>; Src = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Assign.h:66:28: required from 'Derived& Eigen::MatrixBase::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Matrix; Derived = Eigen::Block, 1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"include/generators/h_polytopes_generator.h:48:18: required from 'Polytope random_hpoly(unsigned int, unsigned int, double) [with Polytope = HPolytope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:103:71: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/TriangularMatrix.h:174:44: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:722:42: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:327:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:662:21: required from 'Derived& Eigen::PlainObjectBase::setOnes(Eigen::Index, Eigen::Index) [with Derived = Eigen::Matrix; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:420:22: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Diagonal.h:63:53: required from 'class Eigen::Diagonal, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:446:24: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Diagonal.h:63:53: required from 'class Eigen::Diagonal, -1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:447:40: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:439:49: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, true>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, 2, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, 2, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, 2, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, 2, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, 2, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, 2, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:722:42: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:174:81: required from 'class Eigen::DenseBase, 1, 2, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, 2, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, 2, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: required from 'class Eigen::MapBase, 1, 2, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 1, 2, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:722:42: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:454:5: required from 'void Eigen::internal::apply_rotation_in_the_plane(Eigen::DenseBase&, Eigen::DenseBase&, const Eigen::JacobiRotation&) [with VectorX = Eigen::Block, -1, 1, true>; VectorY = Eigen::Block, -1, 1, true>; OtherScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:296:40: required from 'void Eigen::MatrixBase::applyOnTheRight(Eigen::Index, Eigen::Index, const Eigen::JacobiRotation&) [with OtherScalar = double; Derived = Eigen::Matrix; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:726:53: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:71:51: required from 'class Eigen::internal::visitor_evaluator, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:110:17: required from 'void Eigen::DenseBase::visit(Visitor&) const [with Visitor = Eigen::internal::max_coeff_visitor, -1, 1, false> >; Derived = Eigen::Block, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:266:14: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::maxCoeff(IndexType*) const [with IndexType = long long int; Derived = Eigen::Block, -1, 1, false>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:769:88: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:368:46: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, CoeffVectorType&) [with MatrixType = Eigen::Matrix; CoeffVectorType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:445:31: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:368:35: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:439:49: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:163:27: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:165:25: required from 'void Eigen::MatrixBase::applyHouseholderOnTheRight(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Block, -1, 1, false>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:256:43: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:166:55: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, false> >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, false> >, 0, 5>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, false> >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, false> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:166:34: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:126:41: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:128:25: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Block, -1, 1, false>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:259:42: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:129:29: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Block, -1, 1, false>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:259:42: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0, 5>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:129:41: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/TriangularMatrix.h:174:44: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:92:96: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 2>, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 2>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 2>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, 2>, Eigen::Matrix, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, 2>, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, 2>, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:94:66: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/TriangularMatrix.h:174:44: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 1>, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, 1>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, 1>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base >, 1>, Eigen::Matrix, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl >, 1>, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product >, 1>, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:95:66: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 5>, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, 5>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, 5>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, 5>, Eigen::Matrix, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, false>, 5>, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false>, 5>, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:96:22: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:747:33: required from 'static Derived& Eigen::internal::setIdentity_impl::run(Derived&) [with Derived = Eigen::Matrix; bool Big = false]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:776:50: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:690:45: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, 2, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:454:5: required from 'void Eigen::internal::apply_rotation_in_the_plane(Eigen::DenseBase&, Eigen::DenseBase&, const Eigen::JacobiRotation&) [with VectorX = Eigen::Block, 1, 2, false>; VectorY = Eigen::Block, 1, 2, false>; OtherScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:281:40: required from 'void Eigen::MatrixBase::applyOnTheLeft(Eigen::Index, Eigen::Index, const Eigen::JacobiRotation&) [with OtherScalar = double; Derived = Eigen::Matrix; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/misc/RealSvd2x2.h:46:19: required from 'void Eigen::internal::real_2x2_jacobi_svd(const MatrixType&, Index, Index, Eigen::JacobiRotation*, Eigen::JacobiRotation*) [with MatrixType = Eigen::Matrix; RealScalar = double; Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:722:42: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>; SrcXprType = Eigen::Matrix; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>; SrcXprType = Eigen::Matrix; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>; Src = Eigen::Matrix; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>; Src = Eigen::Matrix; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Block, -1, -1, false>; Src = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Assign.h:66:28: required from 'Derived& Eigen::MatrixBase::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Matrix; Derived = Eigen::Block, -1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CommaInitializer.h:95:64: required from 'Eigen::CommaInitializer& Eigen::CommaInitializer::operator,(const Eigen::DenseBase&) [with OtherDerived = Eigen::Matrix; XprType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"extractMatPoly.h:32:23: required from 'Rcpp::NumericMatrix extractMatPoly(Polytope) [with Polytope = Zonotope > >; Rcpp::NumericMatrix = Rcpp::Matrix<14>]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:38: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseUnaryOp, const Eigen::Matrix >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_max_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Matrix > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_max_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Matrix >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:438:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::maxCoeff() const [with Derived = Eigen::CwiseUnaryOp, const Eigen::Matrix >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:433:45: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, -1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, -1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, true>, -1, 1, false>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:454:5: required from 'void Eigen::internal::apply_rotation_in_the_plane(Eigen::DenseBase&, Eigen::DenseBase&, const Eigen::JacobiRotation&) [with VectorX = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; VectorY = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; OtherScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:296:40: required from 'void Eigen::MatrixBase::applyOnTheRight(Eigen::Index, Eigen::Index, const Eigen::JacobiRotation&) [with OtherScalar = double; Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:862:24: required from 'void Eigen::internal::tridiagonal_qr_step(RealScalar*, RealScalar*, Index, Index, Scalar*, Index) [with int StorageOrder = 0; RealScalar = double; Scalar = double; Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:520:87: required from 'Eigen::ComputationInfo Eigen::internal::computeFromTridiagonal_impl(DiagType&, SubDiagType&, Eigen::Index, bool, MatrixType&) [with MatrixType = Eigen::Matrix; DiagType = Eigen::Matrix; SubDiagType = Eigen::Matrix; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:439:49: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:126:38: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:126:41: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0, 5>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:129:41: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, true>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false>, -1, 1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, 1, true>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false>, -1, 1, true>, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:63:90: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:63:57: required from 'void Eigen::internal::make_block_householder_triangular_factor(TriangularFactorType&, const VectorsType&, const CoeffsType&) [with TriangularFactorType = Eigen::Matrix; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false>, -1, -1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:64:57: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:67:61: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, true>, -1, 1, false>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, 1, true>, -1, 1, false>, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:91:22: required from 'void Eigen::MatrixBase::makeHouseholder(EssentialPart&, Scalar&, RealScalar&) const [with EssentialPart = Eigen::VectorBlock, -1, 1, true>, -1, 1, false>, -1>; Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; Scalar = double; RealScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:45:18: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:44: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block, -1, 1, false>; U = Eigen::Block, -1, 1, true>, -1, 1, false>; bool NeedToTranspose = false; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false>, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, false>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, 1, false>, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointRank2Update.h:33:74: required from 'static void Eigen::internal::selfadjoint_rank2_update_selector::run(Scalar*, Index, const UType&, const VType&, const Scalar&) [with Scalar = double; Index = long long int; UType = Eigen::Block, -1, 1, true>, -1, 1, false>; VType = Eigen::Block, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointRank2Update.h:86:10: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointRank2Update.h:34:60: required from 'static void Eigen::internal::selfadjoint_rank2_update_selector::run(Scalar*, Index, const UType&, const VType&, const Scalar&) [with Scalar = double; Index = long long int; UType = Eigen::Block, -1, 1, true>, -1, 1, false>; VType = Eigen::Block, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointRank2Update.h:86:10: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointRank2Update.h:34:23: required from 'static void Eigen::internal::selfadjoint_rank2_update_selector::run(Scalar*, Index, const UType&, const VType&, const Scalar&) [with Scalar = double; Index = long long int; UType = Eigen::Block, -1, 1, true>, -1, 1, false>; VType = Eigen::Block, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointRank2Update.h:86:10: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, -1, 1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:40: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, -1, 1, true>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:71:51: required from 'class Eigen::internal::visitor_evaluator, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:110:17: required from 'void Eigen::DenseBase::visit(Visitor&) const [with Visitor = Eigen::internal::max_coeff_visitor, 1, -1, false> >; Derived = Eigen::Block, 1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:266:14: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::maxCoeff(IndexType*) const [with IndexType = long long int; Derived = Eigen::Block, 1, -1, false>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:519:90: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:475:3: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:40: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:40: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:76:71: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, true>, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:141:7: required from 'Eigen::DenseCoeffsBase::CoeffReturnType Eigen::DenseCoeffsBase::coeff(Eigen::Index) const [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; CoeffReturnType = const double&; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:77:20: required from 'void Eigen::MatrixBase::makeHouseholder(EssentialPart&, Scalar&, RealScalar&) const [with EssentialPart = Eigen::VectorBlock, -1, 1, true>, -1, 1, false>, -1>; Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; Scalar = double; RealScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:45:18: required from 'void Eigen::MatrixBase::makeHouseholderInPlace(Scalar&, RealScalar&) [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; Scalar = double; RealScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:361:59: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, CoeffVectorType&) [with MatrixType = Eigen::Matrix; CoeffVectorType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:445:31: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:369:102: required from 'struct Eigen::internal::plain_object_eval, -1, -1, false>, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:369:45: required from 'struct Eigen::internal::generic_product_impl, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Src = Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/NoAlias.h:42:31: required from 'ExpressionType& Eigen::NoAlias::operator=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>; ExpressionType = Eigen::Map, 0, Eigen::Stride<0, 0> >; StorageBase = Eigen::MatrixBase]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:163:19: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:369:102: required from 'struct Eigen::internal::plain_object_eval, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:370:45: required from 'struct Eigen::internal::generic_product_impl, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Src = Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/NoAlias.h:42:31: required from 'ExpressionType& Eigen::NoAlias::operator=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>; ExpressionType = Eigen::Map, 0, Eigen::Stride<0, 0> >; StorageBase = Eigen::MatrixBase]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:163:19: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:141:7: required from 'Eigen::DenseCoeffsBase::CoeffReturnType Eigen::DenseCoeffsBase::coeff(Eigen::Index) const [with Derived = Eigen::Block, -1, 1, false>; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:181:19: required from 'Eigen::DenseCoeffsBase::CoeffReturnType Eigen::DenseCoeffsBase::operator()(Eigen::Index) const [with Derived = Eigen::Block, -1, 1, false>; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:63:53: required from 'void Eigen::internal::make_block_householder_triangular_factor(TriangularFactorType&, const VectorsType&, const CoeffsType&) [with TriangularFactorType = Eigen::Matrix; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::Matrix; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_max_op; Derived = Eigen::internal::redux_evaluator >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_max_op; Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:438:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::maxCoeff() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:509:85: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:475:3: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Matrix; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Matrix; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:689:18: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, true>, -1, 1, false>, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, 1, true>, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:522:41: required from 'struct Eigen::internal::unary_evaluator, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::Block, -1, -1, false>, -1, 1, true>; Functor = add_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::Block, -1, -1, false>, -1, 1, true>; Functor = Eigen::internal::add_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Src = Eigen::Block, -1, -1, false>, -1, 1, true>; Func = add_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Src = Eigen::Block, -1, -1, false>, -1, 1, true>; Func = add_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:177:18: required from 'Derived& Eigen::MatrixBase::operator+=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::Block, -1, -1, false>, -1, 1, true>; Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:164:9: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, -1, false>, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:280:48: required from 'void Eigen::internal::outer_product_selector_run(Dst&, const Lhs&, const Rhs&, const Func&, const false_type&) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >; Rhs = Eigen::Transpose, -1, 1, false> >; Func = generic_product_impl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, false> >, Eigen::DenseShape, Eigen::DenseShape, 5>::sub]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:329:41: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::Block, -1, -1, false>, 1, -1, false>; Functor = add_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::Block, -1, -1, false>, 1, -1, false>; Functor = Eigen::internal::add_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Src = Eigen::Block, -1, -1, false>, 1, -1, false>; Func = add_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Src = Eigen::Block, -1, -1, false>, 1, -1, false>; Func = add_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:177:18: required from 'Derived& Eigen::MatrixBase::operator+=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::Block, -1, -1, false>, 1, -1, false>; Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:127:9: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, Eigen::Matrix, 1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, Eigen::Matrix, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::Matrix, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base >, Eigen::Matrix, 1, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl >, Eigen::Matrix, 1, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product >, Eigen::Matrix, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:436:50: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:72:15: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, false>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:165:45: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:51: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block, -1, 1, false>; U = Eigen::Block, -1, 1, true>, -1, 1, false>; bool NeedToTranspose = false; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: required from 'typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType Eigen::MatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Block, -1, 1, true>, -1, 1, false>; Derived = Eigen::Block, -1, 1, false>; typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType = double; typename Eigen::internal::traits::Scalar = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:370:86: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true> >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Block, -1, 1, true> > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:46: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, -1, 1, true>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::norm() const [with Derived = Eigen::Block, -1, 1, true>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:505:52: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Block, -1, 1, true>, -1, 1, false> > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:46: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::norm() const [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:565:77: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:327:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:501:10: required from 'Derived& Eigen::DenseBase::setZero() [with Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:16: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:46: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:76:71: required from 'void Eigen::MatrixBase::makeHouseholder(EssentialPart&, Scalar&, RealScalar&) const [with EssentialPart = Eigen::VectorBlock, -1, 1, true>, -1, 1, false>, -1>; Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; Scalar = double; RealScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:45:18: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 2, Eigen::Stride<0, 0> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 2, Eigen::Stride<0, 0> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 2, Eigen::Stride<0, 0> >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 2, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 2, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 2, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, false>, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:499:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'struct Eigen::internal::general_matrix_vector_product, 0, false, double, Eigen::internal::const_blas_data_mapper, false, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:244:134: required from 'static void Eigen::internal::gemv_dense_selector<2, 0, true>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; Dest = Eigen::Map, 0, Eigen::Stride<0, 0> >; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:383:34: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: required from 'static void Eigen::internal::generic_product_impl_base::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:75:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 75 | typedef typename conditional::type LhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:76:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 76 | typedef typename conditional::type RhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:77:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 77 | typedef typename conditional::type ResPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 2, Eigen::Stride<0, 0> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 2, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 2, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 2, Eigen::Stride<0, 0> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 2, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:287:40: required from 'static void Eigen::internal::gemv_dense_selector<2, 0, true>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; Dest = Eigen::Map, 0, Eigen::Stride<0, 0> >; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:383:34: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, 0, Eigen::Stride<0, 0> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:197:26: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false> > >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, 1, false> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:197:43: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:961:41: required from 'struct Eigen::internal::evaluator, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false>; SrcXprType = Eigen::Matrix; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false>; SrcXprType = Eigen::Matrix; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Src = Eigen::Matrix; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:797:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Src = Eigen::Product, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, true>, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false>; SrcXprType = Eigen::Matrix; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false>; SrcXprType = Eigen::Matrix; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Src = Eigen::Matrix; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:797:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Src = Eigen::Product, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Src = Eigen::Product, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Assign.h:66:28: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:496:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: In instantiation of 'class Eigen::internal::gebp_traits':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:92:29: required from 'struct Eigen::internal::product_triangular_matrix_matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:443:12: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, -1, -1, false>; int Mode = 5; bool LhsIsTriangular = true; Lhs = const Eigen::Block, -1, -1, false>; Rhs = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, -1, -1, false>; Lhs = Eigen::TriangularView, -1, -1, false>, 5>; Rhs = Eigen::Matrix; int ProductTag = 8; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Block, -1, -1, false>; Lhs = Eigen::TriangularView, -1, -1, false>, 5>; Rhs = Eigen::Matrix; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, 5>, Eigen::Matrix, Eigen::TriangularShape, Eigen::DenseShape, 8>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:357:18: required from 'static void Eigen::internal::generic_product_impl_base::subTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Block, -1, -1, false>; Lhs = Eigen::TriangularView, -1, -1, false>, 5>; Rhs = Eigen::Matrix; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, 5>, Eigen::Matrix, Eigen::TriangularShape, Eigen::DenseShape, 8>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:178:42: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:391:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 391 | typedef typename conditional::type LhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:392:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 392 | typedef typename conditional::type RhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:393:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 393 | typedef typename conditional::type ResPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:59: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, -1, -1, false>; int Mode = 5; bool LhsIsTriangular = true; Lhs = const Eigen::Block, -1, -1, false>; Rhs = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:74: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, -1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, -1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false>, -1, -1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:462:59: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, -1, -1, false>; int Mode = 5; bool LhsIsTriangular = true; Lhs = const Eigen::Block, -1, -1, false>; Rhs = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, true>, -1, 1, false>, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Assign.h:66:28: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:503:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h: In instantiation of 'static void Eigen::internal::selfadjoint_matrix_vector_product::run(Index, const Scalar*, Index, const Scalar*, Scalar*, Scalar) [with Scalar = double; Index = long long int; int StorageOrder = 0; int UpLo = 1; bool ConjugateLhs = false; bool ConjugateRhs = false; int Version = 0]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:227:7: required from 'static void Eigen::internal::selfadjoint_product_impl::run(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, -1, 1, false>; Lhs = Eigen::Block, -1, -1, false>; int LhsMode = 17; Rhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:772:109: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, -1, 1, false>; Lhs = Eigen::SelfAdjointView, -1, -1, false>, 1>; Rhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; int ProductTag = 7; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Block, -1, 1, false>; Lhs = Eigen::SelfAdjointView, -1, -1, false>, 1>; Rhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::SelfAdjointShape, Eigen::DenseShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: required from 'static void Eigen::internal::generic_product_impl_base::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Block, -1, 1, false>; Lhs = Eigen::SelfAdjointView, -1, -1, false>, 1>; Rhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::SelfAdjointShape, Eigen::DenseShape, 7>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Block, -1, 1, false>; Lhs = Eigen::SelfAdjointView, -1, -1, false>, 1>; Rhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:60:121: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 60 | conj_helper::IsComplex && EIGEN_LOGICAL_XOR(ConjugateLhs, IsRowMajor), ConjugateRhs> pcj0;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:60:121: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:61:121: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 61 | conj_helper::IsComplex && EIGEN_LOGICAL_XOR(ConjugateLhs, !IsRowMajor), ConjugateRhs> pcj1;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:61:121: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false> > >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, 1, true>, -1, 1, false> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:197:43: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'static void Eigen::internal::general_matrix_vector_product::run(Index, Index, const LhsMapper&, const RhsMapper&, ResScalar*, Index, RhsScalar) [with Index = long long int; LhsScalar = double; LhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateLhs = false; RhsScalar = double; RhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateRhs = false; int Version = 0; ResScalar = double]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:244:134: required from 'static void Eigen::internal::gemv_dense_selector<2, 0, true>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; Dest = Eigen::Map, 0, Eigen::Stride<0, 0> >; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:383:34: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: required from 'static void Eigen::internal::generic_product_impl_base::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:112:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 112 | conj_helper pcj;\\n\"},{\"type\":1,\"output\":\" | ^~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:112:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'struct Eigen::internal::general_matrix_vector_product, 1, false, double, Eigen::internal::const_blas_data_mapper, false, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:339:132: required from 'static void Eigen::internal::gemv_dense_selector<2, 1, true>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, -1, 1, false> > >; Dest = Eigen::Transpose, 0, Eigen::Stride<0, 0> > >; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:197:12: required from 'static void Eigen::internal::gemv_dense_selector<1, StorageOrder, BlasCompatible>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, 1, false> >; Rhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Dest = Eigen::Map, 0, Eigen::Stride<0, 0> >; int StorageOrder = 0; bool BlasCompatible = true; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:383:34: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Transpose, -1, 1, false> >; Rhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Transpose, -1, 1, false> >; Rhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Derived = Eigen::internal::generic_product_impl, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: required from 'static void Eigen::internal::generic_product_impl_base::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Transpose, -1, 1, false> >; Rhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Derived = Eigen::internal::generic_product_impl, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:351:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 351 | typedef typename conditional::type LhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:352:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 352 | typedef typename conditional::type RhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:353:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 353 | typedef typename conditional::type ResPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> > >, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, true>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, true>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, 1, -1, true>, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:32: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:48: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; int Mode = 5; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = const Eigen::Block, -1, -1, false>, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:751:113: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:150:68: required from 'static void Eigen::internal::product_triangular_matrix_matrix::run(Index, Index, Index, const Scalar*, Index, const Scalar*, Index, Scalar*, Index, Index, const Scalar&, Eigen::internal::level3_blocking&) [with Scalar = double; Index = long long int; int Mode = 5; int LhsStorageOrder = 0; bool ConjugateLhs = false; int RhsStorageOrder = 0; bool ConjugateRhs = false; int ResInnerStride = 1; int Version = 0]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:443:12: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, -1, -1, false>; int Mode = 5; bool LhsIsTriangular = true; Lhs = const Eigen::Block, -1, -1, false>; Rhs = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Diagonal.h:63:53: required from 'class Eigen::Diagonal, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:153:32: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:174:81: required from 'class Eigen::DenseBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Diagonal.h:63:53: required from 'class Eigen::Diagonal, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:153:32: required from 'static void Eigen::internal::product_triangular_matrix_matrix::run(Index, Index, Index, const Scalar*, Index, const Scalar*, Index, Scalar*, Index, Index, const Scalar&, Eigen::internal::level3_blocking&) [with Scalar = double; Index = long long int; int Mode = 5; int LhsStorageOrder = 0; bool ConjugateLhs = false; int RhsStorageOrder = 0; bool ConjugateRhs = false; int ResInnerStride = 1; int Version = 0]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:443:12: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, -1, -1, false>; int Mode = 5; bool LhsIsTriangular = true; Lhs = const Eigen::Block, -1, -1, false>; Rhs = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:371:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/Memory.h: In instantiation of 'Index Eigen::internal::first_default_aligned(const Scalar*, Index) [with Scalar = double; Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:88:68: required from 'static void Eigen::internal::selfadjoint_matrix_vector_product::run(Index, const Scalar*, Index, const Scalar*, Scalar*, Scalar) [with Scalar = double; Index = long long int; int StorageOrder = 0; int UpLo = 1; bool ConjugateLhs = false; bool ConjugateRhs = false; int Version = 0]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:227:7: required from 'static void Eigen::internal::selfadjoint_product_impl::run(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, -1, 1, false>; Lhs = Eigen::Block, -1, -1, false>; int LhsMode = 17; Rhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:772:109: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, -1, 1, false>; Lhs = Eigen::SelfAdjointView, -1, -1, false>, 1>; Rhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; int ProductTag = 7; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Block, -1, 1, false>; Lhs = Eigen::SelfAdjointView, -1, -1, false>, 1>; Rhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::SelfAdjointShape, Eigen::DenseShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: required from 'static void Eigen::internal::generic_product_impl_base::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Block, -1, 1, false>; Lhs = Eigen::SelfAdjointView, -1, -1, false>, 1>; Rhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::SelfAdjointShape, Eigen::DenseShape, 7>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/Memory.h:470:60: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 470 | return first_aligned::alignment>(array, size);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'static void Eigen::internal::general_matrix_vector_product::run(Index, Index, const LhsMapper&, const RhsMapper&, ResScalar*, Index, ResScalar) [with Index = long long int; LhsScalar = double; LhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateLhs = false; RhsScalar = double; RhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateRhs = false; int Version = 0; ResScalar = double]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:339:132: required from 'static void Eigen::internal::gemv_dense_selector<2, 1, true>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, -1, 1, false> > >; Dest = Eigen::Transpose, 0, Eigen::Stride<0, 0> > >; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:197:12: required from 'static void Eigen::internal::gemv_dense_selector<1, StorageOrder, BlasCompatible>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, 1, false> >; Rhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Dest = Eigen::Map, 0, Eigen::Stride<0, 0> >; int StorageOrder = 0; bool BlasCompatible = true; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:383:34: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Transpose, -1, 1, false> >; Rhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Transpose, -1, 1, false> >; Rhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Derived = Eigen::internal::generic_product_impl, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: required from 'static void Eigen::internal::generic_product_impl_base::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Transpose, -1, 1, false> >; Rhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Derived = Eigen::internal::generic_product_impl, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:385:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 385 | conj_helper pcj;\\n\"},{\"type\":1,\"output\":\" | ^~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:385:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/BlasUtil.h:464:13: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, -1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, -1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, true>, 1, -1, false> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, true>, 1, -1, false> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, true>, 1, -1, false> >, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/VectorBlock.h:56:47: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:341:54: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >; Dest = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; int Mode = 6; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:59: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Matrix; int Mode = 6; bool LhsIsTriangular = true; Lhs = const Eigen::Transpose, -1, -1, false> >; Rhs = Eigen::Block, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:74: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false> >, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false> >, -1, -1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false> >, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false> >, -1, -1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:462:59: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Matrix; int Mode = 6; bool LhsIsTriangular = true; Lhs = const Eigen::Transpose, -1, -1, false> >; Rhs = Eigen::Block, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: In instantiation of 'void Eigen::internal::gemm_pack_rhs::operator()(Scalar*, const DataMapper&, Index, Index, Index, Index) [with Scalar = double; Index = long long int; DataMapper = Eigen::internal::const_blas_data_mapper; int nr = 4; bool Conjugate = false; bool PanelMode = false]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:175:15: required from 'static void Eigen::internal::product_triangular_matrix_matrix::run(Index, Index, Index, const Scalar*, Index, const Scalar*, Index, Scalar*, Index, Index, const Scalar&, Eigen::internal::level3_blocking&) [with Scalar = double; Index = long long int; int Mode = 5; int LhsStorageOrder = 0; bool ConjugateLhs = false; int RhsStorageOrder = 0; bool ConjugateRhs = false; int ResInnerStride = 1; int Version = 0]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:443:12: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, -1, -1, false>; int Mode = 5; bool LhsIsTriangular = true; Lhs = const Eigen::Block, -1, -1, false>; Rhs = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, -1, -1, false>; Lhs = Eigen::TriangularView, -1, -1, false>, 5>; Rhs = Eigen::Matrix; int ProductTag = 8; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Block, -1, -1, false>; Lhs = Eigen::TriangularView, -1, -1, false>, 5>; Rhs = Eigen::Matrix; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, 5>, Eigen::Matrix, Eigen::TriangularShape, Eigen::DenseShape, 8>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:357:18: required from 'static void Eigen::internal::generic_product_impl_base::subTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Block, -1, -1, false>; Lhs = Eigen::TriangularView, -1, -1, false>, 5>; Rhs = Eigen::Matrix; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, 5>, Eigen::Matrix, Eigen::TriangularShape, Eigen::DenseShape, 8>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:178:42: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1981:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 1981 | PacketBlock kernel;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: In instantiation of 'void Eigen::internal::gebp_kernel::operator()(const DataMapper&, const LhsScalar*, const RhsScalar*, Index, Index, Index, ResScalar, Index, Index, Index, Index) [with LhsScalar = double; RhsScalar = double; Index = long long int; DataMapper = Eigen::internal::blas_data_mapper; int mr = 4; int nr = 4; bool ConjugateLhs = false; bool ConjugateRhs = false; ResScalar = double]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:205:22: required from 'static void Eigen::internal::product_triangular_matrix_matrix::run(Index, Index, Index, const Scalar*, Index, const Scalar*, Index, Scalar*, Index, Index, const Scalar&, Eigen::internal::level3_blocking&) [with Scalar = double; Index = long long int; int Mode = 5; int LhsStorageOrder = 0; bool ConjugateLhs = false; int RhsStorageOrder = 0; bool ConjugateRhs = false; int ResInnerStride = 1; int Version = 0]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:443:12: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, -1, -1, false>; int Mode = 5; bool LhsIsTriangular = true; Lhs = const Eigen::Block, -1, -1, false>; Rhs = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, -1, -1, false>; Lhs = Eigen::TriangularView, -1, -1, false>, 5>; Rhs = Eigen::Matrix; int ProductTag = 8; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Block, -1, -1, false>; Lhs = Eigen::TriangularView, -1, -1, false>, 5>; Rhs = Eigen::Matrix; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, 5>, Eigen::Matrix, Eigen::TriangularShape, Eigen::DenseShape, 8>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:357:18: required from 'static void Eigen::internal::generic_product_impl_base::subTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Block, -1, -1, false>; Lhs = Eigen::TriangularView, -1, -1, false>, 5>; Rhs = Eigen::Matrix; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, 5>, Eigen::Matrix, Eigen::TriangularShape, Eigen::DenseShape, 8>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:178:42: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1537:103: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 1537 | const int SResPacketHalfSize = unpacket_traits::half>::size;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1592:135: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 1592 | typedef typename conditional=8,typename unpacket_traits::half,SResPacket>::type SResPacketHalf;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1593:135: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 1593 | typedef typename conditional=8,typename unpacket_traits::half,SLhsPacket>::type SLhsPacketHalf;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1594:135: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 1594 | typedef typename conditional=8,typename unpacket_traits::half,SRhsPacket>::type SRhsPacketHalf;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1595:135: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 1595 | typedef typename conditional=8,typename unpacket_traits::half,SAccPacket>::type SAccPacketHalf;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: In instantiation of 'void Eigen::internal::gemm_pack_lhs::operator()(Scalar*, const DataMapper&, Index, Index, Index, Index) [with Scalar = double; Index = long long int; DataMapper = Eigen::internal::const_blas_data_mapper; int Pack1 = 4; int Pack2 = 2; bool Conjugate = false; bool PanelMode = false]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixMatrix.h:182:17: required from 'static void Eigen::internal::general_matrix_matrix_product::run(Index, Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, Index, ResScalar, Eigen::internal::level3_blocking&, Eigen::internal::GemmParallelInfo*) [with Index = long long int; LhsScalar = double; int LhsStorageOrder = 1; bool ConjugateLhs = false; RhsScalar = double; int RhsStorageOrder = 0; bool ConjugateRhs = false; int ResInnerStride = 1; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixMatrix.h:228:14: required from 'void Eigen::internal::gemm_functor::operator()(Index, Index, Index, Index, Eigen::internal::GemmParallelInfo*) const [with Scalar = double; Index = long long int; Gemm = Eigen::internal::general_matrix_matrix_product; Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; Dest = Eigen::Matrix; BlockingType = Eigen::internal::gemm_blocking_space<0, double, double, -1, -1, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/Parallelizer.h:98:7: required from 'void Eigen::internal::parallelize_gemm(const Functor&, Index, Index, Index, bool) [with bool Condition = true; Functor = gemm_functor, Eigen::Transpose >, Eigen::Matrix, Eigen::Matrix, gemm_blocking_space<0, double, double, -1, -1, -1, 1, false> >; Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixMatrix.h:487:9: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixMatrix.h:437:20: required from 'static void Eigen::internal::generic_product_impl::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:72:15: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1847:33: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 1847 | PacketBlock kernel;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1847:33: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::OuterStride<> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::OuterStride<> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::OuterStride<> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Map.h:94:79: required from 'class Eigen::Map, 0, Eigen::OuterStride<> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:115:18: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Map.h:94:79: required from 'class Eigen::Map, 0, Eigen::Stride<0, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:119:18: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::InnerStride<> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::InnerStride<> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::InnerStride<> >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::InnerStride<> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::InnerStride<> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::InnerStride<> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::OuterStride<> >, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::OuterStride<> >, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::OuterStride<> >, 1, -1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::Stride<0, 0> >, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, 0, Eigen::Stride<0, 0> >, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:137:106: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:137:77: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const ResScalar&) [with Index = long long int; int Mode = 6; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:332:12: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'struct Eigen::internal::general_matrix_vector_product, 1, false, double, Eigen::internal::const_blas_data_mapper, false, 1>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:145:123: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const ResScalar&) [with Index = long long int; int Mode = 6; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:332:12: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >; Dest = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; int Mode = 6; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; int Mode = 5; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = const Eigen::Block, -1, -1, false>, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:751:113: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>; int ProductTag = 7; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>; Derived = Eigen::internal::generic_product_impl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, Eigen::DenseShape, Eigen::TriangularShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:351:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 351 | typedef typename conditional::type LhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:352:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 352 | typedef typename conditional::type RhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:353:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 353 | typedef typename conditional::type ResPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'struct Eigen::internal::general_matrix_vector_product, 1, false, double, Eigen::internal::const_blas_data_mapper, false, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:154:113: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const ResScalar&) [with Index = long long int; int Mode = 6; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:332:12: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >; Dest = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; int Mode = 6; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; int Mode = 5; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = const Eigen::Block, -1, -1, false>, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:751:113: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>; int ProductTag = 7; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>; Derived = Eigen::internal::generic_product_impl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, Eigen::DenseShape, Eigen::TriangularShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:351:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 351 | typedef typename conditional::type LhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:352:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 352 | typedef typename conditional::type RhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:353:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 353 | typedef typename conditional::type ResPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Diagonal.h:63:53: required from 'class Eigen::Diagonal, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:153:32: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:327:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:501:10: required from 'Derived& Eigen::DenseBase::setZero() [with Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:151:29: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:327:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Diagonal, 0>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:501:10: required from 'Derived& Eigen::DenseBase::setZero() [with Derived = Eigen::Diagonal, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:153:42: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, false>, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >; Derived = Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:305:135: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'static void Eigen::internal::general_matrix_vector_product::run(Index, Index, const LhsMapper&, const RhsMapper&, ResScalar*, Index, ResScalar) [with Index = long long int; LhsScalar = double; LhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateLhs = false; RhsScalar = double; RhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateRhs = false; int Version = 1; ResScalar = double]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:145:123: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const ResScalar&) [with Index = long long int; int Mode = 6; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:332:12: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >; Dest = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; int Mode = 6; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; int Mode = 5; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = const Eigen::Block, -1, -1, false>, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:751:113: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>; int ProductTag = 7; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>; Derived = Eigen::internal::generic_product_impl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, Eigen::DenseShape, Eigen::TriangularShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:385:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 385 | conj_helper pcj;\\n\"},{\"type\":1,\"output\":\" | ^~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:385:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'static void Eigen::internal::general_matrix_vector_product::run(Index, Index, const LhsMapper&, const RhsMapper&, ResScalar*, Index, ResScalar) [with Index = long long int; LhsScalar = double; LhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateLhs = false; RhsScalar = double; RhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateRhs = false; int Version = 0; ResScalar = double]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:154:113: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const ResScalar&) [with Index = long long int; int Mode = 6; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:332:12: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >; Dest = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; int Mode = 6; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; int Mode = 5; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = const Eigen::Block, -1, -1, false>, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:751:113: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>; int ProductTag = 7; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>; Derived = Eigen::internal::generic_product_impl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, Eigen::DenseShape, Eigen::TriangularShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:385:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:385:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, 1, -1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:961:41: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:270:41: required from 'struct Eigen::internal::unary_evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:327:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:501:10: required from 'Derived& Eigen::DenseBase::setZero() [with Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:151:29: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Derived = Eigen::Block, -1, -1, false>, -1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:31: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Derived = Eigen::Block, -1, -1, false>, -1, -1, true>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:462:32: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 1, -1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, 1, -1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase >, 1, -1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense >, 1, -1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 18 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:72:15: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 1, -1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, 1, -1, true> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, 1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, 1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl >, 1, -1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:578:37: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:72:15: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, 1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 18 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:72:15: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:578:52: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index, Eigen::Index) const [with Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; int ProductTag = 8; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Matrix; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Transpose >; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:631:63: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:72:15: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:32: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, true>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, true>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, 1, -1, true>, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:48: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 18 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:462:59: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Matrix; int Mode = 2; bool LhsIsTriangular = true; Lhs = Eigen::Matrix; Rhs = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, -1, -1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, -1, -1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase >, -1, -1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense >, -1, -1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 18 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:462:59: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Matrix; int Mode = 1; bool LhsIsTriangular = true; Lhs = const Eigen::Transpose >; Rhs = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:137:114: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const ResScalar&) [with Index = long long int; int Mode = 6; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:332:12: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >; Dest = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; int Mode = 6; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:961:41: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:270:41: required from 'struct Eigen::internal::unary_evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: [ skipping 30 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:270:41: required from 'struct Eigen::internal::unary_evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: [ skipping 28 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, true>, 1, -1, false> >, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >; Derived = Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:341:27: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase >, -1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase >, -1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase >, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 22 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, true>, 1, -1, false> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, true>, 1, -1, false> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, true>, 1, -1, false> >, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 1, -1, true>, 1, -1, false> >, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 20 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:282:54: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false> >; Rhs = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; Dest = Eigen::Transpose >; int Mode = 1; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Derived = Eigen::Block, -1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:31: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false> >, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Derived = Eigen::Block, -1, -1, true>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:462:32: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator >, 1, -1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator >, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:270:41: required from 'struct Eigen::internal::unary_evaluator >, 1, -1, true> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator >, 1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator >, 1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: [ skipping 20 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:72:15: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:72:15: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::OuterStride<> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::OuterStride<> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::OuterStride<> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Map.h:94:79: required from 'class Eigen::Map, 0, Eigen::OuterStride<> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:44:18: [ skipping 18 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::InnerStride<> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::InnerStride<> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::InnerStride<> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::InnerStride<> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::InnerStride<> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Map.h:94:79: required from 'class Eigen::Map, 0, Eigen::InnerStride<> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:48:18: [ skipping 18 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 23 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, -1, 1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::OuterStride<> >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::OuterStride<> >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::OuterStride<> >, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::OuterStride<> >, -1, 1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 20 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 21 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:66:56: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const RhsScalar&) [with Index = long long int; int Mode = 1; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:266:12: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'struct Eigen::internal::general_matrix_vector_product, 0, false, double, Eigen::internal::const_blas_data_mapper, false, 1>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:74:123: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const RhsScalar&) [with Index = long long int; int Mode = 1; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:266:12: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false> >; Rhs = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; Dest = Eigen::Transpose >; int Mode = 1; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Matrix; int Mode = 2; Lhs = Eigen::Block, 1, -1, true>, 1, -1, false>; Rhs = Eigen::Block, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:751:113: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::Block, 1, -1, true>, 1, -1, false>; Rhs = Eigen::TriangularView, -1, -1, false>, 2>; int ProductTag = 7; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Matrix; Lhs = Eigen::Block, 1, -1, true>, 1, -1, false>; Rhs = Eigen::TriangularView, -1, -1, false>, 2>; Derived = Eigen::internal::generic_product_impl, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, Eigen::DenseShape, Eigen::TriangularShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:75:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 75 | typedef typename conditional::type LhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:76:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 76 | typedef typename conditional::type RhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:77:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 77 | typedef typename conditional::type ResPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'static void Eigen::internal::general_matrix_vector_product::run(Index, Index, const LhsMapper&, const RhsMapper&, ResScalar*, Index, RhsScalar) [with Index = long long int; LhsScalar = double; LhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateLhs = false; RhsScalar = double; RhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateRhs = false; int Version = 1; ResScalar = double]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:74:123: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const RhsScalar&) [with Index = long long int; int Mode = 1; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:266:12: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false> >; Rhs = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; Dest = Eigen::Transpose >; int Mode = 1; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Matrix; int Mode = 2; Lhs = Eigen::Block, 1, -1, true>, 1, -1, false>; Rhs = Eigen::Block, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:751:113: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::Block, 1, -1, true>, 1, -1, false>; Rhs = Eigen::TriangularView, -1, -1, false>, 2>; int ProductTag = 7; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Matrix; Lhs = Eigen::Block, 1, -1, true>, 1, -1, false>; Rhs = Eigen::TriangularView, -1, -1, false>, 2>; Derived = Eigen::internal::generic_product_impl, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, Eigen::DenseShape, Eigen::TriangularShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:112:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 112 | conj_helper pcj;\\n\"},{\"type\":1,\"output\":\" | ^~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:112:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:578:75: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index, Eigen::Index) const [with Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; int ProductTag = 8; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Matrix; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Transpose >; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:631:63: required from 'void Eigen::internal::generic_dense_assignment_kernel::assignCoeff(Eigen::Index, Eigen::Index) [with DstEvaluatorTypeT = Eigen::internal::evaluator >; SrcEvaluatorTypeT = Eigen::internal::evaluator >, Eigen::Matrix, 1> >; Functor = Eigen::internal::assign_op; int Version = 0; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:645:16: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:72:15: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 19 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator >, -1, -1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator >, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 19 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, true>, 1, -1, false> >, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 1, -1, true>, 1, -1, false> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 20 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator >, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block >, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block >, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >; Derived = Eigen::Block >, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:282:27: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:961:41: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: [ skipping 23 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >; Functor = add_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >; Functor = Eigen::internal::add_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 21 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >; Functor = add_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >; Functor = Eigen::internal::add_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >; Func = add_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >; Func = add_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:177:18: required from 'Derived& Eigen::MatrixBase::operator+=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >; Derived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:66:28: [ skipping 18 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/generators/z_polytopes_generators.h:87:11: required from 'Polytope gen_zonotope_uniform(int, int, double) [with Polytope = Zonotope > >; RNGType = boost::random::mersenne_twister_engine]'\\n\"},{\"type\":1,\"output\":\"poly_gen.cpp:57:78: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h: In function 'static void Eigen::internal::selfadjoint_product_impl::run(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, -1, 1, false>; Lhs = Eigen::Block, -1, -1, false>; int LhsMode = 17; Rhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:227:7: warning: 'result' may be used uninitialized [-Wmaybe-uninitialized]\\n\"},{\"type\":1,\"output\":\" 225 | internal::selfadjoint_matrix_vector_product::Flags&RowMajorBit) ? RowMajor : ColMajor,\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 226 | int(LhsUpLo), bool(LhsBlasTraits::NeedToConjugate), bool(RhsBlasTraits::NeedToConjugate)>::run\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 227 | (\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\" 228 | lhs.rows(), // size\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 229 | &lhs.coeffRef(0,0), lhs.outerStride(), // lhs info\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 230 | actualRhsPtr, // rhs info\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 231 | actualDestPtr, // result info\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 232 | actualAlpha // scale factor\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 233 | );\\n\"},{\"type\":1,\"output\":\" | ~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:39:24: note: by argument 4 of type 'const double*' to 'static void Eigen::internal::selfadjoint_matrix_vector_product::run(Index, const Scalar*, Index, const Scalar*, Scalar*, Scalar) [with Scalar = double; Index = long long int; int StorageOrder = 0; int UpLo = 1; bool ConjugateLhs = false; bool ConjugateRhs = false; int Version = 0]' declared here\\n\"},{\"type\":1,\"output\":\" 39 | EIGEN_DONT_INLINE void selfadjoint_matrix_vector_product::run(\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:507:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h: In static member function 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >; Dest = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; int Mode = 6]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:332:12: warning: 'result' may be used uninitialized [-Wmaybe-uninitialized]\\n\"},{\"type\":1,\"output\":\" 327 | internal::triangular_matrix_vector_product\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 328 | \\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 332 | ::run(actualLhs.rows(),actualLhs.cols(),\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 333 | actualLhs.data(),actualLhs.outerStride(),\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 334 | actualRhsPtr,1,\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 335 | dest.data(),dest.innerStride(),\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 336 | actualAlpha);\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:105:24: note: by argument 5 of type 'const double*' to 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const ResScalar&) [with Index = long long int; int Mode = 6; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0]' declared here\\n\"},{\"type\":1,\"output\":\" 105 | EIGEN_DONT_INLINE void triangular_matrix_vector_product\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"g++ -std=gnu++17 -I\\\"D:/Softwares/R/R-4.3.0/include\\\" -DNDEBUG -Iexternal -Iexternal/lpsolve/headers/run_headers -Iexternal/minimum_ellipsoid -Iinclude -Iinclude/convex_bodies/spectrahedra -I'D:/Softwares/R/R-4.3.0/library/Rcpp/include' -I'D:/Softwares/R/R-4.3.0/library/RcppEigen/include' -I'D:/Softwares/R/R-4.3.0/library/BH/include' -I\\\"D:/Softwares/RTools/rtools43/x86_64-w64-mingw32.static.posix/include\\\" -lm -ldl -DBOOST_NO_AUTO_PTR -O2 -Wall -mfpmath=sse -msse2 -mstackrealign -c rotating.cpp -o rotating.o\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:397,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Dense:1,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/RcppEigenForward.h:30,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/RcppEigen.h:25,\\n\"},{\"type\":1,\"output\":\" from rotating.cpp:11:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:60:39: warning: ignoring attributes on template argument '__m128' [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 60 | template<> struct is_arithmetic<__m128> { enum { value = true }; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:61:40: warning: ignoring attributes on template argument '__m128i' [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 61 | template<> struct is_arithmetic<__m128i> { enum { value = true }; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:62:40: warning: ignoring attributes on template argument '__m128d' [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 62 | template<> struct is_arithmetic<__m128d> { enum { value = true }; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:161:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 161 | template<> struct unpacket_traits { typedef float type; enum {size=4, alignment=Aligned16}; typedef Packet4f half; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:162:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 162 | template<> struct unpacket_traits { typedef double type; enum {size=2, alignment=Aligned16}; typedef Packet2d half; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:163:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 163 | template<> struct unpacket_traits { typedef int type; enum {size=4, alignment=Aligned16}; typedef Packet4i half; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:718:35: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 718 | struct palign_impl\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:741:35: warning: ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 741 | struct palign_impl\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:764:35: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 764 | struct palign_impl\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:778:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 778 | ptranspose(PacketBlock& kernel) {\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:783:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 783 | ptranspose(PacketBlock& kernel) {\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:790:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 790 | ptranspose(PacketBlock& kernel) {\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:377:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:15:70: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 15 | template<> struct conj_helper { \\\\\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:232:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL'\\n\"},{\"type\":1,\"output\":\" 232 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet2cf,Packet4f)\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:22:70: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 22 | template<> struct conj_helper { \\\\\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:232:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL'\\n\"},{\"type\":1,\"output\":\" 232 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet2cf,Packet4f)\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:15:70: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 15 | template<> struct conj_helper { \\\\\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:417:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL'\\n\"},{\"type\":1,\"output\":\" 417 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet1cd,Packet2d)\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:22:70: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 22 | template<> struct conj_helper { \\\\\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:417:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL'\\n\"},{\"type\":1,\"output\":\" 417 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet1cd,Packet2d)\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:370:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:243:49: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SSE.h:24:46: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(4) float>::half' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:439:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:46:50: required from 'class Eigen::QuaternionBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:250:7: required from 'class Eigen::Quaternion'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SSE.h:27:3: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:243:49: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SSE.h:88:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:46:50: required from 'class Eigen::QuaternionBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:250:7: required from 'class Eigen::Quaternion'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SSE.h:92:3: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/SparseCore:37,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Sparse:26,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/RcppEigenForward.h:31:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h: In instantiation of 'class Eigen::SparseMatrixBase >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseCompressedBase.h:36:7: required from 'class Eigen::SparseCompressedBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrix.h:96:7: required from 'class Eigen::SparseMatrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/IterativeSolvers/ConstrainedConjGrad.h:61:25: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h:47:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 47 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h:168:29: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) long long int>::half' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h:168:29: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h:178:72: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h:179:36: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/aux_/na_assert.hpp:23,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/arg.hpp:25,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/placeholders.hpp:24,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/iterator/iterator_categories.hpp:16,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/iterator/iterator_concepts.hpp:10,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/range/concepts.hpp:20,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/range/size_type.hpp:20,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/range/size.hpp:21,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/random/hyperexponential_distribution.hpp:29,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/random.hpp:70,\\n\"},{\"type\":1,\"output\":\" from rotating.cpp:14:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp:194:21: warning: unnecessary parentheses in declaration of 'assert_arg' [-Wparentheses]\\n\"},{\"type\":1,\"output\":\" 194 | failed ************ (Pred::************\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 195 | assert_arg( void (*)(Pred), typename assert_arg_pred::type )\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 196 | );\\n\"},{\"type\":1,\"output\":\" | ~ \\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp:194:21: note: remove parentheses\\n\"},{\"type\":1,\"output\":\" 194 | failed ************ (Pred::************\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" | -\\n\"},{\"type\":1,\"output\":\" 195 | assert_arg( void (*)(Pred), typename assert_arg_pred::type )\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 196 | );\\n\"},{\"type\":1,\"output\":\" | ~ \\n\"},{\"type\":1,\"output\":\" | -\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp:199:21: warning: unnecessary parentheses in declaration of 'assert_not_arg' [-Wparentheses]\\n\"},{\"type\":1,\"output\":\" 199 | failed ************ (boost::mpl::not_::************\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 200 | assert_not_arg( void (*)(Pred), typename assert_arg_pred_not::type )\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 201 | );\\n\"},{\"type\":1,\"output\":\" | ~ \\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp:199:21: note: remove parentheses\\n\"},{\"type\":1,\"output\":\" 199 | failed ************ (boost::mpl::not_::************\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" | -\\n\"},{\"type\":1,\"output\":\" 200 | assert_not_arg( void (*)(Pred), typename assert_arg_pred_not::type )\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 201 | );\\n\"},{\"type\":1,\"output\":\" | ~ \\n\"},{\"type\":1,\"output\":\" | -\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/traits.hpp:21,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/storage.hpp:27,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/vector.hpp:21,\\n\"},{\"type\":1,\"output\":\" from external/minimum_ellipsoid/khach.h:25,\\n\"},{\"type\":1,\"output\":\" from include/convex_bodies/vpolytope.h:19,\\n\"},{\"type\":1,\"output\":\" from include/volume/volume_sequence_of_balls.hpp:27,\\n\"},{\"type\":1,\"output\":\" from rotating.cpp:18:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/detail/iterator.hpp:111:21: warning: 'template struct std::iterator' is deprecated [-Wdeprecated-declarations]\\n\"},{\"type\":1,\"output\":\" 111 | public std::iterator {\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~\\n\"},{\"type\":1,\"output\":\"In file included from d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\bits\\\\stl_algobase.h:65,\\n\"},{\"type\":1,\"output\":\" from d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\bits\\\\specfun.h:45,\\n\"},{\"type\":1,\"output\":\" from d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\cmath:1935,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/Rcpp/include/Rcpp/platform/compiler.h:100,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/Rcpp/include/Rcpp/r/headers.h:62,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/Rcpp/include/RcppCommon.h:30,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/Rcpp/include/Rcpp.h:27,\\n\"},{\"type\":1,\"output\":\" from rotating.cpp:10:\\n\"},{\"type\":1,\"output\":\"d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\bits\\\\stl_iterator_base_types.h:127:34: note: declared here\\n\"},{\"type\":1,\"output\":\" 127 | struct _GLIBCXX17_DEPRECATED iterator\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/detail/iterator.hpp:149:21: warning: 'template struct std::iterator' is deprecated [-Wdeprecated-declarations]\\n\"},{\"type\":1,\"output\":\" 149 | public std::iterator {\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~\\n\"},{\"type\":1,\"output\":\"d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\bits\\\\stl_iterator_base_types.h:127:34: note: declared here\\n\"},{\"type\":1,\"output\":\" 127 | struct _GLIBCXX17_DEPRECATED iterator\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/detail/iterator.hpp:204:21: warning: 'template struct std::iterator' is deprecated [-Wdeprecated-declarations]\\n\"},{\"type\":1,\"output\":\" 204 | public std::iterator {\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~\\n\"},{\"type\":1,\"output\":\"d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\bits\\\\stl_iterator_base_types.h:127:34: note: declared here\\n\"},{\"type\":1,\"output\":\" 127 | struct _GLIBCXX17_DEPRECATED iterator\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:46:8: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:46:8: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"include/cartesian_geom/point.h:22:53: required from 'class point >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:24:32: required from 'class HPolytope > >'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:74:23: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Inverse.h:69:7: required from 'class Eigen::InverseImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Inverse.h:43:7: required from 'class Eigen::Inverse >'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:78:58: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:88:59: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: required from 'class Eigen::MapBase, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 1, -1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, 1, -1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, 1, -1, false>'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:117:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:119:39: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"rotating.cpp: In function 'Rcpp::NumericMatrix rotating(Rcpp::Reference, Rcpp::Nullable >, Rcpp::Nullable)':\\n\"},{\"type\":1,\"output\":\"rotating.cpp:42:53: warning: typedef 'InterVP' locally defined but not used [-Wunused-local-typedefs]\\n\"},{\"type\":1,\"output\":\" 42 | typedef IntersectionOfVpoly InterVP;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, Eigen::Matrix, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:439:15: required from 'void HPolytope::linear_transformIt(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:78:38: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"In file included from rotating.cpp:19:\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp: In instantiation of 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]':\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:50:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 50 | for (int i = 0; i < n; ++i) {\\n\"},{\"type\":1,\"output\":\" | ~~^~~\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:51:27: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 51 | for (int j = 0; j < n; ++j) {\\n\"},{\"type\":1,\"output\":\" | ~~^~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:438:19: required from 'class Eigen::ColPivHouseholderQR >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:247:10: required from 'struct Eigen::internal::qr_preconditioner_impl, 2, 0, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:607:110: required from 'class Eigen::JacobiSVD, 2>'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, Eigen::Transpose >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, Eigen::Transpose >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::Transpose >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base >, Eigen::Transpose >, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl >, Eigen::Transpose >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product >, Eigen::Transpose >, 0>'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:390:29: required from 'void VPolytope::linear_transformIt(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:91:38: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp: In instantiation of 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = VPolytope > >]':\\n\"},{\"type\":1,\"output\":\"rotating.cpp:93:47: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:50:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 50 | for (int i = 0; i < n; ++i) {\\n\"},{\"type\":1,\"output\":\" | ~~^~~\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:51:27: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 51 | for (int j = 0; j < n; ++j) {\\n\"},{\"type\":1,\"output\":\" | ~~^~~\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp: In instantiation of 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = Zonotope > >]':\\n\"},{\"type\":1,\"output\":\"rotating.cpp:106:47: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:50:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 50 | for (int i = 0; i < n; ++i) {\\n\"},{\"type\":1,\"output\":\" | ~~^~~\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:51:27: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 51 | for (int j = 0; j < n; ++j) {\\n\"},{\"type\":1,\"output\":\" | ~~^~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: required from 'class Eigen::MapBase, -1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, -1, -1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, -1, -1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CommaInitializer.h:95:21: required from 'Eigen::CommaInitializer& Eigen::CommaInitializer::operator,(const Eigen::DenseBase&) [with OtherDerived = Eigen::Matrix; XprType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:119:43: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base >, Eigen::Matrix, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl >, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product >, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:72:31: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:101:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix, const Eigen::Transpose > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix, const Eigen::Transpose > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix, const Eigen::Transpose > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Matrix, const Eigen::Transpose >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:73:24: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:101:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:73:45: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:101:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:73:45: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:101:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Diagonal.h:63:53: required from 'class Eigen::Diagonal, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:91:21: required from 'class Eigen::Tridiagonalization >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:105:62: required from 'class Eigen::SelfAdjointEigenSolver >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:101:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Diagonal.h:63:53: required from 'class Eigen::Diagonal, -1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:96:21: required from 'class Eigen::Tridiagonalization >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:105:62: required from 'class Eigen::SelfAdjointEigenSolver >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:101:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:93:40: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:101:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:676:37: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:683:29: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, -1, -1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, -1, -1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:689:32: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:689:60: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Diagonal.h:63:53: required from 'class Eigen::Diagonal, const Eigen::Matrix >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:697:61: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, -1, 1, true, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, -1, 1, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:750:35: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, -1, 1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:757:62: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, -1, 1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/VectorBlock.h:56:47: required from 'class Eigen::VectorBlock, -1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:769:65: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/TriangularMatrix.h:174:44: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/TriangularMatrix.h:186:58: required from 'class Eigen::TriangularView, -1, -1, false> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:232:121: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/misc/RealSvd2x2.h:25:26: required from 'void Eigen::internal::real_2x2_jacobi_svd(const MatrixType&, Index, Index, Eigen::JacobiRotation*, Eigen::JacobiRotation*) [with MatrixType = Eigen::Matrix; RealScalar = double; Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:722:42: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false> >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:829:17: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 1, -1, false>; Src = Eigen::CwiseNullaryOp, Eigen::Matrix >; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 1, -1, false>; Src = Eigen::CwiseNullaryOp, Eigen::Matrix >; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Block, 1, -1, false>; Src = Eigen::CwiseNullaryOp, Eigen::Matrix >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Assign.h:66:28: required from 'Derived& Eigen::MatrixBase::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::CwiseNullaryOp, Eigen::Matrix >; Derived = Eigen::Block, 1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:117:36: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Diagonal.h:63:53: required from 'class Eigen::Diagonal, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:249:21: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:256:59: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, true>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:262:26: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:82: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, 2, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, 2, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, 2, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, 2, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, 2, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, 2, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:279:10: required from 'void Eigen::MatrixBase::applyOnTheLeft(Eigen::Index, Eigen::Index, const Eigen::JacobiRotation&) [with OtherScalar = double; Derived = Eigen::Matrix; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/misc/RealSvd2x2.h:46:19: required from 'void Eigen::internal::real_2x2_jacobi_svd(const MatrixType&, Index, Index, Eigen::JacobiRotation*, Eigen::JacobiRotation*) [with MatrixType = Eigen::Matrix; RealScalar = double; Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:722:42: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:174:81: required from 'class Eigen::DenseBase, 1, 2, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, 2, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, 2, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: required from 'class Eigen::MapBase, 1, 2, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 1, 2, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:279:10: required from 'void Eigen::MatrixBase::applyOnTheLeft(Eigen::Index, Eigen::Index, const Eigen::JacobiRotation&) [with OtherScalar = double; Derived = Eigen::Matrix; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/misc/RealSvd2x2.h:46:19: required from 'void Eigen::internal::real_2x2_jacobi_svd(const MatrixType&, Index, Index, Eigen::JacobiRotation*, Eigen::JacobiRotation*) [with MatrixType = Eigen::Matrix; RealScalar = double; Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:722:42: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:445:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:454:5: required from 'void Eigen::internal::apply_rotation_in_the_plane(Eigen::DenseBase&, Eigen::DenseBase&, const Eigen::JacobiRotation&) [with VectorX = Eigen::Block, 1, -1, false>; VectorY = Eigen::Block, 1, -1, false>; OtherScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:281:40: required from 'void Eigen::MatrixBase::applyOnTheLeft(Eigen::Index, Eigen::Index, const Eigen::JacobiRotation&) [with OtherScalar = double; Derived = Eigen::Matrix; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:725:40: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:454:5: required from 'void Eigen::internal::apply_rotation_in_the_plane(Eigen::DenseBase&, Eigen::DenseBase&, const Eigen::JacobiRotation&) [with VectorX = Eigen::Block, -1, 1, true>; VectorY = Eigen::Block, -1, 1, true>; OtherScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:296:40: required from 'void Eigen::MatrixBase::applyOnTheRight(Eigen::Index, Eigen::Index, const Eigen::JacobiRotation&) [with OtherScalar = double; Derived = Eigen::Matrix; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:726:53: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:71:51: required from 'class Eigen::internal::visitor_evaluator, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:110:17: required from 'void Eigen::DenseBase::visit(Visitor&) const [with Visitor = Eigen::internal::max_coeff_visitor, -1, 1, false> >; Derived = Eigen::Block, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:266:14: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::maxCoeff(IndexType*) const [with IndexType = long long int; Derived = Eigen::Block, -1, 1, false>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:769:88: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Inverse.h:69:7: required from 'class Eigen::InverseImpl >, Eigen::SolverStorage>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Inverse.h:43:7: required from 'class Eigen::Inverse > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/InverseImpl.h:28:43: required from 'static void Eigen::internal::compute_inverse::run(const MatrixType&, ResultType&) [with MatrixType = Eigen::Matrix; ResultType = Eigen::Matrix; int Size = -1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/InverseImpl.h:310:60: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; XprType = Eigen::Matrix; SrcXprType = Eigen::Inverse >; typename SrcXprType::Scalar = double; typename DstXprType::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:78:38: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:475:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:256:43: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:256:43: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:256:43: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:256:43: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:256:43: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:165:25: required from 'void Eigen::MatrixBase::applyHouseholderOnTheRight(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Block, -1, 1, false>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:256:43: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:256:43: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, false> >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, false> >, 0, 5>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, false> >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:256:43: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:259:42: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:259:42: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:259:42: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:259:42: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:128:25: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Block, -1, 1, false>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:259:42: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:129:29: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Block, -1, 1, false>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:259:42: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0, 5>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:259:42: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/TriangularMatrix.h:174:44: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 2>, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 2>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 2>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, 2>, Eigen::Matrix, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, 2>, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/TriangularMatrix.h:174:44: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 1>, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, 1>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, 1>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base >, 1>, Eigen::Matrix, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl >, 1>, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 5>, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, 5>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, 5>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, 5>, Eigen::Matrix, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, false>, 5>, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:747:33: required from 'static Derived& Eigen::internal::setIdentity_impl::run(Derived&) [with Derived = Eigen::Matrix; bool Big = false]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:776:50: required from 'Derived& Eigen::MatrixBase::setIdentity() [with Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:793:21: required from 'Derived& Eigen::MatrixBase::setIdentity(Eigen::Index, Eigen::Index) [with Derived = Eigen::Matrix; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:690:45: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, 2, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:454:5: required from 'void Eigen::internal::apply_rotation_in_the_plane(Eigen::DenseBase&, Eigen::DenseBase&, const Eigen::JacobiRotation&) [with VectorX = Eigen::Block, 1, 2, false>; VectorY = Eigen::Block, 1, 2, false>; OtherScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:281:40: required from 'void Eigen::MatrixBase::applyOnTheLeft(Eigen::Index, Eigen::Index, const Eigen::JacobiRotation&) [with OtherScalar = double; Derived = Eigen::Matrix; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/misc/RealSvd2x2.h:46:19: required from 'void Eigen::internal::real_2x2_jacobi_svd(const MatrixType&, Index, Index, Eigen::JacobiRotation*, Eigen::JacobiRotation*) [with MatrixType = Eigen::Matrix; RealScalar = double; Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:722:42: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:327:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:662:21: required from 'Derived& Eigen::PlainObjectBase::setOnes(Eigen::Index, Eigen::Index) [with Derived = Eigen::Matrix; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:420:22: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:101:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Diagonal.h:63:53: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:101:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:520:87: required from 'Eigen::ComputationInfo Eigen::internal::computeFromTridiagonal_impl(DiagType&, SubDiagType&, Eigen::Index, bool, MatrixType&) [with MatrixType = Eigen::Matrix; DiagType = Eigen::Matrix; SubDiagType = Eigen::Matrix; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:439:49: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:101:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseUnaryOp, const Eigen::Matrix >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_max_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Matrix > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_max_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Matrix >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:438:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::maxCoeff() const [with Derived = Eigen::CwiseUnaryOp, const Eigen::Matrix >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:676:48: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, -1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, -1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, true>, -1, 1, false>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:475:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:126:38: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:475:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:126:41: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:475:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:129:29: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:475:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0, 5>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:129:41: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:475:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, true>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false>, -1, 1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, 1, true>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false>, -1, 1, true>, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:63:90: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:63:57: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false>, -1, -1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:64:57: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:67:61: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:368:35: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:101:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:520:87: required from 'Eigen::ComputationInfo Eigen::internal::computeFromTridiagonal_impl(DiagType&, SubDiagType&, Eigen::Index, bool, MatrixType&) [with MatrixType = Eigen::Matrix; DiagType = Eigen::Matrix; SubDiagType = Eigen::Matrix; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:439:49: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:101:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>; SrcXprType = Eigen::Matrix; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>; SrcXprType = Eigen::Matrix; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>; Src = Eigen::Matrix; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>; Src = Eigen::Matrix; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Block, -1, -1, false>; Src = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Assign.h:66:28: required from 'Derived& Eigen::MatrixBase::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Matrix; Derived = Eigen::Block, -1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CommaInitializer.h:95:64: required from 'Eigen::CommaInitializer& Eigen::CommaInitializer::operator,(const Eigen::DenseBase&) [with OtherDerived = Eigen::Matrix; XprType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:119:43: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, -1, 1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:40: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, -1, 1, true>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:475:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:71:51: required from 'class Eigen::internal::visitor_evaluator, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:110:17: required from 'void Eigen::DenseBase::visit(Visitor&) const [with Visitor = Eigen::internal::max_coeff_visitor, 1, -1, false> >; Derived = Eigen::Block, 1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:266:14: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::maxCoeff(IndexType*) const [with IndexType = long long int; Derived = Eigen::Block, 1, -1, false>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:519:90: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:475:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, true>, -1, 1, false>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, 1, true>, -1, 1, false>, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:475:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:91:22: required from 'void Eigen::MatrixBase::makeHouseholder(EssentialPart&, Scalar&, RealScalar&) const [with EssentialPart = Eigen::VectorBlock, -1, 1, true>, -1, 1, false>, -1>; Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; Scalar = double; RealScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:45:18: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:475:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:40: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:475:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, Eigen::Transpose >, 1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, Eigen::Transpose >, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::Transpose >, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base >, Eigen::Transpose >, 1, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl >, Eigen::Transpose >, 1, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product >, Eigen::Transpose >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:436:50: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Product >, Eigen::Transpose >, 0>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:390:12: required from 'void VPolytope::linear_transformIt(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:91:38: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:454:5: required from 'void Eigen::internal::apply_rotation_in_the_plane(Eigen::DenseBase&, Eigen::DenseBase&, const Eigen::JacobiRotation&) [with VectorX = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; VectorY = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; OtherScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:296:40: required from 'void Eigen::MatrixBase::applyOnTheRight(Eigen::Index, Eigen::Index, const Eigen::JacobiRotation&) [with OtherScalar = double; Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:862:24: required from 'void Eigen::internal::tridiagonal_qr_step(RealScalar*, RealScalar*, Index, Index, Scalar*, Index) [with int StorageOrder = 0; RealScalar = double; Scalar = double; Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:520:87: required from 'Eigen::ComputationInfo Eigen::internal::computeFromTridiagonal_impl(DiagType&, SubDiagType&, Eigen::Index, bool, MatrixType&) [with MatrixType = Eigen::Matrix; DiagType = Eigen::Matrix; SubDiagType = Eigen::Matrix; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:439:49: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:101:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:40: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:76:71: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:475:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, true>, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:141:7: required from 'Eigen::DenseCoeffsBase::CoeffReturnType Eigen::DenseCoeffsBase::coeff(Eigen::Index) const [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; CoeffReturnType = const double&; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:77:20: required from 'void Eigen::MatrixBase::makeHouseholder(EssentialPart&, Scalar&, RealScalar&) const [with EssentialPart = Eigen::VectorBlock, -1, 1, true>, -1, 1, false>, -1>; Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; Scalar = double; RealScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:45:18: required from 'void Eigen::MatrixBase::makeHouseholderInPlace(Scalar&, RealScalar&) [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; Scalar = double; RealScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:538:52: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:475:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:369:102: required from 'struct Eigen::internal::plain_object_eval, -1, -1, false>, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:369:45: required from 'struct Eigen::internal::generic_product_impl, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Src = Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/NoAlias.h:42:31: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:256:43: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:369:102: required from 'struct Eigen::internal::plain_object_eval, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:370:45: required from 'struct Eigen::internal::generic_product_impl, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Src = Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/NoAlias.h:42:31: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:256:43: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:141:7: required from 'Eigen::DenseCoeffsBase::CoeffReturnType Eigen::DenseCoeffsBase::coeff(Eigen::Index) const [with Derived = Eigen::Block, -1, 1, false>; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:181:19: required from 'Eigen::DenseCoeffsBase::CoeffReturnType Eigen::DenseCoeffsBase::operator()(Eigen::Index) const [with Derived = Eigen::Block, -1, 1, false>; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:63:53: required from 'void Eigen::internal::make_block_householder_triangular_factor(TriangularFactorType&, const VectorsType&, const CoeffsType&) [with TriangularFactorType = Eigen::Matrix; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:44: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block, -1, 1, false>; U = Eigen::Block, -1, 1, true>, -1, 1, false>; bool NeedToTranspose = false; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:101:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false>, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, false>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, 1, false>, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:101:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointRank2Update.h:33:74: required from 'static void Eigen::internal::selfadjoint_rank2_update_selector::run(Scalar*, Index, const UType&, const VType&, const Scalar&) [with Scalar = double; Index = long long int; UType = Eigen::Block, -1, 1, true>, -1, 1, false>; VType = Eigen::Block, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointRank2Update.h:86:10: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:101:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointRank2Update.h:34:60: required from 'static void Eigen::internal::selfadjoint_rank2_update_selector::run(Scalar*, Index, const UType&, const VType&, const Scalar&) [with Scalar = double; Index = long long int; UType = Eigen::Block, -1, 1, true>, -1, 1, false>; VType = Eigen::Block, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointRank2Update.h:86:10: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:101:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointRank2Update.h:34:23: required from 'static void Eigen::internal::selfadjoint_rank2_update_selector::run(Scalar*, Index, const UType&, const VType&, const Scalar&) [with Scalar = double; Index = long long int; UType = Eigen::Block, -1, 1, true>, -1, 1, false>; VType = Eigen::Block, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointRank2Update.h:86:10: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:101:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, Eigen::internal::member_sum, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix >, Eigen::internal::member_sum, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix >, Eigen::internal::member_sum, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/VectorwiseOp.h:56:7: required from 'class Eigen::PartialReduxExpr, const Eigen::Matrix >, Eigen::internal::member_sum, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:523:46: required from 'void Eigen::PartialPivLU::compute() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/InverseImpl.h:310:60: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; XprType = Eigen::Matrix; SrcXprType = Eigen::Inverse >; typename SrcXprType::Scalar = double; typename DstXprType::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:78:38: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::Matrix; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_max_op; Derived = Eigen::internal::redux_evaluator >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_max_op; Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:438:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::maxCoeff() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:509:85: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:475:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Matrix; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Matrix; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:689:18: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/InverseImpl.h:310:60: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; XprType = Eigen::Matrix; SrcXprType = Eigen::Inverse >; typename SrcXprType::Scalar = double; typename DstXprType::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:78:38: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, true>, -1, 1, false>, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, 1, true>, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:522:41: required from 'struct Eigen::internal::unary_evaluator, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:475:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::Block, -1, -1, false>, -1, 1, true>; Functor = add_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::Block, -1, -1, false>, -1, 1, true>; Functor = Eigen::internal::add_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Src = Eigen::Block, -1, -1, false>, -1, 1, true>; Func = add_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Src = Eigen::Block, -1, -1, false>, -1, 1, true>; Func = add_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:177:18: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:256:43: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, -1, false>, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:256:43: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:280:48: required from 'void Eigen::internal::outer_product_selector_run(Dst&, const Lhs&, const Rhs&, const Func&, const false_type&) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >; Rhs = Eigen::Transpose, -1, 1, false> >; Func = generic_product_impl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, false> >, Eigen::DenseShape, Eigen::DenseShape, 5>::sub]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:329:41: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:256:43: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::Block, -1, -1, false>, 1, -1, false>; Functor = add_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::Block, -1, -1, false>, 1, -1, false>; Functor = Eigen::internal::add_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Src = Eigen::Block, -1, -1, false>, 1, -1, false>; Func = add_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Src = Eigen::Block, -1, -1, false>, 1, -1, false>; Func = add_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:177:18: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:259:42: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:496:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: In instantiation of 'class Eigen::internal::gebp_traits':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:106:40: required from 'void Eigen::internal::evaluateProductBlockingSizesHeuristic(Index&, Index&, Index&, Index) [with LhsScalar = double; RhsScalar = double; int KcFactor = 1; Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:301:81: required from 'void Eigen::internal::computeProductBlockingSizes(Index&, Index&, Index&, Index) [with LhsScalar = double; RhsScalar = double; int KcFactor = 1; Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixMatrix.h:353:66: required from 'Eigen::internal::gemm_blocking_space::gemm_blocking_space(Eigen::Index, Eigen::Index, Eigen::Index, Eigen::Index, bool) [with int StorageOrder = 0; _LhsScalar = double; _RhsScalar = double; int MaxRows = -1; int MaxCols = -1; int MaxDepth = -1; int KcFactor = 1; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixMatrix.h:485:18: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::Inverse >; Rhs = Eigen::Transpose >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixMatrix.h:437:20: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Product >, Eigen::Transpose >, 0>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:390:12: required from 'void VPolytope::linear_transformIt(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:91:38: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:391:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 391 | typedef typename conditional::type LhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:392:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 392 | typedef typename conditional::type RhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:393:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 393 | typedef typename conditional::type ResPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/InverseImpl.h:310:60: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; XprType = Eigen::Matrix; SrcXprType = Eigen::Inverse >; typename SrcXprType::Scalar = double; typename DstXprType::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:78:38: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/InverseImpl.h:310:60: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; XprType = Eigen::Matrix; SrcXprType = Eigen::Inverse >; typename SrcXprType::Scalar = double; typename DstXprType::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:78:38: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:492:30: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/InverseImpl.h:310:60: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; XprType = Eigen::Matrix; SrcXprType = Eigen::Inverse >; typename SrcXprType::Scalar = double; typename DstXprType::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:78:38: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, Eigen::CwiseNullaryOp, Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, Eigen::CwiseNullaryOp, Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::CwiseNullaryOp, Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Solve.h:86:7: required from 'class Eigen::SolveImpl >, Eigen::CwiseNullaryOp, Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Solve.h:62:7: required from 'class Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:577:39: required from 'static void Eigen::internal::Assignment >, Eigen::internal::assign_op::Scalar>, Eigen::internal::Dense2Dense>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op::Scalar>&) [with DstXprType = Eigen::Matrix; MatrixType = Eigen::Matrix; SrcXprType = Eigen::Inverse > >; typename Eigen::PartialPivLU::Scalar = double; typename DstXprType::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/InverseImpl.h:310:60: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; XprType = Eigen::Matrix; SrcXprType = Eigen::Inverse >; typename SrcXprType::Scalar = double; typename DstXprType::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:78:38: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix, 1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, Eigen::Matrix, 1, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, Eigen::Matrix, 1, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, Eigen::Matrix, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:436:50: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:796:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Matrix, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:439:11: required from 'void HPolytope::linear_transformIt(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:78:38: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true> >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Block, -1, 1, true> > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:46: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, -1, 1, true>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:475:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Block, -1, 1, true>, -1, 1, false> > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:46: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:475:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:327:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:501:10: required from 'Derived& Eigen::DenseBase::setZero() [with Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:16: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:259:42: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: In instantiation of 'void Eigen::internal::gebp_kernel::operator()(const DataMapper&, const LhsScalar*, const RhsScalar*, Index, Index, Index, ResScalar, Index, Index, Index, Index) [with LhsScalar = double; RhsScalar = double; Index = long long int; DataMapper = Eigen::internal::blas_data_mapper; int mr = 4; int nr = 4; bool ConjugateLhs = false; bool ConjugateRhs = false; ResScalar = double]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixMatrix.h:196:15: required from 'static void Eigen::internal::general_matrix_matrix_product::run(Index, Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, Index, ResScalar, Eigen::internal::level3_blocking&, Eigen::internal::GemmParallelInfo*) [with Index = long long int; LhsScalar = double; int LhsStorageOrder = 0; bool ConjugateLhs = false; RhsScalar = double; int RhsStorageOrder = 1; bool ConjugateRhs = false; int ResInnerStride = 1; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixMatrix.h:228:14: required from 'void Eigen::internal::gemm_functor::operator()(Index, Index, Index, Index, Eigen::internal::GemmParallelInfo*) const [with Scalar = double; Index = long long int; Gemm = Eigen::internal::general_matrix_matrix_product; Lhs = Eigen::Matrix; Rhs = Eigen::Transpose >; Dest = Eigen::Matrix; BlockingType = Eigen::internal::gemm_blocking_space<0, double, double, -1, -1, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/Parallelizer.h:98:7: required from 'void Eigen::internal::parallelize_gemm(const Functor&, Index, Index, Index, bool) [with bool Condition = true; Functor = gemm_functor, Eigen::Matrix, Eigen::Transpose >, Eigen::Matrix, gemm_blocking_space<0, double, double, -1, -1, -1, 1, false> >; Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixMatrix.h:487:9: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::Inverse >; Rhs = Eigen::Transpose >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixMatrix.h:437:20: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Product >, Eigen::Transpose >, 0>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:390:12: required from 'void VPolytope::linear_transformIt(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:91:38: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1537:103: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 1537 | const int SResPacketHalfSize = unpacket_traits::half>::size;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1592:135: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 1592 | typedef typename conditional=8,typename unpacket_traits::half,SResPacket>::type SResPacketHalf;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1593:135: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 1593 | typedef typename conditional=8,typename unpacket_traits::half,SLhsPacket>::type SLhsPacketHalf;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1594:135: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 1594 | typedef typename conditional=8,typename unpacket_traits::half,SRhsPacket>::type SRhsPacketHalf;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1595:135: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 1595 | typedef typename conditional=8,typename unpacket_traits::half,SAccPacket>::type SAccPacketHalf;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/InverseImpl.h:310:60: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; XprType = Eigen::Matrix; SrcXprType = Eigen::Inverse >; typename SrcXprType::Scalar = double; typename DstXprType::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:78:38: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/InverseImpl.h:310:60: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; XprType = Eigen::Matrix; SrcXprType = Eigen::Inverse >; typename SrcXprType::Scalar = double; typename DstXprType::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:78:38: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:381:43: required from 'static Eigen::Index Eigen::internal::partial_lu_impl::unblocked_lu(MatrixType&, PivIndex*, PivIndex&) [with Scalar = double; int StorageOrder = 0; PivIndex = int; Eigen::Index = long long int; MatrixType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:436:26: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/InverseImpl.h:310:60: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; XprType = Eigen::Matrix; SrcXprType = Eigen::Inverse >; typename SrcXprType::Scalar = double; typename DstXprType::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:78:38: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/InverseImpl.h:310:60: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; XprType = Eigen::Matrix; SrcXprType = Eigen::Inverse >; typename SrcXprType::Scalar = double; typename DstXprType::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:78:38: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/InverseImpl.h:310:60: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; XprType = Eigen::Matrix; SrcXprType = Eigen::Inverse >; typename SrcXprType::Scalar = double; typename DstXprType::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:78:38: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0, 5>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:406:78: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/InverseImpl.h:310:60: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; XprType = Eigen::Matrix; SrcXprType = Eigen::Inverse >; typename SrcXprType::Scalar = double; typename DstXprType::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:78:38: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:46: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:76:71: required from 'void Eigen::MatrixBase::makeHouseholder(EssentialPart&, Scalar&, RealScalar&) const [with EssentialPart = Eigen::VectorBlock, -1, 1, true>, -1, 1, false>, -1>; Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; Scalar = double; RealScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:45:18: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:475:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:499:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'struct Eigen::internal::general_matrix_vector_product, 0, false, double, Eigen::internal::const_blas_data_mapper, false, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:244:134: required from 'static void Eigen::internal::gemv_dense_selector<2, 0, true>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; Dest = Eigen::Map, 0, Eigen::Stride<0, 0> >; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:383:34: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: required from 'static void Eigen::internal::generic_product_impl_base::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:256:43: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:75:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 75 | typedef typename conditional::type LhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:76:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 76 | typedef typename conditional::type RhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:77:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 77 | typedef typename conditional::type ResPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 2, Eigen::Stride<0, 0> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 2, Eigen::Stride<0, 0> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 2, Eigen::Stride<0, 0> >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 2, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 2, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 2, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:256:43: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 2, Eigen::Stride<0, 0> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 2, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 2, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 2, Eigen::Stride<0, 0> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 2, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:287:40: required from 'static void Eigen::internal::gemv_dense_selector<2, 0, true>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; Dest = Eigen::Map, 0, Eigen::Stride<0, 0> >; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:383:34: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:256:43: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, 0, Eigen::Stride<0, 0> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:259:42: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:197:26: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:259:42: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false> > >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, 1, false> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:197:43: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:259:42: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:961:41: required from 'struct Eigen::internal::evaluator, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false>; SrcXprType = Eigen::Matrix; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false>; SrcXprType = Eigen::Matrix; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Src = Eigen::Matrix; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:797:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Src = Eigen::Product, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, true>, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false>; SrcXprType = Eigen::Matrix; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false>; SrcXprType = Eigen::Matrix; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Src = Eigen::Matrix; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:797:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Src = Eigen::Product, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Src = Eigen::Product, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Assign.h:66:28: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:59: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, -1, -1, false>; int Mode = 5; bool LhsIsTriangular = true; Lhs = const Eigen::Block, -1, -1, false>; Rhs = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:74: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, -1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, -1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false>, -1, -1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:462:59: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, -1, -1, false>; int Mode = 5; bool LhsIsTriangular = true; Lhs = const Eigen::Block, -1, -1, false>; Rhs = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, Eigen::Matrix, 1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, Eigen::Matrix, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::Matrix, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base >, Eigen::Matrix, 1, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl >, Eigen::Matrix, 1, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product >, Eigen::Matrix, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:436:50: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product >, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:72:15: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:101:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, false>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:165:45: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:101:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:51: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block, -1, 1, false>; U = Eigen::Block, -1, 1, true>, -1, 1, false>; bool NeedToTranspose = false; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: required from 'typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType Eigen::MatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Block, -1, 1, true>, -1, 1, false>; Derived = Eigen::Block, -1, 1, false>; typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType = double; typename Eigen::internal::traits::Scalar = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:370:86: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:101:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, true>, -1, 1, false>, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Assign.h:66:28: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:475:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false> > >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, 1, true>, -1, 1, false> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:197:43: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:475:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'static void Eigen::internal::general_matrix_vector_product::run(Index, Index, const LhsMapper&, const RhsMapper&, ResScalar*, Index, RhsScalar) [with Index = long long int; LhsScalar = double; LhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateLhs = false; RhsScalar = double; RhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateRhs = false; int Version = 0; ResScalar = double]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:244:134: required from 'static void Eigen::internal::gemv_dense_selector<2, 0, true>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; Dest = Eigen::Map, 0, Eigen::Stride<0, 0> >; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:383:34: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: required from 'static void Eigen::internal::generic_product_impl_base::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:256:43: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:112:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 112 | conj_helper pcj;\\n\"},{\"type\":1,\"output\":\" | ^~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:112:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'struct Eigen::internal::general_matrix_vector_product, 1, false, double, Eigen::internal::const_blas_data_mapper, false, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:339:132: required from 'static void Eigen::internal::gemv_dense_selector<2, 1, true>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, -1, 1, false> > >; Dest = Eigen::Transpose, 0, Eigen::Stride<0, 0> > >; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:197:12: required from 'static void Eigen::internal::gemv_dense_selector<1, StorageOrder, BlasCompatible>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, 1, false> >; Rhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Dest = Eigen::Map, 0, Eigen::Stride<0, 0> >; int StorageOrder = 0; bool BlasCompatible = true; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:383:34: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Transpose, -1, 1, false> >; Rhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Transpose, -1, 1, false> >; Rhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Derived = Eigen::internal::generic_product_impl, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: required from 'static void Eigen::internal::generic_product_impl_base::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Transpose, -1, 1, false> >; Rhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Derived = Eigen::internal::generic_product_impl, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:259:42: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:351:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 351 | typedef typename conditional::type LhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:352:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 352 | typedef typename conditional::type RhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:353:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 353 | typedef typename conditional::type ResPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> > >, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:259:42: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, true>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, true>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, 1, -1, true>, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:32: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:48: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; int Mode = 5; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = const Eigen::Block, -1, -1, false>, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:751:113: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:150:68: required from 'static void Eigen::internal::product_triangular_matrix_matrix::run(Index, Index, Index, const Scalar*, Index, const Scalar*, Index, Scalar*, Index, Index, const Scalar&, Eigen::internal::level3_blocking&) [with Scalar = double; Index = long long int; int Mode = 5; int LhsStorageOrder = 0; bool ConjugateLhs = false; int RhsStorageOrder = 0; bool ConjugateRhs = false; int ResInnerStride = 1; int Version = 0]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:443:12: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, -1, -1, false>; int Mode = 5; bool LhsIsTriangular = true; Lhs = const Eigen::Block, -1, -1, false>; Rhs = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Diagonal.h:63:53: required from 'class Eigen::Diagonal, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:153:32: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:174:81: required from 'class Eigen::DenseBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Diagonal.h:63:53: required from 'class Eigen::Diagonal, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:153:32: required from 'static void Eigen::internal::product_triangular_matrix_matrix::run(Index, Index, Index, const Scalar*, Index, const Scalar*, Index, Scalar*, Index, Index, const Scalar&, Eigen::internal::level3_blocking&) [with Scalar = double; Index = long long int; int Mode = 5; int LhsStorageOrder = 0; bool ConjugateLhs = false; int RhsStorageOrder = 0; bool ConjugateRhs = false; int ResInnerStride = 1; int Version = 0]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:443:12: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, -1, -1, false>; int Mode = 5; bool LhsIsTriangular = true; Lhs = const Eigen::Block, -1, -1, false>; Rhs = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, false>, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:101:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::Matrix >, -1, 1, true, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::Matrix >, -1, 1, true, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::Matrix >, -1, 1, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1307:33: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/InverseImpl.h:310:60: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; XprType = Eigen::Matrix; SrcXprType = Eigen::Inverse >; typename SrcXprType::Scalar = double; typename DstXprType::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:78:38: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix >, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix >, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::Matrix >, 1, -1, false, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::Matrix >, 1, -1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::Matrix >, 1, -1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1309:33: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/InverseImpl.h:310:60: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; XprType = Eigen::Matrix; SrcXprType = Eigen::Inverse >; typename SrcXprType::Scalar = double; typename DstXprType::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:78:38: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:961:41: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:522:41: required from 'struct Eigen::internal::unary_evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:71:51: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/InverseImpl.h:28:33: required from 'static void Eigen::internal::compute_inverse::run(const MatrixType&, ResultType&) [with MatrixType = Eigen::Matrix; ResultType = Eigen::Matrix; int Size = -1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/InverseImpl.h:310:60: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; XprType = Eigen::Matrix; SrcXprType = Eigen::Inverse >; typename SrcXprType::Scalar = double; typename DstXprType::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:78:38: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:961:41: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:522:41: required from 'struct Eigen::internal::unary_evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:71:51: required from 'class Eigen::internal::visitor_evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:110:17: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/InverseImpl.h:310:60: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; XprType = Eigen::Matrix; SrcXprType = Eigen::Inverse >; typename SrcXprType::Scalar = double; typename DstXprType::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:78:38: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:522:41: required from 'struct Eigen::internal::unary_evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:71:51: required from 'class Eigen::internal::visitor_evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:110:17: required from 'void Eigen::DenseBase::visit(Visitor&) const [with Visitor = Eigen::internal::max_coeff_visitor, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:266:14: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/InverseImpl.h:310:60: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; XprType = Eigen::Matrix; SrcXprType = Eigen::Inverse >; typename SrcXprType::Scalar = double; typename DstXprType::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:78:38: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:371:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/Memory.h: In instantiation of 'Index Eigen::internal::first_default_aligned(const Scalar*, Index) [with Scalar = double; Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:128:55: required from 'static void Eigen::internal::general_matrix_vector_product::run(Index, Index, const LhsMapper&, const RhsMapper&, ResScalar*, Index, RhsScalar) [with Index = long long int; LhsScalar = double; LhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateLhs = false; RhsScalar = double; RhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:244:134: required from 'static void Eigen::internal::gemv_dense_selector<2, 0, true>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; Dest = Eigen::Map, 0, Eigen::Stride<0, 0> >; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:383:34: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: required from 'static void Eigen::internal::generic_product_impl_base::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:256:43: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/Memory.h:470:60: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 470 | return first_aligned::alignment>(array, size);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'static void Eigen::internal::general_matrix_vector_product::run(Index, Index, const LhsMapper&, const RhsMapper&, ResScalar*, Index, ResScalar) [with Index = long long int; LhsScalar = double; LhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateLhs = false; RhsScalar = double; RhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateRhs = false; int Version = 0; ResScalar = double]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:339:132: required from 'static void Eigen::internal::gemv_dense_selector<2, 1, true>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, -1, 1, false> > >; Dest = Eigen::Transpose, 0, Eigen::Stride<0, 0> > >; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:197:12: required from 'static void Eigen::internal::gemv_dense_selector<1, StorageOrder, BlasCompatible>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, 1, false> >; Rhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Dest = Eigen::Map, 0, Eigen::Stride<0, 0> >; int StorageOrder = 0; bool BlasCompatible = true; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:383:34: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Transpose, -1, 1, false> >; Rhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Transpose, -1, 1, false> >; Rhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Derived = Eigen::internal::generic_product_impl, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: required from 'static void Eigen::internal::generic_product_impl_base::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Transpose, -1, 1, false> >; Rhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Derived = Eigen::internal::generic_product_impl, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:259:42: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:385:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 385 | conj_helper pcj;\\n\"},{\"type\":1,\"output\":\" | ^~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:385:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/BlasUtil.h:464:13: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, -1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, -1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, true>, 1, -1, false> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, true>, 1, -1, false> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, true>, 1, -1, false> >, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/VectorBlock.h:56:47: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:341:54: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >; Dest = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; int Mode = 6; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:59: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Matrix; int Mode = 6; bool LhsIsTriangular = true; Lhs = const Eigen::Transpose, -1, -1, false> >; Rhs = Eigen::Block, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:74: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false> >, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false> >, -1, -1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false> >, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false> >, -1, -1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:462:59: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Matrix; int Mode = 6; bool LhsIsTriangular = true; Lhs = const Eigen::Transpose, -1, -1, false> >; Rhs = Eigen::Block, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: In instantiation of 'void Eigen::internal::gemm_pack_rhs::operator()(Scalar*, const DataMapper&, Index, Index, Index, Index) [with Scalar = double; Index = long long int; DataMapper = Eigen::internal::const_blas_data_mapper; int nr = 4; bool Conjugate = false; bool PanelMode = false]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:175:15: required from 'static void Eigen::internal::product_triangular_matrix_matrix::run(Index, Index, Index, const Scalar*, Index, const Scalar*, Index, Scalar*, Index, Index, const Scalar&, Eigen::internal::level3_blocking&) [with Scalar = double; Index = long long int; int Mode = 5; int LhsStorageOrder = 0; bool ConjugateLhs = false; int RhsStorageOrder = 0; bool ConjugateRhs = false; int ResInnerStride = 1; int Version = 0]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:443:12: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, -1, -1, false>; int Mode = 5; bool LhsIsTriangular = true; Lhs = const Eigen::Block, -1, -1, false>; Rhs = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, -1, -1, false>; Lhs = Eigen::TriangularView, -1, -1, false>, 5>; Rhs = Eigen::Matrix; int ProductTag = 8; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Block, -1, -1, false>; Lhs = Eigen::TriangularView, -1, -1, false>, 5>; Rhs = Eigen::Matrix; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, 5>, Eigen::Matrix, Eigen::TriangularShape, Eigen::DenseShape, 8>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:357:18: required from 'static void Eigen::internal::generic_product_impl_base::subTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Block, -1, -1, false>; Lhs = Eigen::TriangularView, -1, -1, false>, 5>; Rhs = Eigen::Matrix; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, 5>, Eigen::Matrix, Eigen::TriangularShape, Eigen::DenseShape, 8>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:178:42: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1981:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 1981 | PacketBlock kernel;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 1, -1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Product >, Eigen::Transpose >, 0>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:390:12: required from 'void VPolytope::linear_transformIt(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:91:38: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:578:37: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Product >, Eigen::Transpose >, 0>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:390:12: required from 'void VPolytope::linear_transformIt(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:91:38: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase >, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense >, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Product >, Eigen::Transpose >, 0>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:390:12: required from 'void VPolytope::linear_transformIt(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:91:38: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block >, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block >, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:578:52: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index, Eigen::Index) const [with Lhs = Eigen::Inverse >; Rhs = Eigen::Transpose >; int ProductTag = 8; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Transpose >; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Inverse >; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:631:63: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Product >, Eigen::Transpose >, 0>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:390:12: required from 'void VPolytope::linear_transformIt(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:91:38: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:503:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h: In instantiation of 'static void Eigen::internal::selfadjoint_matrix_vector_product::run(Index, const Scalar*, Index, const Scalar*, Scalar*, Scalar) [with Scalar = double; Index = long long int; int StorageOrder = 0; int UpLo = 1; bool ConjugateLhs = false; bool ConjugateRhs = false; int Version = 0]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:227:7: required from 'static void Eigen::internal::selfadjoint_product_impl::run(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, -1, 1, false>; Lhs = Eigen::Block, -1, -1, false>; int LhsMode = 17; Rhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:772:109: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, -1, 1, false>; Lhs = Eigen::SelfAdjointView, -1, -1, false>, 1>; Rhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; int ProductTag = 7; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Block, -1, 1, false>; Lhs = Eigen::SelfAdjointView, -1, -1, false>, 1>; Rhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::SelfAdjointShape, Eigen::DenseShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: required from 'static void Eigen::internal::generic_product_impl_base::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Block, -1, 1, false>; Lhs = Eigen::SelfAdjointView, -1, -1, false>, 1>; Rhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::SelfAdjointShape, Eigen::DenseShape, 7>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Block, -1, 1, false>; Lhs = Eigen::SelfAdjointView, -1, -1, false>, 1>; Rhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:101:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:60:121: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 60 | conj_helper::IsComplex && EIGEN_LOGICAL_XOR(ConjugateLhs, IsRowMajor), ConjugateRhs> pcj0;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:60:121: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:61:121: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 61 | conj_helper::IsComplex && EIGEN_LOGICAL_XOR(ConjugateLhs, !IsRowMajor), ConjugateRhs> pcj1;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:61:121: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::OuterStride<> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::OuterStride<> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::OuterStride<> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Map.h:94:79: required from 'class Eigen::Map, 0, Eigen::OuterStride<> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:115:18: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Map.h:94:79: required from 'class Eigen::Map, 0, Eigen::Stride<0, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:119:18: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::InnerStride<> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::InnerStride<> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::InnerStride<> >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::InnerStride<> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::InnerStride<> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::InnerStride<> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::OuterStride<> >, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::OuterStride<> >, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::OuterStride<> >, 1, -1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::Stride<0, 0> >, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, 0, Eigen::Stride<0, 0> >, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:137:106: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:137:77: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const ResScalar&) [with Index = long long int; int Mode = 6; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:332:12: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'struct Eigen::internal::general_matrix_vector_product, 1, false, double, Eigen::internal::const_blas_data_mapper, false, 1>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:145:123: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const ResScalar&) [with Index = long long int; int Mode = 6; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:332:12: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >; Dest = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; int Mode = 6; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; int Mode = 5; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = const Eigen::Block, -1, -1, false>, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:751:113: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>; int ProductTag = 7; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>; Derived = Eigen::internal::generic_product_impl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, Eigen::DenseShape, Eigen::TriangularShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:351:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 351 | typedef typename conditional::type LhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:352:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 352 | typedef typename conditional::type RhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:353:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 353 | typedef typename conditional::type ResPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'struct Eigen::internal::general_matrix_vector_product, 1, false, double, Eigen::internal::const_blas_data_mapper, false, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:154:113: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const ResScalar&) [with Index = long long int; int Mode = 6; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:332:12: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >; Dest = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; int Mode = 6; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; int Mode = 5; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = const Eigen::Block, -1, -1, false>, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:751:113: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>; int ProductTag = 7; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>; Derived = Eigen::internal::generic_product_impl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, Eigen::DenseShape, Eigen::TriangularShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:351:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 351 | typedef typename conditional::type LhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:352:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 352 | typedef typename conditional::type RhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:353:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 353 | typedef typename conditional::type ResPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Diagonal.h:63:53: required from 'class Eigen::Diagonal, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:153:32: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:327:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:501:10: required from 'Derived& Eigen::DenseBase::setZero() [with Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:151:29: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:327:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Diagonal, 0>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:501:10: required from 'Derived& Eigen::DenseBase::setZero() [with Derived = Eigen::Diagonal, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:153:42: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:961:41: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; SrcXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Functor = swap_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; SrcXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Functor = Eigen::internal::swap_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Src = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Func = swap_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Src = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Func = swap_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:418:22: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/InverseImpl.h:310:60: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; XprType = Eigen::Matrix; SrcXprType = Eigen::Inverse >; typename SrcXprType::Scalar = double; typename DstXprType::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:78:38: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; SrcXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Functor = swap_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; SrcXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Functor = Eigen::internal::swap_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Src = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Func = swap_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Src = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Func = swap_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:418:22: required from 'void Eigen::DenseBase::swap(const Eigen::DenseBase&) [with OtherDerived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Derived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:480:24: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/InverseImpl.h:310:60: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; XprType = Eigen::Matrix; SrcXprType = Eigen::Inverse >; typename SrcXprType::Scalar = double; typename DstXprType::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:78:38: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: In instantiation of 'void Eigen::internal::gemm_pack_rhs::operator()(Scalar*, const DataMapper&, Index, Index, Index, Index) [with Scalar = double; Index = long long int; DataMapper = Eigen::internal::blas_data_mapper; int nr = 4; bool Conjugate = false; bool PanelMode = true]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularSolverMatrix.h:153:19: required from 'static void Eigen::internal::triangular_solve_matrix::run(Index, Index, const Scalar*, Index, Scalar*, Index, Index, Eigen::internal::level3_blocking&) [with Scalar = double; Index = long long int; int Mode = 5; bool Conjugate = false; int TriStorageOrder = 0; int OtherInnerStride = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/SolveTriangular.h:102:12: required from 'static void Eigen::internal::triangular_solver_selector::run(const Lhs&, Rhs&) [with Lhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; int Side = 1; int Mode = 5]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/SolveTriangular.h:182:21: required from 'void Eigen::TriangularViewImpl<_MatrixType, _Mode, Eigen::Dense>::solveInPlace(const Eigen::MatrixBase&) const [with int Side = 1; OtherDerived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; _MatrixType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; unsigned int _Mode = 5]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/TriangularMatrix.h:509:37: required from 'void Eigen::TriangularViewImpl<_MatrixType, _Mode, Eigen::Dense>::solveInPlace(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; _MatrixType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; unsigned int _Mode = 5]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:490:62: required from 'static Eigen::Index Eigen::internal::partial_lu_impl::blocked_lu(Eigen::Index, Eigen::Index, Scalar*, Eigen::Index, PivIndex*, PivIndex&, Eigen::Index) [with Scalar = double; int StorageOrder = 0; PivIndex = int; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:509:17: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/InverseImpl.h:310:60: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; XprType = Eigen::Matrix; SrcXprType = Eigen::Inverse >; typename SrcXprType::Scalar = double; typename DstXprType::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:78:38: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1981:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 1981 | PacketBlock kernel;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:436:50: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/InverseImpl.h:310:60: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; XprType = Eigen::Matrix; SrcXprType = Eigen::Inverse >; typename SrcXprType::Scalar = double; typename DstXprType::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:78:38: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, false>, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >; Derived = Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:305:135: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:256:43: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'static void Eigen::internal::general_matrix_vector_product::run(Index, Index, const LhsMapper&, const RhsMapper&, ResScalar*, Index, ResScalar) [with Index = long long int; LhsScalar = double; LhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateLhs = false; RhsScalar = double; RhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateRhs = false; int Version = 1; ResScalar = double]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:145:123: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const ResScalar&) [with Index = long long int; int Mode = 6; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:332:12: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >; Dest = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; int Mode = 6; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; int Mode = 5; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = const Eigen::Block, -1, -1, false>, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:751:113: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>; int ProductTag = 7; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>; Derived = Eigen::internal::generic_product_impl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, Eigen::DenseShape, Eigen::TriangularShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:385:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 385 | conj_helper pcj;\\n\"},{\"type\":1,\"output\":\" | ^~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:385:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'static void Eigen::internal::general_matrix_vector_product::run(Index, Index, const LhsMapper&, const RhsMapper&, ResScalar*, Index, ResScalar) [with Index = long long int; LhsScalar = double; LhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateLhs = false; RhsScalar = double; RhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateRhs = false; int Version = 0; ResScalar = double]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:154:113: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const ResScalar&) [with Index = long long int; int Mode = 6; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:332:12: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >; Dest = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; int Mode = 6; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; int Mode = 5; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = const Eigen::Block, -1, -1, false>, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:751:113: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>; int ProductTag = 7; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>; Derived = Eigen::internal::generic_product_impl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, Eigen::DenseShape, Eigen::TriangularShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:385:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:385:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: In instantiation of 'void Eigen::internal::gemm_pack_lhs::operator()(Scalar*, const DataMapper&, Index, Index, Index, Index) [with Scalar = double; Index = long long int; DataMapper = Eigen::internal::const_blas_data_mapper; int Pack1 = 4; int Pack2 = 2; bool Conjugate = false; bool PanelMode = false]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:203:19: required from 'static void Eigen::internal::product_triangular_matrix_matrix::run(Index, Index, Index, const Scalar*, Index, const Scalar*, Index, Scalar*, Index, Index, const Scalar&, Eigen::internal::level3_blocking&) [with Scalar = double; Index = long long int; int Mode = 6; int LhsStorageOrder = 1; bool ConjugateLhs = false; int RhsStorageOrder = 0; bool ConjugateRhs = false; int ResInnerStride = 1; int Version = 0]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:443:12: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Matrix; int Mode = 6; bool LhsIsTriangular = true; Lhs = const Eigen::Transpose, -1, -1, false> >; Rhs = Eigen::Block, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::TriangularView, -1, -1, false> >, 6>; Rhs = Eigen::Block, -1, -1, false>; int ProductTag = 8; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Matrix; Lhs = Eigen::TriangularView, -1, -1, false> >, 6>; Rhs = Eigen::Block, -1, -1, false>; Derived = Eigen::internal::generic_product_impl, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, Eigen::TriangularShape, Eigen::DenseShape, 8>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: required from 'static void Eigen::internal::generic_product_impl_base::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::TriangularView, -1, -1, false> >, 6>; Rhs = Eigen::Block, -1, -1, false>; Derived = Eigen::internal::generic_product_impl, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, Eigen::TriangularShape, Eigen::DenseShape, 8>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1847:33: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 1847 | PacketBlock kernel;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1847:33: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:270:41: required from 'struct Eigen::internal::unary_evaluator, 1, -1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block >, -1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Product >, Eigen::Transpose >, 0>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:390:12: required from 'void VPolytope::linear_transformIt(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:91:38: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator >, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block >, -1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block >, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Product >, Eigen::Transpose >, 0>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:390:12: required from 'void VPolytope::linear_transformIt(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:91:38: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::Matrix >, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Matrix >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/VectorwiseOp.h:104:1: required from 'ResultType Eigen::internal::member_sum::operator()(const XprType&) const [with XprType = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; ResultType = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1307:23: required from 'const Eigen::internal::evaluator >::Scalar Eigen::internal::evaluator >::coeff(Eigen::Index, Eigen::Index) const [with ArgType = const Eigen::CwiseUnaryOp, const Eigen::Matrix >; MemberOp = Eigen::internal::member_sum; int Direction = 0; Scalar = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:381:29: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/InverseImpl.h:310:60: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; XprType = Eigen::Matrix; SrcXprType = Eigen::Inverse >; typename SrcXprType::Scalar = double; typename DstXprType::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:78:38: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::Matrix >, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Matrix >, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::Block, const Eigen::Matrix >, 1, -1, false>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::Block, const Eigen::Matrix >, 1, -1, false>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/VectorwiseOp.h:104:1: required from 'ResultType Eigen::internal::member_sum::operator()(const XprType&) const [with XprType = Eigen::Block, const Eigen::Matrix >, 1, -1, false>; ResultType = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1309:23: required from 'const Eigen::internal::evaluator >::Scalar Eigen::internal::evaluator >::coeff(Eigen::Index, Eigen::Index) const [with ArgType = const Eigen::CwiseUnaryOp, const Eigen::Matrix >; MemberOp = Eigen::internal::member_sum; int Direction = 0; Scalar = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:381:29: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/InverseImpl.h:310:60: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; XprType = Eigen::Matrix; SrcXprType = Eigen::Inverse >; typename SrcXprType::Scalar = double; typename DstXprType::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:78:38: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>; SrcXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>; Functor = swap_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>; SrcXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>; Functor = Eigen::internal::swap_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>; Src = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>; Func = swap_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>; Src = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>; Func = swap_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:418:22: required from 'void Eigen::DenseBase::swap(const Eigen::DenseBase&) [with OtherDerived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>; Derived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:390:25: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/InverseImpl.h:310:60: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; XprType = Eigen::Matrix; SrcXprType = Eigen::Inverse >; typename SrcXprType::Scalar = double; typename DstXprType::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:78:38: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:274:18: required from 'void Eigen::internal::outer_product_selector_run(Dst&, const Lhs&, const Rhs&, const Func&, const false_type&) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; Lhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>; Rhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>; Func = generic_product_impl, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, Eigen::DenseShape, Eigen::DenseShape, 5>::sub]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:329:41: required from 'static void Eigen::internal::generic_product_impl::subTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; Lhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>; Rhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:178:42: required from 'static void Eigen::internal::Assignment, Eigen::internal::sub_assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::sub_assign_op&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; Lhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>; Rhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; Src = Eigen::Product, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0>; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/NoAlias.h:58:31: required from 'ExpressionType& Eigen::NoAlias::operator-=(const StorageBase&) [with OtherDerived = Eigen::Product, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0>; ExpressionType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; StorageBase = Eigen::MatrixBase]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:406:53: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/InverseImpl.h:310:60: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; XprType = Eigen::Matrix; SrcXprType = Eigen::Inverse >; typename SrcXprType::Scalar = double; typename DstXprType::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:78:38: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/InverseImpl.h:310:60: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; XprType = Eigen::Matrix; SrcXprType = Eigen::Inverse >; typename SrcXprType::Scalar = double; typename DstXprType::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:78:38: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:280:48: required from 'void Eigen::internal::outer_product_selector_run(Dst&, const Lhs&, const Rhs&, const Func&, const false_type&) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; Lhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>; Rhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>; Func = generic_product_impl, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, Eigen::DenseShape, Eigen::DenseShape, 5>::sub]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:329:41: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/InverseImpl.h:310:60: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; XprType = Eigen::Matrix; SrcXprType = Eigen::Inverse >; typename SrcXprType::Scalar = double; typename DstXprType::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:78:38: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, 1, -1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:961:41: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:270:41: required from 'struct Eigen::internal::unary_evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:327:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:501:10: required from 'Derived& Eigen::DenseBase::setZero() [with Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:151:29: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Derived = Eigen::Block, -1, -1, false>, -1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:31: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Derived = Eigen::Block, -1, -1, false>, -1, -1, true>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:462:32: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::CwiseNullaryOp, Eigen::Matrix >, 2>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::CwiseNullaryOp, Eigen::Matrix >, 2> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::CwiseNullaryOp, Eigen::Matrix >, 2> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, Eigen::CwiseNullaryOp, Eigen::Matrix >, 2, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, Eigen::CwiseNullaryOp, Eigen::Matrix >, 2, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, Eigen::CwiseNullaryOp, Eigen::Matrix >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:237:28: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/InverseImpl.h:310:60: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; XprType = Eigen::Matrix; SrcXprType = Eigen::Inverse >; typename SrcXprType::Scalar = double; typename DstXprType::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:78:38: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, 1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:796:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Matrix, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:439:11: required from 'void HPolytope::linear_transformIt(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:78:38: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block, -1, 1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block, -1, 1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:578:52: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index, Eigen::Index) const [with Lhs = Eigen::Matrix; Rhs = Eigen::Matrix; int ProductTag = 8; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Matrix; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Matrix; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:631:63: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:796:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Matrix, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:439:11: required from 'void HPolytope::linear_transformIt(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:78:38: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:32: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, true>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, true>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, 1, -1, true>, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:48: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:462:59: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Matrix; int Mode = 2; bool LhsIsTriangular = true; Lhs = Eigen::Matrix; Rhs = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, -1, -1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, -1, -1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase >, -1, -1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense >, -1, -1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:462:59: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Matrix; int Mode = 1; bool LhsIsTriangular = true; Lhs = const Eigen::Transpose >; Rhs = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Matrix >, -1, 1, true> >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/VectorwiseOp.h:104:1: required from 'ResultType Eigen::internal::member_sum::operator()(const XprType&) const [with XprType = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; ResultType = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1307:23: required from 'const Eigen::internal::evaluator >::Scalar Eigen::internal::evaluator >::coeff(Eigen::Index, Eigen::Index) const [with ArgType = const Eigen::CwiseUnaryOp, const Eigen::Matrix >; MemberOp = Eigen::internal::member_sum; int Direction = 0; Scalar = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:381:29: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/InverseImpl.h:310:60: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; XprType = Eigen::Matrix; SrcXprType = Eigen::Inverse >; typename SrcXprType::Scalar = double; typename DstXprType::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:78:38: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:137:114: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const ResScalar&) [with Index = long long int; int Mode = 6; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:332:12: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >; Dest = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; int Mode = 6; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:961:41: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:270:41: required from 'struct Eigen::internal::unary_evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: [ skipping 28 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:270:41: required from 'struct Eigen::internal::unary_evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: [ skipping 26 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, true>, 1, -1, false> >, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >; Derived = Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:341:27: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase >, -1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase >, -1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase >, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 20 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, true>, 1, -1, false> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, true>, 1, -1, false> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, true>, 1, -1, false> >, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 1, -1, true>, 1, -1, false> >, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 18 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:282:54: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false> >; Rhs = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; Dest = Eigen::Transpose >; int Mode = 1; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Derived = Eigen::Block, -1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:31: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false> >, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Derived = Eigen::Block, -1, -1, true>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:462:32: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 1, -1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, 1, -1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase >, 1, -1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense >, 1, -1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product >, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:72:15: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:101:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 1, -1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, 1, -1, true> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, 1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, 1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl >, 1, -1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:578:37: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product >, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:72:15: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:101:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:578:52: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index, Eigen::Index) const [with Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; int ProductTag = 8; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Matrix; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Transpose >; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:631:63: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product >, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:72:15: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:101:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block, -1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:796:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Matrix, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:439:11: required from 'void HPolytope::linear_transformIt(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:78:38: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::OuterStride<> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::OuterStride<> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::OuterStride<> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Map.h:94:79: required from 'class Eigen::Map, 0, Eigen::OuterStride<> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:44:18: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::InnerStride<> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::InnerStride<> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::InnerStride<> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::InnerStride<> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::InnerStride<> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Map.h:94:79: required from 'class Eigen::Map, 0, Eigen::InnerStride<> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:48:18: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 21 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, -1, 1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::OuterStride<> >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::OuterStride<> >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::OuterStride<> >, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::OuterStride<> >, -1, 1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 18 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 19 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:66:56: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const RhsScalar&) [with Index = long long int; int Mode = 1; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:266:12: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'struct Eigen::internal::general_matrix_vector_product, 0, false, double, Eigen::internal::const_blas_data_mapper, false, 1>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:74:123: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const RhsScalar&) [with Index = long long int; int Mode = 1; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:266:12: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false> >; Rhs = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; Dest = Eigen::Transpose >; int Mode = 1; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Matrix; int Mode = 2; Lhs = Eigen::Block, 1, -1, true>, 1, -1, false>; Rhs = Eigen::Block, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:751:113: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::Block, 1, -1, true>, 1, -1, false>; Rhs = Eigen::TriangularView, -1, -1, false>, 2>; int ProductTag = 7; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Matrix; Lhs = Eigen::Block, 1, -1, true>, 1, -1, false>; Rhs = Eigen::TriangularView, -1, -1, false>, 2>; Derived = Eigen::internal::generic_product_impl, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, Eigen::DenseShape, Eigen::TriangularShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:75:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 75 | typedef typename conditional::type LhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:76:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 76 | typedef typename conditional::type RhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:77:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 77 | typedef typename conditional::type ResPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'static void Eigen::internal::general_matrix_vector_product::run(Index, Index, const LhsMapper&, const RhsMapper&, ResScalar*, Index, RhsScalar) [with Index = long long int; LhsScalar = double; LhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateLhs = false; RhsScalar = double; RhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateRhs = false; int Version = 1; ResScalar = double]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:74:123: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const RhsScalar&) [with Index = long long int; int Mode = 1; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:266:12: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false> >; Rhs = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; Dest = Eigen::Transpose >; int Mode = 1; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Matrix; int Mode = 2; Lhs = Eigen::Block, 1, -1, true>, 1, -1, false>; Rhs = Eigen::Block, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:751:113: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::Block, 1, -1, true>, 1, -1, false>; Rhs = Eigen::TriangularView, -1, -1, false>, 2>; int ProductTag = 7; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Matrix; Lhs = Eigen::Block, 1, -1, true>, 1, -1, false>; Rhs = Eigen::TriangularView, -1, -1, false>, 2>; Derived = Eigen::internal::generic_product_impl, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, Eigen::DenseShape, Eigen::TriangularShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:112:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 112 | conj_helper pcj;\\n\"},{\"type\":1,\"output\":\" | ^~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:112:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator >, 1, -1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator >, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:270:41: required from 'struct Eigen::internal::unary_evaluator >, 1, -1, true> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator >, 1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator >, 1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: [ skipping 19 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product >, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:72:15: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:101:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >; Derived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:305:135: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/InverseImpl.h:310:60: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; XprType = Eigen::Matrix; SrcXprType = Eigen::Inverse >; typename SrcXprType::Scalar = double; typename DstXprType::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:78:38: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 21 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/InverseImpl.h:310:60: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; XprType = Eigen::Matrix; SrcXprType = Eigen::Inverse >; typename SrcXprType::Scalar = double; typename DstXprType::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:78:38: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:578:37: [ skipping 19 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/InverseImpl.h:310:60: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; XprType = Eigen::Matrix; SrcXprType = Eigen::Inverse >; typename SrcXprType::Scalar = double; typename DstXprType::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:78:38: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 21 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/InverseImpl.h:310:60: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; XprType = Eigen::Matrix; SrcXprType = Eigen::Inverse >; typename SrcXprType::Scalar = double; typename DstXprType::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:78:38: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:578:52: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index, Eigen::Index) const [with Lhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; int ProductTag = 8; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:631:63: [ skipping 18 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/InverseImpl.h:310:60: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; XprType = Eigen::Matrix; SrcXprType = Eigen::Inverse >; typename SrcXprType::Scalar = double; typename DstXprType::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:78:38: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator >, -1, -1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator >, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:578:75: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index, Eigen::Index) const [with Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; int ProductTag = 8; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Matrix; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Transpose >; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:631:63: required from 'void Eigen::internal::generic_dense_assignment_kernel::assignCoeff(Eigen::Index, Eigen::Index) [with DstEvaluatorTypeT = Eigen::internal::evaluator >; SrcEvaluatorTypeT = Eigen::internal::evaluator >, Eigen::Matrix, 1> >; Functor = Eigen::internal::assign_op; int Version = 0; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:645:16: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product >, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:72:15: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:101:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, true>, 1, -1, false> >, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 1, -1, true>, 1, -1, false> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 18 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator >, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block >, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block >, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >; Derived = Eigen::Block >, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:282:27: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:270:41: required from 'struct Eigen::internal::unary_evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: [ skipping 23 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/InverseImpl.h:310:60: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; XprType = Eigen::Matrix; SrcXprType = Eigen::Inverse >; typename SrcXprType::Scalar = double; typename DstXprType::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:78:38: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 20 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/InverseImpl.h:310:60: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; XprType = Eigen::Matrix; SrcXprType = Eigen::Inverse >; typename SrcXprType::Scalar = double; typename DstXprType::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:78:38: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:961:41: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: [ skipping 21 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >; Functor = add_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >; Functor = Eigen::internal::add_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 19 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >; Functor = add_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >; Functor = Eigen::internal::add_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >; Func = add_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >; Func = add_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:177:18: required from 'Derived& Eigen::MatrixBase::operator+=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >; Derived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:66:28: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rotating.hpp:56:26: required from 'MT rotating(Polytope&, unsigned int) [with MT = Eigen::Matrix; Polytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:80:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix >, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix >, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, Eigen::Matrix >, 1, -1, false, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, Eigen::Matrix >, 1, -1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, Eigen::Matrix >, 1, -1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:1009:11: [ skipping 22 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/InverseImpl.h:310:60: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; XprType = Eigen::Matrix; SrcXprType = Eigen::Inverse >; typename SrcXprType::Scalar = double; typename DstXprType::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:78:38: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, Eigen::Matrix >, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, false>; SrcXprType = Eigen::Block, Eigen::Matrix >, 1, -1, false>; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, false>; SrcXprType = Eigen::Block, Eigen::Matrix >, 1, -1, false>; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 1, -1, false>; Src = Eigen::Block, Eigen::Matrix >, 1, -1, false>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 1, -1, false>; Src = Eigen::Block, Eigen::Matrix >, 1, -1, false>; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Block, 1, -1, false>; Src = Eigen::Block, Eigen::Matrix >, 1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Assign.h:66:28: [ skipping 23 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/InverseImpl.h:310:60: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; XprType = Eigen::Matrix; SrcXprType = Eigen::Inverse >; typename SrcXprType::Scalar = double; typename DstXprType::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"rotating.cpp:78:38: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h: In function 'static void Eigen::internal::selfadjoint_product_impl::run(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, -1, 1, false>; Lhs = Eigen::Block, -1, -1, false>; int LhsMode = 17; Rhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:227:7: warning: 'result' may be used uninitialized [-Wmaybe-uninitialized]\\n\"},{\"type\":1,\"output\":\" 225 | internal::selfadjoint_matrix_vector_product::Flags&RowMajorBit) ? RowMajor : ColMajor,\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 226 | int(LhsUpLo), bool(LhsBlasTraits::NeedToConjugate), bool(RhsBlasTraits::NeedToConjugate)>::run\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 227 | (\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\" 228 | lhs.rows(), // size\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 229 | &lhs.coeffRef(0,0), lhs.outerStride(), // lhs info\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 230 | actualRhsPtr, // rhs info\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 231 | actualDestPtr, // result info\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 232 | actualAlpha // scale factor\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 233 | );\\n\"},{\"type\":1,\"output\":\" | ~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:39:24: note: by argument 4 of type 'const double*' to 'static void Eigen::internal::selfadjoint_matrix_vector_product::run(Index, const Scalar*, Index, const Scalar*, Scalar*, Scalar) [with Scalar = double; Index = long long int; int StorageOrder = 0; int UpLo = 1; bool ConjugateLhs = false; bool ConjugateRhs = false; int Version = 0]' declared here\\n\"},{\"type\":1,\"output\":\" 39 | EIGEN_DONT_INLINE void selfadjoint_matrix_vector_product::run(\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:507:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h: In static member function 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >; Dest = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; int Mode = 6]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:332:12: warning: 'result' may be used uninitialized [-Wmaybe-uninitialized]\\n\"},{\"type\":1,\"output\":\" 327 | internal::triangular_matrix_vector_product\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 328 | \\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 332 | ::run(actualLhs.rows(),actualLhs.cols(),\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 333 | actualLhs.data(),actualLhs.outerStride(),\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 334 | actualRhsPtr,1,\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 335 | dest.data(),dest.innerStride(),\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 336 | actualAlpha);\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:105:24: note: by argument 5 of type 'const double*' to 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const ResScalar&) [with Index = long long int; int Mode = 6; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0]' declared here\\n\"},{\"type\":1,\"output\":\" 105 | EIGEN_DONT_INLINE void triangular_matrix_vector_product\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"g++ -std=gnu++17 -I\\\"D:/Softwares/R/R-4.3.0/include\\\" -DNDEBUG -Iexternal -Iexternal/lpsolve/headers/run_headers -Iexternal/minimum_ellipsoid -Iinclude -Iinclude/convex_bodies/spectrahedra -I'D:/Softwares/R/R-4.3.0/library/Rcpp/include' -I'D:/Softwares/R/R-4.3.0/library/RcppEigen/include' -I'D:/Softwares/R/R-4.3.0/library/BH/include' -I\\\"D:/Softwares/RTools/rtools43/x86_64-w64-mingw32.static.posix/include\\\" -lm -ldl -DBOOST_NO_AUTO_PTR -O2 -Wall -mfpmath=sse -msse2 -mstackrealign -c rounding.cpp -o rounding.o\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:397,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Dense:1,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/RcppEigenForward.h:30,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/RcppEigen.h:25,\\n\"},{\"type\":1,\"output\":\" from rounding.cpp:11:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:60:39: warning: ignoring attributes on template argument '__m128' [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 60 | template<> struct is_arithmetic<__m128> { enum { value = true }; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:61:40: warning: ignoring attributes on template argument '__m128i' [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 61 | template<> struct is_arithmetic<__m128i> { enum { value = true }; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:62:40: warning: ignoring attributes on template argument '__m128d' [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 62 | template<> struct is_arithmetic<__m128d> { enum { value = true }; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:161:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 161 | template<> struct unpacket_traits { typedef float type; enum {size=4, alignment=Aligned16}; typedef Packet4f half; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:162:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 162 | template<> struct unpacket_traits { typedef double type; enum {size=2, alignment=Aligned16}; typedef Packet2d half; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:163:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 163 | template<> struct unpacket_traits { typedef int type; enum {size=4, alignment=Aligned16}; typedef Packet4i half; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:718:35: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 718 | struct palign_impl\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:741:35: warning: ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 741 | struct palign_impl\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:764:35: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 764 | struct palign_impl\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:778:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 778 | ptranspose(PacketBlock& kernel) {\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:783:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 783 | ptranspose(PacketBlock& kernel) {\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:790:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 790 | ptranspose(PacketBlock& kernel) {\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:377:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:15:70: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 15 | template<> struct conj_helper { \\\\\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:232:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL'\\n\"},{\"type\":1,\"output\":\" 232 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet2cf,Packet4f)\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:22:70: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 22 | template<> struct conj_helper { \\\\\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:232:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL'\\n\"},{\"type\":1,\"output\":\" 232 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet2cf,Packet4f)\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:15:70: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 15 | template<> struct conj_helper { \\\\\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:417:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL'\\n\"},{\"type\":1,\"output\":\" 417 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet1cd,Packet2d)\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:22:70: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 22 | template<> struct conj_helper { \\\\\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:417:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL'\\n\"},{\"type\":1,\"output\":\" 417 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet1cd,Packet2d)\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:370:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:243:49: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SSE.h:24:46: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(4) float>::half' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:439:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:46:50: required from 'class Eigen::QuaternionBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:250:7: required from 'class Eigen::Quaternion'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SSE.h:27:3: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:243:49: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SSE.h:88:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:46:50: required from 'class Eigen::QuaternionBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:250:7: required from 'class Eigen::Quaternion'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SSE.h:92:3: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/SparseCore:37,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Sparse:26,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/RcppEigenForward.h:31:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h: In instantiation of 'class Eigen::SparseMatrixBase >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseCompressedBase.h:36:7: required from 'class Eigen::SparseCompressedBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrix.h:96:7: required from 'class Eigen::SparseMatrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/IterativeSolvers/ConstrainedConjGrad.h:61:25: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h:47:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 47 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h:168:29: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) long long int>::half' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h:168:29: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h:178:72: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h:179:36: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/aux_/na_assert.hpp:23,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/arg.hpp:25,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/placeholders.hpp:24,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/iterator/iterator_categories.hpp:16,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/iterator/iterator_concepts.hpp:10,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/range/concepts.hpp:20,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/range/size_type.hpp:20,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/range/size.hpp:21,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/random/hyperexponential_distribution.hpp:29,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/random.hpp:70,\\n\"},{\"type\":1,\"output\":\" from rounding.cpp:14:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp:194:21: warning: unnecessary parentheses in declaration of 'assert_arg' [-Wparentheses]\\n\"},{\"type\":1,\"output\":\" 194 | failed ************ (Pred::************\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 195 | assert_arg( void (*)(Pred), typename assert_arg_pred::type )\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 196 | );\\n\"},{\"type\":1,\"output\":\" | ~ \\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp:194:21: note: remove parentheses\\n\"},{\"type\":1,\"output\":\" 194 | failed ************ (Pred::************\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" | -\\n\"},{\"type\":1,\"output\":\" 195 | assert_arg( void (*)(Pred), typename assert_arg_pred::type )\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 196 | );\\n\"},{\"type\":1,\"output\":\" | ~ \\n\"},{\"type\":1,\"output\":\" | -\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp:199:21: warning: unnecessary parentheses in declaration of 'assert_not_arg' [-Wparentheses]\\n\"},{\"type\":1,\"output\":\" 199 | failed ************ (boost::mpl::not_::************\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 200 | assert_not_arg( void (*)(Pred), typename assert_arg_pred_not::type )\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 201 | );\\n\"},{\"type\":1,\"output\":\" | ~ \\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp:199:21: note: remove parentheses\\n\"},{\"type\":1,\"output\":\" 199 | failed ************ (boost::mpl::not_::************\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" | -\\n\"},{\"type\":1,\"output\":\" 200 | assert_not_arg( void (*)(Pred), typename assert_arg_pred_not::type )\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 201 | );\\n\"},{\"type\":1,\"output\":\" | ~ \\n\"},{\"type\":1,\"output\":\" | -\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/traits.hpp:21,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/storage.hpp:27,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/vector.hpp:21,\\n\"},{\"type\":1,\"output\":\" from external/minimum_ellipsoid/khach.h:25,\\n\"},{\"type\":1,\"output\":\" from include/convex_bodies/vpolytope.h:19,\\n\"},{\"type\":1,\"output\":\" from include/random_walks/uniform_billiard_walk.hpp:18,\\n\"},{\"type\":1,\"output\":\" from include/random_walks/random_walks.hpp:16,\\n\"},{\"type\":1,\"output\":\" from rounding.cpp:18:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/detail/iterator.hpp:111:21: warning: 'template struct std::iterator' is deprecated [-Wdeprecated-declarations]\\n\"},{\"type\":1,\"output\":\" 111 | public std::iterator {\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~\\n\"},{\"type\":1,\"output\":\"In file included from d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\bits\\\\stl_algobase.h:65,\\n\"},{\"type\":1,\"output\":\" from d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\bits\\\\specfun.h:45,\\n\"},{\"type\":1,\"output\":\" from d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\cmath:1935,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/Rcpp/include/Rcpp/platform/compiler.h:100,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/Rcpp/include/Rcpp/r/headers.h:62,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/Rcpp/include/RcppCommon.h:30,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/Rcpp/include/Rcpp.h:27,\\n\"},{\"type\":1,\"output\":\" from rounding.cpp:10:\\n\"},{\"type\":1,\"output\":\"d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\bits\\\\stl_iterator_base_types.h:127:34: note: declared here\\n\"},{\"type\":1,\"output\":\" 127 | struct _GLIBCXX17_DEPRECATED iterator\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/detail/iterator.hpp:149:21: warning: 'template struct std::iterator' is deprecated [-Wdeprecated-declarations]\\n\"},{\"type\":1,\"output\":\" 149 | public std::iterator {\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~\\n\"},{\"type\":1,\"output\":\"d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\bits\\\\stl_iterator_base_types.h:127:34: note: declared here\\n\"},{\"type\":1,\"output\":\" 127 | struct _GLIBCXX17_DEPRECATED iterator\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/detail/iterator.hpp:204:21: warning: 'template struct std::iterator' is deprecated [-Wdeprecated-declarations]\\n\"},{\"type\":1,\"output\":\" 204 | public std::iterator {\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~\\n\"},{\"type\":1,\"output\":\"d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\bits\\\\stl_iterator_base_types.h:127:34: note: declared here\\n\"},{\"type\":1,\"output\":\" 127 | struct _GLIBCXX17_DEPRECATED iterator\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from rounding.cpp:20:\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_gaussians.hpp: In function 'NT get_next_gaussian(const Polytope&, Point&, const NT&, const unsigned int&, const NT&, const NT&, const unsigned int&, RandomNumberGenerator&)':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_gaussians.hpp:166:48: warning: typedef 'viterator' locally defined but not used [-Wunused-local-typedefs]\\n\"},{\"type\":1,\"output\":\" 166 | typedef typename std::vector::iterator viterator;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_gaussians.hpp: In function 'void compute_annealing_schedule(const Polytope&, const NT&, const NT&, const NT&, const unsigned int&, const unsigned int&, const NT&, const NT&, std::vector&, RandomNumberGenerator&)':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_gaussians.hpp:221:35: warning: typedef 'VT' locally defined but not used [-Wunused-local-typedefs]\\n\"},{\"type\":1,\"output\":\" 221 | typedef typename Polytope::VT VT;\\n\"},{\"type\":1,\"output\":\" | ^~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:53:25: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:53:25: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"include/cartesian_geom/point.h:22:53: required from 'class point >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:24:32: required from 'class HPolytope > >'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:73:15: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:116:59: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: required from 'class Eigen::MapBase, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 1, -1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, 1, -1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, 1, -1, false>'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:480:29: required from 'void HPolytope::normalize() [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:110:25: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::Block, 1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, 1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, 1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:481:33: required from 'void HPolytope::normalize() [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:110:25: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, 1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, 1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, 1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, 1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, 1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:481:33: required from 'void HPolytope::normalize() [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:110:25: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h: In instantiation of 'std::pair VPolytope::ComputeInnerBall() [with Point = point >; typename Point::FT = double]':\\n\"},{\"type\":1,\"output\":\"rounding.cpp:117:44: required from here\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:278:30: warning: comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 278 | for ( i=0; i < rpit->dimension(); i++){\\n\"},{\"type\":1,\"output\":\" | ~~^~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:41: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:45:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"In file included from include/volume/volume_sequence_of_balls.hpp:33,\\n\"},{\"type\":1,\"output\":\" from rounding.cpp:19:\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp: In instantiation of 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:70:25: warning: comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 70 | for (i=0 ; idimension(); i++){\\n\"},{\"type\":1,\"output\":\" | ~^~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"d:\\\\softwares\\\\r\\\\r-4.3.0\\\\library\\\\rcppeigen\\\\include\\\\eigen\\\\src\\\\eigenvalues\\\\hessenbergdecomposition.h:277:16: required from 'class Eigen::HessenbergDecomposition >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:230:41: required from 'class Eigen::RealSchur >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:316:27: required from 'class Eigen::EigenSolver >'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Inverse.h:69:7: required from 'class Eigen::InverseImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Inverse.h:43:7: required from 'class Eigen::Inverse >'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:105:27: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, Eigen::Matrix, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:106:27: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix, const Eigen::Product, Eigen::Matrix, 0> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix, const Eigen::Product, Eigen::Matrix, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix, const Eigen::Product, Eigen::Matrix, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Matrix, const Eigen::Product, Eigen::Matrix, 0>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Product, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:106:23: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Transpose >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Transpose >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Transpose >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, Eigen::Transpose >, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, Eigen::Transpose >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, Eigen::Transpose >, 0>'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:107:15: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp: In instantiation of 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = RDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"rounding.cpp:137:61: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:70:25: warning: comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 70 | for (i=0 ; idimension(); i++){\\n\"},{\"type\":1,\"output\":\" | ~^~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp: In instantiation of 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"rounding.cpp:139:65: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:70:25: warning: comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp: In instantiation of 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"rounding.cpp:146:61: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:70:25: warning: comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp: In instantiation of 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = RDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"rounding.cpp:148:61: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:70:25: warning: comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp: In instantiation of 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"rounding.cpp:150:65: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:70:25: warning: comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp: In instantiation of 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = Zonotope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"rounding.cpp:157:61: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:70:25: warning: comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp: In instantiation of 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = RDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = Zonotope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"rounding.cpp:159:61: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:70:25: warning: comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp: In instantiation of 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = Zonotope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"rounding.cpp:161:65: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:70:25: warning: comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h: In instantiation of 'bool VPolytope::get_points_for_rounding(PointList&) [with PointList = std::__cxx11::list >, std::allocator > > >; Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:267:37: required from 'std::pair VPolytope::ComputeInnerBall() [with Point = point >; typename Point::FT = double]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:117:44: required from here\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:408:30: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 408 | if (num_of_vertices()>20*_d) {\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~^~~~~~\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:411:22: warning: unused variable 'j' [-Wunused-variable]\\n\"},{\"type\":1,\"output\":\" 411 | unsigned int j;\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"In file included from include/convex_bodies/vpolytope.h:18:\\n\"},{\"type\":1,\"output\":\"include/lp_oracles/vpolyoracles.h: In instantiation of 'std::pair<_FIter, _FIter> intersect_double_line_Vpoly(const MT&, const Point&, const Point&, NT*, int*) [with NT = double; MT = Eigen::Matrix; Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:297:50: required from 'std::pair VPolytope::ComputeInnerBall() [with Point = point >; typename Point::FT = double]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:117:44: required from here\\n\"},{\"type\":1,\"output\":\"include/lp_oracles/vpolyoracles.h:311:8: warning: unused variable 'res' [-Wunused-variable]\\n\"},{\"type\":1,\"output\":\" 311 | NT res;\\n\"},{\"type\":1,\"output\":\" | ^~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base >, Eigen::Matrix, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl >, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product >, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:72:31: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix, const Eigen::Transpose > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix, const Eigen::Transpose > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix, const Eigen::Transpose > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Matrix, const Eigen::Transpose >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:73:24: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:73:45: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:73:45: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Diagonal.h:63:53: required from 'class Eigen::Diagonal, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:91:21: required from 'class Eigen::Tridiagonalization >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:105:62: required from 'class Eigen::SelfAdjointEigenSolver >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Diagonal.h:63:53: required from 'class Eigen::Diagonal, -1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:96:21: required from 'class Eigen::Tridiagonalization >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:105:62: required from 'class Eigen::SelfAdjointEigenSolver >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:93:40: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, Eigen::Matrix, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:439:15: required from 'void HPolytope::linear_transformIt(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:109:29: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, -1, -1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, -1, -1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CommaInitializer.h:95:21: required from 'Eigen::CommaInitializer& Eigen::CommaInitializer::operator,(const Eigen::DenseBase&) [with OtherDerived = Eigen::Matrix; XprType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"extractMatPoly.h:32:23: required from 'Rcpp::NumericMatrix extractMatPoly(Polytope) [with Polytope = HPolytope > >; Rcpp::NumericMatrix = Rcpp::Matrix<14>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:141:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Replicate.h:61:65: required from 'class Eigen::Replicate, 1, -1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::Transpose >, const Eigen::Replicate, 1, -1> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose >, const Eigen::Replicate, 1, -1>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose >, const Eigen::Replicate, 1, -1> >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:383:41: required from 'void VPolytope::shift(const VT&) [with Point = point >; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:103:16: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:146:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose >, const Eigen::Replicate, 1, -1> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose >, const Eigen::Replicate, 1, -1> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose >, const Eigen::Replicate, 1, -1> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose >, const Eigen::Replicate, 1, -1>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose >, const Eigen::Replicate, 1, -1> >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:383:41: required from 'void VPolytope::shift(const VT&) [with Point = point >; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:103:16: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:146:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, Eigen::Transpose >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, Eigen::Transpose >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::Transpose >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base >, Eigen::Transpose >, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl >, Eigen::Transpose >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product >, Eigen::Transpose >, 0>'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:390:29: required from 'void VPolytope::linear_transformIt(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:109:29: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:146:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:40: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, 1, -1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::norm() const [with Derived = Eigen::Block, 1, -1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:480:37: required from 'void HPolytope::normalize() [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:110:25: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, -1, 1, true, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, -1, 1, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:441:33: required from 'Eigen::LLT& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:115:14: required from 'Eigen::LLT::LLT(Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:99:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, true>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, -1, 1, true>, -1, 1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/VectorBlock.h:56:47: required from 'class Eigen::VectorBlock, -1, 1, true>, -1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:441:43: required from 'Eigen::LLT& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:115:14: required from 'Eigen::LLT::LLT(Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:99:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false>, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, false>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, 1, -1, false>, 1, -1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/VectorBlock.h:56:47: required from 'class Eigen::VectorBlock, 1, -1, false>, -1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:441:101: required from 'Eigen::LLT& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:115:14: required from 'Eigen::LLT::LLT(Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:99:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp: In instantiation of 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = HPolytope > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = HPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:139:65: required from here\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:253:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 253 | while (it < 50*n)\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:268:20: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 268 | if (it == 50*n){\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~~\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp: In instantiation of 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:150:65: required from here\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:253:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 253 | while (it < 50*n)\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:268:20: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 268 | if (it == 50*n){\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~~\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp: In instantiation of 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = Zonotope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:161:65: required from here\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:253:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 253 | while (it < 50*n)\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:268:20: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 268 | if (it == 50*n){\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:433:34: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:683:29: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, -1, -1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:689:32: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:689:60: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Diagonal.h:63:53: required from 'class Eigen::Diagonal, const Eigen::Matrix >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:697:61: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, -1, 1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:757:62: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/VectorBlock.h:56:47: required from 'class Eigen::VectorBlock, -1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:769:65: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, -1, 1, true>'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:414:34: required from 'std::pair HPolytope::line_intersect_coord(const Point&, const Point&, const unsigned int&, const unsigned int&, VT&) const [with Point = point >; typename Point::FT = double; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_cdhr_walk.hpp:65:61: required from 'void CDHRWalk::Walk::apply(const BallPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with BallPolytope = HPolytope > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = HPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = CDHRWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::Block, -1, 1, true>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, -1, 1, true>, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:415:26: required from 'std::pair HPolytope::line_intersect_coord(const Point&, const Point&, const unsigned int&, const unsigned int&, VT&) const [with Point = point >; typename Point::FT = double; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_cdhr_walk.hpp:65:61: required from 'void CDHRWalk::Walk::apply(const BallPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with BallPolytope = HPolytope > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = HPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = CDHRWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, true>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, true>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, true>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, -1, 1, true>, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:415:26: required from 'std::pair HPolytope::line_intersect_coord(const Point&, const Point&, const unsigned int&, const unsigned int&, VT&) const [with Point = point >; typename Point::FT = double; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_cdhr_walk.hpp:65:61: required from 'void CDHRWalk::Walk::apply(const BallPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with BallPolytope = HPolytope > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = HPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = CDHRWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase > >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ReturnByValue.h:50:34: required from 'class Eigen::ReturnByValue > >'\\n\"},{\"type\":1,\"output\":\"d:\\\\softwares\\\\r\\\\r-4.3.0\\\\library\\\\rcppeigen\\\\include\\\\eigen\\\\src\\\\eigenvalues\\\\hessenbergdecomposition.h:339:38: required from 'struct Eigen::internal::HessenbergDecompositionMatrixHReturnType >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:39: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, 1, -1, false>, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, 1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, 1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, 1, -1, false>, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, 1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:468:100: required from 'void Eigen::EigenSolver<_MatrixType>::doComputeEigenvectors() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:447:7: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, -1, -1, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:615:39: required from 'void Eigen::EigenSolver<_MatrixType>::doComputeEigenvectors() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:447:7: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, true>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, true>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, true>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, true>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, true>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, true>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:615:45: required from 'void Eigen::EigenSolver<_MatrixType>::doComputeEigenvectors() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:447:7: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:318:36: required from 'std::pair HPolytope::line_intersect(const Point&, const Point&, VT&, VT&, const NT&, bool) const [with Point = point >; typename Point::FT = double; VT = Eigen::Matrix; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_rdhr_walk.hpp:64:55: required from 'void RDHRWalk::Walk::apply(const BallPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with BallPolytope = HPolytope > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = HPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = RDHRWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = RDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:137:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Matrix, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:319:21: required from 'std::pair HPolytope::line_intersect(const Point&, const Point&, VT&, VT&, const NT&, bool) const [with Point = point >; typename Point::FT = double; VT = Eigen::Matrix; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_rdhr_walk.hpp:64:55: required from 'void RDHRWalk::Walk::apply(const BallPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with BallPolytope = HPolytope > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = HPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = RDHRWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = RDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:137:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"In file included from include/random_walks/uniform_billiard_walk.hpp:17:\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h: In instantiation of 'std::pair HPolytope::line_intersect(const Point&, const Point&, VT&, VT&, const NT&, bool) const [with Point = point >; typename Point::FT = double; VT = Eigen::Matrix; NT = double]':\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_rdhr_walk.hpp:64:55: required from 'void RDHRWalk::Walk::apply(const BallPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with BallPolytope = HPolytope > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = HPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = RDHRWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = RDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:137:61: required from here\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:313:12: warning: unused variable 'mult' [-Wunused-variable]\\n\"},{\"type\":1,\"output\":\" 313 | NT mult;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:315:22: warning: unused variable 'j' [-Wunused-variable]\\n\"},{\"type\":1,\"output\":\" 315 | unsigned int j;\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp: In instantiation of 'void BilliardWalk::Walk::initialize(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = HPolytope > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:221:19: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = HPolytope > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:60:14: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = HPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:139:65: required from here\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:313:19: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 313 | while (it <= 50*n)\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~~\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:321:26: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 321 | }else if (it == 50*n) {\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, 1, -1, false>'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:488:30: required from 'void HPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = HPolytope > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = HPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:139:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:488:39: required from 'void HPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = HPolytope > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = HPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:139:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, 1, -1, false>, const Eigen::Block, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, 1, -1, false>, const Eigen::Block, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, 1, -1, false>, const Eigen::Block, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, 1, -1, false>, const Eigen::Block, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, 1, -1, false>, const Eigen::Block, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:58:39: required from 'static NT compute_diameter >::compute(const VPolytope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:60:14: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:150:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp: In instantiation of 'void BilliardWalk::Walk::initialize(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:221:19: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:60:14: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:150:65: required from here\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:313:19: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 313 | while (it <= 50*n)\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~~\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:321:26: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 321 | }else if (it == 50*n) {\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, Eigen::CwiseNullaryOp, Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, Eigen::CwiseNullaryOp, Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::CwiseNullaryOp, Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Solve.h:86:7: required from 'class Eigen::SolveImpl >, Eigen::CwiseNullaryOp, Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Solve.h:62:7: required from 'class Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:49: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:150:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:435:46: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:150:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp: In instantiation of 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:60:14: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = Zonotope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:161:65: required from here\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:84:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 84 | for (int i = 0; i < P.dimension(); ++i) {\\n\"},{\"type\":1,\"output\":\" | ~~^~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:91:26: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:60:14: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = Zonotope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:161:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:92:38: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:60:14: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = Zonotope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:161:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, Eigen::Transpose >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, Eigen::Transpose >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::Transpose >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base >, Eigen::Transpose >, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl >, Eigen::Transpose >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product >, Eigen::Transpose >, 0>'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:92:41: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:60:14: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = Zonotope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:161:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base >, Eigen::Matrix, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl >, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product >, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:96:42: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:60:14: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = Zonotope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:161:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp: In instantiation of 'void BilliardWalk::Walk::initialize(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:221:19: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:60:14: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = Zonotope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:161:65: required from here\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:313:19: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 313 | while (it <= 50*n)\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:321:26: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 321 | }else if (it == 50*n) {\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase > > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase > > >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ReturnByValue.h:50:34: required from 'class Eigen::ReturnByValue > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/misc/Kernel.h:37:46: required from 'struct Eigen::internal::kernel_retval_base > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/FullPivLU.h:619:8: required from 'struct Eigen::internal::kernel_retval > >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:399:39: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = Zonotope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:161:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:403:14: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = Zonotope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:161:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:445:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:522:41: required from 'struct Eigen::internal::unary_evaluator, const Eigen::Block, 1, -1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Block, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, 1, -1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, 1, -1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:46: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, 1, -1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::norm() const [with Derived = Eigen::Block, 1, -1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:480:37: required from 'void HPolytope::normalize() [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:110:25: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/TriangularMatrix.h:174:44: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:232:121: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/misc/RealSvd2x2.h:25:26: required from 'void Eigen::internal::real_2x2_jacobi_svd(const MatrixType&, Index, Index, Eigen::JacobiRotation*, Eigen::JacobiRotation*) [with MatrixType = Eigen::Matrix; RealScalar = double; Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:722:42: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix, const Eigen::Product, Eigen::Matrix, 0> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix, const Eigen::Product, Eigen::Matrix, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix, const Eigen::Product, Eigen::Matrix, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Matrix, const Eigen::Product, Eigen::Matrix, 0>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Product, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:380:30: required from 'std::pair HPolytope::line_intersect_coord(const Point&, const unsigned int&, VT&) const [with Point = point >; typename Point::FT = double; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_cdhr_walk.hpp:88:57: required from 'void CDHRWalk::Walk::initialize(const BallPolytope&, const Point&, RandomNumberGenerator&) [with BallPolytope = HPolytope > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_cdhr_walk.hpp:41:19: required from 'CDHRWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = HPolytope > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:60:14: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = HPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = CDHRWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:334:18: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:334:18: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:334:57: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/SelfCwiseBinaryOp.h:20:67: required from 'Derived& Eigen::DenseBase::operator*=(const Scalar&) [with Derived = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:276:10: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:221:22: required from 'static typename Eigen::NumTraits::Scalar>::Real Eigen::internal::lpNorm_selector::run(const Eigen::MatrixBase&) [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:269:52: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::lpNorm() const [with int p = 1; Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:441:74: required from 'Eigen::LLT& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:115:14: required from 'Eigen::LLT::LLT(Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:99:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:357:27: required from 'static Eigen::Index Eigen::internal::llt_inplace::blocked(MatrixType&) [with MatrixType = Eigen::Matrix; Scalar = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:401:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:449:42: required from 'Eigen::LLT& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:115:14: required from 'Eigen::LLT::LLT(Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:99:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Matrix, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"include/cartesian_geom/point.h:119:30: required from 'point point::operator+(const point&) const [with K = Cartesian]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_rdhr_walk.hpp:86:28: required from 'void RDHRWalk::Walk::initialize(const BallPolytope&, const Point&, RandomNumberGenerator&) [with BallPolytope = HPolytope > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_rdhr_walk.hpp:42:19: required from 'RDHRWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = HPolytope > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:60:14: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = HPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = RDHRWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = RDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:137:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"include/cartesian_geom/point.h:135:30: required from 'point point::operator*(FT) const [with K = Cartesian; FT = double]'\\n\"},{\"type\":1,\"output\":\"include/cartesian_geom/point.h:201:14: required from 'point operator*(const typename K::FT&, const point&) [with K = Cartesian; typename K::FT = double]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_rdhr_walk.hpp:68:28: required from 'void RDHRWalk::Walk::apply(const BallPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with BallPolytope = HPolytope > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = HPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = RDHRWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = RDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:137:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from include/convex_bodies/zpolytope.h:19,\\n\"},{\"type\":1,\"output\":\" from include/random_walks/uniform_billiard_walk.hpp:20:\\n\"},{\"type\":1,\"output\":\"include/lp_oracles/zpolyoracles.h: In instantiation of 'std::pair<_FIter, _FIter> intersect_line_zono(const MT&, const Point&, const Point&, NT*, int*) [with NT = double; MT = Eigen::Matrix; Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:296:35: required from 'std::pair Zonotope::line_intersect(const Point&, const Point&, const VT&, const VT&, const NT&) const [with Point = point >; typename Point::FT = double; VT = Eigen::Matrix; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_rdhr_walk.hpp:64:55: required from 'void RDHRWalk::Walk::apply(const BallPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with BallPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = RDHRWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = RDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = Zonotope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:159:61: required from here\\n\"},{\"type\":1,\"output\":\"include/lp_oracles/zpolyoracles.h:140:8: warning: unused variable 'res' [-Wunused-variable]\\n\"},{\"type\":1,\"output\":\" 140 | NT res;\\n\"},{\"type\":1,\"output\":\" | ^~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Diagonal.h:63:53: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Diagonal.h:63:53: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:520:87: required from 'Eigen::ComputationInfo Eigen::internal::computeFromTridiagonal_impl(DiagType&, SubDiagType&, Eigen::Index, bool, MatrixType&) [with MatrixType = Eigen::Matrix; DiagType = Eigen::Matrix; SubDiagType = Eigen::Matrix; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:439:49: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, 2, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, 2, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, 2, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, 2, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, 2, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, 2, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/misc/RealSvd2x2.h:46:19: required from 'void Eigen::internal::real_2x2_jacobi_svd(const MatrixType&, Index, Index, Eigen::JacobiRotation*, Eigen::JacobiRotation*) [with MatrixType = Eigen::Matrix; RealScalar = double; Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:722:42: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:174:81: required from 'class Eigen::DenseBase, 1, 2, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, 2, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, 2, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: required from 'class Eigen::MapBase, 1, 2, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 1, 2, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/misc/RealSvd2x2.h:46:19: required from 'void Eigen::internal::real_2x2_jacobi_svd(const MatrixType&, Index, Index, Eigen::JacobiRotation*, Eigen::JacobiRotation*) [with MatrixType = Eigen::Matrix; RealScalar = double; Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:722:42: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:454:5: required from 'void Eigen::internal::apply_rotation_in_the_plane(Eigen::DenseBase&, Eigen::DenseBase&, const Eigen::JacobiRotation&) [with VectorX = Eigen::Block, -1, 1, true>; VectorY = Eigen::Block, -1, 1, true>; OtherScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:296:40: required from 'void Eigen::MatrixBase::applyOnTheRight(Eigen::Index, Eigen::Index, const Eigen::JacobiRotation&) [with OtherScalar = double; Derived = Eigen::Matrix; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:726:53: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:71:51: required from 'class Eigen::internal::visitor_evaluator, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:110:17: required from 'void Eigen::DenseBase::visit(Visitor&) const [with Visitor = Eigen::internal::max_coeff_visitor, -1, 1, false> >; Derived = Eigen::Block, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:266:14: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::maxCoeff(IndexType*) const [with IndexType = long long int; Derived = Eigen::Block, -1, 1, false>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:769:88: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 3, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 3, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 3, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 3, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 3, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 2, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 2, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 2, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 2, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 2, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 2, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:530:24: required from 'void Eigen::RealSchur<_MatrixType>::performFrancisQRStep(Index, Index, Index, bool, const Vector3s&, Scalar*) [with _MatrixType = Eigen::Matrix; Index = long long int; Vector3s = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, false>, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:522:41: required from 'struct Eigen::internal::unary_evaluator, const Eigen::Block, 1, -1, false>, 1, -1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, 1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Block, 1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, 1, -1, false>, 1, -1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, 1, -1, false>, 1, -1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:468:106: required from 'void Eigen::EigenSolver<_MatrixType>::doComputeEigenvectors() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:447:7: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false>, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, 1, -1, false>, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: required from 'typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType Eigen::MatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Block, -1, 1, true>, -1, 1, false>; Derived = Eigen::Block, 1, -1, false>, 1, -1, false>; typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType = double; typename Eigen::internal::traits::Scalar = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:492:54: required from 'void Eigen::EigenSolver<_MatrixType>::doComputeEigenvectors() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:447:7: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, 1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, 1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, 1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, 1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, 1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:50:56: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block, 1, -1, false>, 1, -1, false>; U = Eigen::Block, -1, 1, true>, -1, 1, false>; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: required from 'typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType Eigen::MatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Block, -1, 1, true>, -1, 1, false>; Derived = Eigen::Block, 1, -1, false>, 1, -1, false>; typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType = double; typename Eigen::internal::traits::Scalar = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:492:54: required from 'void Eigen::EigenSolver<_MatrixType>::doComputeEigenvectors() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:447:7: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:337:23: required from 'static Eigen::Index Eigen::internal::llt_inplace::blocked(MatrixType&) [with MatrixType = Eigen::Matrix; Scalar = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:401:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:449:42: required from 'Eigen::LLT& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:115:14: required from 'Eigen::LLT::LLT(Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:99:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:337:23: required from 'static Eigen::Index Eigen::internal::llt_inplace::blocked(MatrixType&) [with MatrixType = Eigen::Matrix; Scalar = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:401:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:449:42: required from 'Eigen::LLT& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:115:14: required from 'Eigen::LLT::LLT(Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:99:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, Eigen::Transpose, 1, -1, false> >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, Eigen::Transpose, 1, -1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, Eigen::Transpose, 1, -1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, Eigen::Transpose, 1, -1, false> >, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, false>, Eigen::Transpose, 1, -1, false> >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:337:23: required from 'static Eigen::Index Eigen::internal::llt_inplace::blocked(MatrixType&) [with MatrixType = Eigen::Matrix; Scalar = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:401:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:449:42: required from 'Eigen::LLT& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:115:14: required from 'Eigen::LLT::LLT(Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:99:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:356:24: required from 'static Eigen::Index Eigen::internal::llt_inplace::blocked(MatrixType&) [with MatrixType = Eigen::Matrix; Scalar = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:401:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:449:42: required from 'Eigen::LLT& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:115:14: required from 'Eigen::LLT::LLT(Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:99:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:356:24: required from 'static Eigen::Index Eigen::internal::llt_inplace::blocked(MatrixType&) [with MatrixType = Eigen::Matrix; Scalar = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:401:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:449:42: required from 'Eigen::LLT& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:115:14: required from 'Eigen::LLT::LLT(Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:99:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:356:24: required from 'static Eigen::Index Eigen::internal::llt_inplace::blocked(MatrixType&) [with MatrixType = Eigen::Matrix; Scalar = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:401:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:449:42: required from 'Eigen::LLT& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:115:14: required from 'Eigen::LLT::LLT(Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:99:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:356:24: required from 'static Eigen::Index Eigen::internal::llt_inplace::blocked(MatrixType&) [with MatrixType = Eigen::Matrix; Scalar = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:401:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:449:42: required from 'Eigen::LLT& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:115:14: required from 'Eigen::LLT::LLT(Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:99:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, Eigen::Transpose, -1, -1, false>, 1, -1, false> >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false>, Eigen::Transpose, -1, -1, false>, 1, -1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false>, Eigen::Transpose, -1, -1, false>, 1, -1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, -1, -1, false>, Eigen::Transpose, -1, -1, false>, 1, -1, false> >, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, false>, -1, -1, false>, Eigen::Transpose, -1, -1, false>, 1, -1, false> >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:356:24: required from 'static Eigen::Index Eigen::internal::llt_inplace::blocked(MatrixType&) [with MatrixType = Eigen::Matrix; Scalar = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:401:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:449:42: required from 'Eigen::LLT& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:115:14: required from 'Eigen::LLT::LLT(Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:99:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseBinaryOp, const Eigen::Block, 1, -1, false>, const Eigen::Block, 1, -1, false> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseBinaryOp, const Eigen::Block, 1, -1, false>, const Eigen::Block, 1, -1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseBinaryOp, const Eigen::Block, 1, -1, false>, const Eigen::Block, 1, -1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::CwiseBinaryOp, const Eigen::Block, 1, -1, false>, const Eigen::Block, 1, -1, false> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::Block, 1, -1, false>, const Eigen::Block, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:40: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::Block, 1, -1, false>, const Eigen::Block, 1, -1, false> >; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::norm() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::Block, 1, -1, false>, const Eigen::Block, 1, -1, false> >; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:58:55: required from 'static NT compute_diameter >::compute(const VPolytope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:60:14: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:150:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: required from 'typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType Eigen::MatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Block, 1, -1, false>; Derived = Eigen::Matrix; typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType = double; typename Eigen::internal::traits::Scalar = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:435:18: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:150:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose >, const Eigen::Block, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose >, const Eigen::Block, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose >, const Eigen::Block, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose >, const Eigen::Block, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose >, const Eigen::Block, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:50:56: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Matrix; U = Eigen::Block, 1, -1, false>; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: required from 'typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType Eigen::MatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Block, 1, -1, false>; Derived = Eigen::Matrix; typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType = double; typename Eigen::internal::traits::Scalar = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:435:18: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:150:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:40: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Matrix; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::norm() const [with Derived = Eigen::Matrix; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:436:20: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:150:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Product >, Eigen::Matrix, 0> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Product >, Eigen::Matrix, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Product >, Eigen::Matrix, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Product >, Eigen::Matrix, 0>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Product >, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:40: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Product >, Eigen::Matrix, 0>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::norm() const [with Derived = Eigen::Product >, Eigen::Matrix, 0>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:96:52: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:60:14: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = Zonotope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:161:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Matrix, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:44: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Matrix; U = Eigen::Matrix; bool NeedToTranspose = false; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: required from 'typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType Eigen::MatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Matrix; Derived = Eigen::Matrix; typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType = double; typename Eigen::internal::traits::Scalar = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:401:35: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = Zonotope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:161:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:368:46: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:368:35: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:520:87: required from 'Eigen::ComputationInfo Eigen::internal::computeFromTridiagonal_impl(DiagType&, SubDiagType&, Eigen::Index, bool, MatrixType&) [with MatrixType = Eigen::Matrix; DiagType = Eigen::Matrix; SubDiagType = Eigen::Matrix; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:439:49: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:163:27: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:165:25: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:166:55: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, false> >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, false> >, 0, 5>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, false> >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, false> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:166:34: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:126:41: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:128:25: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:129:29: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0, 5>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:129:41: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:92:96: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 2>, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 2>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 2>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, 2>, Eigen::Matrix, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, 2>, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, 2>, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:94:66: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/TriangularMatrix.h:174:44: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 1>, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, 1>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, 1>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base >, 1>, Eigen::Matrix, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl >, 1>, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product >, 1>, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:95:66: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 5>, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, 5>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, 5>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, 5>, Eigen::Matrix, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, false>, 5>, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false>, 5>, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:96:22: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, 2, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:454:5: required from 'void Eigen::internal::apply_rotation_in_the_plane(Eigen::DenseBase&, Eigen::DenseBase&, const Eigen::JacobiRotation&) [with VectorX = Eigen::Block, 1, 2, false>; VectorY = Eigen::Block, 1, 2, false>; OtherScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:281:40: required from 'void Eigen::MatrixBase::applyOnTheLeft(Eigen::Index, Eigen::Index, const Eigen::JacobiRotation&) [with OtherScalar = double; Derived = Eigen::Matrix; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/misc/RealSvd2x2.h:46:19: required from 'void Eigen::internal::real_2x2_jacobi_svd(const MatrixType&, Index, Index, Eigen::JacobiRotation*, Eigen::JacobiRotation*) [with MatrixType = Eigen::Matrix; RealScalar = double; Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:722:42: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, -1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, -1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, true>, -1, 1, false>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"d:\\\\softwares\\\\r\\\\r-4.3.0\\\\library\\\\rcppeigen\\\\include\\\\eigen\\\\src\\\\eigenvalues\\\\hessenbergdecomposition.h:161:15: required from 'Eigen::HessenbergDecomposition<_MatrixType>& Eigen::HessenbergDecomposition<_MatrixType>::compute(const Eigen::EigenBase&) [with InputType = Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:271:17: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:126:38: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"d:\\\\softwares\\\\r\\\\r-4.3.0\\\\library\\\\rcppeigen\\\\include\\\\eigen\\\\src\\\\eigenvalues\\\\hessenbergdecomposition.h:161:15: required from 'Eigen::HessenbergDecomposition<_MatrixType>& Eigen::HessenbergDecomposition<_MatrixType>::compute(const Eigen::EigenBase&) [with InputType = Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:271:17: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:126:41: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"d:\\\\softwares\\\\r\\\\r-4.3.0\\\\library\\\\rcppeigen\\\\include\\\\eigen\\\\src\\\\eigenvalues\\\\hessenbergdecomposition.h:161:15: required from 'Eigen::HessenbergDecomposition<_MatrixType>& Eigen::HessenbergDecomposition<_MatrixType>::compute(const Eigen::EigenBase&) [with InputType = Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:271:17: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0, 5>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:129:41: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"d:\\\\softwares\\\\r\\\\r-4.3.0\\\\library\\\\rcppeigen\\\\include\\\\eigen\\\\src\\\\eigenvalues\\\\hessenbergdecomposition.h:161:15: required from 'Eigen::HessenbergDecomposition<_MatrixType>& Eigen::HessenbergDecomposition<_MatrixType>::compute(const Eigen::EigenBase&) [with InputType = Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:271:17: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, true>, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, true>, -1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, true>, -1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, true>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, true>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, true>, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"d:\\\\softwares\\\\r\\\\r-4.3.0\\\\library\\\\rcppeigen\\\\include\\\\eigen\\\\src\\\\eigenvalues\\\\hessenbergdecomposition.h:161:15: required from 'Eigen::HessenbergDecomposition<_MatrixType>& Eigen::HessenbergDecomposition<_MatrixType>::compute(const Eigen::EigenBase&) [with InputType = Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:271:17: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, true>, -1, -1, false>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, true>, -1, -1, false>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, true>, -1, -1, false>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, true>, -1, -1, false>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, true>, -1, -1, false>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, true>, -1, -1, false>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:163:27: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"d:\\\\softwares\\\\r\\\\r-4.3.0\\\\library\\\\rcppeigen\\\\include\\\\eigen\\\\src\\\\eigenvalues\\\\hessenbergdecomposition.h:161:15: required from 'Eigen::HessenbergDecomposition<_MatrixType>& Eigen::HessenbergDecomposition<_MatrixType>::compute(const Eigen::EigenBase&) [with InputType = Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:271:17: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, true>, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, true>, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, true>, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, true>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, true>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, true>, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"d:\\\\softwares\\\\r\\\\r-4.3.0\\\\library\\\\rcppeigen\\\\include\\\\eigen\\\\src\\\\eigenvalues\\\\hessenbergdecomposition.h:161:15: required from 'Eigen::HessenbergDecomposition<_MatrixType>& Eigen::HessenbergDecomposition<_MatrixType>::compute(const Eigen::EigenBase&) [with InputType = Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:271:17: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, true>, -1, 1, false> >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, true>, -1, 1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, true>, -1, 1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, true>, -1, 1, false> >, 0, 5>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, true>, -1, 1, false> >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, true>, -1, 1, false> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:166:34: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"d:\\\\softwares\\\\r\\\\r-4.3.0\\\\library\\\\rcppeigen\\\\include\\\\eigen\\\\src\\\\eigenvalues\\\\hessenbergdecomposition.h:161:15: required from 'Eigen::HessenbergDecomposition<_MatrixType>& Eigen::HessenbergDecomposition<_MatrixType>::compute(const Eigen::EigenBase&) [with InputType = Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:271:17: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, true>, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, true>, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, true>, 1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, true>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:327:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 2, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 2, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 2, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 2, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 2, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 2, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::Block, 2, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, 2, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, 2, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, 2, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, 2, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, 2, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, 2, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:91:22: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 2, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 2, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 2, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, 2, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, 2, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 2, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:126:38: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, Eigen::Block, -1, -1, false>, 2, -1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, Eigen::Block, -1, -1, false>, 2, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::Block, -1, -1, false>, 2, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base >, Eigen::Block, -1, -1, false>, 2, -1, false>, 0, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl >, Eigen::Block, -1, -1, false>, 2, -1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product >, Eigen::Block, -1, -1, false>, 2, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:126:41: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:129:29: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0, 4>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:129:41: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 2, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 2, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 2, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 2, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 2, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, 2, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 2, false>, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 2, false>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 2, false>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, -1, 2, false>, Eigen::Matrix, 0, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, false>, -1, 2, false>, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false>, -1, 2, false>, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:163:27: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 0, 4>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:166:34: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::Block, 1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, 1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, 1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, 1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, 1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, 1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, 1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:91:22: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:126:38: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, Eigen::Block, -1, -1, false>, 1, -1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, Eigen::Block, -1, -1, false>, 1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::Block, -1, -1, false>, 1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base >, Eigen::Block, -1, -1, false>, 1, -1, false>, 0, 4>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl >, Eigen::Block, -1, -1, false>, 1, -1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product >, Eigen::Block, -1, -1, false>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:126:41: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:129:29: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0, 4>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:129:41: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, false>, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, false>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, false>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, -1, 1, false>, Eigen::Matrix, 0, 4>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, false>, -1, 1, false>, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false>, -1, 1, false>, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:163:27: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 0, 4>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:166:34: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:369:102: required from 'struct Eigen::internal::plain_object_eval, -1, -1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:369:45: required from 'struct Eigen::internal::generic_product_impl, -1, -1, true>, Eigen::Block, -1, 1, true>, -1, 1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; Lhs = Eigen::Block, -1, -1, true>; Rhs = Eigen::Block, -1, 1, true>, -1, 1, false>; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, -1, -1, true>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Product, -1, -1, true>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/NoAlias.h:42:31: required from 'ExpressionType& Eigen::NoAlias::operator=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, -1, true>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0>; ExpressionType = Eigen::Matrix; StorageBase = Eigen::MatrixBase]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:615:21: required from 'void Eigen::EigenSolver<_MatrixType>::doComputeEigenvectors() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:447:7: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, true>, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:369:102: required from 'struct Eigen::internal::plain_object_eval, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:370:45: required from 'struct Eigen::internal::generic_product_impl, -1, -1, true>, Eigen::Block, -1, 1, true>, -1, 1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; Lhs = Eigen::Block, -1, -1, true>; Rhs = Eigen::Block, -1, 1, true>, -1, 1, false>; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, -1, -1, true>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Product, -1, -1, true>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/NoAlias.h:42:31: required from 'ExpressionType& Eigen::NoAlias::operator=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, -1, true>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0>; ExpressionType = Eigen::Matrix; StorageBase = Eigen::MatrixBase]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:615:21: required from 'void Eigen::EigenSolver<_MatrixType>::doComputeEigenvectors() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:447:7: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, -1, false>, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, -1, -1, false>, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:40: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:356:24: required from 'static Eigen::Index Eigen::internal::llt_inplace::blocked(MatrixType&) [with MatrixType = Eigen::Matrix; Scalar = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:401:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:449:42: required from 'Eigen::LLT& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:115:14: required from 'Eigen::LLT::LLT(Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:99:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Inverse.h:69:7: required from 'class Eigen::InverseImpl >, Eigen::SolverStorage>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Inverse.h:43:7: required from 'class Eigen::Inverse > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/InverseImpl.h:28:43: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:105:12: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, Eigen::internal::member_sum, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix >, Eigen::internal::member_sum, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix >, Eigen::internal::member_sum, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/VectorwiseOp.h:56:7: required from 'class Eigen::PartialReduxExpr, const Eigen::Matrix >, Eigen::internal::member_sum, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:523:46: required from 'void Eigen::PartialPivLU::compute() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseUnaryOp, const Eigen::Matrix >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_max_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Matrix > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_max_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Matrix >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:438:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::maxCoeff() const [with Derived = Eigen::CwiseUnaryOp, const Eigen::Matrix >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:433:45: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:454:5: required from 'void Eigen::internal::apply_rotation_in_the_plane(Eigen::DenseBase&, Eigen::DenseBase&, const Eigen::JacobiRotation&) [with VectorX = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; VectorY = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; OtherScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:296:40: required from 'void Eigen::MatrixBase::applyOnTheRight(Eigen::Index, Eigen::Index, const Eigen::JacobiRotation&) [with OtherScalar = double; Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:862:24: required from 'void Eigen::internal::tridiagonal_qr_step(RealScalar*, RealScalar*, Index, Index, Scalar*, Index) [with int StorageOrder = 0; RealScalar = double; Scalar = double; Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:520:87: required from 'Eigen::ComputationInfo Eigen::internal::computeFromTridiagonal_impl(DiagType&, SubDiagType&, Eigen::Index, bool, MatrixType&) [with MatrixType = Eigen::Matrix; DiagType = Eigen::Matrix; SubDiagType = Eigen::Matrix; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:439:49: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, true>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false>, -1, 1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, 1, true>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false>, -1, 1, true>, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:63:90: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:63:57: required from 'void Eigen::internal::make_block_householder_triangular_factor(TriangularFactorType&, const VectorsType&, const CoeffsType&) [with TriangularFactorType = Eigen::Matrix; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false>, -1, -1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:64:57: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:67:61: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Block, -1, 1, true>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, -1, 1, true>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Matrix; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Functor = add_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/NoAlias.h:50:31: required from 'ExpressionType& Eigen::NoAlias::operator+=(const StorageBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; ExpressionType = Eigen::Matrix; StorageBase = Eigen::MatrixBase]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:414:26: required from 'std::pair HPolytope::line_intersect_coord(const Point&, const Point&, const unsigned int&, const unsigned int&, VT&) const [with Point = point >; typename Point::FT = double; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_cdhr_walk.hpp:65:61: required from 'void CDHRWalk::Walk::apply(const BallPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with BallPolytope = HPolytope > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = HPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = CDHRWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, true>, -1, 1, false>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, 1, true>, -1, 1, false>, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"d:\\\\softwares\\\\r\\\\r-4.3.0\\\\library\\\\rcppeigen\\\\include\\\\eigen\\\\src\\\\eigenvalues\\\\hessenbergdecomposition.h:161:15: required from 'Eigen::HessenbergDecomposition<_MatrixType>& Eigen::HessenbergDecomposition<_MatrixType>::compute(const Eigen::EigenBase&) [with InputType = Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:271:17: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:91:22: required from 'void Eigen::MatrixBase::makeHouseholder(EssentialPart&, Scalar&, RealScalar&) const [with EssentialPart = Eigen::VectorBlock, -1, 1, true>, -1, 1, false>, -1>; Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; Scalar = double; RealScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:45:18: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"d:\\\\softwares\\\\r\\\\r-4.3.0\\\\library\\\\rcppeigen\\\\include\\\\eigen\\\\src\\\\eigenvalues\\\\hessenbergdecomposition.h:161:15: required from 'Eigen::HessenbergDecomposition<_MatrixType>& Eigen::HessenbergDecomposition<_MatrixType>::compute(const Eigen::EigenBase&) [with InputType = Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:271:17: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, true>, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:454:5: required from 'void Eigen::internal::apply_rotation_in_the_plane(Eigen::DenseBase&, Eigen::DenseBase&, const Eigen::JacobiRotation&) [with VectorX = Eigen::Block, -1, -1, true>, 1, -1, false>; VectorY = Eigen::Block, -1, -1, true>, 1, -1, false>; OtherScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:281:40: required from 'void Eigen::MatrixBase::applyOnTheLeft(Eigen::Index, Eigen::Index, const Eigen::JacobiRotation&) [with OtherScalar = double; Derived = Eigen::Block, -1, -1, true>; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:412:47: required from 'void Eigen::RealSchur<_MatrixType>::splitOffTwoRows(Index, bool, const Scalar&) [with _MatrixType = Eigen::Matrix; Index = long long int; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:327:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:961:41: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:454:5: required from 'void Eigen::internal::apply_rotation_in_the_plane(Eigen::DenseBase&, Eigen::DenseBase&, const Eigen::JacobiRotation&) [with VectorX = Eigen::Block, -1, -1, false>, -1, 1, true>; VectorY = Eigen::Block, -1, -1, false>, -1, 1, true>; OtherScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:296:40: required from 'void Eigen::MatrixBase::applyOnTheRight(Eigen::Index, Eigen::Index, const Eigen::JacobiRotation&) [with OtherScalar = double; Derived = Eigen::Block, -1, -1, false>; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:413:41: required from 'void Eigen::RealSchur<_MatrixType>::splitOffTwoRows(Index, bool, const Scalar&) [with _MatrixType = Eigen::Matrix; Index = long long int; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:327:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:454:5: required from 'void Eigen::internal::apply_rotation_in_the_plane(Eigen::DenseBase&, Eigen::DenseBase&, const Eigen::JacobiRotation&) [with VectorX = Eigen::Block, -1, -1, false>, -1, 1, true>; VectorY = Eigen::Block, -1, -1, false>, -1, 1, true>; OtherScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:296:40: required from 'void Eigen::MatrixBase::applyOnTheRight(Eigen::Index, Eigen::Index, const Eigen::JacobiRotation&) [with OtherScalar = double; Derived = Eigen::Block, -1, -1, false>; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:413:41: required from 'void Eigen::RealSchur<_MatrixType>::splitOffTwoRows(Index, bool, const Scalar&) [with _MatrixType = Eigen::Matrix; Index = long long int; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:327:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, 2, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, 2, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, 2, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, 2, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, 2, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:40: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, 2, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:76:71: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, 1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, 1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:40: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, 1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:76:71: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:496:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: In instantiation of 'class Eigen::internal::gebp_traits':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularSolverMatrix.h:215:27: required from 'static void Eigen::internal::triangular_solve_matrix::run(Index, Index, const Scalar*, Index, Scalar*, Index, Index, Eigen::internal::level3_blocking&) [with Scalar = double; Index = long long int; int Mode = 2; bool Conjugate = false; int TriStorageOrder = 1; int OtherInnerStride = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/SolveTriangular.h:102:12: required from 'static void Eigen::internal::triangular_solver_selector::run(const Lhs&, Rhs&) [with Lhs = const Eigen::Transpose, -1, -1, false> >; Rhs = Eigen::Block, -1, -1, false>; int Side = 2; int Mode = 2]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/SolveTriangular.h:182:21: required from 'void Eigen::TriangularViewImpl<_MatrixType, _Mode, Eigen::Dense>::solveInPlace(const Eigen::MatrixBase&) const [with int Side = 2; OtherDerived = Eigen::Block, -1, -1, false>; _MatrixType = const Eigen::Transpose, -1, -1, false> >; unsigned int _Mode = 2]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:357:96: required from 'static Eigen::Index Eigen::internal::llt_inplace::blocked(MatrixType&) [with MatrixType = Eigen::Matrix; Scalar = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:401:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:449:42: required from 'Eigen::LLT& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:115:14: required from 'Eigen::LLT::LLT(Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:99:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:391:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 391 | typedef typename conditional::type LhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:392:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 392 | typedef typename conditional::type RhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:393:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 393 | typedef typename conditional::type ResPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose >, const Eigen::Block, 1, -1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Transpose >, const Eigen::Block, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Transpose >, const Eigen::Block, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose >, const Eigen::Block, 1, -1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: required from 'typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType Eigen::MatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Block, 1, -1, false>; Derived = Eigen::Matrix; typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType = double; typename Eigen::internal::traits::Scalar = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:435:18: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:150:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/FullPivLU.h:522:35: required from 'void Eigen::FullPivLU::computeInPlace() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/FullPivLU.h:121:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/FullPivLU.h:886:10: required from 'const Eigen::FullPivLU::PlainObject> Eigen::MatrixBase::fullPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:399:30: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = Zonotope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:161:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, Eigen::Block, 1, -1, false>, 1, -1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false>, Eigen::Block, 1, -1, false>, 1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false>, Eigen::Block, 1, -1, false>, 1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, 1, true>, -1, 1, false>, Eigen::Block, 1, -1, false>, 1, -1, false>, 0, 5>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, 1, true>, -1, 1, false>, Eigen::Block, 1, -1, false>, 1, -1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, 1, true>, -1, 1, false>, Eigen::Block, 1, -1, false>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/FullPivLU.h:563:85: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/FullPivLU.h:886:10: required from 'const Eigen::FullPivLU::PlainObject> Eigen::MatrixBase::fullPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:399:30: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = Zonotope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:161:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:44: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block, -1, 1, false>; U = Eigen::Block, -1, 1, true>, -1, 1, false>; bool NeedToTranspose = false; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false>, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, false>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, 1, false>, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointRank2Update.h:33:74: required from 'static void Eigen::internal::selfadjoint_rank2_update_selector::run(Scalar*, Index, const UType&, const VType&, const Scalar&) [with Scalar = double; Index = long long int; UType = Eigen::Block, -1, 1, true>, -1, 1, false>; VType = Eigen::Block, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointRank2Update.h:86:10: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointRank2Update.h:34:60: required from 'static void Eigen::internal::selfadjoint_rank2_update_selector::run(Scalar*, Index, const UType&, const VType&, const Scalar&) [with Scalar = double; Index = long long int; UType = Eigen::Block, -1, 1, true>, -1, 1, false>; VType = Eigen::Block, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointRank2Update.h:86:10: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointRank2Update.h:34:23: required from 'static void Eigen::internal::selfadjoint_rank2_update_selector::run(Scalar*, Index, const UType&, const VType&, const Scalar&) [with Scalar = double; Index = long long int; UType = Eigen::Block, -1, 1, true>, -1, 1, false>; VType = Eigen::Block, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointRank2Update.h:86:10: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, -1, 1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:40: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, -1, 1, true>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:71:51: required from 'class Eigen::internal::visitor_evaluator, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:110:17: required from 'void Eigen::DenseBase::visit(Visitor&) const [with Visitor = Eigen::internal::max_coeff_visitor, 1, -1, false> >; Derived = Eigen::Block, 1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:266:14: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::maxCoeff(IndexType*) const [with IndexType = long long int; Derived = Eigen::Block, 1, -1, false>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:519:90: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:475:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:40: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:40: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:76:71: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"d:\\\\softwares\\\\r\\\\r-4.3.0\\\\library\\\\rcppeigen\\\\include\\\\eigen\\\\src\\\\eigenvalues\\\\hessenbergdecomposition.h:161:15: required from 'Eigen::HessenbergDecomposition<_MatrixType>& Eigen::HessenbergDecomposition<_MatrixType>::compute(const Eigen::EigenBase&) [with InputType = Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:271:17: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:327:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:501:10: required from 'Derived& Eigen::DenseBase::setZero() [with Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:84:22: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:327:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:501:10: required from 'Derived& Eigen::DenseBase::setZero() [with Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:84:22: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Block, -1, 1, true>, -1, 1, false> > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:221:28: required from 'static typename Eigen::NumTraits::Scalar>::Real Eigen::internal::lpNorm_selector::run(const Eigen::MatrixBase&) [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:269:52: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::lpNorm() const [with int p = 1; Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:441:74: required from 'Eigen::LLT& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:115:14: required from 'Eigen::LLT::LLT(Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:99:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:522:41: required from 'struct Eigen::internal::unary_evaluator, const Eigen::Block, -1, -1, false>, 1, -1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, -1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Block, -1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, -1, false>, 1, -1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:356:24: required from 'static Eigen::Index Eigen::internal::llt_inplace::blocked(MatrixType&) [with MatrixType = Eigen::Matrix; Scalar = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:401:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:449:42: required from 'Eigen::LLT& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:115:14: required from 'Eigen::LLT::LLT(Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:99:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:369:102: required from 'struct Eigen::internal::plain_object_eval, -1, -1, false>, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:369:45: required from 'struct Eigen::internal::generic_product_impl, -1, -1, false>, -1, -1, false>, Eigen::Transpose, -1, -1, false>, 1, -1, false> >, Eigen::DenseShape, Eigen::DenseShape, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:178:42: required from 'static void Eigen::internal::Assignment, Eigen::internal::sub_assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::sub_assign_op&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, 1, false>; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Transpose, -1, -1, false>, 1, -1, false> >; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Transpose, -1, -1, false>, 1, -1, false> >, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>, -1, 1, false>; Src = Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Transpose, -1, -1, false>, 1, -1, false> >, 0>; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/NoAlias.h:58:31: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:356:24: required from 'static Eigen::Index Eigen::internal::llt_inplace::blocked(MatrixType&) [with MatrixType = Eigen::Matrix; Scalar = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:401:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:449:42: required from 'Eigen::LLT& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:115:14: required from 'Eigen::LLT::LLT(Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:99:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: In instantiation of 'void Eigen::internal::gebp_kernel::operator()(const DataMapper&, const LhsScalar*, const RhsScalar*, Index, Index, Index, ResScalar, Index, Index, Index, Index) [with LhsScalar = double; RhsScalar = double; Index = long long int; DataMapper = Eigen::internal::blas_data_mapper; int mr = 4; int nr = 4; bool ConjugateLhs = false; bool ConjugateRhs = false; ResScalar = double]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularSolverMatrix.h:287:26: required from 'static void Eigen::internal::triangular_solve_matrix::run(Index, Index, const Scalar*, Index, Scalar*, Index, Index, Eigen::internal::level3_blocking&) [with Scalar = double; Index = long long int; int Mode = 2; bool Conjugate = false; int TriStorageOrder = 1; int OtherInnerStride = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/SolveTriangular.h:102:12: required from 'static void Eigen::internal::triangular_solver_selector::run(const Lhs&, Rhs&) [with Lhs = const Eigen::Transpose, -1, -1, false> >; Rhs = Eigen::Block, -1, -1, false>; int Side = 2; int Mode = 2]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/SolveTriangular.h:182:21: required from 'void Eigen::TriangularViewImpl<_MatrixType, _Mode, Eigen::Dense>::solveInPlace(const Eigen::MatrixBase&) const [with int Side = 2; OtherDerived = Eigen::Block, -1, -1, false>; _MatrixType = const Eigen::Transpose, -1, -1, false> >; unsigned int _Mode = 2]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:357:96: required from 'static Eigen::Index Eigen::internal::llt_inplace::blocked(MatrixType&) [with MatrixType = Eigen::Matrix; Scalar = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:401:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:449:42: required from 'Eigen::LLT& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:115:14: required from 'Eigen::LLT::LLT(Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:99:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1537:103: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 1537 | const int SResPacketHalfSize = unpacket_traits::half>::size;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1592:135: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 1592 | typedef typename conditional=8,typename unpacket_traits::half,SResPacket>::type SResPacketHalf;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1593:135: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 1593 | typedef typename conditional=8,typename unpacket_traits::half,SLhsPacket>::type SLhsPacketHalf;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1594:135: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 1594 | typedef typename conditional=8,typename unpacket_traits::half,SRhsPacket>::type SRhsPacketHalf;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1595:135: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 1595 | typedef typename conditional=8,typename unpacket_traits::half,SAccPacket>::type SAccPacketHalf;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h:155:52: required from 'void Eigen::internal::tribb_kernel::operator()(ResScalar*, Index, Index, const LhsScalar*, const RhsScalar*, Index, Index, const ResScalar&) [with LhsScalar = double; RhsScalar = double; Index = long long int; int mr = 4; int nr = 4; bool ConjLhs = false; bool ConjRhs = false; int ResInnerStride = 1; int UpLo = 1; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h:116:13: required from 'static void Eigen::internal::general_matrix_matrix_triangular_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, Index, const ResScalar&, Eigen::internal::level3_blocking&) [with Index = long long int; LhsScalar = double; int LhsStorageOrder = 0; bool ConjugateLhs = false; RhsScalar = double; int RhsStorageOrder = 1; bool ConjugateRhs = false; int ResInnerStride = 1; int UpLo = 1; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointProduct.h:113:12: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:358:64: required from 'static Eigen::Index Eigen::internal::llt_inplace::blocked(MatrixType&) [with MatrixType = Eigen::Matrix; Scalar = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:401:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:449:42: required from 'Eigen::LLT& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:115:14: required from 'Eigen::LLT::LLT(Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:99:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:358:64: required from 'static Eigen::Index Eigen::internal::llt_inplace::blocked(MatrixType&) [with MatrixType = Eigen::Matrix; Scalar = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:401:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:449:42: required from 'Eigen::LLT& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:115:14: required from 'Eigen::LLT::LLT(Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:99:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:492:30: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, Eigen::Transpose >, 1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, Eigen::Transpose >, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::Transpose >, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base >, Eigen::Transpose >, 1, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl >, Eigen::Transpose >, 1, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product >, Eigen::Transpose >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:436:50: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:390:12: required from 'void VPolytope::linear_transformIt(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:109:29: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:146:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false>, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 1, -1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, false>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 1, -1, false>, 1, -1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::ReturnByValue > > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:399:12: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = Zonotope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:161:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::ReturnByValue > > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:399:12: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = Zonotope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:161:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, 1, -1, false>, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, 1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, 1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, 1, -1, false>, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, 1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/FullPivLU.h:696:90: required from 'void Eigen::internal::kernel_retval >::evalTo(Dest&) const [with Dest = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/misc/Kernel.h:56:71: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::ReturnByValue > > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:399:12: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = Zonotope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:161:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:369:102: required from 'struct Eigen::internal::plain_object_eval, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:370:45: required from 'struct Eigen::internal::generic_product_impl, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Src = Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/NoAlias.h:42:31: required from 'ExpressionType& Eigen::NoAlias::operator=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>; ExpressionType = Eigen::Map, 0, Eigen::Stride<0, 0> >; StorageBase = Eigen::MatrixBase]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:163:19: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:141:7: required from 'Eigen::DenseCoeffsBase::CoeffReturnType Eigen::DenseCoeffsBase::coeff(Eigen::Index) const [with Derived = Eigen::Block, -1, 1, false>; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:181:19: required from 'Eigen::DenseCoeffsBase::CoeffReturnType Eigen::DenseCoeffsBase::operator()(Eigen::Index) const [with Derived = Eigen::Block, -1, 1, false>; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:63:53: required from 'void Eigen::internal::make_block_householder_triangular_factor(TriangularFactorType&, const VectorsType&, const CoeffsType&) [with TriangularFactorType = Eigen::Matrix; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, true>, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:369:102: required from 'struct Eigen::internal::plain_object_eval, -1, -1, true>, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:369:45: required from 'struct Eigen::internal::generic_product_impl, -1, -1, true>, -1, -1, false>, Eigen::Block, -1, 1, true>, -1, 1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, true>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, true>, -1, 1, false>; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, -1, -1, true>, -1, -1, false>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Src = Eigen::Product, -1, -1, true>, -1, -1, false>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/NoAlias.h:42:31: required from 'ExpressionType& Eigen::NoAlias::operator=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, -1, true>, -1, -1, false>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0>; ExpressionType = Eigen::Map, 0, Eigen::Stride<0, 0> >; StorageBase = Eigen::MatrixBase]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:163:19: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"d:\\\\softwares\\\\r\\\\r-4.3.0\\\\library\\\\rcppeigen\\\\include\\\\eigen\\\\src\\\\eigenvalues\\\\hessenbergdecomposition.h:161:15: required from 'Eigen::HessenbergDecomposition<_MatrixType>& Eigen::HessenbergDecomposition<_MatrixType>::compute(const Eigen::EigenBase&) [with InputType = Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:271:17: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 2, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 2, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:522:41: required from 'struct Eigen::internal::unary_evaluator, const Eigen::Block, 2, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, 2, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Block, 2, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, 2, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:522:41: required from 'struct Eigen::internal::unary_evaluator, const Eigen::Block, 1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Block, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, 1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:381:43: required from 'static Eigen::Index Eigen::internal::partial_lu_impl::unblocked_lu(MatrixType&, PivIndex*, PivIndex&) [with Scalar = double; int StorageOrder = 0; PivIndex = int; Eigen::Index = long long int; MatrixType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:436:26: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0, 5>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:406:78: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseUnaryOp, const Eigen::Matrix >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Matrix > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Matrix >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseUnaryOp, const Eigen::Matrix >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:46: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Matrix; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::norm() const [with Derived = Eigen::Matrix; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:436:20: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:150:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseUnaryOp, const Eigen::Product >, Eigen::Matrix, 0> >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Product >, Eigen::Matrix, 0> > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Product >, Eigen::Matrix, 0> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseUnaryOp, const Eigen::Product >, Eigen::Matrix, 0> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:46: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Product >, Eigen::Matrix, 0>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::norm() const [with Derived = Eigen::Product >, Eigen::Matrix, 0>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:96:52: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:60:14: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = Zonotope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:161:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Matrix >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Matrix, const Eigen::Matrix > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Matrix >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Matrix >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:51: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Matrix; U = Eigen::Matrix; bool NeedToTranspose = false; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: required from 'typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType Eigen::MatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Matrix; Derived = Eigen::Matrix; typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType = double; typename Eigen::internal::traits::Scalar = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:401:35: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = Zonotope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:161:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::Matrix; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_max_op; Derived = Eigen::internal::redux_evaluator >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_max_op; Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:438:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::maxCoeff() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:509:85: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:475:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Matrix; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Matrix; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:689:18: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, true>, -1, 1, false>, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, 1, true>, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:522:41: required from 'struct Eigen::internal::unary_evaluator, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"d:\\\\softwares\\\\r\\\\r-4.3.0\\\\library\\\\rcppeigen\\\\include\\\\eigen\\\\src\\\\eigenvalues\\\\hessenbergdecomposition.h:161:15: required from 'Eigen::HessenbergDecomposition<_MatrixType>& Eigen::HessenbergDecomposition<_MatrixType>::compute(const Eigen::EigenBase&) [with InputType = Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:271:17: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, Eigen::Block, -1, -1, false>, 2, -1, false>, 1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, Eigen::Block, -1, -1, false>, 2, -1, false>, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::Block, -1, -1, false>, 2, -1, false>, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base >, Eigen::Block, -1, -1, false>, 2, -1, false>, 1, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl >, Eigen::Block, -1, -1, false>, 2, -1, false>, 1, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product >, Eigen::Block, -1, -1, false>, 2, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:397:50: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 1, 4>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 1, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:411:50: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 2, false>, Eigen::Matrix, 1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 2, false>, Eigen::Matrix, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 2, false>, Eigen::Matrix, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, -1, 2, false>, Eigen::Matrix, 1, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, false>, -1, 2, false>, Eigen::Matrix, 1, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false>, -1, 2, false>, Eigen::Matrix, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:397:50: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 1, 4>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 1, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:411:50: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, Eigen::Block, -1, -1, false>, 1, -1, false>, 1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, Eigen::Block, -1, -1, false>, 1, -1, false>, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::Block, -1, -1, false>, 1, -1, false>, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base >, Eigen::Block, -1, -1, false>, 1, -1, false>, 1, 4>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl >, Eigen::Block, -1, -1, false>, 1, -1, false>, 1, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product >, Eigen::Block, -1, -1, false>, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:397:50: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 1, 4>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 1, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:411:50: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, false>, Eigen::Matrix, 1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, false>, Eigen::Matrix, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, false>, Eigen::Matrix, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, -1, 1, false>, Eigen::Matrix, 1, 4>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, false>, -1, 1, false>, Eigen::Matrix, 1, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false>, -1, 1, false>, Eigen::Matrix, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:397:50: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 1, 4>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 1, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:411:50: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:499:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'struct Eigen::internal::general_matrix_vector_product, 0, false, double, Eigen::internal::const_blas_data_mapper, false, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:244:134: required from 'static void Eigen::internal::gemv_dense_selector<2, 0, true>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Block, -1, -1, true>; Rhs = Eigen::Block, -1, 1, true>, -1, 1, false>; Dest = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:383:34: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::Block, -1, -1, true>; Rhs = Eigen::Block, -1, 1, true>, -1, 1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Matrix; Lhs = Eigen::Block, -1, -1, true>; Rhs = Eigen::Block, -1, 1, true>, -1, 1, false>; Derived = Eigen::internal::generic_product_impl, -1, -1, true>, Eigen::Block, -1, 1, true>, -1, 1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: required from 'static void Eigen::internal::generic_product_impl_base::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::Block, -1, -1, true>; Rhs = Eigen::Block, -1, 1, true>, -1, 1, false>; Derived = Eigen::internal::generic_product_impl, -1, -1, true>, Eigen::Block, -1, 1, true>, -1, 1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/NoAlias.h:42:31: required from 'ExpressionType& Eigen::NoAlias::operator=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, -1, true>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0>; ExpressionType = Eigen::Matrix; StorageBase = Eigen::MatrixBase]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:615:21: required from 'void Eigen::EigenSolver<_MatrixType>::doComputeEigenvectors() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:447:7: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:75:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 75 | typedef typename conditional::type LhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:76:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 76 | typedef typename conditional::type RhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:77:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 77 | typedef typename conditional::type ResPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 2, Eigen::Stride<0, 0> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 2, Eigen::Stride<0, 0> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 2, Eigen::Stride<0, 0> >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 2, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 2, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 2, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/NoAlias.h:42:31: required from 'ExpressionType& Eigen::NoAlias::operator=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, -1, true>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0>; ExpressionType = Eigen::Matrix; StorageBase = Eigen::MatrixBase]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:615:21: required from 'void Eigen::EigenSolver<_MatrixType>::doComputeEigenvectors() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:447:7: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 2, Eigen::Stride<0, 0> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 2, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 2, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 2, Eigen::Stride<0, 0> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 2, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:287:40: required from 'static void Eigen::internal::gemv_dense_selector<2, 0, true>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Block, -1, -1, true>; Rhs = Eigen::Block, -1, 1, true>, -1, 1, false>; Dest = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:383:34: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/NoAlias.h:42:31: required from 'ExpressionType& Eigen::NoAlias::operator=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, -1, true>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0>; ExpressionType = Eigen::Matrix; StorageBase = Eigen::MatrixBase]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:615:21: required from 'void Eigen::EigenSolver<_MatrixType>::doComputeEigenvectors() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:447:7: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, 1, false>; SrcXprType = Eigen::CwiseNullaryOp, Eigen::Matrix >; Functor = div_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, 1, false>; SrcXprType = Eigen::CwiseNullaryOp, Eigen::Matrix >; Functor = Eigen::internal::div_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, 1, false>; Src = Eigen::CwiseNullaryOp, Eigen::Matrix >; Func = div_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, 1, false>; Src = Eigen::CwiseNullaryOp, Eigen::Matrix >; Func = div_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/SelfCwiseBinaryOp.h:41:28: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:337:23: required from 'static Eigen::Index Eigen::internal::llt_inplace::blocked(MatrixType&) [with MatrixType = Eigen::Matrix; Scalar = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:401:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:449:42: required from 'Eigen::LLT& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:115:14: required from 'Eigen::LLT::LLT(Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:99:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, 1, false>; SrcXprType = Eigen::CwiseNullaryOp, Eigen::Matrix >; Functor = div_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, 1, false>; SrcXprType = Eigen::CwiseNullaryOp, Eigen::Matrix >; Functor = Eigen::internal::div_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>, -1, 1, false>; Src = Eigen::CwiseNullaryOp, Eigen::Matrix >; Func = div_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>, -1, 1, false>; Src = Eigen::CwiseNullaryOp, Eigen::Matrix >; Func = div_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/SelfCwiseBinaryOp.h:41:28: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:356:24: required from 'static Eigen::Index Eigen::internal::llt_inplace::blocked(MatrixType&) [with MatrixType = Eigen::Matrix; Scalar = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:401:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:449:42: required from 'Eigen::LLT& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:115:14: required from 'Eigen::LLT::LLT(Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:99:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:327:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:501:10: required from 'Derived& Eigen::DenseBase::setZero() [with Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h:171:23: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:358:64: required from 'static Eigen::Index Eigen::internal::llt_inplace::blocked(MatrixType&) [with MatrixType = Eigen::Matrix; Scalar = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:401:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:449:42: required from 'Eigen::LLT& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:115:14: required from 'Eigen::LLT::LLT(Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:99:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, Eigen::Matrix, 1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, Eigen::Matrix, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::Matrix, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base >, Eigen::Matrix, 1, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl >, Eigen::Matrix, 1, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product >, Eigen::Matrix, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:436:50: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:78:8: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:60:14: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = Zonotope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:161:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:327:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Block, 1, -1, false>, 1, -1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:501:10: required from 'Derived& Eigen::DenseBase::setZero() [with Derived = Eigen::Block, 1, -1, false>, 1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/FullPivLU.h:675:37: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::ReturnByValue > > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:399:12: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = Zonotope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:161:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, -1, false>, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, true>, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::Block, -1, -1, true>, -1, 1, true>; Functor = add_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::Block, -1, -1, true>, -1, 1, true>; Functor = Eigen::internal::add_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Src = Eigen::Block, -1, -1, true>, -1, 1, true>; Func = add_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Src = Eigen::Block, -1, -1, true>, -1, 1, true>; Func = add_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:177:18: required from 'Derived& Eigen::MatrixBase::operator+=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::Block, -1, -1, true>, -1, 1, true>; Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:164:9: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"d:\\\\softwares\\\\r\\\\r-4.3.0\\\\library\\\\rcppeigen\\\\include\\\\eigen\\\\src\\\\eigenvalues\\\\hessenbergdecomposition.h:161:15: required from 'Eigen::HessenbergDecomposition<_MatrixType>& Eigen::HessenbergDecomposition<_MatrixType>::compute(const Eigen::EigenBase&) [with InputType = Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:271:17: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, true>, -1, -1, false>, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, true>, -1, -1, false>, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, true>, -1, -1, false>, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, true>, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, true>, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, true>, -1, -1, false>, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"d:\\\\softwares\\\\r\\\\r-4.3.0\\\\library\\\\rcppeigen\\\\include\\\\eigen\\\\src\\\\eigenvalues\\\\hessenbergdecomposition.h:161:15: required from 'Eigen::HessenbergDecomposition<_MatrixType>& Eigen::HessenbergDecomposition<_MatrixType>::compute(const Eigen::EigenBase&) [with InputType = Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:271:17: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 2, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Matrix; SrcXprType = Eigen::Block, 2, 1, false>; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Matrix; SrcXprType = Eigen::Block, 2, 1, false>; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Block, 2, 1, false>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Block, 2, 1, false>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Block, 2, 1, false>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'static void Eigen::internal::general_matrix_vector_product::run(Index, Index, const LhsMapper&, const RhsMapper&, ResScalar*, Index, RhsScalar) [with Index = long long int; LhsScalar = double; LhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateLhs = false; RhsScalar = double; RhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateRhs = false; int Version = 0; ResScalar = double]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:244:134: required from 'static void Eigen::internal::gemv_dense_selector<2, 0, true>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Block, -1, -1, true>; Rhs = Eigen::Block, -1, 1, true>, -1, 1, false>; Dest = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:383:34: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::Block, -1, -1, true>; Rhs = Eigen::Block, -1, 1, true>, -1, 1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Matrix; Lhs = Eigen::Block, -1, -1, true>; Rhs = Eigen::Block, -1, 1, true>, -1, 1, false>; Derived = Eigen::internal::generic_product_impl, -1, -1, true>, Eigen::Block, -1, 1, true>, -1, 1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: required from 'static void Eigen::internal::generic_product_impl_base::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::Block, -1, -1, true>; Rhs = Eigen::Block, -1, 1, true>, -1, 1, false>; Derived = Eigen::internal::generic_product_impl, -1, -1, true>, Eigen::Block, -1, 1, true>, -1, 1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/NoAlias.h:42:31: required from 'ExpressionType& Eigen::NoAlias::operator=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, -1, true>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0>; ExpressionType = Eigen::Matrix; StorageBase = Eigen::MatrixBase]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:615:21: required from 'void Eigen::EigenSolver<_MatrixType>::doComputeEigenvectors() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:447:7: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:112:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 112 | conj_helper pcj;\\n\"},{\"type\":1,\"output\":\" | ^~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:112:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Transpose >, 1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Transpose >, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Transpose >, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, Eigen::Transpose >, 1, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, Eigen::Transpose >, 1, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, Eigen::Transpose >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:436:50: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:796:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:107:11: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::Matrix >, -1, 1, true, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::Matrix >, -1, 1, true, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::Matrix >, -1, 1, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1307:33: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix >, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix >, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::Matrix >, 1, -1, false, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::Matrix >, 1, -1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::Matrix >, 1, -1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1309:33: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:961:41: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:522:41: required from 'struct Eigen::internal::unary_evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:71:51: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:961:41: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:522:41: required from 'struct Eigen::internal::unary_evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:71:51: required from 'class Eigen::internal::visitor_evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:110:17: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:522:41: required from 'struct Eigen::internal::unary_evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:71:51: required from 'class Eigen::internal::visitor_evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:110:17: required from 'void Eigen::DenseBase::visit(Visitor&) const [with Visitor = Eigen::internal::max_coeff_visitor, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:266:14: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:150:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, false>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:165:45: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:51: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block, -1, 1, false>; U = Eigen::Block, -1, 1, true>, -1, 1, false>; bool NeedToTranspose = false; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: required from 'typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType Eigen::MatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Block, -1, 1, true>, -1, 1, false>; Derived = Eigen::Block, -1, 1, false>; typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType = double; typename Eigen::internal::traits::Scalar = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:370:86: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true> >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Block, -1, 1, true> > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:46: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, -1, 1, true>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::norm() const [with Derived = Eigen::Block, -1, 1, true>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:505:52: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Block, -1, 1, true>, -1, 1, false> > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:46: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::norm() const [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:565:77: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:46: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:76:71: required from 'void Eigen::MatrixBase::makeHouseholder(EssentialPart&, Scalar&, RealScalar&) const [with EssentialPart = Eigen::VectorBlock, -1, 1, true>, -1, 1, false>, -1>; Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; Scalar = double; RealScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:45:18: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"d:\\\\softwares\\\\r\\\\r-4.3.0\\\\library\\\\rcppeigen\\\\include\\\\eigen\\\\src\\\\eigenvalues\\\\hessenbergdecomposition.h:161:15: required from 'Eigen::HessenbergDecomposition<_MatrixType>& Eigen::HessenbergDecomposition<_MatrixType>::compute(const Eigen::EigenBase&) [with InputType = Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:271:17: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 3, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Matrix; SrcXprType = Eigen::Block, 3, 1, false>; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Matrix; SrcXprType = Eigen::Block, 3, 1, false>; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Block, 3, 1, false>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Block, 3, 1, false>; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Block, 3, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:371:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/Memory.h: In instantiation of 'Index Eigen::internal::first_default_aligned(const Scalar*, Index) [with Scalar = double; Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:128:55: required from 'static void Eigen::internal::general_matrix_vector_product::run(Index, Index, const LhsMapper&, const RhsMapper&, ResScalar*, Index, RhsScalar) [with Index = long long int; LhsScalar = double; LhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateLhs = false; RhsScalar = double; RhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:244:134: required from 'static void Eigen::internal::gemv_dense_selector<2, 0, true>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Block, -1, -1, true>; Rhs = Eigen::Block, -1, 1, true>, -1, 1, false>; Dest = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:383:34: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::Block, -1, -1, true>; Rhs = Eigen::Block, -1, 1, true>, -1, 1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Matrix; Lhs = Eigen::Block, -1, -1, true>; Rhs = Eigen::Block, -1, 1, true>, -1, 1, false>; Derived = Eigen::internal::generic_product_impl, -1, -1, true>, Eigen::Block, -1, 1, true>, -1, 1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: required from 'static void Eigen::internal::generic_product_impl_base::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::Block, -1, -1, true>; Rhs = Eigen::Block, -1, 1, true>, -1, 1, false>; Derived = Eigen::internal::generic_product_impl, -1, -1, true>, Eigen::Block, -1, 1, true>, -1, 1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/NoAlias.h:42:31: required from 'ExpressionType& Eigen::NoAlias::operator=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, -1, true>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0>; ExpressionType = Eigen::Matrix; StorageBase = Eigen::MatrixBase]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:615:21: required from 'void Eigen::EigenSolver<_MatrixType>::doComputeEigenvectors() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:447:7: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/Memory.h:470:60: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 470 | return first_aligned::alignment>(array, size);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, Eigen::CwiseNullaryOp, Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, Eigen::CwiseNullaryOp, Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::CwiseNullaryOp, Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Solve.h:86:7: required from 'class Eigen::SolveImpl >, Eigen::CwiseNullaryOp, Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Solve.h:62:7: required from 'class Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:577:39: required from 'static void Eigen::internal::Assignment >, Eigen::internal::assign_op::Scalar>, Eigen::internal::Dense2Dense>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op::Scalar>&) [with DstXprType = Eigen::Matrix; MatrixType = Eigen::Matrix; SrcXprType = Eigen::Inverse > >; typename Eigen::PartialPivLU::Scalar = double; typename DstXprType::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:105:12: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix, 1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, Eigen::Matrix, 1, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, Eigen::Matrix, 1, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, Eigen::Matrix, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:436:50: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:439:11: required from 'void HPolytope::linear_transformIt(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:109:29: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:150:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 16, Eigen::Stride<0, 0> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 16, Eigen::Stride<0, 0> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 16, Eigen::Stride<0, 0> >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 16, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 16, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 16, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:150:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase > >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase > >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:92:8: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:60:14: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = Zonotope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:161:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase > >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:197:26: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:92:8: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:60:14: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = Zonotope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:161:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase > >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:197:43: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:92:8: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:60:14: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = Zonotope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:161:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, false>, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, 0, Eigen::Stride<0, 0> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:197:26: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false> > >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, 1, false> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:197:43: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:961:41: required from 'struct Eigen::internal::evaluator, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false>; SrcXprType = Eigen::Matrix; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false>; SrcXprType = Eigen::Matrix; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Src = Eigen::Matrix; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:797:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Src = Eigen::Product, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, true>, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false>; SrcXprType = Eigen::Matrix; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false>; SrcXprType = Eigen::Matrix; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Src = Eigen::Matrix; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:797:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Src = Eigen::Product, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Src = Eigen::Product, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Assign.h:66:28: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:59: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, -1, -1, false>; int Mode = 5; bool LhsIsTriangular = true; Lhs = const Eigen::Block, -1, -1, false>; Rhs = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:74: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, -1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, -1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false>, -1, -1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:462:59: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, -1, -1, false>; int Mode = 5; bool LhsIsTriangular = true; Lhs = const Eigen::Block, -1, -1, false>; Rhs = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, true>, -1, 1, false>, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Assign.h:66:28: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"d:\\\\softwares\\\\r\\\\r-4.3.0\\\\library\\\\rcppeigen\\\\include\\\\eigen\\\\src\\\\eigenvalues\\\\hessenbergdecomposition.h:161:15: required from 'Eigen::HessenbergDecomposition<_MatrixType>& Eigen::HessenbergDecomposition<_MatrixType>::compute(const Eigen::EigenBase&) [with InputType = Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:271:17: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false> > >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, 1, true>, -1, 1, false> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:197:43: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"d:\\\\softwares\\\\r\\\\r-4.3.0\\\\library\\\\rcppeigen\\\\include\\\\eigen\\\\src\\\\eigenvalues\\\\hessenbergdecomposition.h:161:15: required from 'Eigen::HessenbergDecomposition<_MatrixType>& Eigen::HessenbergDecomposition<_MatrixType>::compute(const Eigen::EigenBase&) [with InputType = Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:271:17: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, 2, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:369:102: required from 'struct Eigen::internal::plain_object_eval, -1, -1, false>, 2, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:499:76: required from 'struct Eigen::internal::product_evaluator >, Eigen::Block, -1, -1, false>, 2, -1, false>, 1>, 3, Eigen::DenseShape, Eigen::DenseShape, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:29:8: required from 'struct Eigen::internal::evaluator >, Eigen::Block, -1, -1, false>, 2, -1, false>, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::Product >, Eigen::Block, -1, -1, false>, 2, -1, false>, 1>; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::Product >, Eigen::Block, -1, -1, false>, 2, -1, false>, 1>; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 2, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:369:102: required from 'struct Eigen::internal::plain_object_eval, -1, -1, false>, -1, 2, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:498:76: required from 'struct Eigen::internal::product_evaluator, -1, -1, false>, -1, 2, false>, Eigen::Matrix, 1>, 3, Eigen::DenseShape, Eigen::DenseShape, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:29:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 2, false>, Eigen::Matrix, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::Product, -1, -1, false>, -1, 2, false>, Eigen::Matrix, 1>; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::Product, -1, -1, false>, -1, 2, false>, Eigen::Matrix, 1>; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:961:41: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; SrcXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Functor = swap_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; SrcXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Functor = Eigen::internal::swap_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Src = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Func = swap_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Src = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Func = swap_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:418:22: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; SrcXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Functor = swap_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; SrcXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Functor = Eigen::internal::swap_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Src = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Func = swap_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Src = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Func = swap_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:418:22: required from 'void Eigen::DenseBase::swap(const Eigen::DenseBase&) [with OtherDerived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Derived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:480:24: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: In instantiation of 'void Eigen::internal::gemm_pack_rhs::operator()(Scalar*, const DataMapper&, Index, Index, Index, Index) [with Scalar = double; Index = long long int; DataMapper = Eigen::internal::blas_data_mapper; int nr = 4; bool Conjugate = false; bool PanelMode = true]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularSolverMatrix.h:153:19: required from 'static void Eigen::internal::triangular_solve_matrix::run(Index, Index, const Scalar*, Index, Scalar*, Index, Index, Eigen::internal::level3_blocking&) [with Scalar = double; Index = long long int; int Mode = 5; bool Conjugate = false; int TriStorageOrder = 0; int OtherInnerStride = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/SolveTriangular.h:102:12: required from 'static void Eigen::internal::triangular_solver_selector::run(const Lhs&, Rhs&) [with Lhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; int Side = 1; int Mode = 5]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/SolveTriangular.h:182:21: required from 'void Eigen::TriangularViewImpl<_MatrixType, _Mode, Eigen::Dense>::solveInPlace(const Eigen::MatrixBase&) const [with int Side = 1; OtherDerived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; _MatrixType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; unsigned int _Mode = 5]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/TriangularMatrix.h:509:37: required from 'void Eigen::TriangularViewImpl<_MatrixType, _Mode, Eigen::Dense>::solveInPlace(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; _MatrixType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; unsigned int _Mode = 5]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:490:62: required from 'static Eigen::Index Eigen::internal::partial_lu_impl::blocked_lu(Eigen::Index, Eigen::Index, Scalar*, Eigen::Index, PivIndex*, PivIndex&, Eigen::Index) [with Scalar = double; int StorageOrder = 0; PivIndex = int; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:509:17: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1981:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 1981 | PacketBlock kernel;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:436:50: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:150:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:92:96: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:150:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 2>, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 2>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 2>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, 2>, Eigen::Matrix, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, 2>, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, 2>, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:94:66: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:150:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 1>, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, 1>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, 1>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base >, 1>, Eigen::Matrix, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl >, 1>, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product >, 1>, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:95:66: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:150:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 5>, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, 5>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, 5>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, 5>, Eigen::Matrix, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, false>, 5>, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false>, 5>, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:96:22: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:150:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:150:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false>, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, -1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, -1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, false>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:150:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false> >, Eigen::Block, -1, 1, false>, -1, 1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> >, Eigen::Block, -1, 1, false>, -1, 1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> >, Eigen::Block, -1, 1, false>, -1, 1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:121:7: required from 'class Eigen::internal::dense_product_base, -1, 1, false> >, Eigen::Block, -1, 1, false>, -1, 1, false>, 0, 6>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, 1, false> >, Eigen::Block, -1, 1, false>, -1, 1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, 1, false> >, Eigen::Block, -1, 1, false>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:126:41: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:150:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false>, 1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, 1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, 1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false>, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false>, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, false>, 1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:150:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:150:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:128:25: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Block, -1, 1, false>; Derived = Eigen::Block, -1, 1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:343:39: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:150:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0, 4>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:129:41: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:150:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::OuterStride<> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::OuterStride<> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::OuterStride<> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Map.h:94:79: required from 'class Eigen::Map, 0, Eigen::OuterStride<> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularSolverVector.h:97:18: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:150:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, -1, 1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::OuterStride<> >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::OuterStride<> >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::OuterStride<> >, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::OuterStride<> >, -1, 1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:150:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:150:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularSolverVector.h:123:64: required from 'static void Eigen::internal::triangular_solve_vector::run(Index, const LhsScalar*, Index, RhsScalar*) [with LhsScalar = double; RhsScalar = double; Index = long long int; int Mode = 2; bool Conjugate = false]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/SolveTriangular.h:73:12: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:150:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'struct Eigen::internal::general_matrix_vector_product, 0, false, double, Eigen::internal::const_blas_data_mapper, false, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularSolverVector.h:131:115: required from 'static void Eigen::internal::triangular_solve_vector::run(Index, const LhsScalar*, Index, RhsScalar*) [with LhsScalar = double; RhsScalar = double; Index = long long int; int Mode = 2; bool Conjugate = false]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/SolveTriangular.h:73:12: required from 'static void Eigen::internal::triangular_solver_selector::run(const Lhs&, Rhs&) [with Lhs = const Eigen::Block, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; int Side = 1; int Mode = 2]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/SolveTriangular.h:182:21: required from 'void Eigen::TriangularViewImpl<_MatrixType, _Mode, Eigen::Dense>::solveInPlace(const Eigen::MatrixBase&) const [with int Side = 1; OtherDerived = Eigen::Block, -1, 1, false>; _MatrixType = const Eigen::Block, -1, -1, false>; unsigned int _Mode = 2]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/TriangularMatrix.h:509:37: required from 'void Eigen::TriangularViewImpl<_MatrixType, _Mode, Eigen::Dense>::solveInPlace(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Block, -1, 1, false>; _MatrixType = const Eigen::Block, -1, -1, false>; unsigned int _Mode = 2]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:607:20: required from 'void Eigen::ColPivHouseholderQR::_solve_impl(const RhsType&, DstType&) const [with RhsType = Eigen::CwiseNullaryOp, Eigen::Matrix >; DstType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Solve.h:147:26: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:150:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:75:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 75 | typedef typename conditional::type LhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:76:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 76 | typedef typename conditional::type RhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:77:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 77 | typedef typename conditional::type ResPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase > >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/BlasUtil.h:464:13: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:92:8: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:60:14: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = Zonotope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:161:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase > >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/BlasUtil.h:464:13: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:92:8: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:60:14: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = Zonotope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:161:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:503:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h: In instantiation of 'static void Eigen::internal::selfadjoint_matrix_vector_product::run(Index, const Scalar*, Index, const Scalar*, Scalar*, Scalar) [with Scalar = double; Index = long long int; int StorageOrder = 0; int UpLo = 1; bool ConjugateLhs = false; bool ConjugateRhs = false; int Version = 0]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:227:7: required from 'static void Eigen::internal::selfadjoint_product_impl::run(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, -1, 1, false>; Lhs = Eigen::Block, -1, -1, false>; int LhsMode = 17; Rhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:772:109: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, -1, 1, false>; Lhs = Eigen::SelfAdjointView, -1, -1, false>, 1>; Rhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; int ProductTag = 7; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Block, -1, 1, false>; Lhs = Eigen::SelfAdjointView, -1, -1, false>, 1>; Rhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::SelfAdjointShape, Eigen::DenseShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: required from 'static void Eigen::internal::generic_product_impl_base::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Block, -1, 1, false>; Lhs = Eigen::SelfAdjointView, -1, -1, false>, 1>; Rhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::SelfAdjointShape, Eigen::DenseShape, 7>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Block, -1, 1, false>; Lhs = Eigen::SelfAdjointView, -1, -1, false>, 1>; Rhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:60:121: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 60 | conj_helper::IsComplex && EIGEN_LOGICAL_XOR(ConjugateLhs, IsRowMajor), ConjugateRhs> pcj0;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:60:121: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:61:121: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 61 | conj_helper::IsComplex && EIGEN_LOGICAL_XOR(ConjugateLhs, !IsRowMajor), ConjugateRhs> pcj1;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:61:121: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'struct Eigen::internal::general_matrix_vector_product, 1, false, double, Eigen::internal::const_blas_data_mapper, false, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:339:132: required from 'static void Eigen::internal::gemv_dense_selector<2, 1, true>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, -1, 1, false> > >; Dest = Eigen::Transpose, 0, Eigen::Stride<0, 0> > >; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:197:12: required from 'static void Eigen::internal::gemv_dense_selector<1, StorageOrder, BlasCompatible>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, 1, false> >; Rhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Dest = Eigen::Map, 0, Eigen::Stride<0, 0> >; int StorageOrder = 0; bool BlasCompatible = true; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:383:34: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Transpose, -1, 1, false> >; Rhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Transpose, -1, 1, false> >; Rhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Derived = Eigen::internal::generic_product_impl, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: required from 'static void Eigen::internal::generic_product_impl_base::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Transpose, -1, 1, false> >; Rhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Derived = Eigen::internal::generic_product_impl, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:351:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 351 | typedef typename conditional::type LhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:352:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 352 | typedef typename conditional::type RhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:353:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 353 | typedef typename conditional::type ResPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> > >, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, true>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, true>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, 1, -1, true>, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:32: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:48: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; int Mode = 5; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = const Eigen::Block, -1, -1, false>, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:751:113: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:150:68: required from 'static void Eigen::internal::product_triangular_matrix_matrix::run(Index, Index, Index, const Scalar*, Index, const Scalar*, Index, Scalar*, Index, Index, const Scalar&, Eigen::internal::level3_blocking&) [with Scalar = double; Index = long long int; int Mode = 5; int LhsStorageOrder = 0; bool ConjugateLhs = false; int RhsStorageOrder = 0; bool ConjugateRhs = false; int ResInnerStride = 1; int Version = 0]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:443:12: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, -1, -1, false>; int Mode = 5; bool LhsIsTriangular = true; Lhs = const Eigen::Block, -1, -1, false>; Rhs = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Diagonal.h:63:53: required from 'class Eigen::Diagonal, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:153:32: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:174:81: required from 'class Eigen::DenseBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Diagonal.h:63:53: required from 'class Eigen::Diagonal, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:153:32: required from 'static void Eigen::internal::product_triangular_matrix_matrix::run(Index, Index, Index, const Scalar*, Index, const Scalar*, Index, Scalar*, Index, Index, const Scalar&, Eigen::internal::level3_blocking&) [with Scalar = double; Index = long long int; int Mode = 5; int LhsStorageOrder = 0; bool ConjugateLhs = false; int RhsStorageOrder = 0; bool ConjugateRhs = false; int ResInnerStride = 1; int Version = 0]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:443:12: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, -1, -1, false>; int Mode = 5; bool LhsIsTriangular = true; Lhs = const Eigen::Block, -1, -1, false>; Rhs = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::Matrix >, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Matrix >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/VectorwiseOp.h:104:1: required from 'ResultType Eigen::internal::member_sum::operator()(const XprType&) const [with XprType = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; ResultType = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1307:23: required from 'const Eigen::internal::evaluator >::Scalar Eigen::internal::evaluator >::coeff(Eigen::Index, Eigen::Index) const [with ArgType = const Eigen::CwiseUnaryOp, const Eigen::Matrix >; MemberOp = Eigen::internal::member_sum; int Direction = 0; Scalar = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:381:29: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::Matrix >, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Matrix >, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::Block, const Eigen::Matrix >, 1, -1, false>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::Block, const Eigen::Matrix >, 1, -1, false>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/VectorwiseOp.h:104:1: required from 'ResultType Eigen::internal::member_sum::operator()(const XprType&) const [with XprType = Eigen::Block, const Eigen::Matrix >, 1, -1, false>; ResultType = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1309:23: required from 'const Eigen::internal::evaluator >::Scalar Eigen::internal::evaluator >::coeff(Eigen::Index, Eigen::Index) const [with ArgType = const Eigen::CwiseUnaryOp, const Eigen::Matrix >; MemberOp = Eigen::internal::member_sum; int Direction = 0; Scalar = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:381:29: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>; SrcXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>; Functor = swap_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>; SrcXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>; Functor = Eigen::internal::swap_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>; Src = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>; Func = swap_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>; Src = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>; Func = swap_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:418:22: required from 'void Eigen::DenseBase::swap(const Eigen::DenseBase&) [with OtherDerived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>; Derived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:390:25: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:274:18: required from 'void Eigen::internal::outer_product_selector_run(Dst&, const Lhs&, const Rhs&, const Func&, const false_type&) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; Lhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>; Rhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>; Func = generic_product_impl, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, Eigen::DenseShape, Eigen::DenseShape, 5>::sub]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:329:41: required from 'static void Eigen::internal::generic_product_impl::subTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; Lhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>; Rhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:178:42: required from 'static void Eigen::internal::Assignment, Eigen::internal::sub_assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::sub_assign_op&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; Lhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>; Rhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; Src = Eigen::Product, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0>; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/NoAlias.h:58:31: required from 'ExpressionType& Eigen::NoAlias::operator-=(const StorageBase&) [with OtherDerived = Eigen::Product, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0>; ExpressionType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; StorageBase = Eigen::MatrixBase]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:406:53: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:280:48: required from 'void Eigen::internal::outer_product_selector_run(Dst&, const Lhs&, const Rhs&, const Func&, const false_type&) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; Lhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>; Rhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>; Func = generic_product_impl, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, Eigen::DenseShape, Eigen::DenseShape, 5>::sub]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:329:41: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'static void Eigen::internal::general_matrix_vector_product::run(Index, Index, const LhsMapper&, const RhsMapper&, ResScalar*, Index, RhsScalar) [with Index = long long int; LhsScalar = double; LhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateLhs = false; RhsScalar = double; RhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateRhs = false; int Version = 0; ResScalar = double]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularSolverVector.h:131:115: required from 'static void Eigen::internal::triangular_solve_vector::run(Index, const LhsScalar*, Index, RhsScalar*) [with LhsScalar = double; RhsScalar = double; Index = long long int; int Mode = 2; bool Conjugate = false]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/SolveTriangular.h:73:12: required from 'static void Eigen::internal::triangular_solver_selector::run(const Lhs&, Rhs&) [with Lhs = const Eigen::Block, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; int Side = 1; int Mode = 2]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/SolveTriangular.h:182:21: required from 'void Eigen::TriangularViewImpl<_MatrixType, _Mode, Eigen::Dense>::solveInPlace(const Eigen::MatrixBase&) const [with int Side = 1; OtherDerived = Eigen::Block, -1, 1, false>; _MatrixType = const Eigen::Block, -1, -1, false>; unsigned int _Mode = 2]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/TriangularMatrix.h:509:37: required from 'void Eigen::TriangularViewImpl<_MatrixType, _Mode, Eigen::Dense>::solveInPlace(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Block, -1, 1, false>; _MatrixType = const Eigen::Block, -1, -1, false>; unsigned int _Mode = 2]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:607:20: required from 'void Eigen::ColPivHouseholderQR::_solve_impl(const RhsType&, DstType&) const [with RhsType = Eigen::CwiseNullaryOp, Eigen::Matrix >; DstType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Solve.h:147:26: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:150:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:112:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 112 | conj_helper pcj;\\n\"},{\"type\":1,\"output\":\" | ^~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:112:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: In instantiation of 'void Eigen::internal::gemm_pack_lhs::operator()(Scalar*, const DataMapper&, Index, Index, Index, Index) [with Scalar = double; Index = long long int; DataMapper = Eigen::internal::const_blas_data_mapper; int Pack1 = 4; int Pack2 = 2; bool Conjugate = false; bool PanelMode = false]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixMatrix.h:182:17: required from 'static void Eigen::internal::general_matrix_matrix_product::run(Index, Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, Index, ResScalar, Eigen::internal::level3_blocking&, Eigen::internal::GemmParallelInfo*) [with Index = long long int; LhsScalar = double; int LhsStorageOrder = 1; bool ConjugateLhs = false; RhsScalar = double; int RhsStorageOrder = 0; bool ConjugateRhs = false; int ResInnerStride = 1; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixMatrix.h:228:14: required from 'void Eigen::internal::gemm_functor::operator()(Index, Index, Index, Index, Eigen::internal::GemmParallelInfo*) const [with Scalar = double; Index = long long int; Gemm = Eigen::internal::general_matrix_matrix_product; Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; Dest = Eigen::Matrix; BlockingType = Eigen::internal::gemm_blocking_space<0, double, double, -1, -1, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/Parallelizer.h:98:7: required from 'void Eigen::internal::parallelize_gemm(const Functor&, Index, Index, Index, bool) [with bool Condition = true; Functor = gemm_functor, Eigen::Transpose >, Eigen::Matrix, Eigen::Matrix, gemm_blocking_space<0, double, double, -1, -1, -1, 1, false> >; Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixMatrix.h:487:9: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixMatrix.h:437:20: required from 'static void Eigen::internal::generic_product_impl::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:78:8: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:60:14: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = Zonotope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:161:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1847:33: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 1847 | PacketBlock kernel;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1847:33: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: In instantiation of 'void Eigen::internal::gemm_pack_rhs::operator()(Scalar*, const DataMapper&, Index, Index, Index, Index) [with Scalar = double; Index = long long int; DataMapper = Eigen::internal::const_blas_data_mapper; int nr = 4; bool Conjugate = false; bool PanelMode = false]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixMatrix.h:193:21: required from 'static void Eigen::internal::general_matrix_matrix_product::run(Index, Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, Index, ResScalar, Eigen::internal::level3_blocking&, Eigen::internal::GemmParallelInfo*) [with Index = long long int; LhsScalar = double; int LhsStorageOrder = 1; bool ConjugateLhs = false; RhsScalar = double; int RhsStorageOrder = 0; bool ConjugateRhs = false; int ResInnerStride = 1; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixMatrix.h:228:14: required from 'void Eigen::internal::gemm_functor::operator()(Index, Index, Index, Index, Eigen::internal::GemmParallelInfo*) const [with Scalar = double; Index = long long int; Gemm = Eigen::internal::general_matrix_matrix_product; Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; Dest = Eigen::Matrix; BlockingType = Eigen::internal::gemm_blocking_space<0, double, double, -1, -1, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/Parallelizer.h:98:7: required from 'void Eigen::internal::parallelize_gemm(const Functor&, Index, Index, Index, bool) [with bool Condition = true; Functor = gemm_functor, Eigen::Transpose >, Eigen::Matrix, Eigen::Matrix, gemm_blocking_space<0, double, double, -1, -1, -1, 1, false> >; Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixMatrix.h:487:9: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixMatrix.h:437:20: required from 'static void Eigen::internal::generic_product_impl::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:78:8: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:60:14: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = Zonotope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:161:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1981:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 1981 | PacketBlock kernel;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, false>, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, false>, 1, -1, false>; SrcXprType = Eigen::Block, 1, -1, false>, 1, -1, false>; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, false>, 1, -1, false>; SrcXprType = Eigen::Block, 1, -1, false>, 1, -1, false>; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 1, -1, false>, 1, -1, false>; Src = Eigen::Block, 1, -1, false>, 1, -1, false>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 1, -1, false>, 1, -1, false>; Src = Eigen::Block, 1, -1, false>, 1, -1, false>; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Block, 1, -1, false>, 1, -1, false>; Src = Eigen::Block, 1, -1, false>, 1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Assign.h:66:28: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::ReturnByValue > > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:399:12: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = Zonotope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:161:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, 1, false>; SrcXprType = Eigen::CwiseUnaryOp, const Eigen::Block, 1, -1, false>, 1, -1, false> >; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, 1, false>; SrcXprType = Eigen::CwiseUnaryOp, const Eigen::Block, 1, -1, false>, 1, -1, false> >; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 1, 1, false>; Src = Eigen::CwiseUnaryOp, const Eigen::Block, 1, -1, false>, 1, -1, false> >; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 1, 1, false>; Src = Eigen::CwiseUnaryOp, const Eigen::Block, 1, -1, false>, 1, -1, false> >; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Block, 1, 1, false>; Src = Eigen::CwiseUnaryOp, const Eigen::Block, 1, -1, false>, 1, -1, false> >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Assign.h:66:28: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::ReturnByValue > > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:399:12: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = Zonotope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:161:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'static void Eigen::internal::general_matrix_vector_product::run(Index, Index, const LhsMapper&, const RhsMapper&, ResScalar*, Index, ResScalar) [with Index = long long int; LhsScalar = double; LhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateLhs = false; RhsScalar = double; RhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateRhs = false; int Version = 0; ResScalar = double]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:339:132: required from 'static void Eigen::internal::gemv_dense_selector<2, 1, true>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, -1, 1, false> > >; Dest = Eigen::Transpose, 0, Eigen::Stride<0, 0> > >; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:197:12: required from 'static void Eigen::internal::gemv_dense_selector<1, StorageOrder, BlasCompatible>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, 1, false> >; Rhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Dest = Eigen::Map, 0, Eigen::Stride<0, 0> >; int StorageOrder = 0; bool BlasCompatible = true; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:383:34: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Transpose, -1, 1, false> >; Rhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Transpose, -1, 1, false> >; Rhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Derived = Eigen::internal::generic_product_impl, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: required from 'static void Eigen::internal::generic_product_impl_base::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Transpose, -1, 1, false> >; Rhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Derived = Eigen::internal::generic_product_impl, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:385:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 385 | conj_helper pcj;\\n\"},{\"type\":1,\"output\":\" | ^~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:385:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/BlasUtil.h:464:13: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, -1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, -1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, true>, 1, -1, false> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, true>, 1, -1, false> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, true>, 1, -1, false> >, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/VectorBlock.h:56:47: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:341:54: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >; Dest = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; int Mode = 6; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:59: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Matrix; int Mode = 6; bool LhsIsTriangular = true; Lhs = const Eigen::Transpose, -1, -1, false> >; Rhs = Eigen::Block, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:74: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false> >, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false> >, -1, -1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false> >, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false> >, -1, -1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:462:59: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Matrix; int Mode = 6; bool LhsIsTriangular = true; Lhs = const Eigen::Transpose, -1, -1, false> >; Rhs = Eigen::Block, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:578:37: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:390:12: required from 'void VPolytope::linear_transformIt(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:109:29: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:146:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase >, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense >, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:390:12: required from 'void VPolytope::linear_transformIt(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:109:29: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:146:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block >, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block >, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:578:52: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index, Eigen::Index) const [with Lhs = Eigen::Inverse >; Rhs = Eigen::Transpose >; int ProductTag = 8; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Transpose >; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Inverse >; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:631:63: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:390:12: required from 'void VPolytope::linear_transformIt(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:109:29: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:146:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::OuterStride<> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::OuterStride<> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::OuterStride<> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Map.h:94:79: required from 'class Eigen::Map, 0, Eigen::OuterStride<> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:115:18: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Map.h:94:79: required from 'class Eigen::Map, 0, Eigen::Stride<0, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:119:18: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::InnerStride<> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::InnerStride<> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::InnerStride<> >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::InnerStride<> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::InnerStride<> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::InnerStride<> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::OuterStride<> >, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::OuterStride<> >, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::OuterStride<> >, 1, -1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::Stride<0, 0> >, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, 0, Eigen::Stride<0, 0> >, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:137:106: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:137:77: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const ResScalar&) [with Index = long long int; int Mode = 6; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:332:12: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'struct Eigen::internal::general_matrix_vector_product, 1, false, double, Eigen::internal::const_blas_data_mapper, false, 1>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:145:123: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const ResScalar&) [with Index = long long int; int Mode = 6; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:332:12: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >; Dest = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; int Mode = 6; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; int Mode = 5; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = const Eigen::Block, -1, -1, false>, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:751:113: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>; int ProductTag = 7; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>; Derived = Eigen::internal::generic_product_impl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, Eigen::DenseShape, Eigen::TriangularShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:351:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 351 | typedef typename conditional::type LhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:352:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 352 | typedef typename conditional::type RhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:353:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 353 | typedef typename conditional::type ResPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'struct Eigen::internal::general_matrix_vector_product, 1, false, double, Eigen::internal::const_blas_data_mapper, false, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:154:113: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const ResScalar&) [with Index = long long int; int Mode = 6; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:332:12: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >; Dest = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; int Mode = 6; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; int Mode = 5; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = const Eigen::Block, -1, -1, false>, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:751:113: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>; int ProductTag = 7; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>; Derived = Eigen::internal::generic_product_impl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, Eigen::DenseShape, Eigen::TriangularShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:351:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 351 | typedef typename conditional::type LhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:352:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 352 | typedef typename conditional::type RhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:353:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 353 | typedef typename conditional::type ResPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Diagonal.h:63:53: required from 'class Eigen::Diagonal, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:153:32: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:327:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:501:10: required from 'Derived& Eigen::DenseBase::setZero() [with Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:151:29: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:327:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Diagonal, 0>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:501:10: required from 'Derived& Eigen::DenseBase::setZero() [with Derived = Eigen::Diagonal, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:153:42: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 1, 2, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, 1, 2, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, 1, 2, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, 1, 2, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase >, 1, 2, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense >, 1, 2, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 1, 2, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, 1, 2, true> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, 1, 2, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, 1, 2, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl >, 1, 2, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >, 1, 2, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:589:37: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 2, -1, false>, 2, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 2, -1, false>, 2, 1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, 2, -1, false>, 2, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, 2, -1, false>, 2, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 2, -1, false>, 2, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false>, 2, -1, false>, 2, 1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose >, 1, 2, true> >, const Eigen::Block, -1, -1, false>, 2, -1, false>, 2, 1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose >, 1, 2, true> >, const Eigen::Block, -1, -1, false>, 2, -1, false>, 2, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose >, 1, 2, true> >, const Eigen::Block, -1, -1, false>, 2, -1, false>, 2, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose >, 1, 2, true> >, const Eigen::Block, -1, -1, false>, 2, -1, false>, 2, 1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose >, 1, 2, true> >, const Eigen::Block, -1, -1, false>, 2, -1, false>, 2, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:589:52: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index) const [with Lhs = Eigen::Transpose >; Rhs = Eigen::Block, -1, -1, false>, 2, -1, false>; int ProductTag = 3; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Block, -1, -1, false>, 2, -1, false>; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Transpose >; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:637:61: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, 1, 1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, 1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, 1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase >, 1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense >, 1, 1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 1, 1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, 1, 1, true> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, 1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, 1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl >, 1, 1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >, 1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:589:37: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false>, 1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false>, 1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, 1, -1, false>, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, 1, -1, false>, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 1, -1, false>, 1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false>, 1, -1, false>, 1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose >, 1, 1, true> >, const Eigen::Block, -1, -1, false>, 1, -1, false>, 1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose >, 1, 1, true> >, const Eigen::Block, -1, -1, false>, 1, -1, false>, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose >, 1, 1, true> >, const Eigen::Block, -1, -1, false>, 1, -1, false>, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose >, 1, 1, true> >, const Eigen::Block, -1, -1, false>, 1, -1, false>, 1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose >, 1, 1, true> >, const Eigen::Block, -1, -1, false>, 1, -1, false>, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:589:52: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index) const [with Lhs = Eigen::Transpose >; Rhs = Eigen::Block, -1, -1, false>, 1, -1, false>; int ProductTag = 4; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Block, -1, -1, false>, 1, -1, false>; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Transpose >; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:637:61: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 1, 1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, 1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:589:37: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, 1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::Stride<0, 0> >, 1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:589:52: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index) const [with Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >; Rhs = Eigen::Map, 0, Eigen::Stride<0, 0> >; int ProductTag = 4; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Map, 0, Eigen::Stride<0, 0> >; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:637:61: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Matrix >, -1, 1, true> >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/VectorwiseOp.h:104:1: required from 'ResultType Eigen::internal::member_sum::operator()(const XprType&) const [with XprType = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; ResultType = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1307:23: required from 'const Eigen::internal::evaluator >::Scalar Eigen::internal::evaluator >::coeff(Eigen::Index, Eigen::Index) const [with ArgType = const Eigen::CwiseUnaryOp, const Eigen::Matrix >; MemberOp = Eigen::internal::member_sum; int Direction = 0; Scalar = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:381:29: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, false>, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >; Derived = Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:305:135: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'static void Eigen::internal::general_matrix_vector_product::run(Index, Index, const LhsMapper&, const RhsMapper&, ResScalar*, Index, ResScalar) [with Index = long long int; LhsScalar = double; LhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateLhs = false; RhsScalar = double; RhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateRhs = false; int Version = 1; ResScalar = double]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:145:123: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const ResScalar&) [with Index = long long int; int Mode = 6; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:332:12: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >; Dest = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; int Mode = 6; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; int Mode = 5; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = const Eigen::Block, -1, -1, false>, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:751:113: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>; int ProductTag = 7; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>; Derived = Eigen::internal::generic_product_impl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, Eigen::DenseShape, Eigen::TriangularShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:385:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 385 | conj_helper pcj;\\n\"},{\"type\":1,\"output\":\" | ^~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:385:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'static void Eigen::internal::general_matrix_vector_product::run(Index, Index, const LhsMapper&, const RhsMapper&, ResScalar*, Index, ResScalar) [with Index = long long int; LhsScalar = double; LhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateLhs = false; RhsScalar = double; RhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateRhs = false; int Version = 0; ResScalar = double]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:154:113: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const ResScalar&) [with Index = long long int; int Mode = 6; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:332:12: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >; Dest = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; int Mode = 6; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; int Mode = 5; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = const Eigen::Block, -1, -1, false>, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:751:113: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>; int ProductTag = 7; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>; Derived = Eigen::internal::generic_product_impl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, Eigen::DenseShape, Eigen::TriangularShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:385:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:385:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, true>, -1, -1, false>, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>, -1, -1, false>, -1, 1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>, -1, -1, false>, -1, 1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, true>, -1, -1, false>, -1, 1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, true>, -1, -1, false>, -1, 1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >; Derived = Eigen::Block, -1, -1, true>, -1, -1, false>, -1, 1, true>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:305:135: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"d:\\\\softwares\\\\r\\\\r-4.3.0\\\\library\\\\rcppeigen\\\\include\\\\eigen\\\\src\\\\eigenvalues\\\\hessenbergdecomposition.h:161:15: required from 'Eigen::HessenbergDecomposition<_MatrixType>& Eigen::HessenbergDecomposition<_MatrixType>::compute(const Eigen::EigenBase&) [with InputType = Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:271:17: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 2, false>, 1, 2, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 2, false>, 1, 2, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 2, false>, 1, 2, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 2, false>, 1, 2, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, 2, false>, 1, 2, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false>, -1, 2, false>, 1, 2, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 2, false>, 1, 2, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 2, false>, 1, 2, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 2, false>, 1, 2, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 2, false>, 1, 2, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, -1, 2, false>, 1, 2, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false>, -1, 2, false>, 1, 2, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:589:37: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 2, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 2, 1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 2, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 2, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 2, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 2, 1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, -1, -1, false>, -1, 2, false>, 1, 2, false> >, const Eigen::Block, 2, 1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, -1, -1, false>, -1, 2, false>, 1, 2, false> >, const Eigen::Block, 2, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, -1, -1, false>, -1, 2, false>, 1, 2, false> >, const Eigen::Block, 2, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, -1, -1, false>, -1, 2, false>, 1, 2, false> >, const Eigen::Block, 2, 1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, -1, false>, -1, 2, false>, 1, 2, false> >, const Eigen::Block, 2, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:589:52: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index) const [with Lhs = Eigen::Block, -1, -1, false>, -1, 2, false>; Rhs = Eigen::Matrix; int ProductTag = 3; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Matrix; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Block, -1, -1, false>, -1, 2, false>; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:637:61: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:578:22: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:578:37: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index, Eigen::Index) const [with Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >; Rhs = Eigen::Transpose >; int ProductTag = 4; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Transpose >; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:631:63: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, 1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase >, 1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense >, 1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >, const Eigen::Block >, 1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >, const Eigen::Block >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >, const Eigen::Block >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >, const Eigen::Block >, 1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >, const Eigen::Block >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:578:52: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index, Eigen::Index) const [with Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >; Rhs = Eigen::Transpose >; int ProductTag = 4; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Transpose >; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:631:63: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, false>, 1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, false>, 1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, false>, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, false>, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, 1, false>, 1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false>, -1, 1, false>, 1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, false>, 1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, false>, 1, 1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, false>, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, false>, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, -1, 1, false>, 1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false>, -1, 1, false>, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:589:37: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 1, 1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 1, 1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, -1, -1, false>, -1, 1, false>, 1, 1, false> >, const Eigen::Block, 1, 1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, -1, -1, false>, -1, 1, false>, 1, 1, false> >, const Eigen::Block, 1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, -1, -1, false>, -1, 1, false>, 1, 1, false> >, const Eigen::Block, 1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, -1, -1, false>, -1, 1, false>, 1, 1, false> >, const Eigen::Block, 1, 1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, -1, false>, -1, 1, false>, 1, 1, false> >, const Eigen::Block, 1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:589:52: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index) const [with Lhs = Eigen::Block, -1, -1, false>, -1, 1, false>; Rhs = Eigen::Matrix; int ProductTag = 4; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Matrix; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Block, -1, -1, false>, -1, 1, false>; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:637:61: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, 1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase >, 1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense >, 1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >, const Eigen::Block >, 1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >, const Eigen::Block >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >, const Eigen::Block >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >, const Eigen::Block >, 1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >, const Eigen::Block >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:589:52: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index) const [with Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >; Rhs = Eigen::Transpose >; int ProductTag = 4; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Transpose >; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:637:61: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator >, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block >, -1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block >, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:390:12: required from 'void VPolytope::linear_transformIt(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:109:29: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:146:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, -1, 1, false> > >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, -1, 1, false> > >, const Eigen::Block, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, -1, 1, false> > >, const Eigen::Block, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, -1, 1, false> > >, const Eigen::Block, -1, 1, false>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, 1, false> > >, const Eigen::Block, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:251:54: required from 'static void Eigen::internal::generic_product_impl::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Transpose, -1, 1, false> >; Rhs = Eigen::Block, -1, 1, false>, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:150:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 1, 4>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 1, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:411:50: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:150:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 1, -1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, 1, -1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase >, 1, -1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense >, 1, -1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:78:8: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:60:14: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = Zonotope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:161:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 1, -1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, 1, -1, true> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, 1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, 1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl >, 1, -1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:578:37: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:78:8: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:60:14: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = Zonotope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:161:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:578:52: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index, Eigen::Index) const [with Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; int ProductTag = 8; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Matrix; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Transpose >; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:631:63: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:78:8: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:60:14: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = Zonotope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:161:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::norm() const [with Derived = Eigen::Product >, Eigen::Matrix, 0>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:96:52: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:60:14: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = Zonotope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:161:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, 1, -1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:961:41: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:270:41: required from 'struct Eigen::internal::unary_evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:327:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:501:10: required from 'Derived& Eigen::DenseBase::setZero() [with Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:151:29: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Derived = Eigen::Block, -1, -1, false>, -1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:31: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Derived = Eigen::Block, -1, -1, false>, -1, -1, true>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:462:32: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator >, 1, 2, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator >, 1, 2, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:270:41: required from 'struct Eigen::internal::unary_evaluator >, 1, 2, true> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator >, 1, 2, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator >, 1, 2, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose >, 1, 2, true> >, const Eigen::Block, -1, -1, false>, 2, -1, false>, 2, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, 2, -1, false>, 2, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, 2, -1, false>, 2, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose >, 1, 2, true> >, const Eigen::Block, -1, -1, false>, 2, -1, false>, 2, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Transpose >, 1, 2, true> >, const Eigen::Block, -1, -1, false>, 2, -1, false>, 2, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Transpose >, 1, 2, true> >, const Eigen::Block, -1, -1, false>, 2, -1, false>, 2, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose >, 1, 2, true> >, const Eigen::Block, -1, -1, false>, 2, -1, false>, 2, 1, true> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator >, 1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator >, 1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:270:41: required from 'struct Eigen::internal::unary_evaluator >, 1, 1, true> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator >, 1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator >, 1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose >, 1, 1, true> >, const Eigen::Block, -1, -1, false>, 1, -1, false>, 1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, 1, -1, false>, 1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, 1, -1, false>, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose >, 1, 1, true> >, const Eigen::Block, -1, -1, false>, 1, -1, false>, 1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Transpose >, 1, 1, true> >, const Eigen::Block, -1, -1, false>, 1, -1, false>, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Transpose >, 1, 1, true> >, const Eigen::Block, -1, -1, false>, 1, -1, false>, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose >, 1, 1, true> >, const Eigen::Block, -1, -1, false>, 1, -1, false>, 1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:270:41: required from 'struct Eigen::internal::unary_evaluator, 1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, 1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Transpose, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Transpose, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, false>, 1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::Block, -1, 1, false>, 1, 1, false>; Functor = add_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::Block, -1, 1, false>, 1, 1, false>; Functor = Eigen::internal::add_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Src = Eigen::Block, -1, 1, false>, 1, 1, false>; Func = add_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Src = Eigen::Block, -1, 1, false>, 1, 1, false>; Func = add_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:177:18: required from 'Derived& Eigen::MatrixBase::operator+=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::Block, -1, 1, false>, 1, 1, false>; Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:127:9: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:150:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:961:41: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:150:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:150:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:32: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, true>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, true>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, 1, -1, true>, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:48: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:462:59: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Matrix; int Mode = 2; bool LhsIsTriangular = true; Lhs = Eigen::Matrix; Rhs = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, -1, -1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, -1, -1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase >, -1, -1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense >, -1, -1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:462:59: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Matrix; int Mode = 1; bool LhsIsTriangular = true; Lhs = const Eigen::Transpose >; Rhs = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 2, false>, 1, 2, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 2, false>, 1, 2, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:270:41: required from 'struct Eigen::internal::unary_evaluator, -1, -1, false>, -1, 2, false>, 1, 2, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 2, false>, 1, 2, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 2, false>, 1, 2, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, -1, -1, false>, -1, 2, false>, 1, 2, false> >, const Eigen::Block, 2, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 2, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 2, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, -1, -1, false>, -1, 2, false>, 1, 2, false> >, const Eigen::Block, 2, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Transpose, -1, -1, false>, -1, 2, false>, 1, 2, false> >, const Eigen::Block, 2, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Transpose, -1, -1, false>, -1, 2, false>, 1, 2, false> >, const Eigen::Block, 2, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, -1, false>, -1, 2, false>, 1, 2, false> >, const Eigen::Block, 2, 1, true> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:270:41: required from 'struct Eigen::internal::unary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >, const Eigen::Block >, 1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator >, 1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >, const Eigen::Block >, 1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >, const Eigen::Block >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >, const Eigen::Block >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >, const Eigen::Block >, 1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, false>, 1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, false>, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:270:41: required from 'struct Eigen::internal::unary_evaluator, -1, -1, false>, -1, 1, false>, 1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, false>, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, false>, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, -1, -1, false>, -1, 1, false>, 1, 1, false> >, const Eigen::Block, 1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, -1, -1, false>, -1, 1, false>, 1, 1, false> >, const Eigen::Block, 1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Transpose, -1, -1, false>, -1, 1, false>, 1, 1, false> >, const Eigen::Block, 1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Transpose, -1, -1, false>, -1, 1, false>, 1, 1, false> >, const Eigen::Block, 1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, -1, false>, -1, 1, false>, 1, 1, false> >, const Eigen::Block, 1, 1, true> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator >, 1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >, const Eigen::Block >, 1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >, const Eigen::Block >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >, const Eigen::Block >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >, const Eigen::Block >, 1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:341:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::CwiseNullaryOp, Eigen::Matrix >, 2>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::CwiseNullaryOp, Eigen::Matrix >, 2> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::CwiseNullaryOp, Eigen::Matrix >, 2> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, Eigen::CwiseNullaryOp, Eigen::Matrix >, 2, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, Eigen::CwiseNullaryOp, Eigen::Matrix >, 2, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, Eigen::CwiseNullaryOp, Eigen::Matrix >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:237:28: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:105:12: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block, -1, 1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block, -1, 1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:578:52: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index, Eigen::Index) const [with Lhs = Eigen::Matrix; Rhs = Eigen::Matrix; int ProductTag = 8; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Matrix; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Matrix; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:631:63: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:439:11: required from 'void HPolytope::linear_transformIt(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:109:29: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, false>, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, -1, 1, false> > >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Transpose, -1, 1, false> > >, const Eigen::Block, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Transpose, -1, 1, false> > >, const Eigen::Block, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, 1, false> > >, const Eigen::Block, -1, 1, false>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:150:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator >, 1, -1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator >, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:270:41: required from 'struct Eigen::internal::unary_evaluator >, 1, -1, true> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator >, 1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator >, 1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:78:8: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:60:14: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = Zonotope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:161:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:137:114: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const ResScalar&) [with Index = long long int; int Mode = 6; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:332:12: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >; Dest = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; int Mode = 6; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:961:41: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:270:41: required from 'struct Eigen::internal::unary_evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: [ skipping 29 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:270:41: required from 'struct Eigen::internal::unary_evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: [ skipping 27 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, true>, 1, -1, false> >, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >; Derived = Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:341:27: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase >, -1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase >, -1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase >, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 21 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, true>, 1, -1, false> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, true>, 1, -1, false> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, true>, 1, -1, false> >, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 1, -1, true>, 1, -1, false> >, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 19 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:282:54: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false> >; Rhs = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; Dest = Eigen::Transpose >; int Mode = 1; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Derived = Eigen::Block, -1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:31: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false> >, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >; Derived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:305:135: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 18 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:578:37: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 18 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:578:52: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index, Eigen::Index) const [with Lhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; int ProductTag = 8; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:631:63: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 20 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:150:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:150:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:59: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, -1, -1, false>; int Mode = 5; bool LhsIsTriangular = true; Lhs = const Eigen::Block, -1, -1, false>; Rhs = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:150:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:74: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:150:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, -1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 20 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:150:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::InnerStride<> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::InnerStride<> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::InnerStride<> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::InnerStride<> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::InnerStride<> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Map.h:94:79: required from 'class Eigen::Map, 0, Eigen::InnerStride<> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:48:18: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 22 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'struct Eigen::internal::general_matrix_vector_product, 0, false, double, Eigen::internal::const_blas_data_mapper, false, 1>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:74:123: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const RhsScalar&) [with Index = long long int; int Mode = 1; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:266:12: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false> >; Rhs = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; Dest = Eigen::Transpose >; int Mode = 1; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Matrix; int Mode = 2; Lhs = Eigen::Block, 1, -1, true>, 1, -1, false>; Rhs = Eigen::Block, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:751:113: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::Block, 1, -1, true>, 1, -1, false>; Rhs = Eigen::TriangularView, -1, -1, false>, 2>; int ProductTag = 7; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Matrix; Lhs = Eigen::Block, 1, -1, true>, 1, -1, false>; Rhs = Eigen::TriangularView, -1, -1, false>, 2>; Derived = Eigen::internal::generic_product_impl, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, Eigen::DenseShape, Eigen::TriangularShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:75:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 75 | typedef typename conditional::type LhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:76:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 76 | typedef typename conditional::type RhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:77:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 77 | typedef typename conditional::type ResPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:327:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:501:10: required from 'Derived& Eigen::DenseBase::setZero() [with Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:16: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:150:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, 1, false> > >, const Eigen::Block, -1, 1, false>, -1, 1, false> >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Transpose, -1, 1, false> > >, const Eigen::Block, -1, 1, false>, -1, 1, false> > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, 1, false> > >, const Eigen::Block, -1, 1, false>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, 1, false> > >, const Eigen::Block, -1, 1, false>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:251:64: required from 'static void Eigen::internal::generic_product_impl::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Transpose, -1, 1, false> >; Rhs = Eigen::Block, -1, 1, false>, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Transpose, -1, 1, false> >; Rhs = Eigen::Block, -1, 1, false>, -1, 1, false>; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, -1, 1, false> >, Eigen::Block, -1, 1, false>, -1, 1, false>, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:150:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:578:75: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index, Eigen::Index) const [with Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; int ProductTag = 8; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Matrix; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Transpose >; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:631:63: required from 'void Eigen::internal::generic_dense_assignment_kernel::assignCoeff(Eigen::Index, Eigen::Index) [with DstEvaluatorTypeT = Eigen::internal::evaluator >; SrcEvaluatorTypeT = Eigen::internal::evaluator >, Eigen::Matrix, 1> >; Functor = Eigen::internal::assign_op; int Version = 0; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:645:16: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:78:8: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:60:14: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = Zonotope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:161:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'static void Eigen::internal::general_matrix_vector_product::run(Index, Index, const LhsMapper&, const RhsMapper&, ResScalar*, Index, RhsScalar) [with Index = long long int; LhsScalar = double; LhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateLhs = false; RhsScalar = double; RhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateRhs = false; int Version = 1; ResScalar = double]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:74:123: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const RhsScalar&) [with Index = long long int; int Mode = 1; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:266:12: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false> >; Rhs = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; Dest = Eigen::Transpose >; int Mode = 1; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Matrix; int Mode = 2; Lhs = Eigen::Block, 1, -1, true>, 1, -1, false>; Rhs = Eigen::Block, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:751:113: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::Block, 1, -1, true>, 1, -1, false>; Rhs = Eigen::TriangularView, -1, -1, false>, 2>; int ProductTag = 7; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Matrix; Lhs = Eigen::Block, 1, -1, true>, 1, -1, false>; Rhs = Eigen::TriangularView, -1, -1, false>, 2>; Derived = Eigen::internal::generic_product_impl, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, Eigen::DenseShape, Eigen::TriangularShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:112:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 112 | conj_helper pcj;\\n\"},{\"type\":1,\"output\":\" | ^~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:112:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:270:41: required from 'struct Eigen::internal::unary_evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: [ skipping 20 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 22 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:150:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:59: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Matrix; int Mode = 6; bool LhsIsTriangular = true; Lhs = const Eigen::Transpose, -1, -1, false> >; Rhs = Eigen::Block, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:150:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:74: [ skipping 18 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:150:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 22 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:150:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 18 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator >, -1, -1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator >, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 18 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:589:22: [ skipping 20 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:150:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:589:37: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index) const [with Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >; Rhs = Eigen::Map, 0, Eigen::Stride<0, 0> >; int ProductTag = 4; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Map, 0, Eigen::Stride<0, 0> >; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:637:61: [ skipping 19 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:150:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, 1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::Stride<0, 0> >, 1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 22 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:150:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:589:52: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index) const [with Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >; Rhs = Eigen::Map, 0, Eigen::Stride<0, 0> >; int ProductTag = 4; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Map, 0, Eigen::Stride<0, 0> >; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:637:61: [ skipping 19 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:150:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, true>, 1, -1, false> >, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 1, -1, true>, 1, -1, false> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 19 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator >, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block >, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block >, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >; Derived = Eigen::Block >, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:282:27: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Derived = Eigen::Block, -1, -1, false>, -1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:31: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:150:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:961:41: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:150:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Derived = Eigen::Block, -1, -1, false>, -1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:31: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:150:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Derived = Eigen::Block, -1, -1, false>, -1, -1, true>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:462:32: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:150:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >; Functor = add_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >; Functor = Eigen::internal::add_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >; Func = add_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >; Func = add_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:177:18: required from 'Derived& Eigen::MatrixBase::operator+=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >; Derived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:66:28: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:122:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:270:41: required from 'struct Eigen::internal::unary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: [ skipping 24 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:150:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, 1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 21 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:150:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix >, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix >, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, Eigen::Matrix >, 1, -1, false, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, Eigen::Matrix >, 1, -1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, Eigen::Matrix >, 1, -1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:1009:11: [ skipping 23 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:105:12: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Derived = Eigen::Block, -1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:31: [ skipping 18 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:150:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Derived = Eigen::Block, -1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:31: [ skipping 18 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:150:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Derived = Eigen::Block, -1, -1, true>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:462:32: [ skipping 18 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:150:65: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, Eigen::Matrix >, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, false>; SrcXprType = Eigen::Block, Eigen::Matrix >, 1, -1, false>; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, false>; SrcXprType = Eigen::Block, Eigen::Matrix >, 1, -1, false>; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 1, -1, false>; Src = Eigen::Block, Eigen::Matrix >, 1, -1, false>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 1, -1, false>; Src = Eigen::Block, Eigen::Matrix >, 1, -1, false>; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Block, 1, -1, false>; Src = Eigen::Block, Eigen::Matrix >, 1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Assign.h:66:28: [ skipping 24 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:105:12: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"rounding.cpp:135:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\bits\\\\stl_algobase.h:64:\\n\"},{\"type\":1,\"output\":\"In constructor 'constexpr std::pair<_T1, _T2>::pair(_U1&&, _U2&&) [with _U1 = double&; _U2 = int&; typename std::enable_if<(std::_PCC::_MoveConstructiblePair<_U1, _U2>() && std::_PCC::_ImplicitlyMoveConvertiblePair<_U1, _U2>()), bool>::type = true; _T1 = double; _T2 = double]',\\n\"},{\"type\":1,\"output\":\" inlined from 'std::pair HPolytope::line_intersect(const Point&, const Point&, VT&, VT&, const NT&, bool) const [with Point = point >]' at include/convex_bodies/hpolytope.h:339:58:\\n\"},{\"type\":1,\"output\":\"d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\bits\\\\stl_pair.h:535:42: warning: 'facet' may be used uninitialized [-Wmaybe-uninitialized]\\n\"},{\"type\":1,\"output\":\" 535 | : first(std::forward<_U1>(__x)), second(std::forward<_U2>(__y)) { }\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h: In function 'std::pair HPolytope::line_intersect(const Point&, const Point&, VT&, VT&, const NT&, bool) const [with Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:316:39: note: 'facet' was declared here\\n\"},{\"type\":1,\"output\":\" 316 | int m = num_of_hyperplanes(), facet;\\n\"},{\"type\":1,\"output\":\" | ^~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In constructor 'constexpr std::pair<_T1, _T2>::pair(_U1&&, _U2&&) [with _U1 = double&; _U2 = int&; typename std::enable_if<(std::_PCC::_MoveConstructiblePair<_U1, _U2>() && std::_PCC::_ImplicitlyMoveConvertiblePair<_U1, _U2>()), bool>::type = true; _T1 = double; _T2 = double]',\\n\"},{\"type\":1,\"output\":\" inlined from 'std::pair HPolytope::line_intersect(const Point&, const Point&, VT&, VT&, bool) const [with Point = point >]' at include/convex_bodies/hpolytope.h:299:58:\\n\"},{\"type\":1,\"output\":\"d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\bits\\\\stl_pair.h:535:42: warning: 'facet' may be used uninitialized [-Wmaybe-uninitialized]\\n\"},{\"type\":1,\"output\":\" 535 | : first(std::forward<_U1>(__x)), second(std::forward<_U2>(__y)) { }\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h: In member function 'std::pair HPolytope::line_intersect(const Point&, const Point&, VT&, VT&, bool) const [with Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:274:39: note: 'facet' was declared here\\n\"},{\"type\":1,\"output\":\" 274 | int m = num_of_hyperplanes(), facet;\\n\"},{\"type\":1,\"output\":\" | ^~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:477:\\n\"},{\"type\":1,\"output\":\"In constructor 'Eigen::internal::BlockImpl_dense::BlockImpl_dense(XprType&, Eigen::Index) [with XprType = const Eigen::Matrix; int BlockRows = 1; int BlockCols = -1; bool InnerPanel = false]',\\n\"},{\"type\":1,\"output\":\" inlined from 'Eigen::BlockImpl::BlockImpl(XprType&, Eigen::Index) [with XprType = const Eigen::Matrix; int BlockRows = 1; int BlockCols = -1; bool InnerPanel = false]' at D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:162:75,\\n\"},{\"type\":1,\"output\":\" inlined from 'Eigen::Block::Block(XprType&, Eigen::Index) [with XprType = const Eigen::Matrix; int BlockRows = 1; int BlockCols = -1; bool InnerPanel = false]' at D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:118:53,\\n\"},{\"type\":1,\"output\":\" inlined from 'Eigen::DenseBase::ConstRowXpr Eigen::DenseBase::row(Eigen::Index) const [with Derived = Eigen::Matrix]' at d:\\\\softwares\\\\r\\\\r-4.3.0\\\\library\\\\rcppeigen\\\\include\\\\eigen\\\\src\\\\plugins\\\\blockmethods.h:868:34,\\n\"},{\"type\":1,\"output\":\" inlined from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]' at include/convex_bodies/vpolytope.h:435:18:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:347:29: warning: 'outvert' may be used uninitialized [-Wmaybe-uninitialized]\\n\"},{\"type\":1,\"output\":\" 347 | : Base(xpr.data() + i * ( ((BlockRows==1) && (BlockCols==XprType::ColsAtCompileTime) && (!XprTypeIsRowMajor))\\n\"},{\"type\":1,\"output\":\" | ~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 348 | || ((BlockRows==XprType::RowsAtCompileTime) && (BlockCols==1) && ( XprTypeIsRowMajor)) ? xpr.innerStride() : xpr.outerStride()),\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h: In function 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:423:24: note: 'outvert' was declared here\\n\"},{\"type\":1,\"output\":\" 423 | int count = 0, outvert;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"g++ -std=gnu++17 -I\\\"D:/Softwares/R/R-4.3.0/include\\\" -DNDEBUG -Iexternal -Iexternal/lpsolve/headers/run_headers -Iexternal/minimum_ellipsoid -Iinclude -Iinclude/convex_bodies/spectrahedra -I'D:/Softwares/R/R-4.3.0/library/Rcpp/include' -I'D:/Softwares/R/R-4.3.0/library/RcppEigen/include' -I'D:/Softwares/R/R-4.3.0/library/BH/include' -I\\\"D:/Softwares/RTools/rtools43/x86_64-w64-mingw32.static.posix/include\\\" -lm -ldl -DBOOST_NO_AUTO_PTR -O2 -Wall -mfpmath=sse -msse2 -mstackrealign -c sample_points.cpp -o sample_points.o\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:397,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Dense:1,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/RcppEigenForward.h:30,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/RcppEigen.h:25,\\n\"},{\"type\":1,\"output\":\" from sample_points.cpp:11:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:60:39: warning: ignoring attributes on template argument '__m128' [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 60 | template<> struct is_arithmetic<__m128> { enum { value = true }; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:61:40: warning: ignoring attributes on template argument '__m128i' [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 61 | template<> struct is_arithmetic<__m128i> { enum { value = true }; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:62:40: warning: ignoring attributes on template argument '__m128d' [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 62 | template<> struct is_arithmetic<__m128d> { enum { value = true }; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:161:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 161 | template<> struct unpacket_traits { typedef float type; enum {size=4, alignment=Aligned16}; typedef Packet4f half; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:162:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 162 | template<> struct unpacket_traits { typedef double type; enum {size=2, alignment=Aligned16}; typedef Packet2d half; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:163:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 163 | template<> struct unpacket_traits { typedef int type; enum {size=4, alignment=Aligned16}; typedef Packet4i half; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:718:35: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 718 | struct palign_impl\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:741:35: warning: ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 741 | struct palign_impl\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:764:35: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 764 | struct palign_impl\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:778:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 778 | ptranspose(PacketBlock& kernel) {\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:783:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 783 | ptranspose(PacketBlock& kernel) {\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:790:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 790 | ptranspose(PacketBlock& kernel) {\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:377:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:15:70: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 15 | template<> struct conj_helper { \\\\\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:232:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL'\\n\"},{\"type\":1,\"output\":\" 232 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet2cf,Packet4f)\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:22:70: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 22 | template<> struct conj_helper { \\\\\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:232:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL'\\n\"},{\"type\":1,\"output\":\" 232 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet2cf,Packet4f)\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:15:70: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 15 | template<> struct conj_helper { \\\\\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:417:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL'\\n\"},{\"type\":1,\"output\":\" 417 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet1cd,Packet2d)\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:22:70: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 22 | template<> struct conj_helper { \\\\\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:417:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL'\\n\"},{\"type\":1,\"output\":\" 417 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet1cd,Packet2d)\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:370:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:243:49: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SSE.h:24:46: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(4) float>::half' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:439:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:46:50: required from 'class Eigen::QuaternionBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:250:7: required from 'class Eigen::Quaternion'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SSE.h:27:3: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:243:49: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SSE.h:88:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:46:50: required from 'class Eigen::QuaternionBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:250:7: required from 'class Eigen::Quaternion'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SSE.h:92:3: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/SparseCore:37,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Sparse:26,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/RcppEigenForward.h:31:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h: In instantiation of 'class Eigen::SparseMatrixBase >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseCompressedBase.h:36:7: required from 'class Eigen::SparseCompressedBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrix.h:96:7: required from 'class Eigen::SparseMatrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/IterativeSolvers/ConstrainedConjGrad.h:61:25: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h:47:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 47 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h:168:29: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) long long int>::half' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h:168:29: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h:178:72: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h:179:36: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/aux_/na_assert.hpp:23,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/arg.hpp:25,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/placeholders.hpp:24,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/iterator/iterator_categories.hpp:16,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/iterator/iterator_concepts.hpp:10,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/range/concepts.hpp:20,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/range/size_type.hpp:20,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/range/size.hpp:21,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/random/hyperexponential_distribution.hpp:29,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/random.hpp:70,\\n\"},{\"type\":1,\"output\":\" from sample_points.cpp:13:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp:194:21: warning: unnecessary parentheses in declaration of 'assert_arg' [-Wparentheses]\\n\"},{\"type\":1,\"output\":\" 194 | failed ************ (Pred::************\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 195 | assert_arg( void (*)(Pred), typename assert_arg_pred::type )\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 196 | );\\n\"},{\"type\":1,\"output\":\" | ~ \\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp:194:21: note: remove parentheses\\n\"},{\"type\":1,\"output\":\" 194 | failed ************ (Pred::************\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" | -\\n\"},{\"type\":1,\"output\":\" 195 | assert_arg( void (*)(Pred), typename assert_arg_pred::type )\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 196 | );\\n\"},{\"type\":1,\"output\":\" | ~ \\n\"},{\"type\":1,\"output\":\" | -\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp:199:21: warning: unnecessary parentheses in declaration of 'assert_not_arg' [-Wparentheses]\\n\"},{\"type\":1,\"output\":\" 199 | failed ************ (boost::mpl::not_::************\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 200 | assert_not_arg( void (*)(Pred), typename assert_arg_pred_not::type )\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 201 | );\\n\"},{\"type\":1,\"output\":\" | ~ \\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp:199:21: note: remove parentheses\\n\"},{\"type\":1,\"output\":\" 199 | failed ************ (boost::mpl::not_::************\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" | -\\n\"},{\"type\":1,\"output\":\" 200 | assert_not_arg( void (*)(Pred), typename assert_arg_pred_not::type )\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 201 | );\\n\"},{\"type\":1,\"output\":\" | ~ \\n\"},{\"type\":1,\"output\":\" | -\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/traits.hpp:21,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/storage.hpp:27,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/vector.hpp:21,\\n\"},{\"type\":1,\"output\":\" from external/minimum_ellipsoid/khach.h:25,\\n\"},{\"type\":1,\"output\":\" from include/convex_bodies/vpolytope.h:19,\\n\"},{\"type\":1,\"output\":\" from include/random_walks/uniform_billiard_walk.hpp:18,\\n\"},{\"type\":1,\"output\":\" from include/random_walks/random_walks.hpp:16,\\n\"},{\"type\":1,\"output\":\" from sample_points.cpp:17:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/detail/iterator.hpp:111:21: warning: 'template struct std::iterator' is deprecated [-Wdeprecated-declarations]\\n\"},{\"type\":1,\"output\":\" 111 | public std::iterator {\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~\\n\"},{\"type\":1,\"output\":\"In file included from d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\bits\\\\stl_algobase.h:65,\\n\"},{\"type\":1,\"output\":\" from d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\bits\\\\specfun.h:45,\\n\"},{\"type\":1,\"output\":\" from d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\cmath:1935,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/Rcpp/include/Rcpp/platform/compiler.h:100,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/Rcpp/include/Rcpp/r/headers.h:62,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/Rcpp/include/RcppCommon.h:30,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/Rcpp/include/Rcpp.h:27,\\n\"},{\"type\":1,\"output\":\" from sample_points.cpp:10:\\n\"},{\"type\":1,\"output\":\"d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\bits\\\\stl_iterator_base_types.h:127:34: note: declared here\\n\"},{\"type\":1,\"output\":\" 127 | struct _GLIBCXX17_DEPRECATED iterator\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/detail/iterator.hpp:149:21: warning: 'template struct std::iterator' is deprecated [-Wdeprecated-declarations]\\n\"},{\"type\":1,\"output\":\" 149 | public std::iterator {\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~\\n\"},{\"type\":1,\"output\":\"d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\bits\\\\stl_iterator_base_types.h:127:34: note: declared here\\n\"},{\"type\":1,\"output\":\" 127 | struct _GLIBCXX17_DEPRECATED iterator\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/detail/iterator.hpp:204:21: warning: 'template struct std::iterator' is deprecated [-Wdeprecated-declarations]\\n\"},{\"type\":1,\"output\":\" 204 | public std::iterator {\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~\\n\"},{\"type\":1,\"output\":\"d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\bits\\\\stl_iterator_base_types.h:127:34: note: declared here\\n\"},{\"type\":1,\"output\":\" 127 | struct _GLIBCXX17_DEPRECATED iterator\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from sample_points.cpp:19:\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_gaussians.hpp: In function 'NT get_next_gaussian(const Polytope&, Point&, const NT&, const unsigned int&, const NT&, const NT&, const unsigned int&, RandomNumberGenerator&)':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_gaussians.hpp:166:48: warning: typedef 'viterator' locally defined but not used [-Wunused-local-typedefs]\\n\"},{\"type\":1,\"output\":\" 166 | typedef typename std::vector::iterator viterator;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_gaussians.hpp: In function 'void compute_annealing_schedule(const Polytope&, const NT&, const NT&, const NT&, const unsigned int&, const unsigned int&, const NT&, const NT&, std::vector&, RandomNumberGenerator&)':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_gaussians.hpp:221:35: warning: typedef 'VT' locally defined but not used [-Wunused-local-typedefs]\\n\"},{\"type\":1,\"output\":\" 221 | typedef typename Polytope::VT VT;\\n\"},{\"type\":1,\"output\":\" | ^~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:145:27: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:145:27: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"include/cartesian_geom/point.h:22:53: required from 'class point >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:24:32: required from 'class HPolytope > >'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:166:15: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:309:29: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: required from 'class Eigen::MapBase, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, 1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, -1, 1, true, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, -1, 1, true>'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:396:23: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Matrix, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:396:77: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"sample_points.cpp: In function 'Rcpp::NumericMatrix sample_points(Rcpp::Reference, int, Rcpp::Nullable >, Rcpp::Nullable >)':\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:172:8: warning: unused variable 'radius' [-Wunused-variable]\\n\"},{\"type\":1,\"output\":\" 172 | NT radius = 1.0, L;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 1, -1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, 1, -1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, 1, -1, false>'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:219:32: required from 'int HPolytope::is_in(const Point&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:296:25: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false>, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:121:7: required from 'class Eigen::internal::dense_product_base, 1, -1, false>, Eigen::Matrix, 0, 6>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, 1, -1, false>, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, 1, -1, false>, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:219:36: required from 'int HPolytope::is_in(const Point&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:296:25: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:174:81: required from 'class Eigen::DenseBase, 1, -1, false>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:121:7: required from 'class Eigen::internal::dense_product_base, 1, -1, false>, Eigen::Matrix, 0, 6>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, 1, -1, false>, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, 1, -1, false>, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:219:36: required from 'int HPolytope::is_in(const Point&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:296:25: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: required from 'class Eigen::MapBase, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 1, -1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, 1, -1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, 1, -1, false>'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:480:29: required from 'void HPolytope::normalize() [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:299:25: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::Block, 1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, 1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, 1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:481:33: required from 'void HPolytope::normalize() [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:299:25: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, 1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, 1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, 1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, 1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, 1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:481:33: required from 'void HPolytope::normalize() [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:299:25: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Matrix, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"include/cartesian_geom/point.h:127:30: required from 'point point::operator-(const point&) const [with K = Cartesian]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:301:49: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, Eigen::Matrix, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:447:15: required from 'void HPolytope::shift(const VT&) [with Point = point >; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:302:25: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h: In instantiation of 'std::pair VPolytope::ComputeInnerBall() [with Point = point >; typename Point::FT = double]':\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:312:48: required from here\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:278:30: warning: comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 278 | for ( i=0; i < rpit->dimension(); i++){\\n\"},{\"type\":1,\"output\":\" | ~~^~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:383:28: required from 'void VPolytope::shift(const VT&) [with Point = point >; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:320:25: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Replicate.h:61:65: required from 'class Eigen::Replicate, 1, -1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::Transpose >, const Eigen::Replicate, 1, -1> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose >, const Eigen::Replicate, 1, -1>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose >, const Eigen::Replicate, 1, -1> >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:383:41: required from 'void VPolytope::shift(const VT&) [with Point = point >; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:320:25: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose >, const Eigen::Replicate, 1, -1> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose >, const Eigen::Replicate, 1, -1> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose >, const Eigen::Replicate, 1, -1> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose >, const Eigen::Replicate, 1, -1>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose >, const Eigen::Replicate, 1, -1> >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:383:41: required from 'void VPolytope::shift(const VT&) [with Point = point >; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:320:25: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:236:8: required from 'struct Eigen::internal::evaluator >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:96:8: required from 'struct Eigen::internal::product_evaluator, 1, -1, false>, Eigen::Matrix, 0>, 6, Eigen::DenseShape, Eigen::DenseShape, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:29:8: required from 'struct Eigen::internal::evaluator, 1, -1, false>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:132:22: required from 'Eigen::internal::dense_product_base::operator const Scalar() const [with Lhs = Eigen::Block, 1, -1, false>; Rhs = Eigen::Matrix; int Option = 0; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:219:25: required from 'int HPolytope::is_in(const Point&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:296:25: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h: In instantiation of 'bool VPolytope::get_points_for_rounding(PointList&) [with PointList = std::__cxx11::list > >; Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:267:37: required from 'std::pair VPolytope::ComputeInnerBall() [with Point = point >; typename Point::FT = double]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:312:48: required from here\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:408:30: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 408 | if (num_of_vertices()>20*_d) {\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~^~~~~~\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:411:22: warning: unused variable 'j' [-Wunused-variable]\\n\"},{\"type\":1,\"output\":\" 411 | unsigned int j;\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"In file included from include/convex_bodies/vpolytope.h:18:\\n\"},{\"type\":1,\"output\":\"include/lp_oracles/vpolyoracles.h: In instantiation of 'std::pair<_FIter, _FIter> intersect_double_line_Vpoly(const MT&, const Point&, const Point&, NT*, int*) [with NT = double; MT = Eigen::Matrix; Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:297:50: required from 'std::pair VPolytope::ComputeInnerBall() [with Point = point >; typename Point::FT = double]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:312:48: required from here\\n\"},{\"type\":1,\"output\":\"include/lp_oracles/vpolyoracles.h:311:8: warning: unused variable 'res' [-Wunused-variable]\\n\"},{\"type\":1,\"output\":\" 311 | NT res;\\n\"},{\"type\":1,\"output\":\" | ^~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base >, Eigen::Matrix, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl >, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product >, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:72:31: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix, const Eigen::Transpose > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix, const Eigen::Transpose > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix, const Eigen::Transpose > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Matrix, const Eigen::Transpose >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:73:24: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:73:45: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:73:45: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Diagonal.h:63:53: required from 'class Eigen::Diagonal, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:91:21: required from 'class Eigen::Tridiagonalization >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:105:62: required from 'class Eigen::SelfAdjointEigenSolver >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Diagonal.h:63:53: required from 'class Eigen::Diagonal, -1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:96:21: required from 'class Eigen::Tridiagonalization >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:105:62: required from 'class Eigen::SelfAdjointEigenSolver >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:438:19: required from 'class Eigen::ColPivHouseholderQR >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:247:10: required from 'struct Eigen::internal::qr_preconditioner_impl, 2, 0, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:607:110: required from 'class Eigen::JacobiSVD, 2>'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:93:40: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"In file included from include/convex_bodies/zpolytope.h:19,\\n\"},{\"type\":1,\"output\":\" from include/random_walks/uniform_billiard_walk.hpp:20:\\n\"},{\"type\":1,\"output\":\"include/lp_oracles/zpolyoracles.h: In instantiation of 'bool memLP_Zonotope(const MT&, const Point&, NT*, int*) [with MT = Eigen::Matrix; Point = point >; NT = double]':\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:241:26: required from 'int Zonotope::is_in(const Point&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:334:25: required from here\\n\"},{\"type\":1,\"output\":\"include/lp_oracles/zpolyoracles.h:52:10: warning: unused variable 'infinite' [-Wunused-variable]\\n\"},{\"type\":1,\"output\":\" 52 | REAL infinite = get_infinite(lp); /* will return 1.0e30 */\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~\\n\"},{\"type\":1,\"output\":\"In file included from include/convex_bodies/hpolytope.h:17,\\n\"},{\"type\":1,\"output\":\" from include/random_walks/uniform_billiard_walk.hpp:17:\\n\"},{\"type\":1,\"output\":\"include/lp_oracles/solve_lp.h: In instantiation of 'Point PointInIntersection(MT, MT, Point, bool&) [with VT = Eigen::Matrix; MT = Eigen::Matrix; Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:128:32: required from 'bool IntersectionOfVpoly::is_feasible() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:352:35: required from here\\n\"},{\"type\":1,\"output\":\"include/lp_oracles/solve_lp.h:204:19: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 204 | for (i = 0; i< d+2; ++i) {\\n\"},{\"type\":1,\"output\":\" | ~^~~~~\\n\"},{\"type\":1,\"output\":\"include/lp_oracles/solve_lp.h:206:19: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 206 | for(j=0; j >, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base >, Eigen::Matrix, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl >, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product >, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"include/lp_oracles/solve_lp.h:289:23: required from 'Point PointInIntersection(MT, MT, Point, bool&) [with VT = Eigen::Matrix; MT = Eigen::Matrix; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:128:32: required from 'bool IntersectionOfVpoly::is_feasible() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:352:35: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"In file included from include/cartesian_geom/cartesian_kernel.h:25,\\n\"},{\"type\":1,\"output\":\" from include/volume/volume_sequence_of_balls.hpp:24,\\n\"},{\"type\":1,\"output\":\" from sample_points.cpp:18:\\n\"},{\"type\":1,\"output\":\"include/cartesian_geom/point.h: In instantiation of 'bool point::operator==(point&) const [with K = Cartesian]':\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:154:22: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:353:47: required from here\\n\"},{\"type\":1,\"output\":\"include/cartesian_geom/point.h:157:21: warning: comparison of integer expressions of different signedness: 'int' and 'const unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 157 | for (i=0 ; i >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Inverse.h:69:7: required from 'class Eigen::InverseImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Inverse.h:43:7: required from 'class Eigen::Inverse >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:22: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:353:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, Eigen::Matrix, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:204:15: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:353:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:208:20: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:353:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:208:20: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:353:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"In file included from sample_points.cpp:20:\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp: In instantiation of 'void uniform_sampling_boundary(PointList&, Polytope&, RandomNumberGenerator&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with WalkTypePolicy = BCDHRWalk; PointList = std::__cxx11::list > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]':\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:29:50: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:368:33: required from here\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:129:18: warning: unused variable 'n' [-Wunused-variable]\\n\"},{\"type\":1,\"output\":\" 129 | unsigned int n = rnum / 2;\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp: In instantiation of 'void uniform_sampling_boundary(PointList&, Polytope&, RandomNumberGenerator&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with WalkTypePolicy = BRDHRWalk; PointList = std::__cxx11::list > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]':\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:32:50: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:368:33: required from here\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:129:18: warning: unused variable 'n' [-Wunused-variable]\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp: In instantiation of 'void uniform_sampling_boundary(PointList&, Polytope&, RandomNumberGenerator&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with WalkTypePolicy = BCDHRWalk; PointList = std::__cxx11::list > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]':\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:29:50: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:373:33: required from here\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:129:18: warning: unused variable 'n' [-Wunused-variable]\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp: In instantiation of 'void uniform_sampling_boundary(PointList&, Polytope&, RandomNumberGenerator&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with WalkTypePolicy = BRDHRWalk; PointList = std::__cxx11::list > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]':\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:32:50: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:373:33: required from here\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:129:18: warning: unused variable 'n' [-Wunused-variable]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp: In instantiation of 'void uniform_sampling_boundary(PointList&, Polytope&, RandomNumberGenerator&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with WalkTypePolicy = BCDHRWalk; PointList = std::__cxx11::list > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]':\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:29:50: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = Zonotope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:378:33: required from here\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:129:18: warning: unused variable 'n' [-Wunused-variable]\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp: In instantiation of 'void uniform_sampling_boundary(PointList&, Polytope&, RandomNumberGenerator&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with WalkTypePolicy = BRDHRWalk; PointList = std::__cxx11::list > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]':\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:32:50: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = Zonotope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:378:33: required from here\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:129:18: warning: unused variable 'n' [-Wunused-variable]\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp: In instantiation of 'void uniform_sampling_boundary(PointList&, Polytope&, RandomNumberGenerator&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with WalkTypePolicy = BCDHRWalk; PointList = std::__cxx11::list > >; Polytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]':\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:29:50: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:383:33: required from here\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:129:18: warning: unused variable 'n' [-Wunused-variable]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp: In instantiation of 'void uniform_sampling_boundary(PointList&, Polytope&, RandomNumberGenerator&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with WalkTypePolicy = BRDHRWalk; PointList = std::__cxx11::list > >; Polytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]':\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:32:50: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:383:33: required from here\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:129:18: warning: unused variable 'n' [-Wunused-variable]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:40: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, 1, -1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::norm() const [with Derived = Eigen::Block, 1, -1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:480:37: required from 'void HPolytope::normalize() [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:299:25: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:433:34: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:683:29: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, -1, -1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:689:32: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:689:60: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Diagonal.h:63:53: required from 'class Eigen::Diagonal, const Eigen::Matrix >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:697:61: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, -1, 1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:757:62: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/VectorBlock.h:56:47: required from 'class Eigen::VectorBlock, -1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:769:65: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:40: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Matrix; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::norm() const [with Derived = Eigen::Matrix; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:205:25: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:353:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp: In instantiation of 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = HPolytope > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = HPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:368:33: required from here\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:253:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 253 | while (it < 50*n)\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:268:20: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 268 | if (it == 50*n){\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~~\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp: In instantiation of 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:373:33: required from here\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:253:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 253 | while (it < 50*n)\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:268:20: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 268 | if (it == 50*n){\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~~\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp: In instantiation of 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = Zonotope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:378:33: required from here\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:253:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 253 | while (it < 50*n)\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:268:20: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 268 | if (it == 50*n){\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~~\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp: In instantiation of 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; Polytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:383:33: required from here\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:253:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 253 | while (it < 50*n)\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:268:20: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 268 | if (it == 50*n){\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:251:39: required from 'static void Eigen::internal::generic_product_impl::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::Block, 1, -1, false>; Rhs = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:124:75: required from 'Eigen::internal::product_evaluator, ProductTag, LhsShape, RhsShape>::product_evaluator(const XprType&) [with Lhs = Eigen::Block, 1, -1, false>; Rhs = Eigen::Matrix; int Options = 0; int ProductTag = 6; LhsShape = Eigen::DenseShape; RhsShape = Eigen::DenseShape; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Matrix; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Block, 1, -1, false>; XprType = Eigen::Product, 1, -1, false>, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:35:90: required from 'Eigen::internal::evaluator >::evaluator(const XprType&) [with Lhs = Eigen::Block, 1, -1, false>; Rhs = Eigen::Matrix; int Options = 0; XprType = Eigen::Product, 1, -1, false>, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:132:22: required from 'Eigen::internal::dense_product_base::operator const Scalar() const [with Lhs = Eigen::Block, 1, -1, false>; Rhs = Eigen::Matrix; int Option = 0; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:219:25: required from 'int HPolytope::is_in(const Point&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:296:25: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, 1, -1, false> >, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, 1, -1, false> >, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:251:54: required from 'static void Eigen::internal::generic_product_impl::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::Block, 1, -1, false>; Rhs = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:124:75: required from 'Eigen::internal::product_evaluator, ProductTag, LhsShape, RhsShape>::product_evaluator(const XprType&) [with Lhs = Eigen::Block, 1, -1, false>; Rhs = Eigen::Matrix; int Options = 0; int ProductTag = 6; LhsShape = Eigen::DenseShape; RhsShape = Eigen::DenseShape; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Matrix; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Block, 1, -1, false>; XprType = Eigen::Product, 1, -1, false>, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:35:90: required from 'Eigen::internal::evaluator >::evaluator(const XprType&) [with Lhs = Eigen::Block, 1, -1, false>; Rhs = Eigen::Matrix; int Options = 0; XprType = Eigen::Product, 1, -1, false>, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:132:22: required from 'Eigen::internal::dense_product_base::operator const Scalar() const [with Lhs = Eigen::Block, 1, -1, false>; Rhs = Eigen::Matrix; int Option = 0; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:219:25: required from 'int HPolytope::is_in(const Point&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:296:25: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:445:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:522:41: required from 'struct Eigen::internal::unary_evaluator, const Eigen::Block, 1, -1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Block, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, 1, -1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, 1, -1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:46: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, 1, -1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::norm() const [with Derived = Eigen::Block, 1, -1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:480:37: required from 'void HPolytope::normalize() [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:299:25: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/TriangularMatrix.h:174:44: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:232:121: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/misc/RealSvd2x2.h:25:26: required from 'void Eigen::internal::real_2x2_jacobi_svd(const MatrixType&, Index, Index, Eigen::JacobiRotation*, Eigen::JacobiRotation*) [with MatrixType = Eigen::Matrix; RealScalar = double; Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:722:42: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, 1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:414:34: required from 'std::pair HPolytope::line_intersect_coord(const Point&, const Point&, const unsigned int&, const unsigned int&, VT&) const [with Point = point >; typename Point::FT = double; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/boundary_cdhr_walk.hpp:50:47: required from 'void BCDHRWalk::Walk::apply(const BallPolytope&, Point&, Point&, const unsigned int&, RandomNumberGenerator&) [with BallPolytope = HPolytope > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:156:32: required from 'static void BoundaryRandomPointGenerator::apply(const Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = HPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BCDHRWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:125:40: required from 'void uniform_sampling_boundary(PointList&, Polytope&, RandomNumberGenerator&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with WalkTypePolicy = BCDHRWalk; PointList = std::__cxx11::list > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:29:50: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:368:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, true>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, true>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, true>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, -1, 1, true>, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:415:26: required from 'std::pair HPolytope::line_intersect_coord(const Point&, const Point&, const unsigned int&, const unsigned int&, VT&) const [with Point = point >; typename Point::FT = double; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/boundary_cdhr_walk.hpp:50:47: required from 'void BCDHRWalk::Walk::apply(const BallPolytope&, Point&, Point&, const unsigned int&, RandomNumberGenerator&) [with BallPolytope = HPolytope > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:156:32: required from 'static void BoundaryRandomPointGenerator::apply(const Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = HPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BCDHRWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:125:40: required from 'void uniform_sampling_boundary(PointList&, Polytope&, RandomNumberGenerator&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with WalkTypePolicy = BCDHRWalk; PointList = std::__cxx11::list > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:29:50: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:368:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h: In instantiation of 'std::pair HPolytope::line_intersect(const Point&, const Point&, VT&, VT&, const NT&, bool) const [with Point = point >; typename Point::FT = double; VT = Eigen::Matrix; NT = double]':\\n\"},{\"type\":1,\"output\":\"include/random_walks/boundary_rdhr_walk.hpp:48:59: required from 'void BRDHRWalk::Walk::apply(const BallPolytope&, Point&, Point&, const unsigned int&, RandomNumberGenerator&) [with BallPolytope = HPolytope > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:156:32: required from 'static void BoundaryRandomPointGenerator::apply(const Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = HPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BRDHRWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:125:40: required from 'void uniform_sampling_boundary(PointList&, Polytope&, RandomNumberGenerator&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with WalkTypePolicy = BRDHRWalk; PointList = std::__cxx11::list > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:32:50: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:368:33: required from here\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:313:12: warning: unused variable 'mult' [-Wunused-variable]\\n\"},{\"type\":1,\"output\":\" 313 | NT mult;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:315:22: warning: unused variable 'j' [-Wunused-variable]\\n\"},{\"type\":1,\"output\":\" 315 | unsigned int j;\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix, const Eigen::Product, Eigen::Matrix, 0> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix, const Eigen::Product, Eigen::Matrix, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix, const Eigen::Product, Eigen::Matrix, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Matrix, const Eigen::Product, Eigen::Matrix, 0>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Product, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:240:31: required from 'std::pair HPolytope::line_intersect(const Point&, const Point&) const [with Point = point >; typename Point::FT = double]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/gaussian_rdhr_walk.hpp:102:57: required from 'void GaussianRDHRWalk::Walk::apply(const BallPolytope&, Point&, const NT&, const unsigned int&, RandomNumberGenerator&) [with BallPolytope = HPolytope > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:96:32: required from 'static void GaussianRandomPointGenerator::apply(const Polytope&, Point&, const NT&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = HPolytope > >; Point = point >; NT = double; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = GaussianRDHRWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:167:32: required from 'void gaussian_sampling(PointList&, Polytope&, RandomNumberGenerator&, const unsigned int&, const unsigned int&, const NT&, const Point&, const unsigned int&) [with WalkTypePolicy = GaussianRDHRWalk; PointList = std::__cxx11::list > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:45:48: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:368:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h: In instantiation of 'std::pair HPolytope::line_intersect(const Point&, const Point&) const [with Point = point >; typename Point::FT = double]':\\n\"},{\"type\":1,\"output\":\"include/random_walks/gaussian_rdhr_walk.hpp:102:57: required from 'void GaussianRDHRWalk::Walk::apply(const BallPolytope&, Point&, const NT&, const unsigned int&, RandomNumberGenerator&) [with BallPolytope = HPolytope > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:96:32: required from 'static void GaussianRandomPointGenerator::apply(const Polytope&, Point&, const NT&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = HPolytope > >; Point = point >; NT = double; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = GaussianRDHRWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:167:32: required from 'void gaussian_sampling(PointList&, Polytope&, RandomNumberGenerator&, const unsigned int&, const unsigned int&, const NT&, const Point&, const unsigned int&) [with WalkTypePolicy = GaussianRDHRWalk; PointList = std::__cxx11::list > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:45:48: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:368:33: required from here\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:236:22: warning: unused variable 'j' [-Wunused-variable]\\n\"},{\"type\":1,\"output\":\" 236 | unsigned int j;\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp: In instantiation of 'void BilliardWalk::Walk::initialize(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = HPolytope > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:231:19: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&, const BilliardWalk::parameters&) [with GenericPolytope = HPolytope > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:36:14: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = HPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:368:33: required from here\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:313:19: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 313 | while (it <= 50*n)\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:321:26: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 321 | }else if (it == 50*n) {\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:488:39: required from 'void HPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = HPolytope > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = HPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:368:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, 1, -1, false>, const Eigen::Block, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, 1, -1, false>, const Eigen::Block, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, 1, -1, false>, const Eigen::Block, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, 1, -1, false>, const Eigen::Block, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, 1, -1, false>, const Eigen::Block, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:58:39: required from 'static NT compute_diameter >::compute(const VPolytope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:230:51: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&, const BilliardWalk::parameters&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:36:14: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:373:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp: In instantiation of 'void BilliardWalk::Walk::initialize(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:231:19: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&, const BilliardWalk::parameters&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:36:14: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:373:33: required from here\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:313:19: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 313 | while (it <= 50*n)\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~~\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:321:26: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 321 | }else if (it == 50*n) {\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, Eigen::CwiseNullaryOp, Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, Eigen::CwiseNullaryOp, Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::CwiseNullaryOp, Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Solve.h:86:7: required from 'class Eigen::SolveImpl >, Eigen::CwiseNullaryOp, Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Solve.h:62:7: required from 'class Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:49: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:373:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:435:46: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:373:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp: In instantiation of 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:230:51: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&, const BilliardWalk::parameters&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:36:14: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = Zonotope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:378:33: required from here\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:84:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 84 | for (int i = 0; i < P.dimension(); ++i) {\\n\"},{\"type\":1,\"output\":\" | ~~^~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:91:26: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:230:51: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&, const BilliardWalk::parameters&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:36:14: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = Zonotope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:378:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:92:38: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:230:51: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&, const BilliardWalk::parameters&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:36:14: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = Zonotope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:378:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, Eigen::Transpose >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, Eigen::Transpose >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::Transpose >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base >, Eigen::Transpose >, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl >, Eigen::Transpose >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product >, Eigen::Transpose >, 0>'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:92:41: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:230:51: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&, const BilliardWalk::parameters&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:36:14: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = Zonotope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:378:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp: In instantiation of 'void BilliardWalk::Walk::initialize(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:231:19: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&, const BilliardWalk::parameters&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:36:14: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = Zonotope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:378:33: required from here\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:313:19: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 313 | while (it <= 50*n)\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~~\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:321:26: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 321 | }else if (it == 50*n) {\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase > > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase > > >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ReturnByValue.h:50:34: required from 'class Eigen::ReturnByValue > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/misc/Kernel.h:37:46: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:399:39: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = Zonotope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:378:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:403:14: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = Zonotope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:378:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp: In instantiation of 'void BilliardWalk::Walk::initialize(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; Polytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:231:19: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&, const BilliardWalk::parameters&) [with GenericPolytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; Polytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:36:14: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:383:33: required from here\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:313:19: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 313 | while (it <= 50*n)\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:321:26: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 321 | }else if (it == 50*n) {\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:327:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:662:21: required from 'Derived& Eigen::PlainObjectBase::setOnes(Eigen::Index, Eigen::Index) [with Derived = Eigen::Matrix; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:420:22: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Diagonal.h:63:53: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Diagonal.h:63:53: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:520:87: required from 'Eigen::ComputationInfo Eigen::internal::computeFromTridiagonal_impl(DiagType&, SubDiagType&, Eigen::Index, bool, MatrixType&) [with MatrixType = Eigen::Matrix; DiagType = Eigen::Matrix; SubDiagType = Eigen::Matrix; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:439:49: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, true>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, 2, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, 2, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, 2, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, 2, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, 2, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, 2, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/misc/RealSvd2x2.h:46:19: required from 'void Eigen::internal::real_2x2_jacobi_svd(const MatrixType&, Index, Index, Eigen::JacobiRotation*, Eigen::JacobiRotation*) [with MatrixType = Eigen::Matrix; RealScalar = double; Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:722:42: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:174:81: required from 'class Eigen::DenseBase, 1, 2, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, 2, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, 2, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: required from 'class Eigen::MapBase, 1, 2, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 1, 2, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/misc/RealSvd2x2.h:46:19: required from 'void Eigen::internal::real_2x2_jacobi_svd(const MatrixType&, Index, Index, Eigen::JacobiRotation*, Eigen::JacobiRotation*) [with MatrixType = Eigen::Matrix; RealScalar = double; Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:722:42: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:454:5: required from 'void Eigen::internal::apply_rotation_in_the_plane(Eigen::DenseBase&, Eigen::DenseBase&, const Eigen::JacobiRotation&) [with VectorX = Eigen::Block, -1, 1, true>; VectorY = Eigen::Block, -1, 1, true>; OtherScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:296:40: required from 'void Eigen::MatrixBase::applyOnTheRight(Eigen::Index, Eigen::Index, const Eigen::JacobiRotation&) [with OtherScalar = double; Derived = Eigen::Matrix; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:726:53: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:71:51: required from 'class Eigen::internal::visitor_evaluator, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:110:17: required from 'void Eigen::DenseBase::visit(Visitor&) const [with Visitor = Eigen::internal::max_coeff_visitor, -1, 1, false> >; Derived = Eigen::Block, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:266:14: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::maxCoeff(IndexType*) const [with IndexType = long long int; Derived = Eigen::Block, -1, 1, false>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:769:88: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"include/cartesian_geom/point.h:135:30: required from 'point point::operator*(FT) const [with K = Cartesian; FT = double]'\\n\"},{\"type\":1,\"output\":\"include/cartesian_geom/point.h:201:14: required from 'point operator*(const typename K::FT&, const point&) [with K = Cartesian; typename K::FT = double]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/boundary_rdhr_walk.hpp:52:35: required from 'void BRDHRWalk::Walk::apply(const BallPolytope&, Point&, Point&, const unsigned int&, RandomNumberGenerator&) [with BallPolytope = HPolytope > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:156:32: required from 'static void BoundaryRandomPointGenerator::apply(const Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = HPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BRDHRWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:125:40: required from 'void uniform_sampling_boundary(PointList&, Polytope&, RandomNumberGenerator&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with WalkTypePolicy = BRDHRWalk; PointList = std::__cxx11::list > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:32:50: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:368:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/lp_oracles/zpolyoracles.h: In instantiation of 'std::pair<_FIter, _FIter> intersect_line_zono(const MT&, const Point&, const Point&, NT*, int*) [with NT = double; MT = Eigen::Matrix; Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:296:35: required from 'std::pair Zonotope::line_intersect(const Point&, const Point&, const VT&, const VT&, const NT&) const [with Point = point >; typename Point::FT = double; VT = Eigen::Matrix; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/boundary_rdhr_walk.hpp:48:59: required from 'void BRDHRWalk::Walk::apply(const BallPolytope&, Point&, Point&, const unsigned int&, RandomNumberGenerator&) [with BallPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:156:32: required from 'static void BoundaryRandomPointGenerator::apply(const Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BRDHRWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:125:40: required from 'void uniform_sampling_boundary(PointList&, Polytope&, RandomNumberGenerator&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with WalkTypePolicy = BRDHRWalk; PointList = std::__cxx11::list > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:32:50: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = Zonotope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:378:33: required from here\\n\"},{\"type\":1,\"output\":\"include/lp_oracles/zpolyoracles.h:140:8: warning: unused variable 'res' [-Wunused-variable]\\n\"},{\"type\":1,\"output\":\" 140 | NT res;\\n\"},{\"type\":1,\"output\":\" | ^~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:270:41: required from 'struct Eigen::internal::unary_evaluator, 1, -1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, 1, -1, false> >, const Eigen::Matrix >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:251:64: required from 'static void Eigen::internal::generic_product_impl::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::Block, 1, -1, false>; Rhs = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:124:75: required from 'Eigen::internal::product_evaluator, ProductTag, LhsShape, RhsShape>::product_evaluator(const XprType&) [with Lhs = Eigen::Block, 1, -1, false>; Rhs = Eigen::Matrix; int Options = 0; int ProductTag = 6; LhsShape = Eigen::DenseShape; RhsShape = Eigen::DenseShape; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Matrix; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Block, 1, -1, false>; XprType = Eigen::Product, 1, -1, false>, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:35:90: required from 'Eigen::internal::evaluator >::evaluator(const XprType&) [with Lhs = Eigen::Block, 1, -1, false>; Rhs = Eigen::Matrix; int Options = 0; XprType = Eigen::Product, 1, -1, false>, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:132:22: required from 'Eigen::internal::dense_product_base::operator const Scalar() const [with Lhs = Eigen::Block, 1, -1, false>; Rhs = Eigen::Matrix; int Option = 0; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:219:25: required from 'int HPolytope::is_in(const Point&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:296:25: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:368:46: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:368:35: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:520:87: required from 'Eigen::ComputationInfo Eigen::internal::computeFromTridiagonal_impl(DiagType&, SubDiagType&, Eigen::Index, bool, MatrixType&) [with MatrixType = Eigen::Matrix; DiagType = Eigen::Matrix; SubDiagType = Eigen::Matrix; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:439:49: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:163:27: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:165:25: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:166:55: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, false> >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, false> >, 0, 5>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, false> >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, false> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:166:34: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:126:41: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:128:25: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:129:29: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0, 5>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:129:41: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/TriangularMatrix.h:174:44: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:92:96: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 2>, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 2>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 2>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, 2>, Eigen::Matrix, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, 2>, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, 2>, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:94:66: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/TriangularMatrix.h:174:44: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 1>, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, 1>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, 1>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base >, 1>, Eigen::Matrix, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl >, 1>, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product >, 1>, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:95:66: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 5>, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, 5>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, 5>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, 5>, Eigen::Matrix, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, false>, 5>, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false>, 5>, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:96:22: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:747:33: required from 'static Derived& Eigen::internal::setIdentity_impl::run(Derived&) [with Derived = Eigen::Matrix; bool Big = false]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:776:50: required from 'Derived& Eigen::MatrixBase::setIdentity() [with Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:793:21: required from 'Derived& Eigen::MatrixBase::setIdentity(Eigen::Index, Eigen::Index) [with Derived = Eigen::Matrix; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:690:45: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, 2, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:454:5: required from 'void Eigen::internal::apply_rotation_in_the_plane(Eigen::DenseBase&, Eigen::DenseBase&, const Eigen::JacobiRotation&) [with VectorX = Eigen::Block, 1, 2, false>; VectorY = Eigen::Block, 1, 2, false>; OtherScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:281:40: required from 'void Eigen::MatrixBase::applyOnTheLeft(Eigen::Index, Eigen::Index, const Eigen::JacobiRotation&) [with OtherScalar = double; Derived = Eigen::Matrix; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/misc/RealSvd2x2.h:46:19: required from 'void Eigen::internal::real_2x2_jacobi_svd(const MatrixType&, Index, Index, Eigen::JacobiRotation*, Eigen::JacobiRotation*) [with MatrixType = Eigen::Matrix; RealScalar = double; Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:722:42: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseBinaryOp, const Eigen::Block, 1, -1, false>, const Eigen::Block, 1, -1, false> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseBinaryOp, const Eigen::Block, 1, -1, false>, const Eigen::Block, 1, -1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseBinaryOp, const Eigen::Block, 1, -1, false>, const Eigen::Block, 1, -1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::CwiseBinaryOp, const Eigen::Block, 1, -1, false>, const Eigen::Block, 1, -1, false> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::Block, 1, -1, false>, const Eigen::Block, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:40: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:58:55: required from 'static NT compute_diameter >::compute(const VPolytope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:230:51: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&, const BilliardWalk::parameters&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:36:14: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:373:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:50:23: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:435:18: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:373:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose >, const Eigen::Block, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose >, const Eigen::Block, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose >, const Eigen::Block, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose >, const Eigen::Block, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose >, const Eigen::Block, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:50:56: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:435:18: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:373:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:40: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:436:20: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:373:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Product >, Eigen::Matrix, 0> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Product >, Eigen::Matrix, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Product >, Eigen::Matrix, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Product >, Eigen::Matrix, 0>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Product >, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:40: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:96:52: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:230:51: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&, const BilliardWalk::parameters&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:36:14: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = Zonotope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:378:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Matrix, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:44: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:401:35: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = Zonotope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:378:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseUnaryOp, const Eigen::Matrix >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_max_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Matrix > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_max_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Matrix >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:438:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::maxCoeff() const [with Derived = Eigen::CwiseUnaryOp, const Eigen::Matrix >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:433:45: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, -1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, -1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, true>, -1, 1, false>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:454:5: required from 'void Eigen::internal::apply_rotation_in_the_plane(Eigen::DenseBase&, Eigen::DenseBase&, const Eigen::JacobiRotation&) [with VectorX = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; VectorY = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; OtherScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:296:40: required from 'void Eigen::MatrixBase::applyOnTheRight(Eigen::Index, Eigen::Index, const Eigen::JacobiRotation&) [with OtherScalar = double; Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:862:24: required from 'void Eigen::internal::tridiagonal_qr_step(RealScalar*, RealScalar*, Index, Index, Scalar*, Index) [with int StorageOrder = 0; RealScalar = double; Scalar = double; Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:520:87: required from 'Eigen::ComputationInfo Eigen::internal::computeFromTridiagonal_impl(DiagType&, SubDiagType&, Eigen::Index, bool, MatrixType&) [with MatrixType = Eigen::Matrix; DiagType = Eigen::Matrix; SubDiagType = Eigen::Matrix; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:439:49: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:126:38: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:126:41: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0, 5>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:129:41: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, true>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false>, -1, 1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, 1, true>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false>, -1, 1, true>, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:63:90: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:63:57: required from 'void Eigen::internal::make_block_householder_triangular_factor(TriangularFactorType&, const VectorsType&, const CoeffsType&) [with TriangularFactorType = Eigen::Matrix; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false>, -1, -1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:64:57: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:67:61: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseUnaryOp, const Eigen::Matrix >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Matrix > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Matrix >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseUnaryOp, const Eigen::Matrix >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:46: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Matrix; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::norm() const [with Derived = Eigen::Matrix; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:205:25: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:353:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, true>, -1, 1, false>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, 1, true>, -1, 1, false>, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:91:22: required from 'void Eigen::MatrixBase::makeHouseholder(EssentialPart&, Scalar&, RealScalar&) const [with EssentialPart = Eigen::VectorBlock, -1, 1, true>, -1, 1, false>, -1>; Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; Scalar = double; RealScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:45:18: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:44: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block, -1, 1, false>; U = Eigen::Block, -1, 1, true>, -1, 1, false>; bool NeedToTranspose = false; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false>, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, false>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, 1, false>, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointRank2Update.h:33:74: required from 'static void Eigen::internal::selfadjoint_rank2_update_selector::run(Scalar*, Index, const UType&, const VType&, const Scalar&) [with Scalar = double; Index = long long int; UType = Eigen::Block, -1, 1, true>, -1, 1, false>; VType = Eigen::Block, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointRank2Update.h:86:10: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointRank2Update.h:34:60: required from 'static void Eigen::internal::selfadjoint_rank2_update_selector::run(Scalar*, Index, const UType&, const VType&, const Scalar&) [with Scalar = double; Index = long long int; UType = Eigen::Block, -1, 1, true>, -1, 1, false>; VType = Eigen::Block, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointRank2Update.h:86:10: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointRank2Update.h:34:23: required from 'static void Eigen::internal::selfadjoint_rank2_update_selector::run(Scalar*, Index, const UType&, const VType&, const Scalar&) [with Scalar = double; Index = long long int; UType = Eigen::Block, -1, 1, true>, -1, 1, false>; VType = Eigen::Block, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointRank2Update.h:86:10: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, -1, 1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:40: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, -1, 1, true>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:71:51: required from 'class Eigen::internal::visitor_evaluator, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:110:17: required from 'void Eigen::DenseBase::visit(Visitor&) const [with Visitor = Eigen::internal::max_coeff_visitor, 1, -1, false> >; Derived = Eigen::Block, 1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:266:14: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::maxCoeff(IndexType*) const [with IndexType = long long int; Derived = Eigen::Block, 1, -1, false>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:519:90: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:475:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:40: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Inverse.h:69:7: required from 'class Eigen::InverseImpl >, Eigen::SolverStorage>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Inverse.h:43:7: required from 'class Eigen::Inverse > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/InverseImpl.h:28:43: required from 'static void Eigen::internal::compute_inverse::run(const MatrixType&, ResultType&) [with MatrixType = Eigen::Matrix; ResultType = Eigen::Matrix; int Size = -1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/InverseImpl.h:310:60: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:353:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Block, -1, 1, true>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, -1, 1, true>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Matrix; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Functor = add_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Matrix; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Functor = Eigen::internal::add_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:414:26: required from 'std::pair HPolytope::line_intersect_coord(const Point&, const Point&, const unsigned int&, const unsigned int&, VT&) const [with Point = point >; typename Point::FT = double; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/boundary_cdhr_walk.hpp:50:47: required from 'void BCDHRWalk::Walk::apply(const BallPolytope&, Point&, Point&, const unsigned int&, RandomNumberGenerator&) [with BallPolytope = HPolytope > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:156:32: required from 'static void BoundaryRandomPointGenerator::apply(const Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = HPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BCDHRWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:125:40: required from 'void uniform_sampling_boundary(PointList&, Polytope&, RandomNumberGenerator&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with WalkTypePolicy = BCDHRWalk; PointList = std::__cxx11::list > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:29:50: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:368:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, Eigen::internal::member_sum, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix >, Eigen::internal::member_sum, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix >, Eigen::internal::member_sum, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/VectorwiseOp.h:56:7: required from 'class Eigen::PartialReduxExpr, const Eigen::Matrix >, Eigen::internal::member_sum, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/FullPivLU.h:497:44: required from 'void Eigen::FullPivLU::computeInPlace() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/FullPivLU.h:121:7: required from 'Eigen::FullPivLU& Eigen::FullPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/FullPivLU.h:472:10: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:399:30: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = Zonotope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:378:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/FullPivLU.h:522:35: required from 'void Eigen::FullPivLU::computeInPlace() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/FullPivLU.h:121:7: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:399:30: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = Zonotope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:378:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false>, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, false>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:399:30: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = Zonotope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:378:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, Eigen::Block, 1, -1, false>, 1, -1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false>, Eigen::Block, 1, -1, false>, 1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false>, Eigen::Block, 1, -1, false>, 1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, 1, true>, -1, 1, false>, Eigen::Block, 1, -1, false>, 1, -1, false>, 0, 5>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, 1, true>, -1, 1, false>, Eigen::Block, 1, -1, false>, 1, -1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, 1, true>, -1, 1, false>, Eigen::Block, 1, -1, false>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/FullPivLU.h:563:85: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:399:30: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = Zonotope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:378:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:40: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:76:71: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, true>, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:141:7: required from 'Eigen::DenseCoeffsBase::CoeffReturnType Eigen::DenseCoeffsBase::coeff(Eigen::Index) const [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; CoeffReturnType = const double&; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:77:20: required from 'void Eigen::MatrixBase::makeHouseholder(EssentialPart&, Scalar&, RealScalar&) const [with EssentialPart = Eigen::VectorBlock, -1, 1, true>, -1, 1, false>, -1>; Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; Scalar = double; RealScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:45:18: required from 'void Eigen::MatrixBase::makeHouseholderInPlace(Scalar&, RealScalar&) [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; Scalar = double; RealScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:361:59: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, CoeffVectorType&) [with MatrixType = Eigen::Matrix; CoeffVectorType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:445:31: required from 'static void Eigen::internal::tridiagonalization_inplace_selector::run(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix; MatrixType = Eigen::Matrix; int Size = -1; bool IsComplex = false]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:961:41: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:369:102: required from 'struct Eigen::internal::plain_object_eval, -1, -1, false>, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:369:45: required from 'struct Eigen::internal::generic_product_impl, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Src = Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/NoAlias.h:42:31: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:369:102: required from 'struct Eigen::internal::plain_object_eval, -1, -1, false>, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:369:45: required from 'struct Eigen::internal::generic_product_impl, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Src = Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/NoAlias.h:42:31: required from 'ExpressionType& Eigen::NoAlias::operator=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>; ExpressionType = Eigen::Map, 0, Eigen::Stride<0, 0> >; StorageBase = Eigen::MatrixBase]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:163:19: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:369:102: required from 'struct Eigen::internal::plain_object_eval, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:370:45: required from 'struct Eigen::internal::generic_product_impl, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Src = Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/NoAlias.h:42:31: required from 'ExpressionType& Eigen::NoAlias::operator=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>; ExpressionType = Eigen::Map, 0, Eigen::Stride<0, 0> >; StorageBase = Eigen::MatrixBase]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:163:19: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:141:7: required from 'Eigen::DenseCoeffsBase::CoeffReturnType Eigen::DenseCoeffsBase::coeff(Eigen::Index) const [with Derived = Eigen::Block, -1, 1, false>; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:181:19: required from 'Eigen::DenseCoeffsBase::CoeffReturnType Eigen::DenseCoeffsBase::operator()(Eigen::Index) const [with Derived = Eigen::Block, -1, 1, false>; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:63:53: required from 'void Eigen::internal::make_block_householder_triangular_factor(TriangularFactorType&, const VectorsType&, const CoeffsType&) [with TriangularFactorType = Eigen::Matrix; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false>, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 1, -1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, false>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 1, -1, false>, 1, -1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:399:12: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = Zonotope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:378:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:399:12: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = Zonotope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:378:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, 1, -1, false>, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, 1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, 1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, 1, -1, false>, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, 1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/FullPivLU.h:696:90: required from 'void Eigen::internal::kernel_retval >::evalTo(Dest&) const [with Dest = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/misc/Kernel.h:56:71: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:399:12: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = Zonotope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:378:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::Matrix; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_max_op; Derived = Eigen::internal::redux_evaluator >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_max_op; Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:438:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::maxCoeff() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:509:85: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:475:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Matrix; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Matrix; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:689:18: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:499:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'struct Eigen::internal::general_matrix_vector_product, 1, false, double, Eigen::internal::const_blas_data_mapper, false, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:339:132: required from 'static void Eigen::internal::gemv_dense_selector<2, 1, true>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; Dest = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:383:34: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Matrix; Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; Derived = Eigen::internal::generic_product_impl >, Eigen::Matrix, Eigen::DenseShape, Eigen::DenseShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: required from 'static void Eigen::internal::generic_product_impl_base::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; Derived = Eigen::internal::generic_product_impl >, Eigen::Matrix, Eigen::DenseShape, Eigen::DenseShape, 7>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/lp_oracles/solve_lp.h:289:7: required from 'Point PointInIntersection(MT, MT, Point, bool&) [with VT = Eigen::Matrix; MT = Eigen::Matrix; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:128:32: required from 'bool IntersectionOfVpoly::is_feasible() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:352:35: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:351:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 351 | typedef typename conditional::type LhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:352:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 352 | typedef typename conditional::type RhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:353:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 353 | typedef typename conditional::type ResPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/lp_oracles/solve_lp.h:289:7: required from 'Point PointInIntersection(MT, MT, Point, bool&) [with VT = Eigen::Matrix; MT = Eigen::Matrix; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:128:32: required from 'bool IntersectionOfVpoly::is_feasible() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:352:35: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseUnaryOp, const Eigen::Matrix >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Matrix > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Matrix >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseUnaryOp, const Eigen::Matrix >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:46: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Matrix; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::norm() const [with Derived = Eigen::Matrix; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:436:20: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:373:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseUnaryOp, const Eigen::Product >, Eigen::Matrix, 0> >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Product >, Eigen::Matrix, 0> > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Product >, Eigen::Matrix, 0> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseUnaryOp, const Eigen::Product >, Eigen::Matrix, 0> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:46: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Product >, Eigen::Matrix, 0>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::norm() const [with Derived = Eigen::Product >, Eigen::Matrix, 0>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:96:52: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:230:51: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&, const BilliardWalk::parameters&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:36:14: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = Zonotope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:378:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Matrix >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Matrix, const Eigen::Matrix > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Matrix >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Matrix >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:51: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Matrix; U = Eigen::Matrix; bool NeedToTranspose = false; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: required from 'typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType Eigen::MatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Matrix; Derived = Eigen::Matrix; typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType = double; typename Eigen::internal::traits::Scalar = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:401:35: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = Zonotope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:378:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'struct Eigen::internal::general_matrix_vector_product, 0, false, double, Eigen::internal::const_blas_data_mapper, false, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:244:134: required from 'static void Eigen::internal::gemv_dense_selector<2, 0, true>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Matrix; Rhs = Eigen::Matrix; Dest = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:383:34: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::Matrix; Rhs = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Matrix; Lhs = Eigen::Matrix; Rhs = Eigen::Matrix; Derived = Eigen::internal::generic_product_impl, Eigen::Matrix, Eigen::DenseShape, Eigen::DenseShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: required from 'static void Eigen::internal::generic_product_impl_base::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::Matrix; Rhs = Eigen::Matrix; Derived = Eigen::internal::generic_product_impl, Eigen::Matrix, Eigen::DenseShape, Eigen::DenseShape, 7>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; Lhs = Eigen::Matrix; Rhs = Eigen::Matrix; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:818:25: required from 'void Eigen::PlainObjectBase::_init1(const Eigen::DenseBase&) [with T = Eigen::Product, Eigen::Matrix, 0>; OtherDerived = Eigen::Product, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:294:31: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Product, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:796:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Matrix, 0>; Func = sub_assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::Product, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:447:11: required from 'void HPolytope::shift(const VT&) [with Point = point >; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:302:25: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:75:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 75 | typedef typename conditional::type LhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:76:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 76 | typedef typename conditional::type RhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:77:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 77 | typedef typename conditional::type ResPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 2, Eigen::Stride<0, 0> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 2, Eigen::Stride<0, 0> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 2, Eigen::Stride<0, 0> >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 2, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 2, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 2, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:818:25: required from 'void Eigen::PlainObjectBase::_init1(const Eigen::DenseBase&) [with T = Eigen::Product, Eigen::Matrix, 0>; OtherDerived = Eigen::Product, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:294:31: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Product, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:796:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Matrix, 0>; Func = sub_assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::Product, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:447:11: required from 'void HPolytope::shift(const VT&) [with Point = point >; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:302:25: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 2, Eigen::Stride<0, 0> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 2, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 2, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 2, Eigen::Stride<0, 0> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 2, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:287:40: required from 'static void Eigen::internal::gemv_dense_selector<2, 0, true>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Matrix; Rhs = Eigen::Matrix; Dest = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:383:34: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:818:25: required from 'void Eigen::PlainObjectBase::_init1(const Eigen::DenseBase&) [with T = Eigen::Product, Eigen::Matrix, 0>; OtherDerived = Eigen::Product, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:294:31: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Product, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:796:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Matrix, 0>; Func = sub_assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::Product, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:447:11: required from 'void HPolytope::shift(const VT&) [with Point = point >; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:302:25: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, true>, -1, 1, false>, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, 1, true>, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:522:41: required from 'struct Eigen::internal::unary_evaluator, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::Block, -1, -1, false>, -1, 1, true>; Functor = add_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::Block, -1, -1, false>, -1, 1, true>; Functor = Eigen::internal::add_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Src = Eigen::Block, -1, -1, false>, -1, 1, true>; Func = add_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Src = Eigen::Block, -1, -1, false>, -1, 1, true>; Func = add_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:177:18: required from 'Derived& Eigen::MatrixBase::operator+=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::Block, -1, -1, false>, -1, 1, true>; Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:164:9: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, -1, false>, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::Block, -1, -1, false>, 1, -1, false>; Functor = add_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::Block, -1, -1, false>, 1, -1, false>; Functor = Eigen::internal::add_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Src = Eigen::Block, -1, -1, false>, 1, -1, false>; Func = add_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Src = Eigen::Block, -1, -1, false>, 1, -1, false>; Func = add_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:177:18: required from 'Derived& Eigen::MatrixBase::operator+=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::Block, -1, -1, false>, 1, -1, false>; Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:127:9: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'static void Eigen::internal::general_matrix_vector_product::run(Index, Index, const LhsMapper&, const RhsMapper&, ResScalar*, Index, ResScalar) [with Index = long long int; LhsScalar = double; LhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateLhs = false; RhsScalar = double; RhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateRhs = false; int Version = 0; ResScalar = double]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:339:132: required from 'static void Eigen::internal::gemv_dense_selector<2, 1, true>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; Dest = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:383:34: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Matrix; Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; Derived = Eigen::internal::generic_product_impl >, Eigen::Matrix, Eigen::DenseShape, Eigen::DenseShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: required from 'static void Eigen::internal::generic_product_impl_base::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; Derived = Eigen::internal::generic_product_impl >, Eigen::Matrix, Eigen::DenseShape, Eigen::DenseShape, 7>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/lp_oracles/solve_lp.h:289:7: required from 'Point PointInIntersection(MT, MT, Point, bool&) [with VT = Eigen::Matrix; MT = Eigen::Matrix; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:128:32: required from 'bool IntersectionOfVpoly::is_feasible() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:352:35: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:385:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 385 | conj_helper pcj;\\n\"},{\"type\":1,\"output\":\" | ^~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:385:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, Eigen::Matrix, 1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, Eigen::Matrix, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::Matrix, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base >, Eigen::Matrix, 1, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl >, Eigen::Matrix, 1, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product >, Eigen::Matrix, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:436:50: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:78:8: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:230:51: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&, const BilliardWalk::parameters&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:36:14: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = Zonotope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:378:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:327:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Block, 1, -1, false>, 1, -1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:501:10: required from 'Derived& Eigen::DenseBase::setZero() [with Derived = Eigen::Block, 1, -1, false>, 1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/FullPivLU.h:675:37: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:399:12: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = Zonotope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:378:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:327:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Block, 1, 1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:501:10: required from 'Derived& Eigen::DenseBase::setZero() [with Derived = Eigen::Block, 1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/FullPivLU.h:697:98: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:399:12: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = Zonotope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:378:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'static void Eigen::internal::general_matrix_vector_product::run(Index, Index, const LhsMapper&, const RhsMapper&, ResScalar*, Index, RhsScalar) [with Index = long long int; LhsScalar = double; LhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateLhs = false; RhsScalar = double; RhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateRhs = false; int Version = 0; ResScalar = double]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:244:134: required from 'static void Eigen::internal::gemv_dense_selector<2, 0, true>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Matrix; Rhs = Eigen::Matrix; Dest = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:383:34: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::Matrix; Rhs = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Matrix; Lhs = Eigen::Matrix; Rhs = Eigen::Matrix; Derived = Eigen::internal::generic_product_impl, Eigen::Matrix, Eigen::DenseShape, Eigen::DenseShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: required from 'static void Eigen::internal::generic_product_impl_base::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::Matrix; Rhs = Eigen::Matrix; Derived = Eigen::internal::generic_product_impl, Eigen::Matrix, Eigen::DenseShape, Eigen::DenseShape, 7>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; Lhs = Eigen::Matrix; Rhs = Eigen::Matrix; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:818:25: required from 'void Eigen::PlainObjectBase::_init1(const Eigen::DenseBase&) [with T = Eigen::Product, Eigen::Matrix, 0>; OtherDerived = Eigen::Product, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:294:31: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Product, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:796:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Matrix, 0>; Func = sub_assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::Product, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:447:11: required from 'void HPolytope::shift(const VT&) [with Point = point >; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:302:25: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:112:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 112 | conj_helper pcj;\\n\"},{\"type\":1,\"output\":\" | ^~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:112:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, false>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:165:45: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:51: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block, -1, 1, false>; U = Eigen::Block, -1, 1, true>, -1, 1, false>; bool NeedToTranspose = false; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: required from 'typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType Eigen::MatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Block, -1, 1, true>, -1, 1, false>; Derived = Eigen::Block, -1, 1, false>; typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType = double; typename Eigen::internal::traits::Scalar = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:370:86: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true> >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Block, -1, 1, true> > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:46: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, -1, 1, true>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::norm() const [with Derived = Eigen::Block, -1, 1, true>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:505:52: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Block, -1, 1, true>, -1, 1, false> > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:46: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::norm() const [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:565:77: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix, 1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, Eigen::Matrix, 1, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, Eigen::Matrix, 1, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, Eigen::Matrix, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:436:50: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:204:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:353:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:373:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:371:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/Memory.h: In instantiation of 'Index Eigen::internal::first_default_aligned(const Scalar*, Index) [with Scalar = double; Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:128:55: required from 'static void Eigen::internal::general_matrix_vector_product::run(Index, Index, const LhsMapper&, const RhsMapper&, ResScalar*, Index, RhsScalar) [with Index = long long int; LhsScalar = double; LhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateLhs = false; RhsScalar = double; RhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:244:134: required from 'static void Eigen::internal::gemv_dense_selector<2, 0, true>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Matrix; Rhs = Eigen::Matrix; Dest = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:383:34: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::Matrix; Rhs = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Matrix; Lhs = Eigen::Matrix; Rhs = Eigen::Matrix; Derived = Eigen::internal::generic_product_impl, Eigen::Matrix, Eigen::DenseShape, Eigen::DenseShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: required from 'static void Eigen::internal::generic_product_impl_base::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::Matrix; Rhs = Eigen::Matrix; Derived = Eigen::internal::generic_product_impl, Eigen::Matrix, Eigen::DenseShape, Eigen::DenseShape, 7>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:818:25: required from 'void Eigen::PlainObjectBase::_init1(const Eigen::DenseBase&) [with T = Eigen::Product, Eigen::Matrix, 0>; OtherDerived = Eigen::Product, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:294:31: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Product, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:796:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Matrix, 0>; Func = sub_assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::Product, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:447:11: required from 'void HPolytope::shift(const VT&) [with Point = point >; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:302:25: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/Memory.h:470:60: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 470 | return first_aligned::alignment>(array, size);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:46: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:76:71: required from 'void Eigen::MatrixBase::makeHouseholder(EssentialPart&, Scalar&, RealScalar&) const [with EssentialPart = Eigen::VectorBlock, -1, 1, true>, -1, 1, false>, -1>; Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; Scalar = double; RealScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:45:18: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, false>, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, 0, Eigen::Stride<0, 0> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:197:26: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false> > >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, 1, false> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:197:43: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:961:41: required from 'struct Eigen::internal::evaluator, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false>; SrcXprType = Eigen::Matrix; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false>; SrcXprType = Eigen::Matrix; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Src = Eigen::Matrix; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:797:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Src = Eigen::Product, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, true>, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false>; SrcXprType = Eigen::Matrix; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false>; SrcXprType = Eigen::Matrix; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Src = Eigen::Matrix; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:797:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Src = Eigen::Product, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Src = Eigen::Product, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Assign.h:66:28: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:496:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: In instantiation of 'class Eigen::internal::gebp_traits':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:92:29: required from 'struct Eigen::internal::product_triangular_matrix_matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:443:12: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, -1, -1, false>; int Mode = 5; bool LhsIsTriangular = true; Lhs = const Eigen::Block, -1, -1, false>; Rhs = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, -1, -1, false>; Lhs = Eigen::TriangularView, -1, -1, false>, 5>; Rhs = Eigen::Matrix; int ProductTag = 8; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Block, -1, -1, false>; Lhs = Eigen::TriangularView, -1, -1, false>, 5>; Rhs = Eigen::Matrix; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, 5>, Eigen::Matrix, Eigen::TriangularShape, Eigen::DenseShape, 8>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:357:18: required from 'static void Eigen::internal::generic_product_impl_base::subTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Block, -1, -1, false>; Lhs = Eigen::TriangularView, -1, -1, false>, 5>; Rhs = Eigen::Matrix; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, 5>, Eigen::Matrix, Eigen::TriangularShape, Eigen::DenseShape, 8>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:178:42: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:391:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 391 | typedef typename conditional::type LhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:392:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 392 | typedef typename conditional::type RhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:393:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 393 | typedef typename conditional::type ResPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:59: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, -1, -1, false>; int Mode = 5; bool LhsIsTriangular = true; Lhs = const Eigen::Block, -1, -1, false>; Rhs = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:74: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, -1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, -1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false>, -1, -1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:462:59: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, -1, -1, false>; int Mode = 5; bool LhsIsTriangular = true; Lhs = const Eigen::Block, -1, -1, false>; Rhs = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:353:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:373:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 16, Eigen::Stride<0, 0> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 16, Eigen::Stride<0, 0> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 16, Eigen::Stride<0, 0> >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 16, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 16, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 16, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:373:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase > >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase > >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:92:8: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:230:51: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&, const BilliardWalk::parameters&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:36:14: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = Zonotope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:378:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase > >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:197:26: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:92:8: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:230:51: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&, const BilliardWalk::parameters&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:36:14: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = Zonotope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:378:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase > >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:197:43: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:92:8: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:230:51: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&, const BilliardWalk::parameters&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:36:14: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = Zonotope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:378:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::Matrix >, -1, 1, true, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::Matrix >, -1, 1, true, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::Matrix >, -1, 1, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1307:33: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:399:30: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = Zonotope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:378:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix >, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix >, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::Matrix >, 1, -1, false, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::Matrix >, 1, -1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::Matrix >, 1, -1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1309:33: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:399:30: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = Zonotope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:378:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, false>, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:274:18: required from 'void Eigen::internal::outer_product_selector_run(Dst&, const Lhs&, const Rhs&, const Func&, const false_type&) [with Dst = Eigen::Block, -1, -1, false>; Lhs = Eigen::Block, -1, 1, true>, -1, 1, false>; Rhs = Eigen::Block, 1, -1, false>, 1, -1, false>; Func = generic_product_impl, -1, 1, true>, -1, 1, false>, Eigen::Block, 1, -1, false>, 1, -1, false>, Eigen::DenseShape, Eigen::DenseShape, 5>::sub]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:329:41: required from 'static void Eigen::internal::generic_product_impl::subTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Block, -1, -1, false>; Lhs = Eigen::Block, -1, 1, true>, -1, 1, false>; Rhs = Eigen::Block, 1, -1, false>, 1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:178:42: required from 'static void Eigen::internal::Assignment, Eigen::internal::sub_assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::sub_assign_op&) [with DstXprType = Eigen::Block, -1, -1, false>; Lhs = Eigen::Block, -1, 1, true>, -1, 1, false>; Rhs = Eigen::Block, 1, -1, false>, 1, -1, false>; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, -1, 1, true>, -1, 1, false>, Eigen::Block, 1, -1, false>, 1, -1, false>, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>; Src = Eigen::Product, -1, 1, true>, -1, 1, false>, Eigen::Block, 1, -1, false>, 1, -1, false>, 0>; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/NoAlias.h:58:31: required from 'ExpressionType& Eigen::NoAlias::operator-=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, 1, true>, -1, 1, false>, Eigen::Block, 1, -1, false>, 1, -1, false>, 0>; ExpressionType = Eigen::Block, -1, -1, false>; StorageBase = Eigen::MatrixBase]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/FullPivLU.h:563:55: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:399:30: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = Zonotope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:378:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, true>, -1, 1, false>, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Assign.h:66:28: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:503:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h: In instantiation of 'static void Eigen::internal::selfadjoint_matrix_vector_product::run(Index, const Scalar*, Index, const Scalar*, Scalar*, Scalar) [with Scalar = double; Index = long long int; int StorageOrder = 0; int UpLo = 1; bool ConjugateLhs = false; bool ConjugateRhs = false; int Version = 0]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:227:7: required from 'static void Eigen::internal::selfadjoint_product_impl::run(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, -1, 1, false>; Lhs = Eigen::Block, -1, -1, false>; int LhsMode = 17; Rhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:772:109: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, -1, 1, false>; Lhs = Eigen::SelfAdjointView, -1, -1, false>, 1>; Rhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; int ProductTag = 7; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Block, -1, 1, false>; Lhs = Eigen::SelfAdjointView, -1, -1, false>, 1>; Rhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::SelfAdjointShape, Eigen::DenseShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: required from 'static void Eigen::internal::generic_product_impl_base::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Block, -1, 1, false>; Lhs = Eigen::SelfAdjointView, -1, -1, false>, 1>; Rhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::SelfAdjointShape, Eigen::DenseShape, 7>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Block, -1, 1, false>; Lhs = Eigen::SelfAdjointView, -1, -1, false>, 1>; Rhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:60:121: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 60 | conj_helper::IsComplex && EIGEN_LOGICAL_XOR(ConjugateLhs, IsRowMajor), ConjugateRhs> pcj0;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:60:121: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:61:121: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 61 | conj_helper::IsComplex && EIGEN_LOGICAL_XOR(ConjugateLhs, !IsRowMajor), ConjugateRhs> pcj1;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:61:121: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false> > >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, 1, true>, -1, 1, false> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:197:43: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> > >, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, true>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, true>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, 1, -1, true>, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:32: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:48: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; int Mode = 5; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = const Eigen::Block, -1, -1, false>, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:751:113: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:150:68: required from 'static void Eigen::internal::product_triangular_matrix_matrix::run(Index, Index, Index, const Scalar*, Index, const Scalar*, Index, Scalar*, Index, Index, const Scalar&, Eigen::internal::level3_blocking&) [with Scalar = double; Index = long long int; int Mode = 5; int LhsStorageOrder = 0; bool ConjugateLhs = false; int RhsStorageOrder = 0; bool ConjugateRhs = false; int ResInnerStride = 1; int Version = 0]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:443:12: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, -1, -1, false>; int Mode = 5; bool LhsIsTriangular = true; Lhs = const Eigen::Block, -1, -1, false>; Rhs = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Diagonal.h:63:53: required from 'class Eigen::Diagonal, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:153:32: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:174:81: required from 'class Eigen::DenseBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Diagonal.h:63:53: required from 'class Eigen::Diagonal, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:153:32: required from 'static void Eigen::internal::product_triangular_matrix_matrix::run(Index, Index, Index, const Scalar*, Index, const Scalar*, Index, Scalar*, Index, Index, const Scalar&, Eigen::internal::level3_blocking&) [with Scalar = double; Index = long long int; int Mode = 5; int LhsStorageOrder = 0; bool ConjugateLhs = false; int RhsStorageOrder = 0; bool ConjugateRhs = false; int ResInnerStride = 1; int Version = 0]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:443:12: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, -1, -1, false>; int Mode = 5; bool LhsIsTriangular = true; Lhs = const Eigen::Block, -1, -1, false>; Rhs = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:353:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:353:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:492:30: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:353:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, Eigen::CwiseNullaryOp, Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, Eigen::CwiseNullaryOp, Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::CwiseNullaryOp, Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Solve.h:86:7: required from 'class Eigen::SolveImpl >, Eigen::CwiseNullaryOp, Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Solve.h:62:7: required from 'class Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:577:39: required from 'static void Eigen::internal::Assignment >, Eigen::internal::assign_op::Scalar>, Eigen::internal::Dense2Dense>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op::Scalar>&) [with DstXprType = Eigen::Matrix; MatrixType = Eigen::Matrix; SrcXprType = Eigen::Inverse > >; typename Eigen::PartialPivLU::Scalar = double; typename DstXprType::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:353:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:373:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:92:96: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:373:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 2>, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 2>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 2>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, 2>, Eigen::Matrix, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, 2>, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, 2>, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:94:66: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:373:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 1>, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, 1>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, 1>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base >, 1>, Eigen::Matrix, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl >, 1>, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product >, 1>, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:95:66: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:373:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 5>, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, 5>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, 5>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, 5>, Eigen::Matrix, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, false>, 5>, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false>, 5>, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:96:22: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:373:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:373:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false>, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, -1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, -1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, false>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:373:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false> >, Eigen::Block, -1, 1, false>, -1, 1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> >, Eigen::Block, -1, 1, false>, -1, 1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> >, Eigen::Block, -1, 1, false>, -1, 1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:121:7: required from 'class Eigen::internal::dense_product_base, -1, 1, false> >, Eigen::Block, -1, 1, false>, -1, 1, false>, 0, 6>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, 1, false> >, Eigen::Block, -1, 1, false>, -1, 1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, 1, false> >, Eigen::Block, -1, 1, false>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:126:41: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:373:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false>, 1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, 1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, 1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false>, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false>, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, false>, 1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:373:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:373:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:128:25: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Block, -1, 1, false>; Derived = Eigen::Block, -1, 1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:343:39: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:373:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0, 4>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:129:41: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:373:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::OuterStride<> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::OuterStride<> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::OuterStride<> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Map.h:94:79: required from 'class Eigen::Map, 0, Eigen::OuterStride<> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularSolverVector.h:97:18: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:373:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, -1, 1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::OuterStride<> >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::OuterStride<> >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::OuterStride<> >, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::OuterStride<> >, -1, 1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:373:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:373:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularSolverVector.h:123:64: required from 'static void Eigen::internal::triangular_solve_vector::run(Index, const LhsScalar*, Index, RhsScalar*) [with LhsScalar = double; RhsScalar = double; Index = long long int; int Mode = 2; bool Conjugate = false]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/SolveTriangular.h:73:12: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:373:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'struct Eigen::internal::general_matrix_vector_product, 0, false, double, Eigen::internal::const_blas_data_mapper, false, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularSolverVector.h:131:115: required from 'static void Eigen::internal::triangular_solve_vector::run(Index, const LhsScalar*, Index, RhsScalar*) [with LhsScalar = double; RhsScalar = double; Index = long long int; int Mode = 2; bool Conjugate = false]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/SolveTriangular.h:73:12: required from 'static void Eigen::internal::triangular_solver_selector::run(const Lhs&, Rhs&) [with Lhs = const Eigen::Block, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; int Side = 1; int Mode = 2]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/SolveTriangular.h:182:21: required from 'void Eigen::TriangularViewImpl<_MatrixType, _Mode, Eigen::Dense>::solveInPlace(const Eigen::MatrixBase&) const [with int Side = 1; OtherDerived = Eigen::Block, -1, 1, false>; _MatrixType = const Eigen::Block, -1, -1, false>; unsigned int _Mode = 2]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/TriangularMatrix.h:509:37: required from 'void Eigen::TriangularViewImpl<_MatrixType, _Mode, Eigen::Dense>::solveInPlace(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Block, -1, 1, false>; _MatrixType = const Eigen::Block, -1, -1, false>; unsigned int _Mode = 2]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:607:20: required from 'void Eigen::ColPivHouseholderQR::_solve_impl(const RhsType&, DstType&) const [with RhsType = Eigen::CwiseNullaryOp, Eigen::Matrix >; DstType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Solve.h:147:26: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:373:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:75:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 75 | typedef typename conditional::type LhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:76:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 76 | typedef typename conditional::type RhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:77:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 77 | typedef typename conditional::type ResPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase > >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/BlasUtil.h:464:13: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:92:8: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:230:51: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&, const BilliardWalk::parameters&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:36:14: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = Zonotope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:378:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase > >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/BlasUtil.h:464:13: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:92:8: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:230:51: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&, const BilliardWalk::parameters&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:36:14: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = Zonotope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:378:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: In instantiation of 'void Eigen::internal::gemm_pack_rhs::operator()(Scalar*, const DataMapper&, Index, Index, Index, Index) [with Scalar = double; Index = long long int; DataMapper = Eigen::internal::blas_data_mapper; int nr = 4; bool Conjugate = false; bool PanelMode = true]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularSolverMatrix.h:153:19: required from 'static void Eigen::internal::triangular_solve_matrix::run(Index, Index, const Scalar*, Index, Scalar*, Index, Index, Eigen::internal::level3_blocking&) [with Scalar = double; Index = long long int; int Mode = 2; bool Conjugate = false; int TriStorageOrder = 0; int OtherInnerStride = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/SolveTriangular.h:102:12: required from 'static void Eigen::internal::triangular_solver_selector::run(const Lhs&, Rhs&) [with Lhs = Eigen::Block, -1, -1, false>; Rhs = Eigen::Block, -1, -1, false>; int Side = 1; int Mode = 2]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/SolveTriangular.h:182:21: required from 'void Eigen::TriangularViewImpl<_MatrixType, _Mode, Eigen::Dense>::solveInPlace(const Eigen::MatrixBase&) const [with int Side = 1; OtherDerived = Eigen::Block, -1, -1, false>; _MatrixType = Eigen::Block, -1, -1, false>; unsigned int _Mode = 2]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/TriangularMatrix.h:509:37: required from 'void Eigen::TriangularViewImpl<_MatrixType, _Mode, Eigen::Dense>::solveInPlace(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Block, -1, -1, false>; _MatrixType = Eigen::Block, -1, -1, false>; unsigned int _Mode = 2]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/FullPivLU.h:687:52: required from 'void Eigen::internal::kernel_retval >::evalTo(Dest&) const [with Dest = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/misc/Kernel.h:56:71: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:399:12: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = Zonotope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:378:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1981:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 1981 | PacketBlock kernel;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: In instantiation of 'void Eigen::internal::gebp_kernel::operator()(const DataMapper&, const LhsScalar*, const RhsScalar*, Index, Index, Index, ResScalar, Index, Index, Index, Index) [with LhsScalar = double; RhsScalar = double; Index = long long int; DataMapper = Eigen::internal::blas_data_mapper; int mr = 4; int nr = 4; bool ConjugateLhs = false; bool ConjugateRhs = false; ResScalar = double]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularSolverMatrix.h:162:24: required from 'static void Eigen::internal::triangular_solve_matrix::run(Index, Index, const Scalar*, Index, Scalar*, Index, Index, Eigen::internal::level3_blocking&) [with Scalar = double; Index = long long int; int Mode = 2; bool Conjugate = false; int TriStorageOrder = 0; int OtherInnerStride = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/SolveTriangular.h:102:12: required from 'static void Eigen::internal::triangular_solver_selector::run(const Lhs&, Rhs&) [with Lhs = Eigen::Block, -1, -1, false>; Rhs = Eigen::Block, -1, -1, false>; int Side = 1; int Mode = 2]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/SolveTriangular.h:182:21: required from 'void Eigen::TriangularViewImpl<_MatrixType, _Mode, Eigen::Dense>::solveInPlace(const Eigen::MatrixBase&) const [with int Side = 1; OtherDerived = Eigen::Block, -1, -1, false>; _MatrixType = Eigen::Block, -1, -1, false>; unsigned int _Mode = 2]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/TriangularMatrix.h:509:37: required from 'void Eigen::TriangularViewImpl<_MatrixType, _Mode, Eigen::Dense>::solveInPlace(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Block, -1, -1, false>; _MatrixType = Eigen::Block, -1, -1, false>; unsigned int _Mode = 2]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/FullPivLU.h:687:52: required from 'void Eigen::internal::kernel_retval >::evalTo(Dest&) const [with Dest = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/misc/Kernel.h:56:71: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:399:12: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = Zonotope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:378:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1537:103: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 1537 | const int SResPacketHalfSize = unpacket_traits::half>::size;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1592:135: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 1592 | typedef typename conditional=8,typename unpacket_traits::half,SResPacket>::type SResPacketHalf;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1593:135: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 1593 | typedef typename conditional=8,typename unpacket_traits::half,SLhsPacket>::type SLhsPacketHalf;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1594:135: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 1594 | typedef typename conditional=8,typename unpacket_traits::half,SRhsPacket>::type SRhsPacketHalf;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1595:135: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 1595 | typedef typename conditional=8,typename unpacket_traits::half,SAccPacket>::type SAccPacketHalf;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/BlasUtil.h:464:13: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, -1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, -1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, true>, 1, -1, false> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, true>, 1, -1, false> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, true>, 1, -1, false> >, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/VectorBlock.h:56:47: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:341:54: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >; Dest = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; int Mode = 6; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:59: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Matrix; int Mode = 6; bool LhsIsTriangular = true; Lhs = const Eigen::Transpose, -1, -1, false> >; Rhs = Eigen::Block, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:74: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false> >, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false> >, -1, -1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false> >, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false> >, -1, -1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:462:59: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Matrix; int Mode = 6; bool LhsIsTriangular = true; Lhs = const Eigen::Transpose, -1, -1, false> >; Rhs = Eigen::Block, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: In instantiation of 'void Eigen::internal::gemm_pack_rhs::operator()(Scalar*, const DataMapper&, Index, Index, Index, Index) [with Scalar = double; Index = long long int; DataMapper = Eigen::internal::const_blas_data_mapper; int nr = 4; bool Conjugate = false; bool PanelMode = false]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:175:15: required from 'static void Eigen::internal::product_triangular_matrix_matrix::run(Index, Index, Index, const Scalar*, Index, const Scalar*, Index, Scalar*, Index, Index, const Scalar&, Eigen::internal::level3_blocking&) [with Scalar = double; Index = long long int; int Mode = 5; int LhsStorageOrder = 0; bool ConjugateLhs = false; int RhsStorageOrder = 0; bool ConjugateRhs = false; int ResInnerStride = 1; int Version = 0]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:443:12: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, -1, -1, false>; int Mode = 5; bool LhsIsTriangular = true; Lhs = const Eigen::Block, -1, -1, false>; Rhs = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, -1, -1, false>; Lhs = Eigen::TriangularView, -1, -1, false>, 5>; Rhs = Eigen::Matrix; int ProductTag = 8; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Block, -1, -1, false>; Lhs = Eigen::TriangularView, -1, -1, false>, 5>; Rhs = Eigen::Matrix; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, 5>, Eigen::Matrix, Eigen::TriangularShape, Eigen::DenseShape, 8>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:357:18: required from 'static void Eigen::internal::generic_product_impl_base::subTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Block, -1, -1, false>; Lhs = Eigen::TriangularView, -1, -1, false>, 5>; Rhs = Eigen::Matrix; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, 5>, Eigen::Matrix, Eigen::TriangularShape, Eigen::DenseShape, 8>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:178:42: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1981:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 1981 | PacketBlock kernel;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:353:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:353:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:381:43: required from 'static Eigen::Index Eigen::internal::partial_lu_impl::unblocked_lu(MatrixType&, PivIndex*, PivIndex&) [with Scalar = double; int StorageOrder = 0; PivIndex = int; Eigen::Index = long long int; MatrixType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:436:26: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:353:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:353:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:353:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0, 5>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:406:78: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:353:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'static void Eigen::internal::general_matrix_vector_product::run(Index, Index, const LhsMapper&, const RhsMapper&, ResScalar*, Index, RhsScalar) [with Index = long long int; LhsScalar = double; LhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateLhs = false; RhsScalar = double; RhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateRhs = false; int Version = 0; ResScalar = double]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularSolverVector.h:131:115: required from 'static void Eigen::internal::triangular_solve_vector::run(Index, const LhsScalar*, Index, RhsScalar*) [with LhsScalar = double; RhsScalar = double; Index = long long int; int Mode = 2; bool Conjugate = false]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/SolveTriangular.h:73:12: required from 'static void Eigen::internal::triangular_solver_selector::run(const Lhs&, Rhs&) [with Lhs = const Eigen::Block, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; int Side = 1; int Mode = 2]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/SolveTriangular.h:182:21: required from 'void Eigen::TriangularViewImpl<_MatrixType, _Mode, Eigen::Dense>::solveInPlace(const Eigen::MatrixBase&) const [with int Side = 1; OtherDerived = Eigen::Block, -1, 1, false>; _MatrixType = const Eigen::Block, -1, -1, false>; unsigned int _Mode = 2]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/TriangularMatrix.h:509:37: required from 'void Eigen::TriangularViewImpl<_MatrixType, _Mode, Eigen::Dense>::solveInPlace(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Block, -1, 1, false>; _MatrixType = const Eigen::Block, -1, -1, false>; unsigned int _Mode = 2]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:607:20: required from 'void Eigen::ColPivHouseholderQR::_solve_impl(const RhsType&, DstType&) const [with RhsType = Eigen::CwiseNullaryOp, Eigen::Matrix >; DstType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Solve.h:147:26: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:373:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:112:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 112 | conj_helper pcj;\\n\"},{\"type\":1,\"output\":\" | ^~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:112:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: In instantiation of 'void Eigen::internal::gemm_pack_lhs::operator()(Scalar*, const DataMapper&, Index, Index, Index, Index) [with Scalar = double; Index = long long int; DataMapper = Eigen::internal::const_blas_data_mapper; int Pack1 = 4; int Pack2 = 2; bool Conjugate = false; bool PanelMode = false]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixMatrix.h:182:17: required from 'static void Eigen::internal::general_matrix_matrix_product::run(Index, Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, Index, ResScalar, Eigen::internal::level3_blocking&, Eigen::internal::GemmParallelInfo*) [with Index = long long int; LhsScalar = double; int LhsStorageOrder = 1; bool ConjugateLhs = false; RhsScalar = double; int RhsStorageOrder = 0; bool ConjugateRhs = false; int ResInnerStride = 1; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixMatrix.h:228:14: required from 'void Eigen::internal::gemm_functor::operator()(Index, Index, Index, Index, Eigen::internal::GemmParallelInfo*) const [with Scalar = double; Index = long long int; Gemm = Eigen::internal::general_matrix_matrix_product; Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; Dest = Eigen::Matrix; BlockingType = Eigen::internal::gemm_blocking_space<0, double, double, -1, -1, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/Parallelizer.h:98:7: required from 'void Eigen::internal::parallelize_gemm(const Functor&, Index, Index, Index, bool) [with bool Condition = true; Functor = gemm_functor, Eigen::Transpose >, Eigen::Matrix, Eigen::Matrix, gemm_blocking_space<0, double, double, -1, -1, -1, 1, false> >; Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixMatrix.h:487:9: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixMatrix.h:437:20: required from 'static void Eigen::internal::generic_product_impl::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:78:8: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:230:51: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&, const BilliardWalk::parameters&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:36:14: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = Zonotope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:378:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1847:33: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 1847 | PacketBlock kernel;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1847:33: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, false>, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, false>, 1, -1, false>; SrcXprType = Eigen::Block, 1, -1, false>, 1, -1, false>; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, false>, 1, -1, false>; SrcXprType = Eigen::Block, 1, -1, false>, 1, -1, false>; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 1, -1, false>, 1, -1, false>; Src = Eigen::Block, 1, -1, false>, 1, -1, false>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 1, -1, false>, 1, -1, false>; Src = Eigen::Block, 1, -1, false>, 1, -1, false>; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Block, 1, -1, false>, 1, -1, false>; Src = Eigen::Block, 1, -1, false>, 1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Assign.h:66:28: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:399:12: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = Zonotope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:378:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, 1, false>; SrcXprType = Eigen::CwiseUnaryOp, const Eigen::Block, 1, -1, false>, 1, -1, false> >; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, 1, false>; SrcXprType = Eigen::CwiseUnaryOp, const Eigen::Block, 1, -1, false>, 1, -1, false> >; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 1, 1, false>; Src = Eigen::CwiseUnaryOp, const Eigen::Block, 1, -1, false>, 1, -1, false> >; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 1, 1, false>; Src = Eigen::CwiseUnaryOp, const Eigen::Block, 1, -1, false>, 1, -1, false> >; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Block, 1, 1, false>; Src = Eigen::CwiseUnaryOp, const Eigen::Block, 1, -1, false>, 1, -1, false> >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Assign.h:66:28: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:399:12: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = Zonotope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:378:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::OuterStride<> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::OuterStride<> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::OuterStride<> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Map.h:94:79: required from 'class Eigen::Map, 0, Eigen::OuterStride<> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:115:18: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Map.h:94:79: required from 'class Eigen::Map, 0, Eigen::Stride<0, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:119:18: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::InnerStride<> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::InnerStride<> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::InnerStride<> >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::InnerStride<> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::InnerStride<> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::InnerStride<> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::OuterStride<> >, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::OuterStride<> >, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::OuterStride<> >, 1, -1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::Stride<0, 0> >, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, 0, Eigen::Stride<0, 0> >, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:137:106: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:137:77: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const ResScalar&) [with Index = long long int; int Mode = 6; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:332:12: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'struct Eigen::internal::general_matrix_vector_product, 1, false, double, Eigen::internal::const_blas_data_mapper, false, 1>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:145:123: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const ResScalar&) [with Index = long long int; int Mode = 6; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:332:12: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >; Dest = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; int Mode = 6; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; int Mode = 5; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = const Eigen::Block, -1, -1, false>, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:751:113: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>; int ProductTag = 7; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>; Derived = Eigen::internal::generic_product_impl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, Eigen::DenseShape, Eigen::TriangularShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:351:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 351 | typedef typename conditional::type LhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:352:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 352 | typedef typename conditional::type RhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:353:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 353 | typedef typename conditional::type ResPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'struct Eigen::internal::general_matrix_vector_product, 1, false, double, Eigen::internal::const_blas_data_mapper, false, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:154:113: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const ResScalar&) [with Index = long long int; int Mode = 6; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:332:12: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >; Dest = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; int Mode = 6; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; int Mode = 5; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = const Eigen::Block, -1, -1, false>, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:751:113: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>; int ProductTag = 7; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>; Derived = Eigen::internal::generic_product_impl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, Eigen::DenseShape, Eigen::TriangularShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:351:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 351 | typedef typename conditional::type LhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:352:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 352 | typedef typename conditional::type RhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:353:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 353 | typedef typename conditional::type ResPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Diagonal.h:63:53: required from 'class Eigen::Diagonal, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:153:32: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:327:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:501:10: required from 'Derived& Eigen::DenseBase::setZero() [with Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:151:29: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:327:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Diagonal, 0>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:501:10: required from 'Derived& Eigen::DenseBase::setZero() [with Derived = Eigen::Diagonal, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:153:42: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::Matrix >, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Matrix >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/VectorwiseOp.h:104:1: required from 'ResultType Eigen::internal::member_sum::operator()(const XprType&) const [with XprType = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; ResultType = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1307:23: required from 'const Eigen::internal::evaluator >::Scalar Eigen::internal::evaluator >::coeff(Eigen::Index, Eigen::Index) const [with ArgType = const Eigen::CwiseUnaryOp, const Eigen::Matrix >; MemberOp = Eigen::internal::member_sum; int Direction = 0; Scalar = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:381:29: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:399:30: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = Zonotope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:378:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::Matrix >, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Matrix >, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::Block, const Eigen::Matrix >, 1, -1, false>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::Block, const Eigen::Matrix >, 1, -1, false>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/VectorwiseOp.h:104:1: required from 'ResultType Eigen::internal::member_sum::operator()(const XprType&) const [with XprType = Eigen::Block, const Eigen::Matrix >, 1, -1, false>; ResultType = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1309:23: required from 'const Eigen::internal::evaluator >::Scalar Eigen::internal::evaluator >::coeff(Eigen::Index, Eigen::Index) const [with ArgType = const Eigen::CwiseUnaryOp, const Eigen::Matrix >; MemberOp = Eigen::internal::member_sum; int Direction = 0; Scalar = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:381:29: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:399:30: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = Zonotope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:378:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, false>, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >; Derived = Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:305:135: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'static void Eigen::internal::general_matrix_vector_product::run(Index, Index, const LhsMapper&, const RhsMapper&, ResScalar*, Index, ResScalar) [with Index = long long int; LhsScalar = double; LhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateLhs = false; RhsScalar = double; RhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateRhs = false; int Version = 1; ResScalar = double]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:145:123: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const ResScalar&) [with Index = long long int; int Mode = 6; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:332:12: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >; Dest = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; int Mode = 6; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; int Mode = 5; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = const Eigen::Block, -1, -1, false>, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:751:113: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>; int ProductTag = 7; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>; Derived = Eigen::internal::generic_product_impl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, Eigen::DenseShape, Eigen::TriangularShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:385:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 385 | conj_helper pcj;\\n\"},{\"type\":1,\"output\":\" | ^~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:385:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'static void Eigen::internal::general_matrix_vector_product::run(Index, Index, const LhsMapper&, const RhsMapper&, ResScalar*, Index, ResScalar) [with Index = long long int; LhsScalar = double; LhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateLhs = false; RhsScalar = double; RhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateRhs = false; int Version = 0; ResScalar = double]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:154:113: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const ResScalar&) [with Index = long long int; int Mode = 6; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:332:12: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >; Dest = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; int Mode = 6; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; int Mode = 5; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = const Eigen::Block, -1, -1, false>, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:751:113: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>; int ProductTag = 7; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>; Derived = Eigen::internal::generic_product_impl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, Eigen::DenseShape, Eigen::TriangularShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:385:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:385:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:961:41: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:522:41: required from 'struct Eigen::internal::unary_evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:71:51: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:353:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:961:41: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:522:41: required from 'struct Eigen::internal::unary_evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:71:51: required from 'class Eigen::internal::visitor_evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:110:17: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:353:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:522:41: required from 'struct Eigen::internal::unary_evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:71:51: required from 'class Eigen::internal::visitor_evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:110:17: required from 'void Eigen::DenseBase::visit(Visitor&) const [with Visitor = Eigen::internal::max_coeff_visitor, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:266:14: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:353:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, 1, -1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:961:41: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:270:41: required from 'struct Eigen::internal::unary_evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:327:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:501:10: required from 'Derived& Eigen::DenseBase::setZero() [with Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:151:29: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Derived = Eigen::Block, -1, -1, false>, -1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:31: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Derived = Eigen::Block, -1, -1, false>, -1, -1, true>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:462:32: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, -1, 1, false> > >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, -1, 1, false> > >, const Eigen::Block, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, -1, 1, false> > >, const Eigen::Block, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, -1, 1, false> > >, const Eigen::Block, -1, 1, false>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, 1, false> > >, const Eigen::Block, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:251:54: required from 'static void Eigen::internal::generic_product_impl::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Transpose, -1, 1, false> >; Rhs = Eigen::Block, -1, 1, false>, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:373:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 1, 4>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 1, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:411:50: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:373:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 1, -1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, 1, -1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase >, 1, -1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense >, 1, -1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:78:8: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:230:51: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&, const BilliardWalk::parameters&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:36:14: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = Zonotope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:378:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 1, -1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, 1, -1, true> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, 1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, 1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl >, 1, -1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:578:37: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:78:8: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:230:51: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&, const BilliardWalk::parameters&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:36:14: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = Zonotope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:378:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:578:52: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index, Eigen::Index) const [with Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; int ProductTag = 8; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Matrix; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Transpose >; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:631:63: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:78:8: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:230:51: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&, const BilliardWalk::parameters&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:36:14: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = Zonotope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:378:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Matrix >, -1, 1, true> >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/VectorwiseOp.h:104:1: required from 'ResultType Eigen::internal::member_sum::operator()(const XprType&) const [with XprType = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; ResultType = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1307:23: required from 'const Eigen::internal::evaluator >::Scalar Eigen::internal::evaluator >::coeff(Eigen::Index, Eigen::Index) const [with ArgType = const Eigen::CwiseUnaryOp, const Eigen::Matrix >; MemberOp = Eigen::internal::member_sum; int Direction = 0; Scalar = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:381:29: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:399:30: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = Zonotope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:378:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:32: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, true>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, true>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, 1, -1, true>, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:48: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:462:59: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Matrix; int Mode = 2; bool LhsIsTriangular = true; Lhs = Eigen::Matrix; Rhs = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, -1, -1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, -1, -1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase >, -1, -1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense >, -1, -1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:462:59: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Matrix; int Mode = 1; bool LhsIsTriangular = true; Lhs = const Eigen::Transpose >; Rhs = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:961:41: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; SrcXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Functor = swap_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; SrcXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Functor = Eigen::internal::swap_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Src = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Func = swap_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Src = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Func = swap_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:418:22: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:353:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; SrcXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Functor = swap_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; SrcXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Functor = Eigen::internal::swap_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Src = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Func = swap_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Src = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Func = swap_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:418:22: required from 'void Eigen::DenseBase::swap(const Eigen::DenseBase&) [with OtherDerived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Derived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:480:24: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:353:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:436:50: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:353:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block, -1, 1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block, -1, 1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:578:52: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index, Eigen::Index) const [with Lhs = Eigen::Matrix; Rhs = Eigen::Matrix; int ProductTag = 8; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Matrix; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Matrix; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:631:63: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Matrix, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:204:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:353:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, false>, 1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::Block, -1, 1, false>, 1, 1, false>; Functor = add_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::Block, -1, 1, false>, 1, 1, false>; Functor = Eigen::internal::add_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Src = Eigen::Block, -1, 1, false>, 1, 1, false>; Func = add_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Src = Eigen::Block, -1, 1, false>, 1, 1, false>; Func = add_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:177:18: required from 'Derived& Eigen::MatrixBase::operator+=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::Block, -1, 1, false>, 1, 1, false>; Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:127:9: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:373:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:961:41: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:373:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:373:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:137:114: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const ResScalar&) [with Index = long long int; int Mode = 6; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:332:12: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >; Dest = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; int Mode = 6; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:961:41: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:270:41: required from 'struct Eigen::internal::unary_evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: [ skipping 29 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:270:41: required from 'struct Eigen::internal::unary_evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: [ skipping 27 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, true>, 1, -1, false> >, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >; Derived = Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:341:27: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase >, -1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase >, -1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase >, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 21 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, true>, 1, -1, false> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, true>, 1, -1, false> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, true>, 1, -1, false> >, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 1, -1, true>, 1, -1, false> >, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 19 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:282:54: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false> >; Rhs = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; Dest = Eigen::Transpose >; int Mode = 1; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Derived = Eigen::Block, -1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:31: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false> >, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Derived = Eigen::Block, -1, -1, true>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:462:32: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>; SrcXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>; Functor = swap_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>; SrcXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>; Functor = Eigen::internal::swap_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>; Src = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>; Func = swap_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>; Src = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>; Func = swap_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:418:22: required from 'void Eigen::DenseBase::swap(const Eigen::DenseBase&) [with OtherDerived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>; Derived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:390:25: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:353:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:274:18: required from 'void Eigen::internal::outer_product_selector_run(Dst&, const Lhs&, const Rhs&, const Func&, const false_type&) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; Lhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>; Rhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>; Func = generic_product_impl, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, Eigen::DenseShape, Eigen::DenseShape, 5>::sub]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:329:41: required from 'static void Eigen::internal::generic_product_impl::subTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; Lhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>; Rhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:178:42: required from 'static void Eigen::internal::Assignment, Eigen::internal::sub_assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::sub_assign_op&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; Lhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>; Rhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; Src = Eigen::Product, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0>; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/NoAlias.h:58:31: required from 'ExpressionType& Eigen::NoAlias::operator-=(const StorageBase&) [with OtherDerived = Eigen::Product, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0>; ExpressionType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; StorageBase = Eigen::MatrixBase]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:406:53: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:353:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 20 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:353:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:280:48: required from 'void Eigen::internal::outer_product_selector_run(Dst&, const Lhs&, const Rhs&, const Func&, const false_type&) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; Lhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>; Rhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>; Func = generic_product_impl, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, Eigen::DenseShape, Eigen::DenseShape, 5>::sub]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:329:41: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:353:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, false>, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, -1, 1, false> > >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Transpose, -1, 1, false> > >, const Eigen::Block, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Transpose, -1, 1, false> > >, const Eigen::Block, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, 1, false> > >, const Eigen::Block, -1, 1, false>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:373:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator >, 1, -1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator >, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:270:41: required from 'struct Eigen::internal::unary_evaluator >, 1, -1, true> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator >, 1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator >, 1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: [ skipping 18 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:78:8: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:230:51: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&, const BilliardWalk::parameters&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:36:14: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = Zonotope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:378:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::InnerStride<> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::InnerStride<> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::InnerStride<> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::InnerStride<> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::InnerStride<> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Map.h:94:79: required from 'class Eigen::Map, 0, Eigen::InnerStride<> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:48:18: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 22 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'struct Eigen::internal::general_matrix_vector_product, 0, false, double, Eigen::internal::const_blas_data_mapper, false, 1>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:74:123: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const RhsScalar&) [with Index = long long int; int Mode = 1; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:266:12: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false> >; Rhs = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; Dest = Eigen::Transpose >; int Mode = 1; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Matrix; int Mode = 2; Lhs = Eigen::Block, 1, -1, true>, 1, -1, false>; Rhs = Eigen::Block, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:751:113: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::Block, 1, -1, true>, 1, -1, false>; Rhs = Eigen::TriangularView, -1, -1, false>, 2>; int ProductTag = 7; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Matrix; Lhs = Eigen::Block, 1, -1, true>, 1, -1, false>; Rhs = Eigen::TriangularView, -1, -1, false>, 2>; Derived = Eigen::internal::generic_product_impl, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, Eigen::DenseShape, Eigen::TriangularShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:75:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 75 | typedef typename conditional::type LhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:76:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 76 | typedef typename conditional::type RhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:77:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 77 | typedef typename conditional::type ResPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::CwiseNullaryOp, Eigen::Matrix >, 2>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::CwiseNullaryOp, Eigen::Matrix >, 2> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::CwiseNullaryOp, Eigen::Matrix >, 2> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, Eigen::CwiseNullaryOp, Eigen::Matrix >, 2, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, Eigen::CwiseNullaryOp, Eigen::Matrix >, 2, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, Eigen::CwiseNullaryOp, Eigen::Matrix >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:237:28: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:353:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 21 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:373:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: [ skipping 18 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:373:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:59: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, -1, -1, false>; int Mode = 5; bool LhsIsTriangular = true; Lhs = const Eigen::Block, -1, -1, false>; Rhs = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:373:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:74: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:373:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, -1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 21 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:373:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'static void Eigen::internal::general_matrix_vector_product::run(Index, Index, const LhsMapper&, const RhsMapper&, ResScalar*, Index, RhsScalar) [with Index = long long int; LhsScalar = double; LhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateLhs = false; RhsScalar = double; RhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateRhs = false; int Version = 1; ResScalar = double]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:74:123: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const RhsScalar&) [with Index = long long int; int Mode = 1; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:266:12: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false> >; Rhs = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; Dest = Eigen::Transpose >; int Mode = 1; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Matrix; int Mode = 2; Lhs = Eigen::Block, 1, -1, true>, 1, -1, false>; Rhs = Eigen::Block, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:751:113: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::Block, 1, -1, true>, 1, -1, false>; Rhs = Eigen::TriangularView, -1, -1, false>, 2>; int ProductTag = 7; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Matrix; Lhs = Eigen::Block, 1, -1, true>, 1, -1, false>; Rhs = Eigen::TriangularView, -1, -1, false>, 2>; Derived = Eigen::internal::generic_product_impl, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, Eigen::DenseShape, Eigen::TriangularShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:112:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 112 | conj_helper pcj;\\n\"},{\"type\":1,\"output\":\" | ^~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:112:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:327:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:501:10: required from 'Derived& Eigen::DenseBase::setZero() [with Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:16: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:373:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, 1, false> > >, const Eigen::Block, -1, 1, false>, -1, 1, false> >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Transpose, -1, 1, false> > >, const Eigen::Block, -1, 1, false>, -1, 1, false> > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, 1, false> > >, const Eigen::Block, -1, 1, false>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, 1, false> > >, const Eigen::Block, -1, 1, false>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:251:64: required from 'static void Eigen::internal::generic_product_impl::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Transpose, -1, 1, false> >; Rhs = Eigen::Block, -1, 1, false>, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Transpose, -1, 1, false> >; Rhs = Eigen::Block, -1, 1, false>, -1, 1, false>; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, -1, 1, false> >, Eigen::Block, -1, 1, false>, -1, 1, false>, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:373:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:578:75: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index, Eigen::Index) const [with Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; int ProductTag = 8; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Matrix; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Transpose >; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:631:63: required from 'void Eigen::internal::generic_dense_assignment_kernel::assignCoeff(Eigen::Index, Eigen::Index) [with DstEvaluatorTypeT = Eigen::internal::evaluator >; SrcEvaluatorTypeT = Eigen::internal::evaluator >, Eigen::Matrix, 1> >; Functor = Eigen::internal::assign_op; int Version = 0; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:645:16: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:78:8: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:230:51: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&, const BilliardWalk::parameters&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:36:14: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = Zonotope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = Zonotope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:378:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 23 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:373:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:59: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Matrix; int Mode = 6; bool LhsIsTriangular = true; Lhs = const Eigen::Transpose, -1, -1, false> >; Rhs = Eigen::Block, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 18 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:373:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:74: [ skipping 19 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:373:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 23 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:373:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 18 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator >, -1, -1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator >, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 18 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, true>, 1, -1, false> >, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 1, -1, true>, 1, -1, false> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 19 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator >, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block >, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block >, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >; Derived = Eigen::Block >, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:282:27: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:589:22: [ skipping 21 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:373:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:589:37: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index) const [with Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >; Rhs = Eigen::Map, 0, Eigen::Stride<0, 0> >; int ProductTag = 4; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Map, 0, Eigen::Stride<0, 0> >; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:637:61: [ skipping 20 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:373:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, 1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::Stride<0, 0> >, 1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 23 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:373:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:589:52: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index) const [with Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >; Rhs = Eigen::Map, 0, Eigen::Stride<0, 0> >; int ProductTag = 4; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Map, 0, Eigen::Stride<0, 0> >; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:637:61: [ skipping 20 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:373:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >; Functor = add_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >; Functor = Eigen::internal::add_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >; Func = add_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >; Func = add_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:177:18: required from 'Derived& Eigen::MatrixBase::operator+=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >; Derived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:66:28: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:326:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >; Derived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:305:135: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:353:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 24 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:353:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:578:37: [ skipping 22 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:353:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 24 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:353:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:578:52: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index, Eigen::Index) const [with Lhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; int ProductTag = 8; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:631:63: [ skipping 21 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:353:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Derived = Eigen::Block, -1, -1, false>, -1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:31: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:373:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:961:41: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: [ skipping 18 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:373:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Derived = Eigen::Block, -1, -1, false>, -1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:31: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:373:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Derived = Eigen::Block, -1, -1, false>, -1, -1, true>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:462:32: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:373:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:270:41: required from 'struct Eigen::internal::unary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: [ skipping 25 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:373:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, 1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 22 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:373:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:270:41: required from 'struct Eigen::internal::unary_evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: [ skipping 26 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:353:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 23 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:353:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Derived = Eigen::Block, -1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:31: [ skipping 19 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:373:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Derived = Eigen::Block, -1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:31: [ skipping 19 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:373:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Derived = Eigen::Block, -1, -1, true>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:462:32: [ skipping 19 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:39:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&, const Parameters&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Parameters = BilliardWalk::parameters; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/sampling.hpp:89:32: required from 'void uniform_sampling(PointList&, Polytope&, RandomNumberGenerator&, WalkTypePolicy&, const unsigned int&, const unsigned int&, const Point&, const unsigned int&) [with PointList = std::__cxx11::list > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; WalkTypePolicy = BilliardWalk; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:54:29: required from 'void sample_from_polytope(Polytope&, RNGType&, PointList&, const unsigned int&, const unsigned int&, const bool&, const NT&, const NT&, const bool&, const Point&, const unsigned int&, const bool&, const bool&, const bool&, const bool&, const bool&) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; PointList = std::__cxx11::list > >; NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:373:33: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix >, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix >, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, Eigen::Matrix >, 1, -1, false, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, Eigen::Matrix >, 1, -1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, Eigen::Matrix >, 1, -1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:1009:11: [ skipping 25 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:353:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, Eigen::Matrix >, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, false>; SrcXprType = Eigen::Block, Eigen::Matrix >, 1, -1, false>; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, false>; SrcXprType = Eigen::Block, Eigen::Matrix >, 1, -1, false>; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 1, -1, false>; Src = Eigen::Block, Eigen::Matrix >, 1, -1, false>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 1, -1, false>; Src = Eigen::Block, Eigen::Matrix >, 1, -1, false>; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Block, 1, -1, false>; Src = Eigen::Block, Eigen::Matrix >, 1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Assign.h:66:28: [ skipping 26 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Inverse >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:197:11: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"sample_points.cpp:353:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\bits\\\\stl_algobase.h:64:\\n\"},{\"type\":1,\"output\":\"In constructor 'constexpr std::pair<_T1, _T2>::pair(_U1&&, _U2&&) [with _U1 = double&; _U2 = int&; typename std::enable_if<(std::_PCC::_MoveConstructiblePair<_U1, _U2>() && std::_PCC::_ImplicitlyMoveConvertiblePair<_U1, _U2>()), bool>::type = true; _T1 = double; _T2 = double]',\\n\"},{\"type\":1,\"output\":\" inlined from 'std::pair HPolytope::line_intersect(const Point&, const Point&, VT&, VT&, const NT&, bool) const [with Point = point >]' at include/convex_bodies/hpolytope.h:339:58:\\n\"},{\"type\":1,\"output\":\"d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\bits\\\\stl_pair.h:535:42: warning: 'facet' may be used uninitialized [-Wmaybe-uninitialized]\\n\"},{\"type\":1,\"output\":\" 535 | : first(std::forward<_U1>(__x)), second(std::forward<_U2>(__y)) { }\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h: In function 'std::pair HPolytope::line_intersect(const Point&, const Point&, VT&, VT&, const NT&, bool) const [with Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:316:39: note: 'facet' was declared here\\n\"},{\"type\":1,\"output\":\" 316 | int m = num_of_hyperplanes(), facet;\\n\"},{\"type\":1,\"output\":\" | ^~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In constructor 'constexpr std::pair<_T1, _T2>::pair(_U1&&, _U2&&) [with _U1 = double&; _U2 = int&; typename std::enable_if<(std::_PCC::_MoveConstructiblePair<_U1, _U2>() && std::_PCC::_ImplicitlyMoveConvertiblePair<_U1, _U2>()), bool>::type = true; _T1 = double; _T2 = double]',\\n\"},{\"type\":1,\"output\":\" inlined from 'std::pair HPolytope::line_intersect(const Point&, const Point&, VT&, VT&, bool) const [with Point = point >]' at include/convex_bodies/hpolytope.h:299:58:\\n\"},{\"type\":1,\"output\":\"d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\bits\\\\stl_pair.h:535:42: warning: 'facet' may be used uninitialized [-Wmaybe-uninitialized]\\n\"},{\"type\":1,\"output\":\" 535 | : first(std::forward<_U1>(__x)), second(std::forward<_U2>(__y)) { }\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h: In member function 'std::pair HPolytope::line_intersect(const Point&, const Point&, VT&, VT&, bool) const [with Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:274:39: note: 'facet' was declared here\\n\"},{\"type\":1,\"output\":\" 274 | int m = num_of_hyperplanes(), facet;\\n\"},{\"type\":1,\"output\":\" | ^~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:477:\\n\"},{\"type\":1,\"output\":\"In constructor 'Eigen::internal::BlockImpl_dense::BlockImpl_dense(XprType&, Eigen::Index) [with XprType = const Eigen::Matrix; int BlockRows = 1; int BlockCols = -1; bool InnerPanel = false]',\\n\"},{\"type\":1,\"output\":\" inlined from 'Eigen::BlockImpl::BlockImpl(XprType&, Eigen::Index) [with XprType = const Eigen::Matrix; int BlockRows = 1; int BlockCols = -1; bool InnerPanel = false]' at D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:162:75,\\n\"},{\"type\":1,\"output\":\" inlined from 'Eigen::Block::Block(XprType&, Eigen::Index) [with XprType = const Eigen::Matrix; int BlockRows = 1; int BlockCols = -1; bool InnerPanel = false]' at D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:118:53,\\n\"},{\"type\":1,\"output\":\" inlined from 'Eigen::DenseBase::ConstRowXpr Eigen::DenseBase::row(Eigen::Index) const [with Derived = Eigen::Matrix]' at d:\\\\softwares\\\\r\\\\r-4.3.0\\\\library\\\\rcppeigen\\\\include\\\\eigen\\\\src\\\\plugins\\\\blockmethods.h:868:34,\\n\"},{\"type\":1,\"output\":\" inlined from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]' at include/convex_bodies/vpolytope.h:435:18:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:347:29: warning: 'outvert' may be used uninitialized [-Wmaybe-uninitialized]\\n\"},{\"type\":1,\"output\":\" 347 | : Base(xpr.data() + i * ( ((BlockRows==1) && (BlockCols==XprType::ColsAtCompileTime) && (!XprTypeIsRowMajor))\\n\"},{\"type\":1,\"output\":\" | ~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 348 | || ((BlockRows==XprType::RowsAtCompileTime) && (BlockCols==1) && ( XprTypeIsRowMajor)) ? xpr.innerStride() : xpr.outerStride()),\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h: In function 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:423:24: note: 'outvert' was declared here\\n\"},{\"type\":1,\"output\":\" 423 | int count = 0, outvert;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"g++ -std=gnu++17 -I\\\"D:/Softwares/R/R-4.3.0/include\\\" -DNDEBUG -Iexternal -Iexternal/lpsolve/headers/run_headers -Iexternal/minimum_ellipsoid -Iinclude -Iinclude/convex_bodies/spectrahedra -I'D:/Softwares/R/R-4.3.0/library/Rcpp/include' -I'D:/Softwares/R/R-4.3.0/library/RcppEigen/include' -I'D:/Softwares/R/R-4.3.0/library/BH/include' -I\\\"D:/Softwares/RTools/rtools43/x86_64-w64-mingw32.static.posix/include\\\" -lm -ldl -DBOOST_NO_AUTO_PTR -O2 -Wall -mfpmath=sse -msse2 -mstackrealign -c volume.cpp -o volume.o\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:397,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Dense:1,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/RcppEigenForward.h:30,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/RcppEigen.h:25,\\n\"},{\"type\":1,\"output\":\" from volume.cpp:11:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:60:39: warning: ignoring attributes on template argument '__m128' [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 60 | template<> struct is_arithmetic<__m128> { enum { value = true }; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:61:40: warning: ignoring attributes on template argument '__m128i' [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 61 | template<> struct is_arithmetic<__m128i> { enum { value = true }; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:62:40: warning: ignoring attributes on template argument '__m128d' [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 62 | template<> struct is_arithmetic<__m128d> { enum { value = true }; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:161:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 161 | template<> struct unpacket_traits { typedef float type; enum {size=4, alignment=Aligned16}; typedef Packet4f half; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:162:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 162 | template<> struct unpacket_traits { typedef double type; enum {size=2, alignment=Aligned16}; typedef Packet2d half; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:163:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 163 | template<> struct unpacket_traits { typedef int type; enum {size=4, alignment=Aligned16}; typedef Packet4i half; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:718:35: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 718 | struct palign_impl\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:741:35: warning: ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 741 | struct palign_impl\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:764:35: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 764 | struct palign_impl\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:778:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 778 | ptranspose(PacketBlock& kernel) {\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:783:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 783 | ptranspose(PacketBlock& kernel) {\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:790:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 790 | ptranspose(PacketBlock& kernel) {\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:377:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:15:70: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 15 | template<> struct conj_helper { \\\\\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:232:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL'\\n\"},{\"type\":1,\"output\":\" 232 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet2cf,Packet4f)\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:22:70: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 22 | template<> struct conj_helper { \\\\\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:232:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL'\\n\"},{\"type\":1,\"output\":\" 232 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet2cf,Packet4f)\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:15:70: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 15 | template<> struct conj_helper { \\\\\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:417:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL'\\n\"},{\"type\":1,\"output\":\" 417 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet1cd,Packet2d)\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:22:70: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 22 | template<> struct conj_helper { \\\\\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:417:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL'\\n\"},{\"type\":1,\"output\":\" 417 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet1cd,Packet2d)\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:370:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:243:49: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SSE.h:24:46: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(4) float>::half' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:439:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:46:50: required from 'class Eigen::QuaternionBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:250:7: required from 'class Eigen::Quaternion'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SSE.h:27:3: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:243:49: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SSE.h:88:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:46:50: required from 'class Eigen::QuaternionBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:250:7: required from 'class Eigen::Quaternion'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SSE.h:92:3: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/SparseCore:37,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Sparse:26,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/RcppEigenForward.h:31:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h: In instantiation of 'class Eigen::SparseMatrixBase >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseCompressedBase.h:36:7: required from 'class Eigen::SparseCompressedBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrix.h:96:7: required from 'class Eigen::SparseMatrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/IterativeSolvers/ConstrainedConjGrad.h:61:25: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h:47:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 47 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h:168:29: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) long long int>::half' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h:168:29: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h:178:72: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h:179:36: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/aux_/na_assert.hpp:23,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/arg.hpp:25,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/placeholders.hpp:24,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/iterator/iterator_categories.hpp:16,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/iterator/iterator_concepts.hpp:10,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/range/concepts.hpp:20,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/range/size_type.hpp:20,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/range/size.hpp:21,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/random/hyperexponential_distribution.hpp:29,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/random.hpp:70,\\n\"},{\"type\":1,\"output\":\" from volume.cpp:12:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp:194:21: warning: unnecessary parentheses in declaration of 'assert_arg' [-Wparentheses]\\n\"},{\"type\":1,\"output\":\" 194 | failed ************ (Pred::************\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 195 | assert_arg( void (*)(Pred), typename assert_arg_pred::type )\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 196 | );\\n\"},{\"type\":1,\"output\":\" | ~ \\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp:194:21: note: remove parentheses\\n\"},{\"type\":1,\"output\":\" 194 | failed ************ (Pred::************\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" | -\\n\"},{\"type\":1,\"output\":\" 195 | assert_arg( void (*)(Pred), typename assert_arg_pred::type )\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 196 | );\\n\"},{\"type\":1,\"output\":\" | ~ \\n\"},{\"type\":1,\"output\":\" | -\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp:199:21: warning: unnecessary parentheses in declaration of 'assert_not_arg' [-Wparentheses]\\n\"},{\"type\":1,\"output\":\" 199 | failed ************ (boost::mpl::not_::************\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 200 | assert_not_arg( void (*)(Pred), typename assert_arg_pred_not::type )\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 201 | );\\n\"},{\"type\":1,\"output\":\" | ~ \\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp:199:21: note: remove parentheses\\n\"},{\"type\":1,\"output\":\" 199 | failed ************ (boost::mpl::not_::************\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" | -\\n\"},{\"type\":1,\"output\":\" 200 | assert_not_arg( void (*)(Pred), typename assert_arg_pred_not::type )\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 201 | );\\n\"},{\"type\":1,\"output\":\" | ~ \\n\"},{\"type\":1,\"output\":\" | -\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/traits.hpp:21,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/storage.hpp:27,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/vector.hpp:21,\\n\"},{\"type\":1,\"output\":\" from external/minimum_ellipsoid/khach.h:25,\\n\"},{\"type\":1,\"output\":\" from include/convex_bodies/vpolytope.h:19,\\n\"},{\"type\":1,\"output\":\" from include/random_walks/uniform_billiard_walk.hpp:18,\\n\"},{\"type\":1,\"output\":\" from include/random_walks/random_walks.hpp:16,\\n\"},{\"type\":1,\"output\":\" from volume.cpp:16:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/detail/iterator.hpp:111:21: warning: 'template struct std::iterator' is deprecated [-Wdeprecated-declarations]\\n\"},{\"type\":1,\"output\":\" 111 | public std::iterator {\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~\\n\"},{\"type\":1,\"output\":\"In file included from d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\bits\\\\stl_algobase.h:65,\\n\"},{\"type\":1,\"output\":\" from d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\bits\\\\specfun.h:45,\\n\"},{\"type\":1,\"output\":\" from d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\cmath:1935,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/Rcpp/include/Rcpp/platform/compiler.h:100,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/Rcpp/include/Rcpp/r/headers.h:62,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/Rcpp/include/RcppCommon.h:30,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/Rcpp/include/Rcpp.h:27,\\n\"},{\"type\":1,\"output\":\" from volume.cpp:10:\\n\"},{\"type\":1,\"output\":\"d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\bits\\\\stl_iterator_base_types.h:127:34: note: declared here\\n\"},{\"type\":1,\"output\":\" 127 | struct _GLIBCXX17_DEPRECATED iterator\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/detail/iterator.hpp:149:21: warning: 'template struct std::iterator' is deprecated [-Wdeprecated-declarations]\\n\"},{\"type\":1,\"output\":\" 149 | public std::iterator {\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~\\n\"},{\"type\":1,\"output\":\"d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\bits\\\\stl_iterator_base_types.h:127:34: note: declared here\\n\"},{\"type\":1,\"output\":\" 127 | struct _GLIBCXX17_DEPRECATED iterator\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/detail/iterator.hpp:204:21: warning: 'template struct std::iterator' is deprecated [-Wdeprecated-declarations]\\n\"},{\"type\":1,\"output\":\" 204 | public std::iterator {\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~\\n\"},{\"type\":1,\"output\":\"d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\bits\\\\stl_iterator_base_types.h:127:34: note: declared here\\n\"},{\"type\":1,\"output\":\" 127 | struct _GLIBCXX17_DEPRECATED iterator\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from volume.cpp:17:\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_gaussians.hpp: In function 'NT get_next_gaussian(const Polytope&, Point&, const NT&, const unsigned int&, const NT&, const NT&, const unsigned int&, RandomNumberGenerator&)':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_gaussians.hpp:166:48: warning: typedef 'viterator' locally defined but not used [-Wunused-local-typedefs]\\n\"},{\"type\":1,\"output\":\" 166 | typedef typename std::vector::iterator viterator;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_gaussians.hpp: In function 'void compute_annealing_schedule(const Polytope&, const NT&, const NT&, const NT&, const unsigned int&, const unsigned int&, const NT&, const NT&, std::vector&, RandomNumberGenerator&)':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_gaussians.hpp:221:35: warning: typedef 'VT' locally defined but not used [-Wunused-local-typedefs]\\n\"},{\"type\":1,\"output\":\" 221 | typedef typename Polytope::VT VT;\\n\"},{\"type\":1,\"output\":\" | ^~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from volume.cpp:20:\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp: In function 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&)':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:707:35: warning: typedef 'VT' locally defined but not used [-Wunused-local-typedefs]\\n\"},{\"type\":1,\"output\":\" 707 | typedef typename Polytope::VT VT;\\n\"},{\"type\":1,\"output\":\" | ^~\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:708:31: warning: typedef 'PointList' locally defined but not used [-Wunused-local-typedefs]\\n\"},{\"type\":1,\"output\":\" 708 | typedef std::list PointList;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"In file included from volume.cpp:21:\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp: In function 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&)':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:269:31: warning: typedef 'PointList' locally defined but not used [-Wunused-local-typedefs]\\n\"},{\"type\":1,\"output\":\" 269 | typedef std::list PointList;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"volume.cpp: In function 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int)':\\n\"},{\"type\":1,\"output\":\"volume.cpp:34:30: warning: typedef 'Hpolytope' locally defined but not used [-Wunused-local-typedefs]\\n\"},{\"type\":1,\"output\":\" 34 | typedef HPolytope Hpolytope;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"volume.cpp:143:25: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"volume.cpp:143:25: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"include/cartesian_geom/point.h:22:53: required from 'class point >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:24:32: required from 'class HPolytope > >'\\n\"},{\"type\":1,\"output\":\"volume.cpp:259:23: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"volume.cpp:267:59: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:41: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp: In instantiation of 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = CDHRWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"volume.cpp:286:69: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:359:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector > >, std::allocator > > > >::size_type' {aka 'long long unsigned int'} [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 359 | for (int i = 0; i < HPolySet.size()-1; ++i) {\\n\"},{\"type\":1,\"output\":\" | ~~^~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp: In instantiation of 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = RDHRWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"volume.cpp:288:69: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:359:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector > >, std::allocator > > > >::size_type' {aka 'long long unsigned int'} [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp: In instantiation of 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BallWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"volume.cpp:290:69: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:359:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector > >, std::allocator > > > >::size_type' {aka 'long long unsigned int'} [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp: In instantiation of 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"volume.cpp:292:73: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:359:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector > >, std::allocator > > > >::size_type' {aka 'long long unsigned int'} [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:45:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"In file included from include/volume/volume_sequence_of_balls.hpp:33,\\n\"},{\"type\":1,\"output\":\" from volume.cpp:18:\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp: In instantiation of 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:70:25: warning: comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 70 | for (i=0 ; idimension(); i++){\\n\"},{\"type\":1,\"output\":\" | ~^~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"d:\\\\softwares\\\\r\\\\r-4.3.0\\\\library\\\\rcppeigen\\\\include\\\\eigen\\\\src\\\\eigenvalues\\\\hessenbergdecomposition.h:277:16: required from 'class Eigen::HessenbergDecomposition >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:230:41: required from 'class Eigen::RealSchur >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:316:27: required from 'class Eigen::EigenSolver >'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Inverse.h:69:7: required from 'class Eigen::InverseImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Inverse.h:43:7: required from 'class Eigen::Inverse >'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:105:27: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, Eigen::Matrix, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:106:27: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix, const Eigen::Product, Eigen::Matrix, 0> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix, const Eigen::Product, Eigen::Matrix, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix, const Eigen::Product, Eigen::Matrix, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Matrix, const Eigen::Product, Eigen::Matrix, 0>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Product, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:106:23: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Transpose >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Transpose >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Transpose >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, Eigen::Transpose >, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, Eigen::Transpose >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, Eigen::Transpose >, 0>'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:107:15: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp: In instantiation of 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:70:25: warning: comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 70 | for (i=0 ; idimension(); i++){\\n\"},{\"type\":1,\"output\":\" | ~^~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h: In instantiation of 'std::pair VPolytope::ComputeInnerBall() [with Point = point >; typename Point::FT = double]':\\n\"},{\"type\":1,\"output\":\"volume.cpp:40:60: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:278:30: warning: comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 278 | for ( i=0; i < rpit->dimension(); i++){\\n\"},{\"type\":1,\"output\":\" | ~~^~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp: In instantiation of 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:70:25: warning: comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 70 | for (i=0 ; idimension(); i++){\\n\"},{\"type\":1,\"output\":\" | ~^~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp: In instantiation of 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:70:25: warning: comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base >, Eigen::Matrix, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl >, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product >, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:72:31: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix, const Eigen::Transpose > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix, const Eigen::Transpose > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix, const Eigen::Transpose > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Matrix, const Eigen::Transpose >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:73:24: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:73:45: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:73:45: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Diagonal.h:63:53: required from 'class Eigen::Diagonal, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:91:21: required from 'class Eigen::Tridiagonalization >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:105:62: required from 'class Eigen::SelfAdjointEigenSolver >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Diagonal.h:63:53: required from 'class Eigen::Diagonal, -1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:96:21: required from 'class Eigen::Tridiagonalization >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:105:62: required from 'class Eigen::SelfAdjointEigenSolver >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:93:40: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::CwiseNullaryOp, Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::CwiseNullaryOp, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:232:30: required from 'void compute_hpoly_for_mmc(Zonotope&, HPolytope&) [with Zonotope = Zonotope > >; HPolytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:295:26: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = CDHRWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:286:69: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, Eigen::Matrix, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:236:16: required from 'void compute_hpoly_for_mmc(Zonotope&, HPolytope&) [with Zonotope = Zonotope > >; HPolytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:295:26: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = CDHRWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:286:69: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Inverse >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Inverse >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Inverse >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, Eigen::Inverse >, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, Eigen::Inverse >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, Eigen::Inverse >, 0>'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:237:16: required from 'void compute_hpoly_for_mmc(Zonotope&, HPolytope&) [with Zonotope = Zonotope > >; HPolytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:295:26: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = CDHRWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:286:69: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 1, -1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, 1, -1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, 1, -1, false>'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:241:26: required from 'void compute_hpoly_for_mmc(Zonotope&, HPolytope&) [with Zonotope = Zonotope > >; HPolytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:295:26: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = CDHRWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:286:69: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::Block, 1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, 1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, 1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:242:31: required from 'void compute_hpoly_for_mmc(Zonotope&, HPolytope&) [with Zonotope = Zonotope > >; HPolytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:295:26: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = CDHRWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:286:69: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, 1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, 1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, 1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, 1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, 1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:242:31: required from 'void compute_hpoly_for_mmc(Zonotope&, HPolytope&) [with Zonotope = Zonotope > >; HPolytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:295:26: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = CDHRWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:286:69: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Product, Eigen::Matrix, 0> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Product, Eigen::Matrix, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Product, Eigen::Matrix, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Product, Eigen::Matrix, 0>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Product, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:41:27: required from 'bool get_first_poly(Zonotope&, HPolytope&, NT&, const cooling_ball_parameters&, RNG&, VT&) [with RandomPointGenerator = RandomPointGenerator > >, BoostRandomNumberGenerator, double> > >; Zonotope = Zonotope > >; HPolytope = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:297:51: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = CDHRWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:286:69: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Product, Eigen::Matrix, 0> >, Eigen::internal::member_sum, 1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Product, Eigen::Matrix, 0> >, Eigen::internal::member_sum, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Product, Eigen::Matrix, 0> >, Eigen::internal::member_sum, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/VectorwiseOp.h:56:7: required from 'class Eigen::PartialReduxExpr, const Eigen::Product, Eigen::Matrix, 0> >, Eigen::internal::member_sum, 1>'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:41:43: required from 'bool get_first_poly(Zonotope&, HPolytope&, NT&, const cooling_ball_parameters&, RNG&, VT&) [with RandomPointGenerator = RandomPointGenerator > >, BoostRandomNumberGenerator, double> > >; Zonotope = Zonotope > >; HPolytope = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:297:51: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = CDHRWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:286:69: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp: In instantiation of 'bool get_first_poly(Zonotope&, HPolytope&, NT&, const cooling_ball_parameters&, RNG&, VT&) [with RandomPointGenerator = RandomPointGenerator > >, BoostRandomNumberGenerator, double> > >; Zonotope = Zonotope > >; HPolytope = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>; VT = Eigen::Matrix]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:297:51: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = CDHRWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:286:69: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:53:16: warning: comparison of integer expressions of different signedness: 'int' and 'const unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 53 | while(iter <= max_iterarions) {\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Matrix, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:57:31: required from 'bool get_first_poly(Zonotope&, HPolytope&, NT&, const cooling_ball_parameters&, RNG&, VT&) [with RandomPointGenerator = RandomPointGenerator > >, BoostRandomNumberGenerator, double> > >; Zonotope = Zonotope > >; HPolytope = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:297:51: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = CDHRWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:286:69: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Matrix >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Matrix >, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Matrix >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:57:38: required from 'bool get_first_poly(Zonotope&, HPolytope&, NT&, const cooling_ball_parameters&, RNG&, VT&) [with RandomPointGenerator = RandomPointGenerator > >, BoostRandomNumberGenerator, double> > >; Zonotope = Zonotope > >; HPolytope = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:297:51: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = CDHRWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:286:69: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Matrix >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Matrix >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Matrix >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Matrix >, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Matrix >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:57:38: required from 'bool get_first_poly(Zonotope&, HPolytope&, NT&, const cooling_ball_parameters&, RNG&, VT&) [with RandomPointGenerator = RandomPointGenerator > >, BoostRandomNumberGenerator, double> > >; Zonotope = Zonotope > >; HPolytope = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:297:51: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = CDHRWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:286:69: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix, const Eigen::CwiseBinaryOp, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Matrix >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix, const Eigen::CwiseBinaryOp, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Matrix >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix, const Eigen::CwiseBinaryOp, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Matrix >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Matrix, const Eigen::CwiseBinaryOp, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Matrix >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::CwiseBinaryOp, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Matrix >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:57:23: required from 'bool get_first_poly(Zonotope&, HPolytope&, NT&, const cooling_ball_parameters&, RNG&, VT&) [with RandomPointGenerator = RandomPointGenerator > >, BoostRandomNumberGenerator, double> > >; Zonotope = Zonotope > >; HPolytope = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:297:51: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = CDHRWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:286:69: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp: In instantiation of 'bool get_first_poly(Zonotope&, HPolytope&, NT&, const cooling_ball_parameters&, RNG&, VT&) [with RandomPointGenerator = RandomPointGenerator > >, BoostRandomNumberGenerator, double> > >; Zonotope = Zonotope > >; HPolytope = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>; VT = Eigen::Matrix]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:297:51: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = CDHRWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:286:69: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:45:46: warning: unused variable 'N' [-Wunused-variable]\\n\"},{\"type\":1,\"output\":\" 45 | int n = P.dimension(), m = b_max.size(), N = 1200, iter = 1, count = 0;\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:45:66: warning: unused variable 'count' [-Wunused-variable]\\n\"},{\"type\":1,\"output\":\" 45 | int n = P.dimension(), m = b_max.size(), N = 1200, iter = 1, count = 0;\\n\"},{\"type\":1,\"output\":\" | ^~~~~\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:47:19: warning: unused variable 'print' [-Wunused-variable]\\n\"},{\"type\":1,\"output\":\" 47 | bool too_few, print = false;\\n\"},{\"type\":1,\"output\":\" | ^~~~~\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp: In instantiation of 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = CDHRWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = HPolytope > >; PolyBall2 = Zonotope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:332:56: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = CDHRWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:286:69: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:673:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 673 | for (int i = 0; i < ratio_parameters.W; ++i)\\n\"},{\"type\":1,\"output\":\" | ~~^~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp: In instantiation of 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = CDHRWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:341:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = CDHRWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:286:69: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:673:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp: In instantiation of 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = CDHRWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = ZonoIntersectHPoly > >, HPolytope > > >; PolyBall2 = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:363:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = CDHRWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:286:69: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:673:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp: In instantiation of 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = RDHRWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:341:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = RDHRWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:288:69: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:673:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp: In instantiation of 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = RDHRWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = ZonoIntersectHPoly > >, HPolytope > > >; PolyBall2 = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:363:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = RDHRWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:288:69: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:673:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp: In instantiation of 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BallWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:341:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BallWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:290:69: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:673:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp: In instantiation of 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BallWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = ZonoIntersectHPoly > >, HPolytope > > >; PolyBall2 = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:363:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BallWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:290:69: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:673:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp: In instantiation of 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:341:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:292:73: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:673:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp: In instantiation of 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = ZonoIntersectHPoly > >, HPolytope > > >; PolyBall2 = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:363:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:292:73: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:673:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp: In instantiation of 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = Zonotope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = Zonotope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:295:34: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:70:25: warning: comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 70 | for (i=0 ; idimension(); i++){\\n\"},{\"type\":1,\"output\":\" | ~^~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp: In instantiation of 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = Zonotope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = Zonotope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:295:34: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:70:25: warning: comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from include/convex_bodies/hpolytope.h:17,\\n\"},{\"type\":1,\"output\":\" from include/random_walks/uniform_billiard_walk.hpp:17:\\n\"},{\"type\":1,\"output\":\"include/lp_oracles/solve_lp.h: In instantiation of 'Point PointInIntersection(MT, MT, Point, bool&) [with VT = Eigen::Matrix; MT = Eigen::Matrix; Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:128:32: required from 'bool IntersectionOfVpoly::is_feasible() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:312:35: required from here\\n\"},{\"type\":1,\"output\":\"include/lp_oracles/solve_lp.h:204:19: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 204 | for (i = 0; i< d+2; ++i) {\\n\"},{\"type\":1,\"output\":\" | ~^~~~~\\n\"},{\"type\":1,\"output\":\"include/lp_oracles/solve_lp.h:206:19: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 206 | for(j=0; j >, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base >, Eigen::Matrix, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl >, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product >, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"include/lp_oracles/solve_lp.h:289:23: required from 'Point PointInIntersection(MT, MT, Point, bool&) [with VT = Eigen::Matrix; MT = Eigen::Matrix; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:128:32: required from 'bool IntersectionOfVpoly::is_feasible() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:312:35: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp: In instantiation of 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:313:34: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:70:25: warning: comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 70 | for (i=0 ; idimension(); i++){\\n\"},{\"type\":1,\"output\":\" | ~^~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp: In instantiation of 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:313:34: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:70:25: warning: comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp: In instantiation of 'NT estimate_ratio_interval(const ball&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, RNG&) [with Point = point >; ball = Ball > >; PolyBall2 = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:761:47: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = CDHRWalk; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:60:49: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:630:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 630 | for (int i = 0; i < ratio_parameters.W; ++i)\\n\"},{\"type\":1,\"output\":\" | ~~^~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp: In instantiation of 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = CDHRWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = HPolytope > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:776:38: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = CDHRWalk; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:60:49: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:673:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 673 | for (int i = 0; i < ratio_parameters.W; ++i)\\n\"},{\"type\":1,\"output\":\" | ~~^~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp: In instantiation of 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = CDHRWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = BallIntersectPolytope > >, Ball > > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:800:50: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = CDHRWalk; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:60:49: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:673:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp: In instantiation of 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = RDHRWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = HPolytope > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:776:38: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = RDHRWalk; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:62:49: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:673:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp: In instantiation of 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = RDHRWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = BallIntersectPolytope > >, Ball > > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:800:50: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = RDHRWalk; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:62:49: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:673:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp: In instantiation of 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BallWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = HPolytope > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:776:38: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BallWalk; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:64:49: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:673:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp: In instantiation of 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BallWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = BallIntersectPolytope > >, Ball > > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:800:50: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BallWalk; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:64:49: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:673:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp: In instantiation of 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = HPolytope > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:776:38: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:66:53: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:673:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp: In instantiation of 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = BallIntersectPolytope > >, Ball > > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:800:50: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:66:53: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:673:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h: In instantiation of 'bool VPolytope::get_points_for_rounding(PointList&) [with PointList = std::__cxx11::list >, std::allocator > > >; Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:267:37: required from 'std::pair VPolytope::ComputeInnerBall() [with Point = point >; typename Point::FT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:40:60: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:408:30: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 408 | if (num_of_vertices()>20*_d) {\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~^~~~~~\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:411:22: warning: unused variable 'j' [-Wunused-variable]\\n\"},{\"type\":1,\"output\":\" 411 | unsigned int j;\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"In file included from include/convex_bodies/vpolytope.h:18:\\n\"},{\"type\":1,\"output\":\"include/lp_oracles/vpolyoracles.h: In instantiation of 'std::pair<_FIter, _FIter> intersect_double_line_Vpoly(const MT&, const Point&, const Point&, NT*, int*) [with NT = double; MT = Eigen::Matrix; Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:297:50: required from 'std::pair VPolytope::ComputeInnerBall() [with Point = point >; typename Point::FT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:40:60: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"include/lp_oracles/vpolyoracles.h:311:8: warning: unused variable 'res' [-Wunused-variable]\\n\"},{\"type\":1,\"output\":\" 311 | NT res;\\n\"},{\"type\":1,\"output\":\" | ^~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Replicate.h:61:65: required from 'class Eigen::Replicate, 1, -1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::Transpose >, const Eigen::Replicate, 1, -1> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose >, const Eigen::Replicate, 1, -1>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose >, const Eigen::Replicate, 1, -1> >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:383:41: required from 'void VPolytope::shift(const VT&) [with Point = point >; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:103:16: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose >, const Eigen::Replicate, 1, -1> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose >, const Eigen::Replicate, 1, -1> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose >, const Eigen::Replicate, 1, -1> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose >, const Eigen::Replicate, 1, -1>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose >, const Eigen::Replicate, 1, -1> >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:383:41: required from 'void VPolytope::shift(const VT&) [with Point = point >; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:103:16: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, Eigen::Transpose >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, Eigen::Transpose >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::Transpose >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base >, Eigen::Transpose >, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl >, Eigen::Transpose >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product >, Eigen::Transpose >, 0>'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:390:29: required from 'void VPolytope::linear_transformIt(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:109:29: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp: In instantiation of 'NT estimate_ratio_interval(const ball&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, RNG&) [with Point = point >; ball = Ball > >; PolyBall2 = VPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:761:47: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = CDHRWalk; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:60:49: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:630:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 630 | for (int i = 0; i < ratio_parameters.W; ++i)\\n\"},{\"type\":1,\"output\":\" | ~~^~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp: In instantiation of 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = CDHRWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = VPolytope > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:776:38: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = CDHRWalk; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:60:49: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:673:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 673 | for (int i = 0; i < ratio_parameters.W; ++i)\\n\"},{\"type\":1,\"output\":\" | ~~^~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp: In instantiation of 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = CDHRWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = BallIntersectPolytope > >, Ball > > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:800:50: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = CDHRWalk; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:60:49: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:673:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp: In instantiation of 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = RDHRWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = VPolytope > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:776:38: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = RDHRWalk; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:62:49: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:673:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp: In instantiation of 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = RDHRWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = BallIntersectPolytope > >, Ball > > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:800:50: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = RDHRWalk; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:62:49: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:673:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp: In instantiation of 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BallWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = VPolytope > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:776:38: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BallWalk; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:64:49: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:673:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp: In instantiation of 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BallWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = BallIntersectPolytope > >, Ball > > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:800:50: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BallWalk; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:64:49: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:673:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp: In instantiation of 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = VPolytope > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:776:38: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:66:53: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:673:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp: In instantiation of 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = BallIntersectPolytope > >, Ball > > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:800:50: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:66:53: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:673:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, -1, -1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, -1, -1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CommaInitializer.h:95:21: required from 'Eigen::CommaInitializer& Eigen::CommaInitializer::operator,(const Eigen::DenseBase&) [with OtherDerived = Eigen::CwiseUnaryOp, const Eigen::CwiseNullaryOp, Eigen::Matrix > >; XprType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:232:28: required from 'void compute_hpoly_for_mmc(Zonotope&, HPolytope&) [with Zonotope = Zonotope > >; HPolytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:295:26: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = CDHRWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:286:69: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp: In instantiation of 'bool get_next_zonoball(std::vector&, HPolytope&, const VT&, const VT&, PointList&, std::vector&, const cooling_ball_parameters&) [with Zonotope = Zonotope > >; HPolytope = HPolytope > >; VT = Eigen::Matrix; PointList = std::__cxx11::list >, std::allocator > > >; NT = double]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:181:38: required from 'bool get_sequence_of_zonopolys(Zonotope&, const HPolytope&, std::vector&, std::vector&, const VT&, const unsigned int&, const unsigned int&, const cooling_ball_parameters&, RNG&) [with RandomPointGenerator = RandomPointGenerator > >, BoostRandomNumberGenerator, double> > >; ZonoHP = ZonoIntersectHPoly > >, HPolytope > > >; Zonotope = Zonotope > >; HPolytope = HPolytope > >; VT = Eigen::Matrix; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:309:24: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = CDHRWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:286:69: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:113:17: warning: comparison of integer expressions of different signedness: 'int' and 'const unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 113 | while (iter <= max_iterarions) {\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:108:9: warning: unused variable 'n' [-Wunused-variable]\\n\"},{\"type\":1,\"output\":\" 108 | int n = HP2.dimension(), iter = 1;\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp: In instantiation of 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:675:28: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:341:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:292:73: required from here\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:253:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 253 | while (it < 50*n)\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:268:20: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 268 | if (it == 50*n){\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~~\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp: In instantiation of 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = ZonoIntersectHPoly > >, HPolytope > > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:675:28: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = ZonoIntersectHPoly > >, HPolytope > > >; PolyBall2 = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:363:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:292:73: required from here\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:253:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 253 | while (it < 50*n)\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:268:20: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 268 | if (it == 50*n){\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~~\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp: In instantiation of 'NT estimate_ratio_interval(const ball&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, RNG&) [with Point = point >; ball = Ball > >; PolyBall2 = Zonotope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:761:47: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = CDHRWalk; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:60:49: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = Zonotope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:295:34: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:630:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 630 | for (int i = 0; i < ratio_parameters.W; ++i)\\n\"},{\"type\":1,\"output\":\" | ~~^~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp: In instantiation of 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = CDHRWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:776:38: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = CDHRWalk; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:60:49: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = Zonotope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:295:34: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:673:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 673 | for (int i = 0; i < ratio_parameters.W; ++i)\\n\"},{\"type\":1,\"output\":\" | ~~^~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp: In instantiation of 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = CDHRWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = BallIntersectPolytope > >, Ball > > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:800:50: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = CDHRWalk; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:60:49: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = Zonotope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:295:34: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:673:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp: In instantiation of 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = RDHRWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:776:38: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = RDHRWalk; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:62:49: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = Zonotope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:295:34: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:673:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp: In instantiation of 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = RDHRWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = BallIntersectPolytope > >, Ball > > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:800:50: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = RDHRWalk; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:62:49: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = Zonotope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:295:34: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:673:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp: In instantiation of 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BallWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:776:38: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BallWalk; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:64:49: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = Zonotope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:295:34: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:673:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp: In instantiation of 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BallWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = BallIntersectPolytope > >, Ball > > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:800:50: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BallWalk; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:64:49: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = Zonotope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:295:34: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:673:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp: In instantiation of 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:776:38: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:66:53: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = Zonotope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:295:34: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:673:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp: In instantiation of 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = BallIntersectPolytope > >, Ball > > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:800:50: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:66:53: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = Zonotope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:295:34: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:673:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from include/cartesian_geom/cartesian_kernel.h:25,\\n\"},{\"type\":1,\"output\":\" from include/volume/volume_cooling_gaussians.hpp:21:\\n\"},{\"type\":1,\"output\":\"include/cartesian_geom/point.h: In instantiation of 'bool point::operator==(point&) const [with K = Cartesian]':\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:154:22: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:40:60: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:313:34: required from here\\n\"},{\"type\":1,\"output\":\"include/cartesian_geom/point.h:157:21: warning: comparison of integer expressions of different signedness: 'int' and 'const unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 157 | for (i=0 ; i, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, -1, 1, true, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, -1, 1, true>'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:193:18: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:40:60: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:313:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:208:20: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:40:60: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:313:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"In file included from include/random_walks/uniform_billiard_walk.hpp:19:\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h: In instantiation of 'bool IntersectionOfVpoly::get_points_for_rounding(PointList&) [with PointList = std::__cxx11::list >, std::allocator > > >; VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:51:39: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:313:34: required from here\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:313:30: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 313 | if (num_of_vertices()>40*dimension()) {\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp: In instantiation of 'NT estimate_ratio_interval(const ball&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, RNG&) [with Point = point >; ball = Ball > >; PolyBall2 = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; NT = double; RNG = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:761:47: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = CDHRWalk; Polytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:60:49: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:313:34: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:630:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 630 | for (int i = 0; i < ratio_parameters.W; ++i)\\n\"},{\"type\":1,\"output\":\" | ~~^~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp: In instantiation of 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = CDHRWalk::Walk > >, BoostRandomNumberGenerator, double> >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:776:38: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = CDHRWalk; Polytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:60:49: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:313:34: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:673:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 673 | for (int i = 0; i < ratio_parameters.W; ++i)\\n\"},{\"type\":1,\"output\":\" | ~~^~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp: In instantiation of 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = CDHRWalk::Walk > >, BoostRandomNumberGenerator, double> >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = BallIntersectPolytope > >, BoostRandomNumberGenerator, double> >, Ball > > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:800:50: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = CDHRWalk; Polytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:60:49: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:313:34: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:673:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp: In instantiation of 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = RDHRWalk::Walk > >, BoostRandomNumberGenerator, double> >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:776:38: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = RDHRWalk; Polytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:62:49: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:313:34: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:673:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp: In instantiation of 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = RDHRWalk::Walk > >, BoostRandomNumberGenerator, double> >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = BallIntersectPolytope > >, BoostRandomNumberGenerator, double> >, Ball > > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:800:50: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = RDHRWalk; Polytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:62:49: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:313:34: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:673:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp: In instantiation of 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BallWalk::Walk > >, BoostRandomNumberGenerator, double> >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:776:38: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BallWalk; Polytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:64:49: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:313:34: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:673:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp: In instantiation of 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BallWalk::Walk > >, BoostRandomNumberGenerator, double> >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = BallIntersectPolytope > >, BoostRandomNumberGenerator, double> >, Ball > > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:800:50: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BallWalk; Polytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:64:49: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:313:34: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:673:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp: In instantiation of 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:776:38: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; Polytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:66:53: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:313:34: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:673:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp: In instantiation of 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = BallIntersectPolytope > >, BoostRandomNumberGenerator, double> >, Ball > > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:800:50: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; Polytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:66:53: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:313:34: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:673:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, true>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/VectorBlock.h:56:47: required from 'class Eigen::VectorBlock, -1, 1, true>, -1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:441:43: required from 'Eigen::LLT& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:115:14: required from 'Eigen::LLT::LLT(Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:99:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false>, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, false>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/VectorBlock.h:56:47: required from 'class Eigen::VectorBlock, 1, -1, false>, -1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:441:101: required from 'Eigen::LLT& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:115:14: required from 'Eigen::LLT::LLT(Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:99:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp: In instantiation of 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = HPolytope > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = HPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:253:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 253 | while (it < 50*n)\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:268:20: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 268 | if (it == 50*n){\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, -1, 1, true>'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:414:34: required from 'std::pair HPolytope::line_intersect_coord(const Point&, const Point&, const unsigned int&, const unsigned int&, VT&) const [with Point = point >; typename Point::FT = double; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/gaussian_cdhr_walk.hpp:109:43: required from 'void GaussianCDHRWalk::Walk::apply(const BallPolytope&, Point&, const NT&, const unsigned int&, RandomNumberGenerator&) [with BallPolytope = HPolytope > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_gaussians.hpp:420:32: required from 'double volume_cooling_gaussians(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&) [with WalkTypePolicy = GaussianCDHRWalk; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:52:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, true>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, true>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, true>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, -1, 1, true>, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:415:26: required from 'std::pair HPolytope::line_intersect_coord(const Point&, const Point&, const unsigned int&, const unsigned int&, VT&) const [with Point = point >; typename Point::FT = double; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/gaussian_cdhr_walk.hpp:109:43: required from 'void GaussianCDHRWalk::Walk::apply(const BallPolytope&, Point&, const NT&, const unsigned int&, RandomNumberGenerator&) [with BallPolytope = HPolytope > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_gaussians.hpp:420:32: required from 'double volume_cooling_gaussians(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&) [with WalkTypePolicy = GaussianCDHRWalk; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:52:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix, const Eigen::Product, Eigen::Matrix, 0> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix, const Eigen::Product, Eigen::Matrix, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix, const Eigen::Product, Eigen::Matrix, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Matrix, const Eigen::Product, Eigen::Matrix, 0>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Product, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:240:31: required from 'std::pair HPolytope::line_intersect(const Point&, const Point&) const [with Point = point >; typename Point::FT = double]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/gaussian_rdhr_walk.hpp:102:57: required from 'void GaussianRDHRWalk::Walk::apply(const BallPolytope&, Point&, const NT&, const unsigned int&, RandomNumberGenerator&) [with BallPolytope = HPolytope > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_gaussians.hpp:420:32: required from 'double volume_cooling_gaussians(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&) [with WalkTypePolicy = GaussianRDHRWalk; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:54:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h: In instantiation of 'std::pair HPolytope::line_intersect(const Point&, const Point&) const [with Point = point >; typename Point::FT = double]':\\n\"},{\"type\":1,\"output\":\"include/random_walks/gaussian_rdhr_walk.hpp:102:57: required from 'void GaussianRDHRWalk::Walk::apply(const BallPolytope&, Point&, const NT&, const unsigned int&, RandomNumberGenerator&) [with BallPolytope = HPolytope > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_gaussians.hpp:420:32: required from 'double volume_cooling_gaussians(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&) [with WalkTypePolicy = GaussianRDHRWalk; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:54:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:236:22: warning: unused variable 'j' [-Wunused-variable]\\n\"},{\"type\":1,\"output\":\" 236 | unsigned int j;\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Matrix, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"include/cartesian_geom/point.h:119:30: required from 'point point::operator+(const point&) const [with K = Cartesian]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/gaussian_rdhr_walk.hpp:106:42: required from 'void GaussianRDHRWalk::Walk::apply(const BallPolytope&, Point&, const NT&, const unsigned int&, RandomNumberGenerator&) [with BallPolytope = HPolytope > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_gaussians.hpp:420:32: required from 'double volume_cooling_gaussians(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&) [with WalkTypePolicy = GaussianRDHRWalk; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:54:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, 1, -1, false>'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:219:32: required from 'int HPolytope::is_in(const Point&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/gaussian_ball_walk.hpp:84:24: required from 'void GaussianBallWalk::Walk::apply(const BallPolytope&, Point&, const NT&, const unsigned int&, RandomNumberGenerator&) [with BallPolytope = HPolytope > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_gaussians.hpp:420:32: required from 'double volume_cooling_gaussians(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&) [with WalkTypePolicy = GaussianBallWalk; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:56:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false>, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:121:7: required from 'class Eigen::internal::dense_product_base, 1, -1, false>, Eigen::Matrix, 0, 6>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, 1, -1, false>, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, 1, -1, false>, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:219:36: required from 'int HPolytope::is_in(const Point&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/gaussian_ball_walk.hpp:84:24: required from 'void GaussianBallWalk::Walk::apply(const BallPolytope&, Point&, const NT&, const unsigned int&, RandomNumberGenerator&) [with BallPolytope = HPolytope > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_gaussians.hpp:420:32: required from 'double volume_cooling_gaussians(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&) [with WalkTypePolicy = GaussianBallWalk; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:56:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:174:81: required from 'class Eigen::DenseBase, 1, -1, false>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:121:7: required from 'class Eigen::internal::dense_product_base, 1, -1, false>, Eigen::Matrix, 0, 6>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, 1, -1, false>, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, 1, -1, false>, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:219:36: required from 'int HPolytope::is_in(const Point&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/gaussian_ball_walk.hpp:84:24: required from 'void GaussianBallWalk::Walk::apply(const BallPolytope&, Point&, const NT&, const unsigned int&, RandomNumberGenerator&) [with BallPolytope = HPolytope > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_gaussians.hpp:420:32: required from 'double volume_cooling_gaussians(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&) [with WalkTypePolicy = GaussianBallWalk; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:56:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp: In instantiation of 'bool get_first_ball(const Polytope&, Ball&, NT&, const NT&, const cooling_ball_parameters&, RNG&) [with Polytope = HPolytope > >; Ball = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:299:25: required from 'bool get_sequence_of_polytopeballs(Polytope&, std::vector&, std::vector&, const int&, const NT&, const unsigned int&, const cooling_ball_parameters&, RNG&) [with RandomPointGenerator = RandomPointGenerator > >, BoostRandomNumberGenerator, double> > >; PolyBall = BallIntersectPolytope > >, Ball > > >; ball = Ball > >; Polytope = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:741:12: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = CDHRWalk; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:60:49: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:180:17: warning: comparison of integer expressions of different signedness: 'int' and 'const unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 180 | while (iter <= max_iterarions) {\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp: In instantiation of 'bool get_next_zonotopeball(std::vector&, const PointList&, const NT&, std::vector&, const cooling_ball_parameters&) [with Point = point >; ball = Ball > >; PointList = std::__cxx11::list >, std::allocator > > >; NT = double]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:319:39: required from 'bool get_sequence_of_polytopeballs(Polytope&, std::vector&, std::vector&, const int&, const NT&, const unsigned int&, const cooling_ball_parameters&, RNG&) [with RandomPointGenerator = RandomPointGenerator > >, BoostRandomNumberGenerator, double> > >; PolyBall = BallIntersectPolytope > >, Ball > > >; ball = Ball > >; Polytope = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:741:12: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = CDHRWalk; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:60:49: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:236:17: warning: comparison of integer expressions of different signedness: 'int' and 'const unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 236 | while (iter <= max_iterarions)\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp: In instantiation of 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = BallIntersectPolytope > >, Ball > > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:675:28: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = BallIntersectPolytope > >, Ball > > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:800:50: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:66:53: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:253:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 253 | while (it < 50*n)\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:268:20: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 268 | if (it == 50*n){\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~~\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp: In instantiation of 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:253:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 253 | while (it < 50*n)\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:268:20: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 268 | if (it == 50*n){\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~~\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp: In instantiation of 'bool get_first_ball(const Polytope&, Ball&, NT&, const NT&, const cooling_ball_parameters&, RNG&) [with Polytope = VPolytope > >; Ball = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:299:25: required from 'bool get_sequence_of_polytopeballs(Polytope&, std::vector&, std::vector&, const int&, const NT&, const unsigned int&, const cooling_ball_parameters&, RNG&) [with RandomPointGenerator = RandomPointGenerator > >, BoostRandomNumberGenerator, double> > >; PolyBall = BallIntersectPolytope > >, Ball > > >; ball = Ball > >; Polytope = VPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:741:12: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = CDHRWalk; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:60:49: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:180:17: warning: comparison of integer expressions of different signedness: 'int' and 'const unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 180 | while (iter <= max_iterarions) {\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp: In instantiation of 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = BallIntersectPolytope > >, Ball > > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:675:28: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = BallIntersectPolytope > >, Ball > > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:800:50: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:66:53: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:253:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 253 | while (it < 50*n)\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:268:20: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 268 | if (it == 50*n){\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:433:34: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:683:29: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, -1, -1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:689:32: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:689:60: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Diagonal.h:63:53: required from 'class Eigen::Diagonal, const Eigen::Matrix >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:697:61: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, -1, 1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:757:62: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/VectorBlock.h:56:47: required from 'class Eigen::VectorBlock, -1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:769:65: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:40: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, 1, -1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::norm() const [with Derived = Eigen::Block, 1, -1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:241:34: required from 'void compute_hpoly_for_mmc(Zonotope&, HPolytope&) [with Zonotope = Zonotope > >; HPolytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:295:26: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = CDHRWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:286:69: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp: In instantiation of 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:671:14: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:341:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:292:73: required from here\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:84:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 84 | for (int i = 0; i < P.dimension(); ++i) {\\n\"},{\"type\":1,\"output\":\" | ~~^~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:91:26: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:671:14: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:341:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:292:73: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:92:38: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:671:14: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:341:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:292:73: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, Eigen::Transpose >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, Eigen::Transpose >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::Transpose >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base >, Eigen::Transpose >, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl >, Eigen::Transpose >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product >, Eigen::Transpose >, 0>'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:92:41: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:671:14: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:341:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:292:73: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp: In instantiation of 'void BilliardWalk::Walk::initialize(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:221:19: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:671:14: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:341:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:292:73: required from here\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:313:19: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 313 | while (it <= 50*n)\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~~\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:321:26: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 321 | }else if (it == 50*n) {\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase > > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase > > >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ReturnByValue.h:50:34: required from 'class Eigen::ReturnByValue > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/misc/Kernel.h:37:46: required from 'struct Eigen::internal::kernel_retval_base > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/FullPivLU.h:619:8: required from 'struct Eigen::internal::kernel_retval > >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:399:39: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:675:28: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:341:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:292:73: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:403:14: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:675:28: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:341:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:292:73: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::CwiseNullaryOp, Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::CwiseNullaryOp, Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::CwiseNullaryOp, Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::CwiseNullaryOp, Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::CwiseNullaryOp, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:146:40: required from 'static NT compute_diameter, HPolytope > >::compute(const ZonoIntersectHPoly, HPolytope >&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = ZonoIntersectHPoly > >, HPolytope > > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:671:14: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = ZonoIntersectHPoly > >, HPolytope > > >; PolyBall2 = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:363:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:292:73: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp: In instantiation of 'void BilliardWalk::Walk::initialize(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = ZonoIntersectHPoly > >, HPolytope > > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:221:19: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = ZonoIntersectHPoly > >, HPolytope > > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:671:14: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = ZonoIntersectHPoly > >, HPolytope > > >; PolyBall2 = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:363:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:292:73: required from here\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:313:19: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 313 | while (it <= 50*n)\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~~\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:321:26: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 321 | }else if (it == 50*n) {\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~~\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp: In instantiation of 'bool get_first_ball(const Polytope&, Ball&, NT&, const NT&, const cooling_ball_parameters&, RNG&) [with Polytope = Zonotope > >; Ball = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:299:25: required from 'bool get_sequence_of_polytopeballs(Polytope&, std::vector&, std::vector&, const int&, const NT&, const unsigned int&, const cooling_ball_parameters&, RNG&) [with RandomPointGenerator = RandomPointGenerator > >, BoostRandomNumberGenerator, double> > >; PolyBall = BallIntersectPolytope > >, Ball > > >; ball = Ball > >; Polytope = Zonotope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:741:12: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = CDHRWalk; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:60:49: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = Zonotope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:295:34: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:180:17: warning: comparison of integer expressions of different signedness: 'int' and 'const unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 180 | while (iter <= max_iterarions) {\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp: In instantiation of 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = BallIntersectPolytope > >, Ball > > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:675:28: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = BallIntersectPolytope > >, Ball > > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:800:50: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:66:53: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = Zonotope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:295:34: required from here\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:253:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 253 | while (it < 50*n)\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:268:20: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 268 | if (it == 50*n){\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~~\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp: In instantiation of 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; Polytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:313:34: required from here\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:253:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 253 | while (it < 50*n)\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:268:20: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 268 | if (it == 50*n){\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~~\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp: In instantiation of 'bool get_first_ball(const Polytope&, Ball&, NT&, const NT&, const cooling_ball_parameters&, RNG&) [with Polytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; Ball = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:299:25: required from 'bool get_sequence_of_polytopeballs(Polytope&, std::vector&, std::vector&, const int&, const NT&, const unsigned int&, const cooling_ball_parameters&, RNG&) [with RandomPointGenerator = RandomPointGenerator > >, BoostRandomNumberGenerator, double> >, BoostRandomNumberGenerator, double> > >; PolyBall = BallIntersectPolytope > >, BoostRandomNumberGenerator, double> >, Ball > > >; ball = Ball > >; Polytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:741:12: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = CDHRWalk; Polytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:60:49: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:313:34: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:180:17: warning: comparison of integer expressions of different signedness: 'int' and 'const unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 180 | while (iter <= max_iterarions) {\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp: In instantiation of 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = BallIntersectPolytope > >, BoostRandomNumberGenerator, double> >, Ball > > >; Polytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:675:28: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = BallIntersectPolytope > >, BoostRandomNumberGenerator, double> >, Ball > > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:800:50: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; Polytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:66:53: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:313:34: required from here\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:253:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 253 | while (it < 50*n)\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:268:20: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 268 | if (it == 50*n){\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase > >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ReturnByValue.h:50:34: required from 'class Eigen::ReturnByValue > >'\\n\"},{\"type\":1,\"output\":\"d:\\\\softwares\\\\r\\\\r-4.3.0\\\\library\\\\rcppeigen\\\\include\\\\eigen\\\\src\\\\eigenvalues\\\\hessenbergdecomposition.h:339:38: required from 'struct Eigen::internal::HessenbergDecompositionMatrixHReturnType >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:39: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, 1, -1, false>, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, 1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, 1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, 1, -1, false>, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, 1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:468:100: required from 'void Eigen::EigenSolver<_MatrixType>::doComputeEigenvectors() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:447:7: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:615:39: required from 'void Eigen::EigenSolver<_MatrixType>::doComputeEigenvectors() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:447:7: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, true>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, true>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, true>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, true>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, true>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, true>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:615:45: required from 'void Eigen::EigenSolver<_MatrixType>::doComputeEigenvectors() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:447:7: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp: In instantiation of 'void BilliardWalk::Walk::initialize(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = HPolytope > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:221:19: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = HPolytope > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:60:14: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = HPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:313:19: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 313 | while (it <= 50*n)\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~~\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:321:26: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 321 | }else if (it == 50*n) {\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:488:39: required from 'void HPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = HPolytope > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = HPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"include/cartesian_geom/point.h:135:30: required from 'point point::operator*(FT) const [with K = Cartesian; FT = double]'\\n\"},{\"type\":1,\"output\":\"include/cartesian_geom/point.h:201:14: required from 'point operator*(const typename K::FT&, const point&) [with K = Cartesian; typename K::FT = double]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/gaussian_rdhr_walk.hpp:106:37: required from 'void GaussianRDHRWalk::Walk::apply(const BallPolytope&, Point&, const NT&, const unsigned int&, RandomNumberGenerator&) [with BallPolytope = HPolytope > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_gaussians.hpp:420:32: required from 'double volume_cooling_gaussians(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&) [with WalkTypePolicy = GaussianRDHRWalk; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:54:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:131:44: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:132:22: required from 'Eigen::internal::dense_product_base::operator const Scalar() const [with Lhs = Eigen::Block, 1, -1, false>; Rhs = Eigen::Matrix; int Option = 0; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:219:25: required from 'int HPolytope::is_in(const Point&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/gaussian_ball_walk.hpp:84:24: required from 'void GaussianBallWalk::Walk::apply(const BallPolytope&, Point&, const NT&, const unsigned int&, RandomNumberGenerator&) [with BallPolytope = HPolytope > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_gaussians.hpp:420:32: required from 'double volume_cooling_gaussians(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&) [with WalkTypePolicy = GaussianBallWalk; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:56:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h: In instantiation of 'std::pair HPolytope::line_intersect(const Point&, const Point&, VT&, VT&, const NT&, bool) const [with Point = point >; typename Point::FT = double; VT = Eigen::Matrix; NT = double]':\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_rdhr_walk.hpp:64:55: required from 'void RDHRWalk::Walk::apply(const BallPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with BallPolytope = HPolytope > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:675:28: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = RDHRWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = HPolytope > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:776:38: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = RDHRWalk; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:62:49: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:313:12: warning: unused variable 'mult' [-Wunused-variable]\\n\"},{\"type\":1,\"output\":\" 313 | NT mult;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:315:22: warning: unused variable 'j' [-Wunused-variable]\\n\"},{\"type\":1,\"output\":\" 315 | unsigned int j;\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp: In instantiation of 'void BilliardWalk::Walk::initialize(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = BallIntersectPolytope > >, Ball > > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:221:19: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = BallIntersectPolytope > >, Ball > > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:671:14: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = BallIntersectPolytope > >, Ball > > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:800:50: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:66:53: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:313:19: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 313 | while (it <= 50*n)\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:321:26: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 321 | }else if (it == 50*n) {\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, 1, -1, false>, const Eigen::Block, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, 1, -1, false>, const Eigen::Block, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, 1, -1, false>, const Eigen::Block, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, 1, -1, false>, const Eigen::Block, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, 1, -1, false>, const Eigen::Block, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:58:39: required from 'static NT compute_diameter >::compute(const VPolytope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:60:14: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp: In instantiation of 'void BilliardWalk::Walk::initialize(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:221:19: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:60:14: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:313:19: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 313 | while (it <= 50*n)\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~~\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:321:26: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 321 | }else if (it == 50*n) {\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, Eigen::CwiseNullaryOp, Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, Eigen::CwiseNullaryOp, Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::CwiseNullaryOp, Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Solve.h:86:7: required from 'class Eigen::SolveImpl >, Eigen::CwiseNullaryOp, Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Solve.h:62:7: required from 'class Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:49: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:435:46: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp: In instantiation of 'void BilliardWalk::Walk::initialize(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = BallIntersectPolytope > >, Ball > > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:221:19: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = BallIntersectPolytope > >, Ball > > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:671:14: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = BallIntersectPolytope > >, Ball > > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:800:50: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:66:53: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:313:19: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 313 | while (it <= 50*n)\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:321:26: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 321 | }else if (it == 50*n) {\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/TriangularMatrix.h:174:44: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:232:121: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/misc/RealSvd2x2.h:25:26: required from 'void Eigen::internal::real_2x2_jacobi_svd(const MatrixType&, Index, Index, Eigen::JacobiRotation*, Eigen::JacobiRotation*) [with MatrixType = Eigen::Matrix; RealScalar = double; Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:722:42: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from include/convex_bodies/zpolytope.h:19,\\n\"},{\"type\":1,\"output\":\" from include/random_walks/uniform_billiard_walk.hpp:20:\\n\"},{\"type\":1,\"output\":\"include/lp_oracles/zpolyoracles.h: In instantiation of 'bool memLP_Zonotope(const MT&, const Point&, NT*, int*) [with MT = Eigen::Matrix; Point = point >; NT = double]':\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:241:26: required from 'int Zonotope::is_in(const Point&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:79:20: required from 'bool check_convergence(const ConvexBody&, const PointList&, bool&, NT&, const int&, const bool&, const bool&, const cooling_ball_parameters&) [with Point = point >; ConvexBody = Zonotope > >; PointList = std::__cxx11::list >, std::allocator > > >; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:66:36: required from 'bool get_first_poly(Zonotope&, HPolytope&, NT&, const cooling_ball_parameters&, RNG&, VT&) [with RandomPointGenerator = RandomPointGenerator > >, BoostRandomNumberGenerator, double> > >; Zonotope = Zonotope > >; HPolytope = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:297:51: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = CDHRWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:286:69: required from here\\n\"},{\"type\":1,\"output\":\"include/lp_oracles/zpolyoracles.h:52:10: warning: unused variable 'infinite' [-Wunused-variable]\\n\"},{\"type\":1,\"output\":\" 52 | REAL infinite = get_infinite(lp); /* will return 1.0e30 */\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~\\n\"},{\"type\":1,\"output\":\"include/lp_oracles/zpolyoracles.h: In instantiation of 'std::pair<_FIter, _FIter> intersect_line_zono(const MT&, const Point&, const Point&, NT*, int*) [with NT = double; MT = Eigen::Matrix; Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:296:35: required from 'std::pair Zonotope::line_intersect(const Point&, const Point&, const VT&, const VT&, const NT&) const [with Point = point >; typename Point::FT = double; VT = Eigen::Matrix; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_rdhr_walk.hpp:64:55: required from 'void RDHRWalk::Walk::apply(const BallPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with BallPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:675:28: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = RDHRWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:341:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = RDHRWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:288:69: required from here\\n\"},{\"type\":1,\"output\":\"include/lp_oracles/zpolyoracles.h:140:8: warning: unused variable 'res' [-Wunused-variable]\\n\"},{\"type\":1,\"output\":\" 140 | NT res;\\n\"},{\"type\":1,\"output\":\" | ^~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp: In instantiation of 'void BilliardWalk::Walk::initialize(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = BallIntersectPolytope > >, Ball > > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:221:19: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = BallIntersectPolytope > >, Ball > > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:671:14: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = BallIntersectPolytope > >, Ball > > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:800:50: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:66:53: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = Zonotope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:295:34: required from here\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:313:19: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 313 | while (it <= 50*n)\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~~\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:321:26: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 321 | }else if (it == 50*n) {\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:40: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Matrix; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::norm() const [with Derived = Eigen::Matrix; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:205:25: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:40:60: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:313:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp: In instantiation of 'void BilliardWalk::Walk::initialize(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; Polytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:221:19: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; Polytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:60:14: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:313:34: required from here\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:313:19: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 313 | while (it <= 50*n)\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:321:26: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 321 | }else if (it == 50*n) {\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~~\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp: In instantiation of 'void BilliardWalk::Walk::initialize(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = BallIntersectPolytope > >, BoostRandomNumberGenerator, double> >, Ball > > >; Polytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:221:19: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = BallIntersectPolytope > >, BoostRandomNumberGenerator, double> >, Ball > > >; Polytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:671:14: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = BallIntersectPolytope > >, BoostRandomNumberGenerator, double> >, Ball > > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:800:50: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; Polytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:66:53: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:313:34: required from here\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:313:19: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 313 | while (it <= 50*n)\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:321:26: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 321 | }else if (it == 50*n) {\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:334:18: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:334:57: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/SelfCwiseBinaryOp.h:20:67: required from 'Derived& Eigen::DenseBase::operator*=(const Scalar&) [with Derived = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:276:10: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:221:22: required from 'static typename Eigen::NumTraits::Scalar>::Real Eigen::internal::lpNorm_selector::run(const Eigen::MatrixBase&) [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:269:52: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::lpNorm() const [with int p = 1; Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:441:74: required from 'Eigen::LLT& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:115:14: required from 'Eigen::LLT::LLT(Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:99:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:401:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:449:42: required from 'Eigen::LLT& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:115:14: required from 'Eigen::LLT::LLT(Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:99:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Diagonal.h:63:53: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Diagonal.h:63:53: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:520:87: required from 'Eigen::ComputationInfo Eigen::internal::computeFromTridiagonal_impl(DiagType&, SubDiagType&, Eigen::Index, bool, MatrixType&) [with MatrixType = Eigen::Matrix; DiagType = Eigen::Matrix; SubDiagType = Eigen::Matrix; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:439:49: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, 2, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, 2, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, 2, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, 2, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, 2, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, 2, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/misc/RealSvd2x2.h:46:19: required from 'void Eigen::internal::real_2x2_jacobi_svd(const MatrixType&, Index, Index, Eigen::JacobiRotation*, Eigen::JacobiRotation*) [with MatrixType = Eigen::Matrix; RealScalar = double; Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:722:42: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:174:81: required from 'class Eigen::DenseBase, 1, 2, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, 2, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, 2, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: required from 'class Eigen::MapBase, 1, 2, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 1, 2, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/misc/RealSvd2x2.h:46:19: required from 'void Eigen::internal::real_2x2_jacobi_svd(const MatrixType&, Index, Index, Eigen::JacobiRotation*, Eigen::JacobiRotation*) [with MatrixType = Eigen::Matrix; RealScalar = double; Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:722:42: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:445:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:454:5: required from 'void Eigen::internal::apply_rotation_in_the_plane(Eigen::DenseBase&, Eigen::DenseBase&, const Eigen::JacobiRotation&) [with VectorX = Eigen::Block, 1, -1, false>; VectorY = Eigen::Block, 1, -1, false>; OtherScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:281:40: required from 'void Eigen::MatrixBase::applyOnTheLeft(Eigen::Index, Eigen::Index, const Eigen::JacobiRotation&) [with OtherScalar = double; Derived = Eigen::Matrix; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:725:40: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:454:5: required from 'void Eigen::internal::apply_rotation_in_the_plane(Eigen::DenseBase&, Eigen::DenseBase&, const Eigen::JacobiRotation&) [with VectorX = Eigen::Block, -1, 1, true>; VectorY = Eigen::Block, -1, 1, true>; OtherScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:296:40: required from 'void Eigen::MatrixBase::applyOnTheRight(Eigen::Index, Eigen::Index, const Eigen::JacobiRotation&) [with OtherScalar = double; Derived = Eigen::Matrix; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:726:53: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:71:51: required from 'class Eigen::internal::visitor_evaluator, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:110:17: required from 'void Eigen::DenseBase::visit(Visitor&) const [with Visitor = Eigen::internal::max_coeff_visitor, -1, 1, false> >; Derived = Eigen::Block, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:266:14: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::maxCoeff(IndexType*) const [with IndexType = long long int; Derived = Eigen::Block, -1, 1, false>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:769:88: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Product >, Eigen::Matrix, 0> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Product >, Eigen::Matrix, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Product >, Eigen::Matrix, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Product >, Eigen::Matrix, 0>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Product >, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:40: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Product >, Eigen::Matrix, 0>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::norm() const [with Derived = Eigen::Product >, Eigen::Matrix, 0>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:96:52: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:671:14: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:341:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:292:73: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Matrix, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:44: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Matrix; U = Eigen::Matrix; bool NeedToTranspose = false; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: required from 'typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType Eigen::MatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Matrix; Derived = Eigen::Matrix; typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType = double; typename Eigen::internal::traits::Scalar = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:401:35: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:675:28: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:341:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:292:73: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:40: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Matrix; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::norm() const [with Derived = Eigen::Matrix; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:403:21: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:675:28: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:341:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:292:73: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Product, Eigen::Matrix, 0> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Product, Eigen::Matrix, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Product, Eigen::Matrix, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Product, Eigen::Matrix, 0>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Product, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:40: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Product, Eigen::Matrix, 0>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::norm() const [with Derived = Eigen::Product, Eigen::Matrix, 0>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:168:55: required from 'static NT compute_diameter, HPolytope > >::compute(const ZonoIntersectHPoly, HPolytope >&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = ZonoIntersectHPoly > >, HPolytope > > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:671:14: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = ZonoIntersectHPoly > >, HPolytope > > >; PolyBall2 = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:363:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:292:73: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 3, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 3, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 3, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 3, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 3, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 2, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 2, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 2, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 2, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 2, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 2, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, false>, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:522:41: required from 'struct Eigen::internal::unary_evaluator, const Eigen::Block, 1, -1, false>, 1, -1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, 1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Block, 1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:468:106: required from 'void Eigen::EigenSolver<_MatrixType>::doComputeEigenvectors() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:447:7: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false>, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, 1, -1, false>, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, 1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:50:23: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:492:54: required from 'void Eigen::EigenSolver<_MatrixType>::doComputeEigenvectors() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:447:7: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, 1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, 1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, 1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, 1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, 1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:50:56: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:492:54: required from 'void Eigen::EigenSolver<_MatrixType>::doComputeEigenvectors() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:447:7: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:401:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:449:42: required from 'Eigen::LLT& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:115:14: required from 'Eigen::LLT::LLT(Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:99:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:325:58: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:401:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:449:42: required from 'Eigen::LLT& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:115:14: required from 'Eigen::LLT::LLT(Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:99:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, Eigen::Transpose, 1, -1, false> >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, Eigen::Transpose, 1, -1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, Eigen::Transpose, 1, -1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, Eigen::Transpose, 1, -1, false> >, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, false>, Eigen::Transpose, 1, -1, false> >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false>, Eigen::Transpose, 1, -1, false> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:325:45: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:401:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:449:42: required from 'Eigen::LLT& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:115:14: required from 'Eigen::LLT::LLT(Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:99:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:401:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:449:42: required from 'Eigen::LLT& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:115:14: required from 'Eigen::LLT::LLT(Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:99:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:401:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:449:42: required from 'Eigen::LLT& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:115:14: required from 'Eigen::LLT::LLT(Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:99:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:401:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:449:42: required from 'Eigen::LLT& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:115:14: required from 'Eigen::LLT::LLT(Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:99:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:325:58: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:401:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:449:42: required from 'Eigen::LLT& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:115:14: required from 'Eigen::LLT::LLT(Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:99:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, Eigen::Transpose, -1, -1, false>, 1, -1, false> >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false>, Eigen::Transpose, -1, -1, false>, 1, -1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false>, Eigen::Transpose, -1, -1, false>, 1, -1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, -1, -1, false>, Eigen::Transpose, -1, -1, false>, 1, -1, false> >, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, false>, -1, -1, false>, Eigen::Transpose, -1, -1, false>, 1, -1, false> >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Transpose, -1, -1, false>, 1, -1, false> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:325:45: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:401:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:449:42: required from 'Eigen::LLT& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:115:14: required from 'Eigen::LLT::LLT(Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:99:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:40: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:458:42: required from 'std::vector HPolytope::get_dists(const NT&) const [with Point = point >; typename Point::FT = double; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_gaussians.hpp:89:41: required from 'void get_first_gaussian(const Polytope&, const NT&, const NT&, const NT&, std::vector&) [with Polytope = HPolytope > >; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_gaussians.hpp:224:23: required from 'void compute_annealing_schedule(const Polytope&, const NT&, const NT&, const NT&, const unsigned int&, const unsigned int&, const NT&, const NT&, std::vector&, RandomNumberGenerator&) [with WalkType = GaussianCDHRWalk::Walk > >, BoostRandomNumberGenerator, double> >; RandomPointGenerator = GaussianRandomPointGenerator > >, BoostRandomNumberGenerator, double> > >; Polytope = HPolytope > >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_gaussians.hpp:361:6: required from 'double volume_cooling_gaussians(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&) [with WalkTypePolicy = GaussianCDHRWalk; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:52:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseBinaryOp, const Eigen::Block, 1, -1, false>, const Eigen::Block, 1, -1, false> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseBinaryOp, const Eigen::Block, 1, -1, false>, const Eigen::Block, 1, -1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseBinaryOp, const Eigen::Block, 1, -1, false>, const Eigen::Block, 1, -1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::CwiseBinaryOp, const Eigen::Block, 1, -1, false>, const Eigen::Block, 1, -1, false> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::Block, 1, -1, false>, const Eigen::Block, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:40: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:58:55: required from 'static NT compute_diameter >::compute(const VPolytope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:60:14: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:50:23: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:435:18: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose >, const Eigen::Block, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose >, const Eigen::Block, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose >, const Eigen::Block, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose >, const Eigen::Block, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose >, const Eigen::Block, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:50:56: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:435:18: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:368:46: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:368:35: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:520:87: required from 'Eigen::ComputationInfo Eigen::internal::computeFromTridiagonal_impl(DiagType&, SubDiagType&, Eigen::Index, bool, MatrixType&) [with MatrixType = Eigen::Matrix; DiagType = Eigen::Matrix; SubDiagType = Eigen::Matrix; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:439:49: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:163:27: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:165:25: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:166:55: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, false> >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, false> >, 0, 5>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, false> >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, false> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:166:34: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:126:41: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:128:25: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:129:29: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0, 5>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:129:41: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:92:96: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 2>, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 2>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 2>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, 2>, Eigen::Matrix, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, 2>, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, 2>, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:94:66: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/TriangularMatrix.h:174:44: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 1>, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, 1>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, 1>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base >, 1>, Eigen::Matrix, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl >, 1>, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product >, 1>, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:95:66: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 5>, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, 5>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, 5>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, 5>, Eigen::Matrix, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, false>, 5>, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false>, 5>, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:96:22: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, 2, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:454:5: required from 'void Eigen::internal::apply_rotation_in_the_plane(Eigen::DenseBase&, Eigen::DenseBase&, const Eigen::JacobiRotation&) [with VectorX = Eigen::Block, 1, 2, false>; VectorY = Eigen::Block, 1, 2, false>; OtherScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:281:40: required from 'void Eigen::MatrixBase::applyOnTheLeft(Eigen::Index, Eigen::Index, const Eigen::JacobiRotation&) [with OtherScalar = double; Derived = Eigen::Matrix; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/misc/RealSvd2x2.h:46:19: required from 'void Eigen::internal::real_2x2_jacobi_svd(const MatrixType&, Index, Index, Eigen::JacobiRotation*, Eigen::JacobiRotation*) [with MatrixType = Eigen::Matrix; RealScalar = double; Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:722:42: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, -1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, -1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, true>, -1, 1, false>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:271:17: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:126:38: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:271:17: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:126:41: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:271:17: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0, 5>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:129:41: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:271:17: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, true>, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, true>, -1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, true>, -1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, true>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, true>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, true>, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:271:17: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, true>, -1, -1, false>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, true>, -1, -1, false>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, true>, -1, -1, false>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, true>, -1, -1, false>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, true>, -1, -1, false>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, true>, -1, -1, false>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:163:27: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:271:17: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, true>, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, true>, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, true>, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, true>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, true>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, true>, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:271:17: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, true>, -1, 1, false> >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, true>, -1, 1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, true>, -1, 1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, true>, -1, 1, false> >, 0, 5>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, true>, -1, 1, false> >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, true>, -1, 1, false> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:166:34: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:271:17: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, true>, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, true>, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, true>, 1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, true>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 2, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 2, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 2, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 2, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 2, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 2, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::Block, 2, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, 2, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, 2, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, 2, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, 2, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, 2, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, 2, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:91:22: required from 'void Eigen::MatrixBase::makeHouseholder(EssentialPart&, Scalar&, RealScalar&) const [with EssentialPart = Eigen::Matrix; Derived = Eigen::Matrix; Scalar = double; RealScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:511:22: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 2, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 2, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 2, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, 2, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, 2, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 2, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:126:38: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, Eigen::Block, -1, -1, false>, 2, -1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, Eigen::Block, -1, -1, false>, 2, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::Block, -1, -1, false>, 2, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base >, Eigen::Block, -1, -1, false>, 2, -1, false>, 0, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl >, Eigen::Block, -1, -1, false>, 2, -1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product >, Eigen::Block, -1, -1, false>, 2, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:126:41: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:129:29: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Matrix; Derived = Eigen::Block, -1, -1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:521:62: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0, 4>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:129:41: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 2, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 2, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 2, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 2, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 2, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, 2, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 2, false>, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 2, false>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 2, false>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, -1, 2, false>, Eigen::Matrix, 0, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, false>, -1, 2, false>, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false>, -1, 2, false>, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:163:27: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 0, 4>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:166:34: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::Block, 1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, 1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, 1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, 1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, 1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, 1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, 1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:91:22: required from 'void Eigen::MatrixBase::makeHouseholder(EssentialPart&, Scalar&, RealScalar&) const [with EssentialPart = Eigen::Matrix; Derived = Eigen::Matrix; Scalar = double; RealScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:531:20: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:126:38: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, Eigen::Block, -1, -1, false>, 1, -1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, Eigen::Block, -1, -1, false>, 1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::Block, -1, -1, false>, 1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base >, Eigen::Block, -1, -1, false>, 1, -1, false>, 0, 4>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl >, Eigen::Block, -1, -1, false>, 1, -1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product >, Eigen::Block, -1, -1, false>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:126:41: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:129:29: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Matrix; Derived = Eigen::Block, -1, -1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:536:69: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0, 4>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:129:41: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, false>, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, false>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, false>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, -1, 1, false>, Eigen::Matrix, 0, 4>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, false>, -1, 1, false>, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false>, -1, 1, false>, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:163:27: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 0, 4>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:166:34: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:369:102: required from 'struct Eigen::internal::plain_object_eval, -1, -1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:369:45: required from 'struct Eigen::internal::generic_product_impl, -1, -1, true>, Eigen::Block, -1, 1, true>, -1, 1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; Lhs = Eigen::Block, -1, -1, true>; Rhs = Eigen::Block, -1, 1, true>, -1, 1, false>; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, -1, -1, true>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Product, -1, -1, true>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/NoAlias.h:42:31: required from 'ExpressionType& Eigen::NoAlias::operator=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, -1, true>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0>; ExpressionType = Eigen::Matrix; StorageBase = Eigen::MatrixBase]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:615:21: required from 'void Eigen::EigenSolver<_MatrixType>::doComputeEigenvectors() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:447:7: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, true>, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:369:102: required from 'struct Eigen::internal::plain_object_eval, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:370:45: required from 'struct Eigen::internal::generic_product_impl, -1, -1, true>, Eigen::Block, -1, 1, true>, -1, 1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; Lhs = Eigen::Block, -1, -1, true>; Rhs = Eigen::Block, -1, 1, true>, -1, 1, false>; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, -1, -1, true>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Product, -1, -1, true>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/NoAlias.h:42:31: required from 'ExpressionType& Eigen::NoAlias::operator=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, -1, true>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0>; ExpressionType = Eigen::Matrix; StorageBase = Eigen::MatrixBase]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:615:21: required from 'void Eigen::EigenSolver<_MatrixType>::doComputeEigenvectors() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:447:7: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, -1, false>, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, -1, -1, false>, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:40: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, -1, -1, false>, 1, -1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:321:36: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:401:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:449:42: required from 'Eigen::LLT& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:115:14: required from 'Eigen::LLT::LLT(Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:99:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Inverse.h:69:7: required from 'class Eigen::InverseImpl >, Eigen::SolverStorage>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Inverse.h:43:7: required from 'class Eigen::Inverse > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/InverseImpl.h:28:43: required from 'static void Eigen::internal::compute_inverse::run(const MatrixType&, ResultType&) [with MatrixType = Eigen::Matrix; ResultType = Eigen::Matrix; int Size = -1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/InverseImpl.h:310:60: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:105:12: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, Eigen::internal::member_sum, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix >, Eigen::internal::member_sum, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix >, Eigen::internal::member_sum, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/VectorwiseOp.h:56:7: required from 'class Eigen::PartialReduxExpr, const Eigen::Matrix >, Eigen::internal::member_sum, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:523:46: required from 'void Eigen::PartialPivLU::compute() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Block, -1, 1, true>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, -1, 1, true>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Matrix; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Functor = add_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/NoAlias.h:50:31: required from 'ExpressionType& Eigen::NoAlias::operator+=(const StorageBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; ExpressionType = Eigen::Matrix; StorageBase = Eigen::MatrixBase]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:414:26: required from 'std::pair HPolytope::line_intersect_coord(const Point&, const Point&, const unsigned int&, const unsigned int&, VT&) const [with Point = point >; typename Point::FT = double; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/gaussian_cdhr_walk.hpp:109:43: required from 'void GaussianCDHRWalk::Walk::apply(const BallPolytope&, Point&, const NT&, const unsigned int&, RandomNumberGenerator&) [with BallPolytope = HPolytope > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_gaussians.hpp:420:32: required from 'double volume_cooling_gaussians(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&) [with WalkTypePolicy = GaussianCDHRWalk; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:52:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:251:39: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:132:22: required from 'Eigen::internal::dense_product_base::operator const Scalar() const [with Lhs = Eigen::Block, 1, -1, false>; Rhs = Eigen::Matrix; int Option = 0; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:219:25: required from 'int HPolytope::is_in(const Point&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/gaussian_ball_walk.hpp:84:24: required from 'void GaussianBallWalk::Walk::apply(const BallPolytope&, Point&, const NT&, const unsigned int&, RandomNumberGenerator&) [with BallPolytope = HPolytope > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_gaussians.hpp:420:32: required from 'double volume_cooling_gaussians(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&) [with WalkTypePolicy = GaussianBallWalk; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:56:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, 1, -1, false> >, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, 1, -1, false> >, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:251:54: required from 'static void Eigen::internal::generic_product_impl::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::Block, 1, -1, false>; Rhs = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:124:75: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:132:22: required from 'Eigen::internal::dense_product_base::operator const Scalar() const [with Lhs = Eigen::Block, 1, -1, false>; Rhs = Eigen::Matrix; int Option = 0; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:219:25: required from 'int HPolytope::is_in(const Point&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/gaussian_ball_walk.hpp:84:24: required from 'void GaussianBallWalk::Walk::apply(const BallPolytope&, Point&, const NT&, const unsigned int&, RandomNumberGenerator&) [with BallPolytope = HPolytope > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_gaussians.hpp:420:32: required from 'double volume_cooling_gaussians(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&) [with WalkTypePolicy = GaussianBallWalk; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:56:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseUnaryOp, const Eigen::Matrix >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_max_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Matrix > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_max_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Matrix >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:438:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::maxCoeff() const [with Derived = Eigen::CwiseUnaryOp, const Eigen::Matrix >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:433:45: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:454:5: required from 'void Eigen::internal::apply_rotation_in_the_plane(Eigen::DenseBase&, Eigen::DenseBase&, const Eigen::JacobiRotation&) [with VectorX = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; VectorY = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; OtherScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:296:40: required from 'void Eigen::MatrixBase::applyOnTheRight(Eigen::Index, Eigen::Index, const Eigen::JacobiRotation&) [with OtherScalar = double; Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:862:24: required from 'void Eigen::internal::tridiagonal_qr_step(RealScalar*, RealScalar*, Index, Index, Scalar*, Index) [with int StorageOrder = 0; RealScalar = double; Scalar = double; Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:520:87: required from 'Eigen::ComputationInfo Eigen::internal::computeFromTridiagonal_impl(DiagType&, SubDiagType&, Eigen::Index, bool, MatrixType&) [with MatrixType = Eigen::Matrix; DiagType = Eigen::Matrix; SubDiagType = Eigen::Matrix; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:439:49: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, true>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false>, -1, 1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, 1, true>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false>, -1, 1, true>, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:63:90: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:63:57: required from 'void Eigen::internal::make_block_householder_triangular_factor(TriangularFactorType&, const VectorsType&, const CoeffsType&) [with TriangularFactorType = Eigen::Matrix; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false>, -1, -1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:64:57: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:67:61: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/FullPivLU.h:522:35: required from 'void Eigen::FullPivLU::computeInPlace() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/FullPivLU.h:121:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/FullPivLU.h:886:10: required from 'const Eigen::FullPivLU::PlainObject> Eigen::MatrixBase::fullPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:399:30: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:675:28: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:341:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:292:73: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, Eigen::Block, 1, -1, false>, 1, -1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false>, Eigen::Block, 1, -1, false>, 1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false>, Eigen::Block, 1, -1, false>, 1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, 1, true>, -1, 1, false>, Eigen::Block, 1, -1, false>, 1, -1, false>, 0, 5>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, 1, true>, -1, 1, false>, Eigen::Block, 1, -1, false>, 1, -1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, 1, true>, -1, 1, false>, Eigen::Block, 1, -1, false>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/FullPivLU.h:563:85: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/FullPivLU.h:886:10: required from 'const Eigen::FullPivLU::PlainObject> Eigen::MatrixBase::fullPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:399:30: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:675:28: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:341:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:292:73: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, true>, -1, 1, false>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, 1, true>, -1, 1, false>, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:271:17: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:91:22: required from 'void Eigen::MatrixBase::makeHouseholder(EssentialPart&, Scalar&, RealScalar&) const [with EssentialPart = Eigen::VectorBlock, -1, 1, true>, -1, 1, false>, -1>; Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; Scalar = double; RealScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:45:18: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:271:17: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, true>, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:454:5: required from 'void Eigen::internal::apply_rotation_in_the_plane(Eigen::DenseBase&, Eigen::DenseBase&, const Eigen::JacobiRotation&) [with VectorX = Eigen::Block, -1, -1, true>, 1, -1, false>; VectorY = Eigen::Block, -1, -1, true>, 1, -1, false>; OtherScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:281:40: required from 'void Eigen::MatrixBase::applyOnTheLeft(Eigen::Index, Eigen::Index, const Eigen::JacobiRotation&) [with OtherScalar = double; Derived = Eigen::Block, -1, -1, true>; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:412:47: required from 'void Eigen::RealSchur<_MatrixType>::splitOffTwoRows(Index, bool, const Scalar&) [with _MatrixType = Eigen::Matrix; Index = long long int; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:327:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:961:41: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:454:5: required from 'void Eigen::internal::apply_rotation_in_the_plane(Eigen::DenseBase&, Eigen::DenseBase&, const Eigen::JacobiRotation&) [with VectorX = Eigen::Block, -1, -1, false>, -1, 1, true>; VectorY = Eigen::Block, -1, -1, false>, -1, 1, true>; OtherScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:296:40: required from 'void Eigen::MatrixBase::applyOnTheRight(Eigen::Index, Eigen::Index, const Eigen::JacobiRotation&) [with OtherScalar = double; Derived = Eigen::Block, -1, -1, false>; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:413:41: required from 'void Eigen::RealSchur<_MatrixType>::splitOffTwoRows(Index, bool, const Scalar&) [with _MatrixType = Eigen::Matrix; Index = long long int; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:327:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:454:5: required from 'void Eigen::internal::apply_rotation_in_the_plane(Eigen::DenseBase&, Eigen::DenseBase&, const Eigen::JacobiRotation&) [with VectorX = Eigen::Block, -1, -1, false>, -1, 1, true>; VectorY = Eigen::Block, -1, -1, false>, -1, 1, true>; OtherScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:296:40: required from 'void Eigen::MatrixBase::applyOnTheRight(Eigen::Index, Eigen::Index, const Eigen::JacobiRotation&) [with OtherScalar = double; Derived = Eigen::Block, -1, -1, false>; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:413:41: required from 'void Eigen::RealSchur<_MatrixType>::splitOffTwoRows(Index, bool, const Scalar&) [with _MatrixType = Eigen::Matrix; Index = long long int; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:327:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, 2, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, 2, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, 2, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, 2, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, 2, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:40: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, 2, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:76:71: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, 1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, 1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:40: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, 1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:76:71: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:496:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: In instantiation of 'class Eigen::internal::gebp_traits':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularSolverMatrix.h:215:27: required from 'static void Eigen::internal::triangular_solve_matrix::run(Index, Index, const Scalar*, Index, Scalar*, Index, Index, Eigen::internal::level3_blocking&) [with Scalar = double; Index = long long int; int Mode = 2; bool Conjugate = false; int TriStorageOrder = 1; int OtherInnerStride = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/SolveTriangular.h:102:12: required from 'static void Eigen::internal::triangular_solver_selector::run(const Lhs&, Rhs&) [with Lhs = const Eigen::Transpose, -1, -1, false> >; Rhs = Eigen::Block, -1, -1, false>; int Side = 2; int Mode = 2]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/SolveTriangular.h:182:21: required from 'void Eigen::TriangularViewImpl<_MatrixType, _Mode, Eigen::Dense>::solveInPlace(const Eigen::MatrixBase&) const [with int Side = 2; OtherDerived = Eigen::Block, -1, -1, false>; _MatrixType = const Eigen::Transpose, -1, -1, false> >; unsigned int _Mode = 2]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:357:96: required from 'static Eigen::Index Eigen::internal::llt_inplace::blocked(MatrixType&) [with MatrixType = Eigen::Matrix; Scalar = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:401:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:449:42: required from 'Eigen::LLT& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:115:14: required from 'Eigen::LLT::LLT(Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:99:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:391:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 391 | typedef typename conditional::type LhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:392:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 392 | typedef typename conditional::type RhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:393:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 393 | typedef typename conditional::type ResPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:522:41: required from 'struct Eigen::internal::unary_evaluator, const Eigen::Block, 1, -1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Block, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, 1, -1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:458:42: required from 'std::vector HPolytope::get_dists(const NT&) const [with Point = point >; typename Point::FT = double; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_gaussians.hpp:89:41: required from 'void get_first_gaussian(const Polytope&, const NT&, const NT&, const NT&, std::vector&) [with Polytope = HPolytope > >; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_gaussians.hpp:224:23: required from 'void compute_annealing_schedule(const Polytope&, const NT&, const NT&, const NT&, const unsigned int&, const unsigned int&, const NT&, const NT&, std::vector&, RandomNumberGenerator&) [with WalkType = GaussianCDHRWalk::Walk > >, BoostRandomNumberGenerator, double> >; RandomPointGenerator = GaussianRandomPointGenerator > >, BoostRandomNumberGenerator, double> > >; Polytope = HPolytope > >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_gaussians.hpp:361:6: required from 'double volume_cooling_gaussians(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&) [with WalkTypePolicy = GaussianCDHRWalk; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:52:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:44: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block, -1, 1, false>; U = Eigen::Block, -1, 1, true>, -1, 1, false>; bool NeedToTranspose = false; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false>, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, false>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, 1, false>, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointRank2Update.h:33:74: required from 'static void Eigen::internal::selfadjoint_rank2_update_selector::run(Scalar*, Index, const UType&, const VType&, const Scalar&) [with Scalar = double; Index = long long int; UType = Eigen::Block, -1, 1, true>, -1, 1, false>; VType = Eigen::Block, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointRank2Update.h:86:10: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointRank2Update.h:34:60: required from 'static void Eigen::internal::selfadjoint_rank2_update_selector::run(Scalar*, Index, const UType&, const VType&, const Scalar&) [with Scalar = double; Index = long long int; UType = Eigen::Block, -1, 1, true>, -1, 1, false>; VType = Eigen::Block, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointRank2Update.h:86:10: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointRank2Update.h:34:23: required from 'static void Eigen::internal::selfadjoint_rank2_update_selector::run(Scalar*, Index, const UType&, const VType&, const Scalar&) [with Scalar = double; Index = long long int; UType = Eigen::Block, -1, 1, true>, -1, 1, false>; VType = Eigen::Block, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointRank2Update.h:86:10: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, -1, 1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:40: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, -1, 1, true>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:71:51: required from 'class Eigen::internal::visitor_evaluator, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:110:17: required from 'void Eigen::DenseBase::visit(Visitor&) const [with Visitor = Eigen::internal::max_coeff_visitor, 1, -1, false> >; Derived = Eigen::Block, 1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:266:14: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::maxCoeff(IndexType*) const [with IndexType = long long int; Derived = Eigen::Block, 1, -1, false>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:519:90: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:475:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:40: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix, 1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, Eigen::Matrix, 1, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, Eigen::Matrix, 1, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, Eigen::Matrix, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:436:50: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:236:8: required from 'void compute_hpoly_for_mmc(Zonotope&, HPolytope&) [with Zonotope = Zonotope > >; HPolytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:295:26: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = CDHRWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:286:69: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Inverse >, 1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Inverse >, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Inverse >, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, Eigen::Inverse >, 1, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, Eigen::Inverse >, 1, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, Eigen::Inverse >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:436:50: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Inverse >, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Inverse >, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, Eigen::Inverse >, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:237:8: required from 'void compute_hpoly_for_mmc(Zonotope&, HPolytope&) [with Zonotope = Zonotope > >; HPolytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:295:26: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = CDHRWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:286:69: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false>, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 1, -1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, false>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 1, -1, false>, 1, -1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::ReturnByValue > > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:399:12: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:675:28: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:341:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:292:73: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::ReturnByValue > > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:399:12: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:675:28: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:341:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:292:73: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, 1, -1, false>, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, 1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, 1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, 1, -1, false>, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, 1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/FullPivLU.h:696:90: required from 'void Eigen::internal::kernel_retval >::evalTo(Dest&) const [with Dest = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/misc/Kernel.h:56:71: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::ReturnByValue > > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:399:12: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:675:28: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:341:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:292:73: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseUnaryOp, const Eigen::Matrix >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Matrix > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Matrix >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseUnaryOp, const Eigen::Matrix >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:46: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Matrix; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::norm() const [with Derived = Eigen::Matrix; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:205:25: required from 'std::pair VPolytope::get_center_radius_inscribed_simplex(typename std::vector::iterator, typename std::vector::iterator) [with Point = point >; typename Point::FT = double; typename std::vector::iterator = std::vector >, std::allocator > > >::iterator]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:165:61: required from 'std::pair IntersectionOfVpoly::ComputeInnerBall() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; typename VPolytope::NT = double; typename VPolytope::PointType = point >]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:40:60: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = IntersectionOfVpoly > >, BoostRandomNumberGenerator, double> >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:313:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:40: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:76:71: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:271:17: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:327:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:501:10: required from 'Derived& Eigen::DenseBase::setZero() [with Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:84:22: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:327:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:501:10: required from 'Derived& Eigen::DenseBase::setZero() [with Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:84:22: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Block, -1, 1, true>, -1, 1, false> > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:221:28: required from 'static typename Eigen::NumTraits::Scalar>::Real Eigen::internal::lpNorm_selector::run(const Eigen::MatrixBase&) [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:269:52: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::lpNorm() const [with int p = 1; Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:441:74: required from 'Eigen::LLT& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:115:14: required from 'Eigen::LLT::LLT(Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:99:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:522:41: required from 'struct Eigen::internal::unary_evaluator, const Eigen::Block, -1, -1, false>, 1, -1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, -1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Block, -1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, -1, false>, 1, -1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:401:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:449:42: required from 'Eigen::LLT& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:115:14: required from 'Eigen::LLT::LLT(Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:99:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:369:102: required from 'struct Eigen::internal::plain_object_eval, -1, -1, false>, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:369:45: required from 'struct Eigen::internal::generic_product_impl, -1, -1, false>, -1, -1, false>, Eigen::Transpose, -1, -1, false>, 1, -1, false> >, Eigen::DenseShape, Eigen::DenseShape, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:178:42: required from 'static void Eigen::internal::Assignment, Eigen::internal::sub_assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::sub_assign_op&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, 1, false>; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Transpose, -1, -1, false>, 1, -1, false> >; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Transpose, -1, -1, false>, 1, -1, false> >, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>, -1, 1, false>; Src = Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Transpose, -1, -1, false>, 1, -1, false> >, 0>; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/NoAlias.h:58:31: required from 'ExpressionType& Eigen::NoAlias::operator-=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Transpose, -1, -1, false>, 1, -1, false> >, 0>; ExpressionType = Eigen::Block, -1, -1, false>, -1, 1, false>; StorageBase = Eigen::MatrixBase]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:325:38: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:401:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:449:42: required from 'Eigen::LLT& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:115:14: required from 'Eigen::LLT::LLT(Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:99:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: In instantiation of 'void Eigen::internal::gebp_kernel::operator()(const DataMapper&, const LhsScalar*, const RhsScalar*, Index, Index, Index, ResScalar, Index, Index, Index, Index) [with LhsScalar = double; RhsScalar = double; Index = long long int; DataMapper = Eigen::internal::blas_data_mapper; int mr = 4; int nr = 4; bool ConjugateLhs = false; bool ConjugateRhs = false; ResScalar = double]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularSolverMatrix.h:287:26: required from 'static void Eigen::internal::triangular_solve_matrix::run(Index, Index, const Scalar*, Index, Scalar*, Index, Index, Eigen::internal::level3_blocking&) [with Scalar = double; Index = long long int; int Mode = 2; bool Conjugate = false; int TriStorageOrder = 1; int OtherInnerStride = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/SolveTriangular.h:102:12: required from 'static void Eigen::internal::triangular_solver_selector::run(const Lhs&, Rhs&) [with Lhs = const Eigen::Transpose, -1, -1, false> >; Rhs = Eigen::Block, -1, -1, false>; int Side = 2; int Mode = 2]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/SolveTriangular.h:182:21: required from 'void Eigen::TriangularViewImpl<_MatrixType, _Mode, Eigen::Dense>::solveInPlace(const Eigen::MatrixBase&) const [with int Side = 2; OtherDerived = Eigen::Block, -1, -1, false>; _MatrixType = const Eigen::Transpose, -1, -1, false> >; unsigned int _Mode = 2]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:357:96: required from 'static Eigen::Index Eigen::internal::llt_inplace::blocked(MatrixType&) [with MatrixType = Eigen::Matrix; Scalar = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:401:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:449:42: required from 'Eigen::LLT& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:115:14: required from 'Eigen::LLT::LLT(Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:99:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1537:103: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 1537 | const int SResPacketHalfSize = unpacket_traits::half>::size;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1592:135: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 1592 | typedef typename conditional=8,typename unpacket_traits::half,SResPacket>::type SResPacketHalf;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1593:135: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 1593 | typedef typename conditional=8,typename unpacket_traits::half,SLhsPacket>::type SLhsPacketHalf;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1594:135: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 1594 | typedef typename conditional=8,typename unpacket_traits::half,SRhsPacket>::type SRhsPacketHalf;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1595:135: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 1595 | typedef typename conditional=8,typename unpacket_traits::half,SAccPacket>::type SAccPacketHalf;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h:155:52: required from 'void Eigen::internal::tribb_kernel::operator()(ResScalar*, Index, Index, const LhsScalar*, const RhsScalar*, Index, Index, const ResScalar&) [with LhsScalar = double; RhsScalar = double; Index = long long int; int mr = 4; int nr = 4; bool ConjLhs = false; bool ConjRhs = false; int ResInnerStride = 1; int UpLo = 1; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h:116:13: required from 'static void Eigen::internal::general_matrix_matrix_triangular_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, Index, const ResScalar&, Eigen::internal::level3_blocking&) [with Index = long long int; LhsScalar = double; int LhsStorageOrder = 0; bool ConjugateLhs = false; RhsScalar = double; int RhsStorageOrder = 1; bool ConjugateRhs = false; int ResInnerStride = 1; int UpLo = 1; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointProduct.h:113:12: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:401:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:449:42: required from 'Eigen::LLT& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:115:14: required from 'Eigen::LLT::LLT(Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:99:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:401:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:449:42: required from 'Eigen::LLT& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:115:14: required from 'Eigen::LLT::LLT(Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:99:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:492:30: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, Eigen::Transpose >, 1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, Eigen::Transpose >, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::Transpose >, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base >, Eigen::Transpose >, 1, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl >, Eigen::Transpose >, 1, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product >, Eigen::Transpose >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:436:50: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:390:12: required from 'void VPolytope::linear_transformIt(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:109:29: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:369:102: required from 'struct Eigen::internal::plain_object_eval, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:370:45: required from 'struct Eigen::internal::generic_product_impl, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Src = Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/NoAlias.h:42:31: required from 'ExpressionType& Eigen::NoAlias::operator=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>; ExpressionType = Eigen::Map, 0, Eigen::Stride<0, 0> >; StorageBase = Eigen::MatrixBase]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:163:19: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:141:7: required from 'Eigen::DenseCoeffsBase::CoeffReturnType Eigen::DenseCoeffsBase::coeff(Eigen::Index) const [with Derived = Eigen::Block, -1, 1, false>; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:181:19: required from 'Eigen::DenseCoeffsBase::CoeffReturnType Eigen::DenseCoeffsBase::operator()(Eigen::Index) const [with Derived = Eigen::Block, -1, 1, false>; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:63:53: required from 'void Eigen::internal::make_block_householder_triangular_factor(TriangularFactorType&, const VectorsType&, const CoeffsType&) [with TriangularFactorType = Eigen::Matrix; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseUnaryOp, const Eigen::Product >, Eigen::Matrix, 0> >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Product >, Eigen::Matrix, 0> > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Product >, Eigen::Matrix, 0> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseUnaryOp, const Eigen::Product >, Eigen::Matrix, 0> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:46: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Product >, Eigen::Matrix, 0>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::norm() const [with Derived = Eigen::Product >, Eigen::Matrix, 0>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:96:52: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:671:14: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:341:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:292:73: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Matrix >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Matrix, const Eigen::Matrix > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Matrix >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Matrix >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:51: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Matrix; U = Eigen::Matrix; bool NeedToTranspose = false; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: required from 'typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType Eigen::MatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Matrix; Derived = Eigen::Matrix; typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType = double; typename Eigen::internal::traits::Scalar = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:401:35: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:675:28: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:341:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:292:73: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseUnaryOp, const Eigen::Matrix >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Matrix > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Matrix >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseUnaryOp, const Eigen::Matrix >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:46: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Matrix; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::norm() const [with Derived = Eigen::Matrix; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:403:21: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:675:28: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:341:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:292:73: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseUnaryOp, const Eigen::Product, Eigen::Matrix, 0> >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Product, Eigen::Matrix, 0> > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Product, Eigen::Matrix, 0> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseUnaryOp, const Eigen::Product, Eigen::Matrix, 0> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:46: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Product, Eigen::Matrix, 0>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::norm() const [with Derived = Eigen::Product, Eigen::Matrix, 0>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:168:55: required from 'static NT compute_diameter, HPolytope > >::compute(const ZonoIntersectHPoly, HPolytope >&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = ZonoIntersectHPoly > >, HPolytope > > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:671:14: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = ZonoIntersectHPoly > >, HPolytope > > >; PolyBall2 = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:363:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:292:73: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, true>, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:369:102: required from 'struct Eigen::internal::plain_object_eval, -1, -1, true>, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:369:45: required from 'struct Eigen::internal::generic_product_impl, -1, -1, true>, -1, -1, false>, Eigen::Block, -1, 1, true>, -1, 1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, true>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, true>, -1, 1, false>; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, -1, -1, true>, -1, -1, false>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Src = Eigen::Product, -1, -1, true>, -1, -1, false>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/NoAlias.h:42:31: required from 'ExpressionType& Eigen::NoAlias::operator=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, -1, true>, -1, -1, false>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0>; ExpressionType = Eigen::Map, 0, Eigen::Stride<0, 0> >; StorageBase = Eigen::MatrixBase]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:163:19: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:271:17: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 2, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 2, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:522:41: required from 'struct Eigen::internal::unary_evaluator, const Eigen::Block, 2, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, 2, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Block, 2, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, 2, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:522:41: required from 'struct Eigen::internal::unary_evaluator, const Eigen::Block, 1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Block, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, 1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:381:43: required from 'static Eigen::Index Eigen::internal::partial_lu_impl::unblocked_lu(MatrixType&, PivIndex*, PivIndex&) [with Scalar = double; int StorageOrder = 0; PivIndex = int; Eigen::Index = long long int; MatrixType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:436:26: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0, 5>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:406:78: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:499:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'struct Eigen::internal::general_matrix_vector_product, 0, false, double, Eigen::internal::const_blas_data_mapper, false, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:244:134: required from 'static void Eigen::internal::gemv_dense_selector<2, 0, true>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Matrix; Rhs = Eigen::Matrix; Dest = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:383:34: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::Matrix; Rhs = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Matrix; Lhs = Eigen::Matrix; Rhs = Eigen::Matrix; Derived = Eigen::internal::generic_product_impl, Eigen::Matrix, Eigen::DenseShape, Eigen::DenseShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: required from 'static void Eigen::internal::generic_product_impl_base::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::Matrix; Rhs = Eigen::Matrix; Derived = Eigen::internal::generic_product_impl, Eigen::Matrix, Eigen::DenseShape, Eigen::DenseShape, 7>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/NoAlias.h:42:31: required from 'ExpressionType& Eigen::NoAlias::operator=(const StorageBase&) [with OtherDerived = Eigen::Product, Eigen::Matrix, 0>; ExpressionType = Eigen::Matrix; StorageBase = Eigen::MatrixBase]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:241:29: required from 'std::pair HPolytope::line_intersect(const Point&, const Point&) const [with Point = point >; typename Point::FT = double]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/gaussian_rdhr_walk.hpp:102:57: required from 'void GaussianRDHRWalk::Walk::apply(const BallPolytope&, Point&, const NT&, const unsigned int&, RandomNumberGenerator&) [with BallPolytope = HPolytope > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_gaussians.hpp:420:32: required from 'double volume_cooling_gaussians(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&) [with WalkTypePolicy = GaussianRDHRWalk; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:54:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:75:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 75 | typedef typename conditional::type LhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:76:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 76 | typedef typename conditional::type RhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:77:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 77 | typedef typename conditional::type ResPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 2, Eigen::Stride<0, 0> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 2, Eigen::Stride<0, 0> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 2, Eigen::Stride<0, 0> >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 2, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 2, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 2, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/NoAlias.h:42:31: required from 'ExpressionType& Eigen::NoAlias::operator=(const StorageBase&) [with OtherDerived = Eigen::Product, Eigen::Matrix, 0>; ExpressionType = Eigen::Matrix; StorageBase = Eigen::MatrixBase]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:241:29: required from 'std::pair HPolytope::line_intersect(const Point&, const Point&) const [with Point = point >; typename Point::FT = double]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/gaussian_rdhr_walk.hpp:102:57: required from 'void GaussianRDHRWalk::Walk::apply(const BallPolytope&, Point&, const NT&, const unsigned int&, RandomNumberGenerator&) [with BallPolytope = HPolytope > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_gaussians.hpp:420:32: required from 'double volume_cooling_gaussians(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&) [with WalkTypePolicy = GaussianRDHRWalk; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:54:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 2, Eigen::Stride<0, 0> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 2, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 2, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 2, Eigen::Stride<0, 0> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 2, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:287:40: required from 'static void Eigen::internal::gemv_dense_selector<2, 0, true>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Matrix; Rhs = Eigen::Matrix; Dest = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:383:34: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/NoAlias.h:42:31: required from 'ExpressionType& Eigen::NoAlias::operator=(const StorageBase&) [with OtherDerived = Eigen::Product, Eigen::Matrix, 0>; ExpressionType = Eigen::Matrix; StorageBase = Eigen::MatrixBase]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:241:29: required from 'std::pair HPolytope::line_intersect(const Point&, const Point&) const [with Point = point >; typename Point::FT = double]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/gaussian_rdhr_walk.hpp:102:57: required from 'void GaussianRDHRWalk::Walk::apply(const BallPolytope&, Point&, const NT&, const unsigned int&, RandomNumberGenerator&) [with BallPolytope = HPolytope > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_gaussians.hpp:420:32: required from 'double volume_cooling_gaussians(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&) [with WalkTypePolicy = GaussianRDHRWalk; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:54:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::Matrix; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_max_op; Derived = Eigen::internal::redux_evaluator >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_max_op; Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:438:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::maxCoeff() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:509:85: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:475:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Matrix; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Matrix; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:689:18: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, Eigen::Matrix, 1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, Eigen::Matrix, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::Matrix, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base >, Eigen::Matrix, 1, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl >, Eigen::Matrix, 1, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product >, Eigen::Matrix, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:436:50: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:78:8: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:671:14: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:341:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:292:73: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:327:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Block, 1, -1, false>, 1, -1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:501:10: required from 'Derived& Eigen::DenseBase::setZero() [with Derived = Eigen::Block, 1, -1, false>, 1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/FullPivLU.h:675:37: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::ReturnByValue > > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:399:12: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:675:28: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:341:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:292:73: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'struct Eigen::internal::general_matrix_vector_product, 1, false, double, Eigen::internal::const_blas_data_mapper, false, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:339:132: required from 'static void Eigen::internal::gemv_dense_selector<2, 1, true>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; Dest = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:383:34: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Matrix; Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; Derived = Eigen::internal::generic_product_impl >, Eigen::Matrix, Eigen::DenseShape, Eigen::DenseShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: required from 'static void Eigen::internal::generic_product_impl_base::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; Derived = Eigen::internal::generic_product_impl >, Eigen::Matrix, Eigen::DenseShape, Eigen::DenseShape, 7>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/lp_oracles/solve_lp.h:289:7: required from 'Point PointInIntersection(MT, MT, Point, bool&) [with VT = Eigen::Matrix; MT = Eigen::Matrix; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:128:32: required from 'bool IntersectionOfVpoly::is_feasible() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:312:35: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:351:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 351 | typedef typename conditional::type LhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:352:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 352 | typedef typename conditional::type RhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:353:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 353 | typedef typename conditional::type ResPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/lp_oracles/solve_lp.h:289:7: required from 'Point PointInIntersection(MT, MT, Point, bool&) [with VT = Eigen::Matrix; MT = Eigen::Matrix; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:128:32: required from 'bool IntersectionOfVpoly::is_feasible() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:312:35: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, true>, -1, 1, false>, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, 1, true>, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:522:41: required from 'struct Eigen::internal::unary_evaluator, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:271:17: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, Eigen::Block, -1, -1, false>, 2, -1, false>, 1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, Eigen::Block, -1, -1, false>, 2, -1, false>, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::Block, -1, -1, false>, 2, -1, false>, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base >, Eigen::Block, -1, -1, false>, 2, -1, false>, 1, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl >, Eigen::Block, -1, -1, false>, 2, -1, false>, 1, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product >, Eigen::Block, -1, -1, false>, 2, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:397:50: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 1, 4>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 1, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:411:50: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 2, false>, Eigen::Matrix, 1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 2, false>, Eigen::Matrix, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 2, false>, Eigen::Matrix, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, -1, 2, false>, Eigen::Matrix, 1, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, false>, -1, 2, false>, Eigen::Matrix, 1, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false>, -1, 2, false>, Eigen::Matrix, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:397:50: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 1, 4>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 1, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:411:50: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, Eigen::Block, -1, -1, false>, 1, -1, false>, 1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, Eigen::Block, -1, -1, false>, 1, -1, false>, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::Block, -1, -1, false>, 1, -1, false>, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base >, Eigen::Block, -1, -1, false>, 1, -1, false>, 1, 4>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl >, Eigen::Block, -1, -1, false>, 1, -1, false>, 1, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product >, Eigen::Block, -1, -1, false>, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:397:50: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 1, 4>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 1, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:411:50: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, false>, Eigen::Matrix, 1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, false>, Eigen::Matrix, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, false>, Eigen::Matrix, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, -1, 1, false>, Eigen::Matrix, 1, 4>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, false>, -1, 1, false>, Eigen::Matrix, 1, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false>, -1, 1, false>, Eigen::Matrix, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:397:50: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 1, 4>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 1, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:411:50: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, 1, false>; SrcXprType = Eigen::CwiseNullaryOp, Eigen::Matrix >; Functor = div_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, 1, false>; SrcXprType = Eigen::CwiseNullaryOp, Eigen::Matrix >; Functor = Eigen::internal::div_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, 1, false>; Src = Eigen::CwiseNullaryOp, Eigen::Matrix >; Func = div_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, 1, false>; Src = Eigen::CwiseNullaryOp, Eigen::Matrix >; Func = div_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/SelfCwiseBinaryOp.h:41:28: required from 'Derived& Eigen::DenseBase::operator/=(const Scalar&) [with Derived = Eigen::Block, -1, 1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:326:21: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:401:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:449:42: required from 'Eigen::LLT& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:115:14: required from 'Eigen::LLT::LLT(Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:99:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, 1, false>; SrcXprType = Eigen::CwiseNullaryOp, Eigen::Matrix >; Functor = div_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, 1, false>; SrcXprType = Eigen::CwiseNullaryOp, Eigen::Matrix >; Functor = Eigen::internal::div_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>, -1, 1, false>; Src = Eigen::CwiseNullaryOp, Eigen::Matrix >; Func = div_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>, -1, 1, false>; Src = Eigen::CwiseNullaryOp, Eigen::Matrix >; Func = div_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/SelfCwiseBinaryOp.h:41:28: required from 'Derived& Eigen::DenseBase::operator/=(const Scalar&) [with Derived = Eigen::Block, -1, -1, false>, -1, 1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:326:21: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:401:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:449:42: required from 'Eigen::LLT& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:115:14: required from 'Eigen::LLT::LLT(Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:99:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:327:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:501:10: required from 'Derived& Eigen::DenseBase::setZero() [with Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h:171:23: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:401:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:449:42: required from 'Eigen::LLT& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:115:14: required from 'Eigen::LLT::LLT(Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:99:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'static void Eigen::internal::general_matrix_vector_product::run(Index, Index, const LhsMapper&, const RhsMapper&, ResScalar*, Index, RhsScalar) [with Index = long long int; LhsScalar = double; LhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateLhs = false; RhsScalar = double; RhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateRhs = false; int Version = 0; ResScalar = double]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:244:134: required from 'static void Eigen::internal::gemv_dense_selector<2, 0, true>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Matrix; Rhs = Eigen::Matrix; Dest = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:383:34: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::Matrix; Rhs = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Matrix; Lhs = Eigen::Matrix; Rhs = Eigen::Matrix; Derived = Eigen::internal::generic_product_impl, Eigen::Matrix, Eigen::DenseShape, Eigen::DenseShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: required from 'static void Eigen::internal::generic_product_impl_base::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::Matrix; Rhs = Eigen::Matrix; Derived = Eigen::internal::generic_product_impl, Eigen::Matrix, Eigen::DenseShape, Eigen::DenseShape, 7>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/NoAlias.h:42:31: required from 'ExpressionType& Eigen::NoAlias::operator=(const StorageBase&) [with OtherDerived = Eigen::Product, Eigen::Matrix, 0>; ExpressionType = Eigen::Matrix; StorageBase = Eigen::MatrixBase]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:241:29: required from 'std::pair HPolytope::line_intersect(const Point&, const Point&) const [with Point = point >; typename Point::FT = double]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/gaussian_rdhr_walk.hpp:102:57: required from 'void GaussianRDHRWalk::Walk::apply(const BallPolytope&, Point&, const NT&, const unsigned int&, RandomNumberGenerator&) [with BallPolytope = HPolytope > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_gaussians.hpp:420:32: required from 'double volume_cooling_gaussians(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&) [with WalkTypePolicy = GaussianRDHRWalk; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:54:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:112:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 112 | conj_helper pcj;\\n\"},{\"type\":1,\"output\":\" | ^~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:112:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, -1, false>, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'static void Eigen::internal::general_matrix_vector_product::run(Index, Index, const LhsMapper&, const RhsMapper&, ResScalar*, Index, ResScalar) [with Index = long long int; LhsScalar = double; LhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateLhs = false; RhsScalar = double; RhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateRhs = false; int Version = 0; ResScalar = double]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:339:132: required from 'static void Eigen::internal::gemv_dense_selector<2, 1, true>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; Dest = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:383:34: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Matrix; Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; Derived = Eigen::internal::generic_product_impl >, Eigen::Matrix, Eigen::DenseShape, Eigen::DenseShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: required from 'static void Eigen::internal::generic_product_impl_base::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; Derived = Eigen::internal::generic_product_impl >, Eigen::Matrix, Eigen::DenseShape, Eigen::DenseShape, 7>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/lp_oracles/solve_lp.h:289:7: required from 'Point PointInIntersection(MT, MT, Point, bool&) [with VT = Eigen::Matrix; MT = Eigen::Matrix; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolyintersectvpoly.h:128:32: required from 'bool IntersectionOfVpoly::is_feasible() [with VPolytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:312:35: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:385:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 385 | conj_helper pcj;\\n\"},{\"type\":1,\"output\":\" | ^~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:385:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, true>, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::Block, -1, -1, true>, -1, 1, true>; Functor = add_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::Block, -1, -1, true>, -1, 1, true>; Functor = Eigen::internal::add_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Src = Eigen::Block, -1, -1, true>, -1, 1, true>; Func = add_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Src = Eigen::Block, -1, -1, true>, -1, 1, true>; Func = add_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:177:18: required from 'Derived& Eigen::MatrixBase::operator+=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::Block, -1, -1, true>, -1, 1, true>; Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:164:9: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:271:17: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, true>, -1, -1, false>, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, true>, -1, -1, false>, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, true>, -1, -1, false>, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, true>, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, true>, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, true>, -1, -1, false>, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:271:17: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 2, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Matrix; SrcXprType = Eigen::Block, 2, 1, false>; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Matrix; SrcXprType = Eigen::Block, 2, 1, false>; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Block, 2, 1, false>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Block, 2, 1, false>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Block, 2, 1, false>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Transpose >, 1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Transpose >, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Transpose >, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, Eigen::Transpose >, 1, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, Eigen::Transpose >, 1, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, Eigen::Transpose >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:436:50: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:107:11: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::Matrix >, -1, 1, true, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::Matrix >, -1, 1, true, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::Matrix >, -1, 1, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1307:33: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix >, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix >, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::Matrix >, 1, -1, false, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::Matrix >, 1, -1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::Matrix >, 1, -1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1309:33: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:961:41: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:522:41: required from 'struct Eigen::internal::unary_evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:71:51: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:961:41: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:522:41: required from 'struct Eigen::internal::unary_evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:71:51: required from 'class Eigen::internal::visitor_evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:110:17: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:522:41: required from 'struct Eigen::internal::unary_evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:71:51: required from 'class Eigen::internal::visitor_evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:110:17: required from 'void Eigen::DenseBase::visit(Visitor&) const [with Visitor = Eigen::internal::max_coeff_visitor, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:266:14: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:371:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/Memory.h: In instantiation of 'Index Eigen::internal::first_default_aligned(const Scalar*, Index) [with Scalar = double; Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:128:55: required from 'static void Eigen::internal::general_matrix_vector_product::run(Index, Index, const LhsMapper&, const RhsMapper&, ResScalar*, Index, RhsScalar) [with Index = long long int; LhsScalar = double; LhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateLhs = false; RhsScalar = double; RhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:244:134: required from 'static void Eigen::internal::gemv_dense_selector<2, 0, true>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Matrix; Rhs = Eigen::Matrix; Dest = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:383:34: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::Matrix; Rhs = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Matrix; Lhs = Eigen::Matrix; Rhs = Eigen::Matrix; Derived = Eigen::internal::generic_product_impl, Eigen::Matrix, Eigen::DenseShape, Eigen::DenseShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: required from 'static void Eigen::internal::generic_product_impl_base::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::Matrix; Rhs = Eigen::Matrix; Derived = Eigen::internal::generic_product_impl, Eigen::Matrix, Eigen::DenseShape, Eigen::DenseShape, 7>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/NoAlias.h:42:31: required from 'ExpressionType& Eigen::NoAlias::operator=(const StorageBase&) [with OtherDerived = Eigen::Product, Eigen::Matrix, 0>; ExpressionType = Eigen::Matrix; StorageBase = Eigen::MatrixBase]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:241:29: required from 'std::pair HPolytope::line_intersect(const Point&, const Point&) const [with Point = point >; typename Point::FT = double]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/gaussian_rdhr_walk.hpp:102:57: required from 'void GaussianRDHRWalk::Walk::apply(const BallPolytope&, Point&, const NT&, const unsigned int&, RandomNumberGenerator&) [with BallPolytope = HPolytope > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_gaussians.hpp:420:32: required from 'double volume_cooling_gaussians(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&) [with WalkTypePolicy = GaussianRDHRWalk; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:54:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/Memory.h:470:60: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 470 | return first_aligned::alignment>(array, size);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, false>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:165:45: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:51: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block, -1, 1, false>; U = Eigen::Block, -1, 1, true>, -1, 1, false>; bool NeedToTranspose = false; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: required from 'typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType Eigen::MatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Block, -1, 1, true>, -1, 1, false>; Derived = Eigen::Block, -1, 1, false>; typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType = double; typename Eigen::internal::traits::Scalar = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:370:86: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true> >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Block, -1, 1, true> > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:46: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, -1, 1, true>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::norm() const [with Derived = Eigen::Block, -1, 1, true>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:505:52: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Block, -1, 1, true>, -1, 1, false> > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:46: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::norm() const [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:565:77: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: In instantiation of 'void Eigen::internal::gemm_pack_rhs::operator()(Scalar*, const DataMapper&, Index, Index, Index, Index) [with Scalar = double; Index = long long int; DataMapper = Eigen::internal::const_blas_data_mapper; int nr = 4; bool Conjugate = false; bool PanelMode = false]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixMatrix.h:193:21: required from 'static void Eigen::internal::general_matrix_matrix_product::run(Index, Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, Index, ResScalar, Eigen::internal::level3_blocking&, Eigen::internal::GemmParallelInfo*) [with Index = long long int; LhsScalar = double; int LhsStorageOrder = 0; bool ConjugateLhs = false; RhsScalar = double; int RhsStorageOrder = 0; bool ConjugateRhs = false; int ResInnerStride = 1; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixMatrix.h:228:14: required from 'void Eigen::internal::gemm_functor::operator()(Index, Index, Index, Index, Eigen::internal::GemmParallelInfo*) const [with Scalar = double; Index = long long int; Gemm = Eigen::internal::general_matrix_matrix_product; Lhs = Eigen::Matrix; Rhs = Eigen::Matrix; Dest = Eigen::Matrix; BlockingType = Eigen::internal::gemm_blocking_space<0, double, double, -1, -1, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/Parallelizer.h:98:7: required from 'void Eigen::internal::parallelize_gemm(const Functor&, Index, Index, Index, bool) [with bool Condition = true; Functor = gemm_functor, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, gemm_blocking_space<0, double, double, -1, -1, -1, 1, false> >; Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixMatrix.h:487:9: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::Matrix; Rhs = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixMatrix.h:437:20: required from 'static void Eigen::internal::generic_product_impl::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::Matrix; Rhs = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:236:8: required from 'void compute_hpoly_for_mmc(Zonotope&, HPolytope&) [with Zonotope = Zonotope > >; HPolytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:295:26: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = CDHRWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:286:69: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1981:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 1981 | PacketBlock kernel;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase > >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase > >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:92:8: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:671:14: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:341:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:292:73: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase > >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:197:26: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:92:8: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:671:14: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:341:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:292:73: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase > >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:197:43: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:92:8: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:671:14: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:341:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:292:73: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:46: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:76:71: required from 'void Eigen::MatrixBase::makeHouseholder(EssentialPart&, Scalar&, RealScalar&) const [with EssentialPart = Eigen::VectorBlock, -1, 1, true>, -1, 1, false>, -1>; Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; Scalar = double; RealScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:45:18: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:271:17: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 3, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Matrix; SrcXprType = Eigen::Block, 3, 1, false>; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Matrix; SrcXprType = Eigen::Block, 3, 1, false>; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Block, 3, 1, false>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Block, 3, 1, false>; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Block, 3, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, Eigen::CwiseNullaryOp, Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, Eigen::CwiseNullaryOp, Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::CwiseNullaryOp, Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Solve.h:86:7: required from 'class Eigen::SolveImpl >, Eigen::CwiseNullaryOp, Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Solve.h:62:7: required from 'class Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:577:39: required from 'static void Eigen::internal::Assignment >, Eigen::internal::assign_op::Scalar>, Eigen::internal::Dense2Dense>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op::Scalar>&) [with DstXprType = Eigen::Matrix; MatrixType = Eigen::Matrix; SrcXprType = Eigen::Inverse > >; typename Eigen::PartialPivLU::Scalar = double; typename DstXprType::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:105:12: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 16, Eigen::Stride<0, 0> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 16, Eigen::Stride<0, 0> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 16, Eigen::Stride<0, 0> >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 16, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 16, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 16, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, false>, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, 0, Eigen::Stride<0, 0> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:197:26: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false> > >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, 1, false> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:197:43: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:961:41: required from 'struct Eigen::internal::evaluator, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false>; SrcXprType = Eigen::Matrix; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false>; SrcXprType = Eigen::Matrix; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Src = Eigen::Matrix; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:797:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Src = Eigen::Product, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, true>, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false>; SrcXprType = Eigen::Matrix; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false>; SrcXprType = Eigen::Matrix; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Src = Eigen::Matrix; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:797:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Src = Eigen::Product, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Src = Eigen::Product, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Assign.h:66:28: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:59: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, -1, -1, false>; int Mode = 5; bool LhsIsTriangular = true; Lhs = const Eigen::Block, -1, -1, false>; Rhs = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:74: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, -1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, -1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false>, -1, -1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:462:59: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, -1, -1, false>; int Mode = 5; bool LhsIsTriangular = true; Lhs = const Eigen::Block, -1, -1, false>; Rhs = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase > >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/BlasUtil.h:464:13: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:92:8: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:671:14: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:341:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:292:73: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase > >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/BlasUtil.h:464:13: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:92:8: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:671:14: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:341:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:292:73: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: In instantiation of 'void Eigen::internal::gemm_pack_rhs::operator()(Scalar*, const DataMapper&, Index, Index, Index, Index) [with Scalar = double; Index = long long int; DataMapper = Eigen::internal::blas_data_mapper; int nr = 4; bool Conjugate = false; bool PanelMode = true]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularSolverMatrix.h:153:19: required from 'static void Eigen::internal::triangular_solve_matrix::run(Index, Index, const Scalar*, Index, Scalar*, Index, Index, Eigen::internal::level3_blocking&) [with Scalar = double; Index = long long int; int Mode = 2; bool Conjugate = false; int TriStorageOrder = 0; int OtherInnerStride = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/SolveTriangular.h:102:12: required from 'static void Eigen::internal::triangular_solver_selector::run(const Lhs&, Rhs&) [with Lhs = Eigen::Block, -1, -1, false>; Rhs = Eigen::Block, -1, -1, false>; int Side = 1; int Mode = 2]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/SolveTriangular.h:182:21: required from 'void Eigen::TriangularViewImpl<_MatrixType, _Mode, Eigen::Dense>::solveInPlace(const Eigen::MatrixBase&) const [with int Side = 1; OtherDerived = Eigen::Block, -1, -1, false>; _MatrixType = Eigen::Block, -1, -1, false>; unsigned int _Mode = 2]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/TriangularMatrix.h:509:37: required from 'void Eigen::TriangularViewImpl<_MatrixType, _Mode, Eigen::Dense>::solveInPlace(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Block, -1, -1, false>; _MatrixType = Eigen::Block, -1, -1, false>; unsigned int _Mode = 2]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/FullPivLU.h:687:52: required from 'void Eigen::internal::kernel_retval >::evalTo(Dest&) const [with Dest = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/misc/Kernel.h:56:71: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::ReturnByValue > > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:399:12: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:675:28: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:341:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:292:73: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1981:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 1981 | PacketBlock kernel;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, true>, -1, 1, false>, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Assign.h:66:28: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:271:17: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false> > >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, 1, true>, -1, 1, false> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:197:43: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:271:17: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, 2, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:369:102: required from 'struct Eigen::internal::plain_object_eval, -1, -1, false>, 2, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:499:76: required from 'struct Eigen::internal::product_evaluator >, Eigen::Block, -1, -1, false>, 2, -1, false>, 1>, 3, Eigen::DenseShape, Eigen::DenseShape, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:29:8: required from 'struct Eigen::internal::evaluator >, Eigen::Block, -1, -1, false>, 2, -1, false>, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::Product >, Eigen::Block, -1, -1, false>, 2, -1, false>, 1>; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::Product >, Eigen::Block, -1, -1, false>, 2, -1, false>, 1>; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 2, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:369:102: required from 'struct Eigen::internal::plain_object_eval, -1, -1, false>, -1, 2, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:498:76: required from 'struct Eigen::internal::product_evaluator, -1, -1, false>, -1, 2, false>, Eigen::Matrix, 1>, 3, Eigen::DenseShape, Eigen::DenseShape, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:29:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 2, false>, Eigen::Matrix, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::Product, -1, -1, false>, -1, 2, false>, Eigen::Matrix, 1>; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::Product, -1, -1, false>, -1, 2, false>, Eigen::Matrix, 1>; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:961:41: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; SrcXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Functor = swap_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; SrcXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Functor = Eigen::internal::swap_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Src = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Func = swap_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Src = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Func = swap_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:418:22: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; SrcXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Functor = swap_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; SrcXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Functor = Eigen::internal::swap_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Src = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Func = swap_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Src = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Func = swap_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:418:22: required from 'void Eigen::DenseBase::swap(const Eigen::DenseBase&) [with OtherDerived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Derived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:480:24: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:436:50: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:92:96: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 2>, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 2>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 2>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, 2>, Eigen::Matrix, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, 2>, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, 2>, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:94:66: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 1>, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, 1>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, 1>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base >, 1>, Eigen::Matrix, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl >, 1>, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product >, 1>, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:95:66: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 5>, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, 5>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, 5>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, 5>, Eigen::Matrix, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, false>, 5>, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false>, 5>, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:96:22: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false>, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, -1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, -1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, false>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false> >, Eigen::Block, -1, 1, false>, -1, 1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> >, Eigen::Block, -1, 1, false>, -1, 1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> >, Eigen::Block, -1, 1, false>, -1, 1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:121:7: required from 'class Eigen::internal::dense_product_base, -1, 1, false> >, Eigen::Block, -1, 1, false>, -1, 1, false>, 0, 6>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, 1, false> >, Eigen::Block, -1, 1, false>, -1, 1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, 1, false> >, Eigen::Block, -1, 1, false>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:126:41: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false>, 1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, 1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, 1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false>, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false>, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, false>, 1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:128:25: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Block, -1, 1, false>; Derived = Eigen::Block, -1, 1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:343:39: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0, 4>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:129:41: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::OuterStride<> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::OuterStride<> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::OuterStride<> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Map.h:94:79: required from 'class Eigen::Map, 0, Eigen::OuterStride<> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularSolverVector.h:97:18: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, -1, 1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::OuterStride<> >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::OuterStride<> >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::OuterStride<> >, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::OuterStride<> >, -1, 1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularSolverVector.h:123:64: required from 'static void Eigen::internal::triangular_solve_vector::run(Index, const LhsScalar*, Index, RhsScalar*) [with LhsScalar = double; RhsScalar = double; Index = long long int; int Mode = 2; bool Conjugate = false]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/SolveTriangular.h:73:12: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'struct Eigen::internal::general_matrix_vector_product, 0, false, double, Eigen::internal::const_blas_data_mapper, false, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularSolverVector.h:131:115: required from 'static void Eigen::internal::triangular_solve_vector::run(Index, const LhsScalar*, Index, RhsScalar*) [with LhsScalar = double; RhsScalar = double; Index = long long int; int Mode = 2; bool Conjugate = false]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/SolveTriangular.h:73:12: required from 'static void Eigen::internal::triangular_solver_selector::run(const Lhs&, Rhs&) [with Lhs = const Eigen::Block, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; int Side = 1; int Mode = 2]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/SolveTriangular.h:182:21: required from 'void Eigen::TriangularViewImpl<_MatrixType, _Mode, Eigen::Dense>::solveInPlace(const Eigen::MatrixBase&) const [with int Side = 1; OtherDerived = Eigen::Block, -1, 1, false>; _MatrixType = const Eigen::Block, -1, -1, false>; unsigned int _Mode = 2]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/TriangularMatrix.h:509:37: required from 'void Eigen::TriangularViewImpl<_MatrixType, _Mode, Eigen::Dense>::solveInPlace(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Block, -1, 1, false>; _MatrixType = const Eigen::Block, -1, -1, false>; unsigned int _Mode = 2]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:607:20: required from 'void Eigen::ColPivHouseholderQR::_solve_impl(const RhsType&, DstType&) const [with RhsType = Eigen::CwiseNullaryOp, Eigen::Matrix >; DstType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Solve.h:147:26: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:75:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 75 | typedef typename conditional::type LhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:76:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 76 | typedef typename conditional::type RhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:77:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 77 | typedef typename conditional::type ResPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:503:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h: In instantiation of 'static void Eigen::internal::selfadjoint_matrix_vector_product::run(Index, const Scalar*, Index, const Scalar*, Scalar*, Scalar) [with Scalar = double; Index = long long int; int StorageOrder = 0; int UpLo = 1; bool ConjugateLhs = false; bool ConjugateRhs = false; int Version = 0]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:227:7: required from 'static void Eigen::internal::selfadjoint_product_impl::run(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, -1, 1, false>; Lhs = Eigen::Block, -1, -1, false>; int LhsMode = 17; Rhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:772:109: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, -1, 1, false>; Lhs = Eigen::SelfAdjointView, -1, -1, false>, 1>; Rhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; int ProductTag = 7; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Block, -1, 1, false>; Lhs = Eigen::SelfAdjointView, -1, -1, false>, 1>; Rhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::SelfAdjointShape, Eigen::DenseShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: required from 'static void Eigen::internal::generic_product_impl_base::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Block, -1, 1, false>; Lhs = Eigen::SelfAdjointView, -1, -1, false>, 1>; Rhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::SelfAdjointShape, Eigen::DenseShape, 7>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Block, -1, 1, false>; Lhs = Eigen::SelfAdjointView, -1, -1, false>, 1>; Rhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:60:121: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 60 | conj_helper::IsComplex && EIGEN_LOGICAL_XOR(ConjugateLhs, IsRowMajor), ConjugateRhs> pcj0;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:60:121: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:61:121: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 61 | conj_helper::IsComplex && EIGEN_LOGICAL_XOR(ConjugateLhs, !IsRowMajor), ConjugateRhs> pcj1;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:61:121: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> > >, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, true>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, true>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, 1, -1, true>, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:32: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:48: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; int Mode = 5; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = const Eigen::Block, -1, -1, false>, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:751:113: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:150:68: required from 'static void Eigen::internal::product_triangular_matrix_matrix::run(Index, Index, Index, const Scalar*, Index, const Scalar*, Index, Scalar*, Index, Index, const Scalar&, Eigen::internal::level3_blocking&) [with Scalar = double; Index = long long int; int Mode = 5; int LhsStorageOrder = 0; bool ConjugateLhs = false; int RhsStorageOrder = 0; bool ConjugateRhs = false; int ResInnerStride = 1; int Version = 0]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:443:12: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, -1, -1, false>; int Mode = 5; bool LhsIsTriangular = true; Lhs = const Eigen::Block, -1, -1, false>; Rhs = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Diagonal.h:63:53: required from 'class Eigen::Diagonal, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:153:32: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:174:81: required from 'class Eigen::DenseBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Diagonal.h:63:53: required from 'class Eigen::Diagonal, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:153:32: required from 'static void Eigen::internal::product_triangular_matrix_matrix::run(Index, Index, Index, const Scalar*, Index, const Scalar*, Index, Scalar*, Index, Index, const Scalar&, Eigen::internal::level3_blocking&) [with Scalar = double; Index = long long int; int Mode = 5; int LhsStorageOrder = 0; bool ConjugateLhs = false; int RhsStorageOrder = 0; bool ConjugateRhs = false; int ResInnerStride = 1; int Version = 0]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:443:12: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, -1, -1, false>; int Mode = 5; bool LhsIsTriangular = true; Lhs = const Eigen::Block, -1, -1, false>; Rhs = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: In instantiation of 'void Eigen::internal::gemm_pack_lhs::operator()(Scalar*, const DataMapper&, Index, Index, Index, Index) [with Scalar = double; Index = long long int; DataMapper = Eigen::internal::const_blas_data_mapper; int Pack1 = 4; int Pack2 = 2; bool Conjugate = false; bool PanelMode = false]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixMatrix.h:182:17: required from 'static void Eigen::internal::general_matrix_matrix_product::run(Index, Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, Index, ResScalar, Eigen::internal::level3_blocking&, Eigen::internal::GemmParallelInfo*) [with Index = long long int; LhsScalar = double; int LhsStorageOrder = 1; bool ConjugateLhs = false; RhsScalar = double; int RhsStorageOrder = 0; bool ConjugateRhs = false; int ResInnerStride = 1; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixMatrix.h:228:14: required from 'void Eigen::internal::gemm_functor::operator()(Index, Index, Index, Index, Eigen::internal::GemmParallelInfo*) const [with Scalar = double; Index = long long int; Gemm = Eigen::internal::general_matrix_matrix_product; Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; Dest = Eigen::Matrix; BlockingType = Eigen::internal::gemm_blocking_space<0, double, double, -1, -1, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/Parallelizer.h:98:7: required from 'void Eigen::internal::parallelize_gemm(const Functor&, Index, Index, Index, bool) [with bool Condition = true; Functor = gemm_functor, Eigen::Transpose >, Eigen::Matrix, Eigen::Matrix, gemm_blocking_space<0, double, double, -1, -1, -1, 1, false> >; Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixMatrix.h:487:9: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixMatrix.h:437:20: required from 'static void Eigen::internal::generic_product_impl::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:78:8: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:671:14: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:341:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:292:73: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1847:33: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 1847 | PacketBlock kernel;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1847:33: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, false>, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, false>, 1, -1, false>; SrcXprType = Eigen::Block, 1, -1, false>, 1, -1, false>; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, false>, 1, -1, false>; SrcXprType = Eigen::Block, 1, -1, false>, 1, -1, false>; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 1, -1, false>, 1, -1, false>; Src = Eigen::Block, 1, -1, false>, 1, -1, false>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 1, -1, false>, 1, -1, false>; Src = Eigen::Block, 1, -1, false>, 1, -1, false>; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Block, 1, -1, false>, 1, -1, false>; Src = Eigen::Block, 1, -1, false>, 1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Assign.h:66:28: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::ReturnByValue > > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:399:12: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:675:28: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:341:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:292:73: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, 1, false>; SrcXprType = Eigen::CwiseUnaryOp, const Eigen::Block, 1, -1, false>, 1, -1, false> >; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, 1, false>; SrcXprType = Eigen::CwiseUnaryOp, const Eigen::Block, 1, -1, false>, 1, -1, false> >; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 1, 1, false>; Src = Eigen::CwiseUnaryOp, const Eigen::Block, 1, -1, false>, 1, -1, false> >; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 1, 1, false>; Src = Eigen::CwiseUnaryOp, const Eigen::Block, 1, -1, false>, 1, -1, false> >; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Block, 1, 1, false>; Src = Eigen::CwiseUnaryOp, const Eigen::Block, 1, -1, false>, 1, -1, false> >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Assign.h:66:28: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::ReturnByValue > > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:399:12: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:675:28: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:341:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:292:73: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::Matrix >, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Matrix >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/VectorwiseOp.h:104:1: required from 'ResultType Eigen::internal::member_sum::operator()(const XprType&) const [with XprType = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; ResultType = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1307:23: required from 'const Eigen::internal::evaluator >::Scalar Eigen::internal::evaluator >::coeff(Eigen::Index, Eigen::Index) const [with ArgType = const Eigen::CwiseUnaryOp, const Eigen::Matrix >; MemberOp = Eigen::internal::member_sum; int Direction = 0; Scalar = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:381:29: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::Matrix >, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Matrix >, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::Block, const Eigen::Matrix >, 1, -1, false>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::Block, const Eigen::Matrix >, 1, -1, false>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/VectorwiseOp.h:104:1: required from 'ResultType Eigen::internal::member_sum::operator()(const XprType&) const [with XprType = Eigen::Block, const Eigen::Matrix >, 1, -1, false>; ResultType = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1309:23: required from 'const Eigen::internal::evaluator >::Scalar Eigen::internal::evaluator >::coeff(Eigen::Index, Eigen::Index) const [with ArgType = const Eigen::CwiseUnaryOp, const Eigen::Matrix >; MemberOp = Eigen::internal::member_sum; int Direction = 0; Scalar = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:381:29: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>; SrcXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>; Functor = swap_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>; SrcXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>; Functor = Eigen::internal::swap_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>; Src = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>; Func = swap_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>; Src = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>; Func = swap_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:418:22: required from 'void Eigen::DenseBase::swap(const Eigen::DenseBase&) [with OtherDerived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>; Derived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:390:25: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:274:18: required from 'void Eigen::internal::outer_product_selector_run(Dst&, const Lhs&, const Rhs&, const Func&, const false_type&) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; Lhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>; Rhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>; Func = generic_product_impl, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, Eigen::DenseShape, Eigen::DenseShape, 5>::sub]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:329:41: required from 'static void Eigen::internal::generic_product_impl::subTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; Lhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>; Rhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:178:42: required from 'static void Eigen::internal::Assignment, Eigen::internal::sub_assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::sub_assign_op&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; Lhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>; Rhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; Src = Eigen::Product, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0>; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/NoAlias.h:58:31: required from 'ExpressionType& Eigen::NoAlias::operator-=(const StorageBase&) [with OtherDerived = Eigen::Product, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0>; ExpressionType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; StorageBase = Eigen::MatrixBase]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:406:53: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:280:48: required from 'void Eigen::internal::outer_product_selector_run(Dst&, const Lhs&, const Rhs&, const Func&, const false_type&) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; Lhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>; Rhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>; Func = generic_product_impl, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, Eigen::DenseShape, Eigen::DenseShape, 5>::sub]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:329:41: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'static void Eigen::internal::general_matrix_vector_product::run(Index, Index, const LhsMapper&, const RhsMapper&, ResScalar*, Index, RhsScalar) [with Index = long long int; LhsScalar = double; LhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateLhs = false; RhsScalar = double; RhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateRhs = false; int Version = 0; ResScalar = double]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularSolverVector.h:131:115: required from 'static void Eigen::internal::triangular_solve_vector::run(Index, const LhsScalar*, Index, RhsScalar*) [with LhsScalar = double; RhsScalar = double; Index = long long int; int Mode = 2; bool Conjugate = false]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/SolveTriangular.h:73:12: required from 'static void Eigen::internal::triangular_solver_selector::run(const Lhs&, Rhs&) [with Lhs = const Eigen::Block, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; int Side = 1; int Mode = 2]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/SolveTriangular.h:182:21: required from 'void Eigen::TriangularViewImpl<_MatrixType, _Mode, Eigen::Dense>::solveInPlace(const Eigen::MatrixBase&) const [with int Side = 1; OtherDerived = Eigen::Block, -1, 1, false>; _MatrixType = const Eigen::Block, -1, -1, false>; unsigned int _Mode = 2]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/TriangularMatrix.h:509:37: required from 'void Eigen::TriangularViewImpl<_MatrixType, _Mode, Eigen::Dense>::solveInPlace(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Block, -1, 1, false>; _MatrixType = const Eigen::Block, -1, -1, false>; unsigned int _Mode = 2]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:607:20: required from 'void Eigen::ColPivHouseholderQR::_solve_impl(const RhsType&, DstType&) const [with RhsType = Eigen::CwiseNullaryOp, Eigen::Matrix >; DstType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Solve.h:147:26: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:112:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 112 | conj_helper pcj;\\n\"},{\"type\":1,\"output\":\" | ^~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:112:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/BlasUtil.h:464:13: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, -1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, -1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, true>, 1, -1, false> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, true>, 1, -1, false> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, true>, 1, -1, false> >, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/VectorBlock.h:56:47: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:341:54: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >; Dest = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; int Mode = 6; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:59: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Matrix; int Mode = 6; bool LhsIsTriangular = true; Lhs = const Eigen::Transpose, -1, -1, false> >; Rhs = Eigen::Block, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:74: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false> >, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false> >, -1, -1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false> >, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false> >, -1, -1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:462:59: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Matrix; int Mode = 6; bool LhsIsTriangular = true; Lhs = const Eigen::Transpose, -1, -1, false> >; Rhs = Eigen::Block, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block, -1, 1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block, -1, 1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:578:52: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index, Eigen::Index) const [with Lhs = Eigen::Matrix; Rhs = Eigen::Matrix; int ProductTag = 8; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Matrix; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Matrix; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:631:63: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:236:8: required from 'void compute_hpoly_for_mmc(Zonotope&, HPolytope&) [with Zonotope = Zonotope > >; HPolytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:295:26: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = CDHRWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:286:69: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase >, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense >, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:390:12: required from 'void VPolytope::linear_transformIt(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:109:29: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block >, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block >, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:578:52: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index, Eigen::Index) const [with Lhs = Eigen::Inverse >; Rhs = Eigen::Transpose >; int ProductTag = 8; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Transpose >; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Inverse >; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:631:63: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:390:12: required from 'void VPolytope::linear_transformIt(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:109:29: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::OuterStride<> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::OuterStride<> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::OuterStride<> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Map.h:94:79: required from 'class Eigen::Map, 0, Eigen::OuterStride<> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:115:18: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Map.h:94:79: required from 'class Eigen::Map, 0, Eigen::Stride<0, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:119:18: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::InnerStride<> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::InnerStride<> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::InnerStride<> >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::InnerStride<> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::InnerStride<> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::InnerStride<> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::OuterStride<> >, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::OuterStride<> >, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::OuterStride<> >, 1, -1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::Stride<0, 0> >, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, 0, Eigen::Stride<0, 0> >, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:137:106: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:137:77: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const ResScalar&) [with Index = long long int; int Mode = 6; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:332:12: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'struct Eigen::internal::general_matrix_vector_product, 1, false, double, Eigen::internal::const_blas_data_mapper, false, 1>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:145:123: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const ResScalar&) [with Index = long long int; int Mode = 6; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:332:12: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >; Dest = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; int Mode = 6; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; int Mode = 5; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = const Eigen::Block, -1, -1, false>, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:751:113: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>; int ProductTag = 7; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>; Derived = Eigen::internal::generic_product_impl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, Eigen::DenseShape, Eigen::TriangularShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:351:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 351 | typedef typename conditional::type LhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:352:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 352 | typedef typename conditional::type RhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:353:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 353 | typedef typename conditional::type ResPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'struct Eigen::internal::general_matrix_vector_product, 1, false, double, Eigen::internal::const_blas_data_mapper, false, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:154:113: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const ResScalar&) [with Index = long long int; int Mode = 6; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:332:12: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >; Dest = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; int Mode = 6; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; int Mode = 5; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = const Eigen::Block, -1, -1, false>, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:751:113: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>; int ProductTag = 7; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>; Derived = Eigen::internal::generic_product_impl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, Eigen::DenseShape, Eigen::TriangularShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:351:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 351 | typedef typename conditional::type LhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:352:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 352 | typedef typename conditional::type RhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:353:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 353 | typedef typename conditional::type ResPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Diagonal.h:63:53: required from 'class Eigen::Diagonal, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:153:32: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:327:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:501:10: required from 'Derived& Eigen::DenseBase::setZero() [with Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:151:29: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:327:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Diagonal, 0>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:501:10: required from 'Derived& Eigen::DenseBase::setZero() [with Derived = Eigen::Diagonal, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:153:42: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::Block, -1, 1, true>; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, -1, 1, true> >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::Block, -1, 1, true>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::Block, -1, 1, true>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/VectorwiseOp.h:104:1: required from 'ResultType Eigen::internal::member_sum::operator()(const XprType&) const [with XprType = Eigen::Block, -1, 1, true>; ResultType = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1316:23: required from 'const Eigen::internal::evaluator >::Scalar Eigen::internal::evaluator >::coeff(Eigen::Index) const [with ArgType = const Eigen::CwiseUnaryOp, const Eigen::Product, Eigen::Matrix, 0> >; MemberOp = Eigen::internal::member_sum; int Direction = 1; Scalar = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:637:61: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::PartialReduxExpr, const Eigen::Product, Eigen::Matrix, 0> >, member_sum, 1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::PartialReduxExpr, const Eigen::Product, Eigen::Matrix, 0> >, Eigen::internal::member_sum, 1>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::PartialReduxExpr, const Eigen::Product, Eigen::Matrix, 0> >, Eigen::internal::member_sum, 1>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:41:11: required from 'bool get_first_poly(Zonotope&, HPolytope&, NT&, const cooling_ball_parameters&, RNG&, VT&) [with RandomPointGenerator = RandomPointGenerator > >, BoostRandomNumberGenerator, double> > >; Zonotope = Zonotope > >; HPolytope = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:297:51: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = CDHRWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:286:69: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 1, 2, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, 1, 2, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, 1, 2, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, 1, 2, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase >, 1, 2, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense >, 1, 2, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 1, 2, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, 1, 2, true> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, 1, 2, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, 1, 2, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl >, 1, 2, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >, 1, 2, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:589:37: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 2, -1, false>, 2, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 2, -1, false>, 2, 1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, 2, -1, false>, 2, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, 2, -1, false>, 2, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 2, -1, false>, 2, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false>, 2, -1, false>, 2, 1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose >, 1, 2, true> >, const Eigen::Block, -1, -1, false>, 2, -1, false>, 2, 1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose >, 1, 2, true> >, const Eigen::Block, -1, -1, false>, 2, -1, false>, 2, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose >, 1, 2, true> >, const Eigen::Block, -1, -1, false>, 2, -1, false>, 2, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose >, 1, 2, true> >, const Eigen::Block, -1, -1, false>, 2, -1, false>, 2, 1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose >, 1, 2, true> >, const Eigen::Block, -1, -1, false>, 2, -1, false>, 2, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:589:52: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index) const [with Lhs = Eigen::Transpose >; Rhs = Eigen::Block, -1, -1, false>, 2, -1, false>; int ProductTag = 3; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Block, -1, -1, false>, 2, -1, false>; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Transpose >; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:637:61: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, 1, 1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, 1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, 1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase >, 1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense >, 1, 1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 1, 1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, 1, 1, true> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, 1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, 1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl >, 1, 1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >, 1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:589:37: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false>, 1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false>, 1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, 1, -1, false>, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, 1, -1, false>, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 1, -1, false>, 1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false>, 1, -1, false>, 1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose >, 1, 1, true> >, const Eigen::Block, -1, -1, false>, 1, -1, false>, 1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose >, 1, 1, true> >, const Eigen::Block, -1, -1, false>, 1, -1, false>, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose >, 1, 1, true> >, const Eigen::Block, -1, -1, false>, 1, -1, false>, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose >, 1, 1, true> >, const Eigen::Block, -1, -1, false>, 1, -1, false>, 1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose >, 1, 1, true> >, const Eigen::Block, -1, -1, false>, 1, -1, false>, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:589:52: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index) const [with Lhs = Eigen::Transpose >; Rhs = Eigen::Block, -1, -1, false>, 1, -1, false>; int ProductTag = 4; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Block, -1, -1, false>, 1, -1, false>; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Transpose >; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:637:61: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 1, 1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, 1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:589:37: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, 1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::Stride<0, 0> >, 1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:589:52: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index) const [with Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >; Rhs = Eigen::Map, 0, Eigen::Stride<0, 0> >; int ProductTag = 4; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Map, 0, Eigen::Stride<0, 0> >; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:637:61: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Matrix >, -1, 1, true> >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/VectorwiseOp.h:104:1: required from 'ResultType Eigen::internal::member_sum::operator()(const XprType&) const [with XprType = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; ResultType = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1307:23: required from 'const Eigen::internal::evaluator >::Scalar Eigen::internal::evaluator >::coeff(Eigen::Index, Eigen::Index) const [with ArgType = const Eigen::CwiseUnaryOp, const Eigen::Matrix >; MemberOp = Eigen::internal::member_sum; int Direction = 0; Scalar = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:381:29: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, false>, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >; Derived = Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:305:135: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'static void Eigen::internal::general_matrix_vector_product::run(Index, Index, const LhsMapper&, const RhsMapper&, ResScalar*, Index, ResScalar) [with Index = long long int; LhsScalar = double; LhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateLhs = false; RhsScalar = double; RhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateRhs = false; int Version = 1; ResScalar = double]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:145:123: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const ResScalar&) [with Index = long long int; int Mode = 6; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:332:12: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >; Dest = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; int Mode = 6; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; int Mode = 5; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = const Eigen::Block, -1, -1, false>, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:751:113: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>; int ProductTag = 7; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>; Derived = Eigen::internal::generic_product_impl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, Eigen::DenseShape, Eigen::TriangularShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:385:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 385 | conj_helper pcj;\\n\"},{\"type\":1,\"output\":\" | ^~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:385:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'static void Eigen::internal::general_matrix_vector_product::run(Index, Index, const LhsMapper&, const RhsMapper&, ResScalar*, Index, ResScalar) [with Index = long long int; LhsScalar = double; LhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateLhs = false; RhsScalar = double; RhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateRhs = false; int Version = 0; ResScalar = double]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:154:113: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const ResScalar&) [with Index = long long int; int Mode = 6; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:332:12: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >; Dest = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; int Mode = 6; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; int Mode = 5; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = const Eigen::Block, -1, -1, false>, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:751:113: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>; int ProductTag = 7; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>; Derived = Eigen::internal::generic_product_impl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, Eigen::DenseShape, Eigen::TriangularShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:385:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:385:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 1, -1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, 1, -1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase >, 1, -1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense >, 1, -1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:78:8: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:671:14: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:341:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:292:73: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 1, -1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, 1, -1, true> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, 1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, 1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl >, 1, -1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:578:37: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:78:8: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:671:14: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:341:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:292:73: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:578:52: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index, Eigen::Index) const [with Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; int ProductTag = 8; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Matrix; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Transpose >; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:631:63: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:78:8: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:671:14: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:341:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:292:73: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, true>, -1, -1, false>, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>, -1, -1, false>, -1, 1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>, -1, -1, false>, -1, 1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, true>, -1, -1, false>, -1, 1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, true>, -1, -1, false>, -1, 1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >; Derived = Eigen::Block, -1, -1, true>, -1, -1, false>, -1, 1, true>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:305:135: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:271:17: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 2, false>, 1, 2, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 2, false>, 1, 2, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 2, false>, 1, 2, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 2, false>, 1, 2, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, 2, false>, 1, 2, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false>, -1, 2, false>, 1, 2, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 2, false>, 1, 2, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 2, false>, 1, 2, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 2, false>, 1, 2, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 2, false>, 1, 2, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, -1, 2, false>, 1, 2, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false>, -1, 2, false>, 1, 2, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:589:37: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 2, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 2, 1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 2, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 2, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 2, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 2, 1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, -1, -1, false>, -1, 2, false>, 1, 2, false> >, const Eigen::Block, 2, 1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, -1, -1, false>, -1, 2, false>, 1, 2, false> >, const Eigen::Block, 2, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, -1, -1, false>, -1, 2, false>, 1, 2, false> >, const Eigen::Block, 2, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, -1, -1, false>, -1, 2, false>, 1, 2, false> >, const Eigen::Block, 2, 1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, -1, false>, -1, 2, false>, 1, 2, false> >, const Eigen::Block, 2, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:589:52: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index) const [with Lhs = Eigen::Block, -1, -1, false>, -1, 2, false>; Rhs = Eigen::Matrix; int ProductTag = 3; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Matrix; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Block, -1, -1, false>, -1, 2, false>; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:637:61: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:578:22: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:578:37: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index, Eigen::Index) const [with Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >; Rhs = Eigen::Transpose >; int ProductTag = 4; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Transpose >; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:631:63: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, 1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase >, 1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense >, 1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >, const Eigen::Block >, 1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >, const Eigen::Block >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >, const Eigen::Block >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >, const Eigen::Block >, 1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >, const Eigen::Block >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:578:52: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index, Eigen::Index) const [with Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >; Rhs = Eigen::Transpose >; int ProductTag = 4; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Transpose >; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:631:63: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, false>, 1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, false>, 1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, false>, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, false>, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, 1, false>, 1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false>, -1, 1, false>, 1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, false>, 1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, false>, 1, 1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, false>, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, false>, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, -1, 1, false>, 1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false>, -1, 1, false>, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:589:37: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 1, 1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 1, 1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, -1, -1, false>, -1, 1, false>, 1, 1, false> >, const Eigen::Block, 1, 1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, -1, -1, false>, -1, 1, false>, 1, 1, false> >, const Eigen::Block, 1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, -1, -1, false>, -1, 1, false>, 1, 1, false> >, const Eigen::Block, 1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, -1, -1, false>, -1, 1, false>, 1, 1, false> >, const Eigen::Block, 1, 1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, -1, false>, -1, 1, false>, 1, 1, false> >, const Eigen::Block, 1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:589:52: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index) const [with Lhs = Eigen::Block, -1, -1, false>, -1, 1, false>; Rhs = Eigen::Matrix; int ProductTag = 4; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Matrix; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Block, -1, -1, false>, -1, 1, false>; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:637:61: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, 1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase >, 1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense >, 1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >, const Eigen::Block >, 1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >, const Eigen::Block >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >, const Eigen::Block >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >, const Eigen::Block >, 1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >, const Eigen::Block >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:589:52: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index) const [with Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >; Rhs = Eigen::Transpose >; int ProductTag = 4; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Transpose >; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:637:61: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator >, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block >, -1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block >, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:390:12: required from 'void VPolytope::linear_transformIt(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:109:29: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, -1, 1, false> > >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, -1, 1, false> > >, const Eigen::Block, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, -1, 1, false> > >, const Eigen::Block, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, -1, 1, false> > >, const Eigen::Block, -1, 1, false>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, 1, false> > >, const Eigen::Block, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:251:54: required from 'static void Eigen::internal::generic_product_impl::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Transpose, -1, 1, false> >; Rhs = Eigen::Block, -1, 1, false>, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 1, 4>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 1, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:411:50: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, 1, -1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:961:41: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:270:41: required from 'struct Eigen::internal::unary_evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:327:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:501:10: required from 'Derived& Eigen::DenseBase::setZero() [with Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:151:29: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Derived = Eigen::Block, -1, -1, false>, -1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:31: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Derived = Eigen::Block, -1, -1, false>, -1, -1, true>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:462:32: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator >, 1, 2, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator >, 1, 2, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:270:41: required from 'struct Eigen::internal::unary_evaluator >, 1, 2, true> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator >, 1, 2, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator >, 1, 2, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose >, 1, 2, true> >, const Eigen::Block, -1, -1, false>, 2, -1, false>, 2, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, 2, -1, false>, 2, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, 2, -1, false>, 2, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose >, 1, 2, true> >, const Eigen::Block, -1, -1, false>, 2, -1, false>, 2, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Transpose >, 1, 2, true> >, const Eigen::Block, -1, -1, false>, 2, -1, false>, 2, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Transpose >, 1, 2, true> >, const Eigen::Block, -1, -1, false>, 2, -1, false>, 2, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose >, 1, 2, true> >, const Eigen::Block, -1, -1, false>, 2, -1, false>, 2, 1, true> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator >, 1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator >, 1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:270:41: required from 'struct Eigen::internal::unary_evaluator >, 1, 1, true> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator >, 1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator >, 1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose >, 1, 1, true> >, const Eigen::Block, -1, -1, false>, 1, -1, false>, 1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, 1, -1, false>, 1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, 1, -1, false>, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose >, 1, 1, true> >, const Eigen::Block, -1, -1, false>, 1, -1, false>, 1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Transpose >, 1, 1, true> >, const Eigen::Block, -1, -1, false>, 1, -1, false>, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Transpose >, 1, 1, true> >, const Eigen::Block, -1, -1, false>, 1, -1, false>, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose >, 1, 1, true> >, const Eigen::Block, -1, -1, false>, 1, -1, false>, 1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:270:41: required from 'struct Eigen::internal::unary_evaluator, 1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, 1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Transpose, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Transpose, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, false>, 1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::Block, -1, 1, false>, 1, 1, false>; Functor = add_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::Block, -1, 1, false>, 1, 1, false>; Functor = Eigen::internal::add_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Src = Eigen::Block, -1, 1, false>, 1, 1, false>; Func = add_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Src = Eigen::Block, -1, 1, false>, 1, 1, false>; Func = add_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:177:18: required from 'Derived& Eigen::MatrixBase::operator+=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::Block, -1, 1, false>, 1, 1, false>; Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:127:9: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:961:41: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:32: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, true>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, true>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, 1, -1, true>, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:48: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:462:59: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Matrix; int Mode = 2; bool LhsIsTriangular = true; Lhs = Eigen::Matrix; Rhs = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, -1, -1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, -1, -1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase >, -1, -1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense >, -1, -1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:462:59: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Matrix; int Mode = 1; bool LhsIsTriangular = true; Lhs = const Eigen::Transpose >; Rhs = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator >, 1, -1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator >, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:270:41: required from 'struct Eigen::internal::unary_evaluator >, 1, -1, true> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator >, 1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator >, 1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:78:8: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:671:14: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:341:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:292:73: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 2, false>, 1, 2, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 2, false>, 1, 2, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:270:41: required from 'struct Eigen::internal::unary_evaluator, -1, -1, false>, -1, 2, false>, 1, 2, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 2, false>, 1, 2, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 2, false>, 1, 2, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, -1, -1, false>, -1, 2, false>, 1, 2, false> >, const Eigen::Block, 2, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: [ skipping 18 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 2, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 2, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, -1, -1, false>, -1, 2, false>, 1, 2, false> >, const Eigen::Block, 2, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Transpose, -1, -1, false>, -1, 2, false>, 1, 2, false> >, const Eigen::Block, 2, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Transpose, -1, -1, false>, -1, 2, false>, 1, 2, false> >, const Eigen::Block, 2, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, -1, false>, -1, 2, false>, 1, 2, false> >, const Eigen::Block, 2, 1, true> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:270:41: required from 'struct Eigen::internal::unary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >, const Eigen::Block >, 1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: [ skipping 18 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator >, 1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >, const Eigen::Block >, 1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >, const Eigen::Block >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >, const Eigen::Block >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >, const Eigen::Block >, 1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, false>, 1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, false>, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:270:41: required from 'struct Eigen::internal::unary_evaluator, -1, -1, false>, -1, 1, false>, 1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, false>, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, false>, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, -1, -1, false>, -1, 1, false>, 1, 1, false> >, const Eigen::Block, 1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: [ skipping 18 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, -1, -1, false>, -1, 1, false>, 1, 1, false> >, const Eigen::Block, 1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Transpose, -1, -1, false>, -1, 1, false>, 1, 1, false> >, const Eigen::Block, 1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Transpose, -1, -1, false>, -1, 1, false>, 1, 1, false> >, const Eigen::Block, 1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, -1, false>, -1, 1, false>, 1, 1, false> >, const Eigen::Block, 1, 1, true> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator >, 1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >, const Eigen::Block >, 1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >, const Eigen::Block >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >, const Eigen::Block >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >, const Eigen::Block >, 1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::CwiseNullaryOp, Eigen::Matrix >, 2>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::CwiseNullaryOp, Eigen::Matrix >, 2> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::CwiseNullaryOp, Eigen::Matrix >, 2> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, Eigen::CwiseNullaryOp, Eigen::Matrix >, 2, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, Eigen::CwiseNullaryOp, Eigen::Matrix >, 2, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, Eigen::CwiseNullaryOp, Eigen::Matrix >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:237:28: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:105:12: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, false>, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, -1, 1, false> > >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Transpose, -1, 1, false> > >, const Eigen::Block, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Transpose, -1, 1, false> > >, const Eigen::Block, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, 1, false> > >, const Eigen::Block, -1, 1, false>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:137:114: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const ResScalar&) [with Index = long long int; int Mode = 6; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:332:12: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >; Dest = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; int Mode = 6; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:961:41: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:270:41: required from 'struct Eigen::internal::unary_evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: [ skipping 29 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:270:41: required from 'struct Eigen::internal::unary_evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: [ skipping 27 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, true>, 1, -1, false> >, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >; Derived = Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:341:27: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase >, -1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase >, -1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase >, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 21 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, true>, 1, -1, false> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, true>, 1, -1, false> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, true>, 1, -1, false> >, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 1, -1, true>, 1, -1, false> >, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 19 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:282:54: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false> >; Rhs = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; Dest = Eigen::Transpose >; int Mode = 1; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Derived = Eigen::Block, -1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:31: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false> >, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >; Derived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:305:135: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 19 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:578:37: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 19 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:578:52: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index, Eigen::Index) const [with Lhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; int ProductTag = 8; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:631:63: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 21 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: [ skipping 18 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:59: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, -1, -1, false>; int Mode = 5; bool LhsIsTriangular = true; Lhs = const Eigen::Block, -1, -1, false>; Rhs = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:74: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, -1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 21 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::InnerStride<> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::InnerStride<> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::InnerStride<> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::InnerStride<> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::InnerStride<> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Map.h:94:79: required from 'class Eigen::Map, 0, Eigen::InnerStride<> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:48:18: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 22 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'struct Eigen::internal::general_matrix_vector_product, 0, false, double, Eigen::internal::const_blas_data_mapper, false, 1>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:74:123: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const RhsScalar&) [with Index = long long int; int Mode = 1; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:266:12: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false> >; Rhs = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; Dest = Eigen::Transpose >; int Mode = 1; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Matrix; int Mode = 2; Lhs = Eigen::Block, 1, -1, true>, 1, -1, false>; Rhs = Eigen::Block, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:751:113: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::Block, 1, -1, true>, 1, -1, false>; Rhs = Eigen::TriangularView, -1, -1, false>, 2>; int ProductTag = 7; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Matrix; Lhs = Eigen::Block, 1, -1, true>, 1, -1, false>; Rhs = Eigen::TriangularView, -1, -1, false>, 2>; Derived = Eigen::internal::generic_product_impl, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, Eigen::DenseShape, Eigen::TriangularShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:75:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 75 | typedef typename conditional::type LhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:76:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 76 | typedef typename conditional::type RhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:77:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 77 | typedef typename conditional::type ResPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:578:75: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index, Eigen::Index) const [with Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; int ProductTag = 8; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Matrix; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Transpose >; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:631:63: required from 'void Eigen::internal::generic_dense_assignment_kernel::assignCoeff(Eigen::Index, Eigen::Index) [with DstEvaluatorTypeT = Eigen::internal::evaluator >; SrcEvaluatorTypeT = Eigen::internal::evaluator >, Eigen::Matrix, 1> >; Functor = Eigen::internal::assign_op; int Version = 0; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:645:16: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:78:8: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:671:14: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:341:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:292:73: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:327:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:501:10: required from 'Derived& Eigen::DenseBase::setZero() [with Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:16: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, 1, false> > >, const Eigen::Block, -1, 1, false>, -1, 1, false> >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Transpose, -1, 1, false> > >, const Eigen::Block, -1, 1, false>, -1, 1, false> > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, 1, false> > >, const Eigen::Block, -1, 1, false>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, 1, false> > >, const Eigen::Block, -1, 1, false>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:251:64: required from 'static void Eigen::internal::generic_product_impl::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Transpose, -1, 1, false> >; Rhs = Eigen::Block, -1, 1, false>, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Transpose, -1, 1, false> >; Rhs = Eigen::Block, -1, 1, false>, -1, 1, false>; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, -1, 1, false> >, Eigen::Block, -1, 1, false>, -1, 1, false>, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'static void Eigen::internal::general_matrix_vector_product::run(Index, Index, const LhsMapper&, const RhsMapper&, ResScalar*, Index, RhsScalar) [with Index = long long int; LhsScalar = double; LhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateLhs = false; RhsScalar = double; RhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateRhs = false; int Version = 1; ResScalar = double]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:74:123: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const RhsScalar&) [with Index = long long int; int Mode = 1; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:266:12: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false> >; Rhs = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; Dest = Eigen::Transpose >; int Mode = 1; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Matrix; int Mode = 2; Lhs = Eigen::Block, 1, -1, true>, 1, -1, false>; Rhs = Eigen::Block, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:751:113: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::Block, 1, -1, true>, 1, -1, false>; Rhs = Eigen::TriangularView, -1, -1, false>, 2>; int ProductTag = 7; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Matrix; Lhs = Eigen::Block, 1, -1, true>, 1, -1, false>; Rhs = Eigen::TriangularView, -1, -1, false>, 2>; Derived = Eigen::internal::generic_product_impl, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, Eigen::DenseShape, Eigen::TriangularShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:112:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 112 | conj_helper pcj;\\n\"},{\"type\":1,\"output\":\" | ^~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:112:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:270:41: required from 'struct Eigen::internal::unary_evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: [ skipping 21 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 18 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:112:37: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 23 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:59: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Matrix; int Mode = 6; bool LhsIsTriangular = true; Lhs = const Eigen::Transpose, -1, -1, false> >; Rhs = Eigen::Block, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 18 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:74: [ skipping 19 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 23 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 18 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator >, -1, -1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator >, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 18 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:589:22: [ skipping 21 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:589:37: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index) const [with Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >; Rhs = Eigen::Map, 0, Eigen::Stride<0, 0> >; int ProductTag = 4; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Map, 0, Eigen::Stride<0, 0> >; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:637:61: [ skipping 20 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, 1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::Stride<0, 0> >, 1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 23 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:589:52: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index) const [with Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >; Rhs = Eigen::Map, 0, Eigen::Stride<0, 0> >; int ProductTag = 4; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Map, 0, Eigen::Stride<0, 0> >; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:637:61: [ skipping 20 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, true>, 1, -1, false> >, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 1, -1, true>, 1, -1, false> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 19 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator >, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block >, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block >, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >; Derived = Eigen::Block >, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:282:27: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Derived = Eigen::Block, -1, -1, false>, -1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:31: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:961:41: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: [ skipping 18 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Derived = Eigen::Block, -1, -1, false>, -1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:31: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Derived = Eigen::Block, -1, -1, false>, -1, -1, true>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:462:32: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >; Functor = add_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >; Functor = Eigen::internal::add_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >; Func = add_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >; Func = add_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:177:18: required from 'Derived& Eigen::MatrixBase::operator+=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >; Derived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:66:28: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:92:30: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:274:20: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:270:41: required from 'struct Eigen::internal::unary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: [ skipping 25 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, 1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 22 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix >, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix >, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, Eigen::Matrix >, 1, -1, false, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, Eigen::Matrix >, 1, -1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, Eigen::Matrix >, 1, -1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:1009:11: [ skipping 24 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:105:12: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Derived = Eigen::Block, -1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:31: [ skipping 19 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Derived = Eigen::Block, -1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:31: [ skipping 19 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Derived = Eigen::Block, -1, -1, true>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:462:32: [ skipping 19 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:434:12: required from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = VPolytope > >; Polytope = VPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/sampling/random_point_generators.hpp:63:32: required from 'static void RandomPointGenerator::apply(Polytope&, Point&, const unsigned int&, const unsigned int&, PointList&, WalkPolicy&, RandomNumberGenerator&) [with Polytope = VPolytope > >; Point = point >; PointList = std::__cxx11::list >, std::allocator > > >; WalkPolicy = PushBackWalkPolicy; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Walk = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:60:40: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = BilliardWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = VPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:45:61: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = VPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:268:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, Eigen::Matrix >, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, false>; SrcXprType = Eigen::Block, Eigen::Matrix >, 1, -1, false>; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, false>; SrcXprType = Eigen::Block, Eigen::Matrix >, 1, -1, false>; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 1, -1, false>; Src = Eigen::Block, Eigen::Matrix >, 1, -1, false>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 1, -1, false>; Src = Eigen::Block, Eigen::Matrix >, 1, -1, false>; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Block, 1, -1, false>; Src = Eigen::Block, Eigen::Matrix >, 1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Assign.h:66:28: [ skipping 25 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:105:12: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:43:57: required from 'double generic_volume(Polytope&, RNGType&, unsigned int, NT, bool, bool, unsigned int, bool, bool, bool, bool, bool, int) [with Polytope = HPolytope > >; RNGType = BoostRandomNumberGenerator, double>; NT = double]'\\n\"},{\"type\":1,\"output\":\"volume.cpp:261:34: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\bits\\\\stl_algobase.h:64:\\n\"},{\"type\":1,\"output\":\"In constructor 'constexpr std::pair<_T1, _T2>::pair(_U1&&, _U2&&) [with _U1 = double&; _U2 = int&; typename std::enable_if<(std::_PCC::_MoveConstructiblePair<_U1, _U2>() && std::_PCC::_ImplicitlyMoveConvertiblePair<_U1, _U2>()), bool>::type = true; _T1 = double; _T2 = double]',\\n\"},{\"type\":1,\"output\":\" inlined from 'std::pair HPolytope::line_intersect(const Point&, const Point&, VT&, VT&, const NT&, bool) const [with Point = point >]' at include/convex_bodies/hpolytope.h:339:58:\\n\"},{\"type\":1,\"output\":\"d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\bits\\\\stl_pair.h:535:42: warning: 'facet' may be used uninitialized [-Wmaybe-uninitialized]\\n\"},{\"type\":1,\"output\":\" 535 | : first(std::forward<_U1>(__x)), second(std::forward<_U2>(__y)) { }\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h: In function 'std::pair HPolytope::line_intersect(const Point&, const Point&, VT&, VT&, const NT&, bool) const [with Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:316:39: note: 'facet' was declared here\\n\"},{\"type\":1,\"output\":\" 316 | int m = num_of_hyperplanes(), facet;\\n\"},{\"type\":1,\"output\":\" | ^~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In constructor 'constexpr std::pair<_T1, _T2>::pair(_U1&&, _U2&&) [with _U1 = double&; _U2 = int&; typename std::enable_if<(std::_PCC::_MoveConstructiblePair<_U1, _U2>() && std::_PCC::_ImplicitlyMoveConvertiblePair<_U1, _U2>()), bool>::type = true; _T1 = double; _T2 = double]',\\n\"},{\"type\":1,\"output\":\" inlined from 'std::pair HPolytope::line_intersect(const Point&, const Point&, VT&, VT&, bool) const [with Point = point >]' at include/convex_bodies/hpolytope.h:299:58:\\n\"},{\"type\":1,\"output\":\"d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\bits\\\\stl_pair.h:535:42: warning: 'facet' may be used uninitialized [-Wmaybe-uninitialized]\\n\"},{\"type\":1,\"output\":\" 535 | : first(std::forward<_U1>(__x)), second(std::forward<_U2>(__y)) { }\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h: In member function 'std::pair HPolytope::line_intersect(const Point&, const Point&, VT&, VT&, bool) const [with Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:274:39: note: 'facet' was declared here\\n\"},{\"type\":1,\"output\":\" 274 | int m = num_of_hyperplanes(), facet;\\n\"},{\"type\":1,\"output\":\" | ^~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:477:\\n\"},{\"type\":1,\"output\":\"In constructor 'Eigen::internal::BlockImpl_dense::BlockImpl_dense(XprType&, Eigen::Index) [with XprType = const Eigen::Matrix; int BlockRows = 1; int BlockCols = -1; bool InnerPanel = false]',\\n\"},{\"type\":1,\"output\":\" inlined from 'Eigen::BlockImpl::BlockImpl(XprType&, Eigen::Index) [with XprType = const Eigen::Matrix; int BlockRows = 1; int BlockCols = -1; bool InnerPanel = false]' at D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:162:75,\\n\"},{\"type\":1,\"output\":\" inlined from 'Eigen::Block::Block(XprType&, Eigen::Index) [with XprType = const Eigen::Matrix; int BlockRows = 1; int BlockCols = -1; bool InnerPanel = false]' at D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:118:53,\\n\"},{\"type\":1,\"output\":\" inlined from 'Eigen::DenseBase::ConstRowXpr Eigen::DenseBase::row(Eigen::Index) const [with Derived = Eigen::Matrix]' at d:\\\\softwares\\\\r\\\\r-4.3.0\\\\library\\\\rcppeigen\\\\include\\\\eigen\\\\src\\\\plugins\\\\blockmethods.h:868:34,\\n\"},{\"type\":1,\"output\":\" inlined from 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]' at include/convex_bodies/vpolytope.h:435:18:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:347:29: warning: 'outvert' may be used uninitialized [-Wmaybe-uninitialized]\\n\"},{\"type\":1,\"output\":\" 347 | : Base(xpr.data() + i * ( ((BlockRows==1) && (BlockCols==XprType::ColsAtCompileTime) && (!XprTypeIsRowMajor))\\n\"},{\"type\":1,\"output\":\" | ~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 348 | || ((BlockRows==XprType::RowsAtCompileTime) && (BlockCols==1) && ( XprTypeIsRowMajor)) ? xpr.innerStride() : xpr.outerStride()),\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h: In function 'void VPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/vpolytope.h:423:24: note: 'outvert' was declared here\\n\"},{\"type\":1,\"output\":\" 423 | int count = 0, outvert;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"g++ -std=gnu++17 -I\\\"D:/Softwares/R/R-4.3.0/include\\\" -DNDEBUG -Iexternal -Iexternal/lpsolve/headers/run_headers -Iexternal/minimum_ellipsoid -Iinclude -Iinclude/convex_bodies/spectrahedra -I'D:/Softwares/R/R-4.3.0/library/Rcpp/include' -I'D:/Softwares/R/R-4.3.0/library/RcppEigen/include' -I'D:/Softwares/R/R-4.3.0/library/BH/include' -I\\\"D:/Softwares/RTools/rtools43/x86_64-w64-mingw32.static.posix/include\\\" -lm -ldl -DBOOST_NO_AUTO_PTR -O2 -Wall -mfpmath=sse -msse2 -mstackrealign -c write_sdpa_format_file.cpp -o write_sdpa_format_file.o\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:397,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Dense:1,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/RcppEigenForward.h:30,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/RcppEigen.h:25,\\n\"},{\"type\":1,\"output\":\" from write_sdpa_format_file.cpp:11:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:60:39: warning: ignoring attributes on template argument '__m128' [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 60 | template<> struct is_arithmetic<__m128> { enum { value = true }; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:61:40: warning: ignoring attributes on template argument '__m128i' [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 61 | template<> struct is_arithmetic<__m128i> { enum { value = true }; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:62:40: warning: ignoring attributes on template argument '__m128d' [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 62 | template<> struct is_arithmetic<__m128d> { enum { value = true }; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:161:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 161 | template<> struct unpacket_traits { typedef float type; enum {size=4, alignment=Aligned16}; typedef Packet4f half; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:162:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 162 | template<> struct unpacket_traits { typedef double type; enum {size=2, alignment=Aligned16}; typedef Packet2d half; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:163:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 163 | template<> struct unpacket_traits { typedef int type; enum {size=4, alignment=Aligned16}; typedef Packet4i half; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:718:35: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 718 | struct palign_impl\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:741:35: warning: ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 741 | struct palign_impl\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:764:35: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 764 | struct palign_impl\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:778:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 778 | ptranspose(PacketBlock& kernel) {\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:783:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 783 | ptranspose(PacketBlock& kernel) {\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:790:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 790 | ptranspose(PacketBlock& kernel) {\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:377:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:15:70: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 15 | template<> struct conj_helper { \\\\\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:232:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL'\\n\"},{\"type\":1,\"output\":\" 232 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet2cf,Packet4f)\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:22:70: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 22 | template<> struct conj_helper { \\\\\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:232:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL'\\n\"},{\"type\":1,\"output\":\" 232 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet2cf,Packet4f)\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:15:70: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 15 | template<> struct conj_helper { \\\\\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:417:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL'\\n\"},{\"type\":1,\"output\":\" 417 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet1cd,Packet2d)\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:22:70: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 22 | template<> struct conj_helper { \\\\\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:417:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL'\\n\"},{\"type\":1,\"output\":\" 417 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet1cd,Packet2d)\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:370:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:243:49: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SSE.h:24:46: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(4) float>::half' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:439:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:46:50: required from 'class Eigen::QuaternionBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:250:7: required from 'class Eigen::Quaternion'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SSE.h:27:3: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:243:49: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SSE.h:88:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:46:50: required from 'class Eigen::QuaternionBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:250:7: required from 'class Eigen::Quaternion'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SSE.h:92:3: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/SparseCore:37,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Sparse:26,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/RcppEigenForward.h:31:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h: In instantiation of 'class Eigen::SparseMatrixBase >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseCompressedBase.h:36:7: required from 'class Eigen::SparseCompressedBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrix.h:96:7: required from 'class Eigen::SparseMatrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/IterativeSolvers/ConstrainedConjGrad.h:61:25: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h:47:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 47 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h:168:29: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) long long int>::half' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h:168:29: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h:178:72: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h:179:36: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/aux_/na_assert.hpp:23,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/arg.hpp:25,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/placeholders.hpp:24,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/iterator/iterator_categories.hpp:16,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/iterator/iterator_concepts.hpp:10,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/range/concepts.hpp:20,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/range/size_type.hpp:20,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/range/size.hpp:21,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/random/hyperexponential_distribution.hpp:29,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/random.hpp:70,\\n\"},{\"type\":1,\"output\":\" from write_sdpa_format_file.cpp:14:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp:194:21: warning: unnecessary parentheses in declaration of 'assert_arg' [-Wparentheses]\\n\"},{\"type\":1,\"output\":\" 194 | failed ************ (Pred::************\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 195 | assert_arg( void (*)(Pred), typename assert_arg_pred::type )\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 196 | );\\n\"},{\"type\":1,\"output\":\" | ~ \\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp:194:21: note: remove parentheses\\n\"},{\"type\":1,\"output\":\" 194 | failed ************ (Pred::************\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" | -\\n\"},{\"type\":1,\"output\":\" 195 | assert_arg( void (*)(Pred), typename assert_arg_pred::type )\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 196 | );\\n\"},{\"type\":1,\"output\":\" | ~ \\n\"},{\"type\":1,\"output\":\" | -\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp:199:21: warning: unnecessary parentheses in declaration of 'assert_not_arg' [-Wparentheses]\\n\"},{\"type\":1,\"output\":\" 199 | failed ************ (boost::mpl::not_::************\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 200 | assert_not_arg( void (*)(Pred), typename assert_arg_pred_not::type )\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 201 | );\\n\"},{\"type\":1,\"output\":\" | ~ \\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp:199:21: note: remove parentheses\\n\"},{\"type\":1,\"output\":\" 199 | failed ************ (boost::mpl::not_::************\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" | -\\n\"},{\"type\":1,\"output\":\" 200 | assert_not_arg( void (*)(Pred), typename assert_arg_pred_not::type )\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 201 | );\\n\"},{\"type\":1,\"output\":\" | ~ \\n\"},{\"type\":1,\"output\":\" | -\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/spectrahedra/LMI.h:45:8: required from 'class LMI, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"write_sdpa_format_file.cpp:57:21: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/spectrahedra/LMI.h:45:8: required from 'class LMI, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"write_sdpa_format_file.cpp:57:21: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"include/cartesian_geom/point.h:22:53: required from 'class point >'\\n\"},{\"type\":1,\"output\":\"write_sdpa_format_file.cpp:59:19: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"write_sdpa_format_file.cpp: In function 'void write_sdpa_format_file(Rcpp::Reference, Rcpp::NumericVector, std::string)':\\n\"},{\"type\":1,\"output\":\"write_sdpa_format_file.cpp:52:28: warning: typedef 'RNGType' locally defined but not used [-Wunused-local-typedefs]\\n\"},{\"type\":1,\"output\":\" 52 | typedef boost::mt19937 RNGType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from write_sdpa_format_file.cpp:18:\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/spectrahedra/LMI.h: In instantiation of 'void LMI, Eigen::Matrix >::setVectorMatrix() [with NT = double]':\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/spectrahedra/LMI.h:61:9: required from 'LMI, Eigen::Matrix >::LMI(const std::vector >&) [with NT = double]'\\n\"},{\"type\":1,\"output\":\"write_sdpa_format_file.cpp:57:21: required from here\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/spectrahedra/LMI.h:82:41: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 82 | for (int at_row = 0; at_row < m; at_row++)\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~^~~\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/spectrahedra/LMI.h:83:50: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 83 | for (int at_col = at_row; at_col < m; at_col++) {\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~^~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >'\\n\"},{\"type\":1,\"output\":\"include/SDPAFormatManager.h:230:42: required from 'void SdpaFormatManager::writeSDPAFormatFile(std::ostream&, const std::vector >&, const VT&) [with NT = double; std::ostream = std::basic_ostream; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/SDPAFormatManager.h:264:28: required from 'void SdpaFormatManager::writeSDPAFormatFile(std::ostream&, const Spectrahedron, Eigen::Matrix >&, const Point&) [with Point = point >; NT = double; std::ostream = std::basic_ostream]'\\n\"},{\"type\":1,\"output\":\"write_sdpa_format_file.cpp:66:42: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 1, -1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, 1, -1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, 1, -1, false>'\\n\"},{\"type\":1,\"output\":\"include/SDPAFormatManager.h:233:25: required from 'void SdpaFormatManager::writeSDPAFormatFile(std::ostream&, const std::vector >&, const VT&) [with NT = double; std::ostream = std::basic_ostream; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/SDPAFormatManager.h:264:28: required from 'void SdpaFormatManager::writeSDPAFormatFile(std::ostream&, const Spectrahedron, Eigen::Matrix >&, const Point&) [with Point = point >; NT = double; std::ostream = std::basic_ostream]'\\n\"},{\"type\":1,\"output\":\"write_sdpa_format_file.cpp:66:42: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from write_sdpa_format_file.cpp:20:\\n\"},{\"type\":1,\"output\":\"include/SDPAFormatManager.h: In instantiation of 'void SdpaFormatManager::writeSDPAFormatFile(std::ostream&, const std::vector >&, const VT&) [with NT = double; std::ostream = std::basic_ostream; VT = Eigen::Matrix]':\\n\"},{\"type\":1,\"output\":\"include/SDPAFormatManager.h:264:28: required from 'void SdpaFormatManager::writeSDPAFormatFile(std::ostream&, const Spectrahedron, Eigen::Matrix >&, const Point&) [with Point = point >; NT = double; std::ostream = std::basic_ostream]'\\n\"},{\"type\":1,\"output\":\"write_sdpa_format_file.cpp:66:42: required from here\\n\"},{\"type\":1,\"output\":\"include/SDPAFormatManager.h:235:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector >::size_type' {aka 'long long unsigned int'} [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 235 | for (int at=1 ; at, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 1, -1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, 1, -1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, 1, -1, false>'\\n\"},{\"type\":1,\"output\":\"include/SDPAFormatManager.h:237:44: required from 'void SdpaFormatManager::writeSDPAFormatFile(std::ostream&, const std::vector >&, const VT&) [with NT = double; std::ostream = std::basic_ostream; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/SDPAFormatManager.h:264:28: required from 'void SdpaFormatManager::writeSDPAFormatFile(std::ostream&, const Spectrahedron, Eigen::Matrix >&, const Point&) [with Point = point >; NT = double; std::ostream = std::basic_ostream]'\\n\"},{\"type\":1,\"output\":\"write_sdpa_format_file.cpp:66:42: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"include/SDPAFormatManager.h:237:26: required from 'void SdpaFormatManager::writeSDPAFormatFile(std::ostream&, const std::vector >&, const VT&) [with NT = double; std::ostream = std::basic_ostream; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/SDPAFormatManager.h:264:28: required from 'void SdpaFormatManager::writeSDPAFormatFile(std::ostream&, const Spectrahedron, Eigen::Matrix >&, const Point&) [with Point = point >; NT = double; std::ostream = std::basic_ostream]'\\n\"},{\"type\":1,\"output\":\"write_sdpa_format_file.cpp:66:42: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"include/SDPAFormatManager.h:237:26: required from 'void SdpaFormatManager::writeSDPAFormatFile(std::ostream&, const std::vector >&, const VT&) [with NT = double; std::ostream = std::basic_ostream; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/SDPAFormatManager.h:264:28: required from 'void SdpaFormatManager::writeSDPAFormatFile(std::ostream&, const Spectrahedron, Eigen::Matrix >&, const Point&) [with Point = point >; NT = double; std::ostream = std::basic_ostream]'\\n\"},{\"type\":1,\"output\":\"write_sdpa_format_file.cpp:66:42: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"include/SDPAFormatManager.h:237:20: required from 'void SdpaFormatManager::writeSDPAFormatFile(std::ostream&, const std::vector >&, const VT&) [with NT = double; std::ostream = std::basic_ostream; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/SDPAFormatManager.h:264:28: required from 'void SdpaFormatManager::writeSDPAFormatFile(std::ostream&, const Spectrahedron, Eigen::Matrix >&, const Point&) [with Point = point >; NT = double; std::ostream = std::basic_ostream]'\\n\"},{\"type\":1,\"output\":\"write_sdpa_format_file.cpp:66:42: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:445:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Matrix; SrcXprType = Eigen::Block, 1, -1, false>; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Matrix; SrcXprType = Eigen::Block, 1, -1, false>; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Block, 1, -1, false>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Block, 1, -1, false>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:818:25: required from 'void Eigen::PlainObjectBase::_init1(const Eigen::DenseBase&) [with T = Eigen::Block, 1, -1, false>; OtherDerived = Eigen::Block, 1, -1, false>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:294:31: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Block, 1, -1, false>; _Scalar = double; int _Rows = 1; int _Cols = -1; int _Options = 1; int _MaxRows = 1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:406:48: required from 'Eigen::DenseBase::EvalReturnType Eigen::DenseBase::eval() const [with Derived = Eigen::Block, 1, -1, false>; EvalReturnType = const Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/IO.h:220:42: required from 'std::ostream& Eigen::operator<<(std::ostream&, const DenseBase&) [with Derived = Block, 1, -1, false>; std::ostream = std::basic_ostream]'\\n\"},{\"type\":1,\"output\":\"include/SDPAFormatManager.h:233:16: required from 'void SdpaFormatManager::writeSDPAFormatFile(std::ostream&, const std::vector >&, const VT&) [with NT = double; std::ostream = std::basic_ostream; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/SDPAFormatManager.h:264:28: required from 'void SdpaFormatManager::writeSDPAFormatFile(std::ostream&, const Spectrahedron, Eigen::Matrix >&, const Point&) [with Point = point >; NT = double; std::ostream = std::basic_ostream]'\\n\"},{\"type\":1,\"output\":\"write_sdpa_format_file.cpp:66:42: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Matrix; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, false> >; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Matrix; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, false> >; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:294:31: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, false> >; _Scalar = double; int _Rows = 1; int _Cols = -1; int _Options = 1; int _MaxRows = 1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:406:48: required from 'Eigen::DenseBase::EvalReturnType Eigen::DenseBase::eval() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, false> >; EvalReturnType = const Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/IO.h:220:42: required from 'std::ostream& Eigen::operator<<(std::ostream&, const DenseBase&) [with Derived = CwiseBinaryOp, const CwiseNullaryOp, const Matrix >, const Block, 1, -1, false> >; std::ostream = std::basic_ostream]'\\n\"},{\"type\":1,\"output\":\"include/SDPAFormatManager.h:237:20: required from 'void SdpaFormatManager::writeSDPAFormatFile(std::ostream&, const std::vector >&, const VT&) [with NT = double; std::ostream = std::basic_ostream; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/SDPAFormatManager.h:264:28: required from 'void SdpaFormatManager::writeSDPAFormatFile(std::ostream&, const Spectrahedron, Eigen::Matrix >&, const Point&) [with Point = point >; NT = double; std::ostream = std::basic_ostream]'\\n\"},{\"type\":1,\"output\":\"write_sdpa_format_file.cpp:66:42: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"g++ -std=gnu++17 -I\\\"D:/Softwares/R/R-4.3.0/include\\\" -DNDEBUG -Iexternal -Iexternal/lpsolve/headers/run_headers -Iexternal/minimum_ellipsoid -Iinclude -Iinclude/convex_bodies/spectrahedra -I'D:/Softwares/R/R-4.3.0/library/Rcpp/include' -I'D:/Softwares/R/R-4.3.0/library/RcppEigen/include' -I'D:/Softwares/R/R-4.3.0/library/BH/include' -I\\\"D:/Softwares/RTools/rtools43/x86_64-w64-mingw32.static.posix/include\\\" -lm -ldl -DBOOST_NO_AUTO_PTR -O2 -Wall -mfpmath=sse -msse2 -mstackrealign -c zonotope_approximation.cpp -o zonotope_approximation.o\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:397,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Dense:1,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/RcppEigenForward.h:30,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/RcppEigen.h:25,\\n\"},{\"type\":1,\"output\":\" from zonotope_approximation.cpp:9:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:60:39: warning: ignoring attributes on template argument '__m128' [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 60 | template<> struct is_arithmetic<__m128> { enum { value = true }; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:61:40: warning: ignoring attributes on template argument '__m128i' [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 61 | template<> struct is_arithmetic<__m128i> { enum { value = true }; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:62:40: warning: ignoring attributes on template argument '__m128d' [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 62 | template<> struct is_arithmetic<__m128d> { enum { value = true }; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:161:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 161 | template<> struct unpacket_traits { typedef float type; enum {size=4, alignment=Aligned16}; typedef Packet4f half; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:162:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 162 | template<> struct unpacket_traits { typedef double type; enum {size=2, alignment=Aligned16}; typedef Packet2d half; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:163:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 163 | template<> struct unpacket_traits { typedef int type; enum {size=4, alignment=Aligned16}; typedef Packet4i half; };\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:718:35: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 718 | struct palign_impl\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:741:35: warning: ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 741 | struct palign_impl\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:764:35: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 764 | struct palign_impl\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:778:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 778 | ptranspose(PacketBlock& kernel) {\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:783:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 783 | ptranspose(PacketBlock& kernel) {\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:790:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet4i' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 790 | ptranspose(PacketBlock& kernel) {\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:377:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:15:70: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 15 | template<> struct conj_helper { \\\\\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:232:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL'\\n\"},{\"type\":1,\"output\":\" 232 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet2cf,Packet4f)\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:22:70: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 22 | template<> struct conj_helper { \\\\\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:232:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL'\\n\"},{\"type\":1,\"output\":\" 232 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet2cf,Packet4f)\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:15:70: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 15 | template<> struct conj_helper { \\\\\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:417:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL'\\n\"},{\"type\":1,\"output\":\" 417 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet1cd,Packet2d)\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:22:70: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 22 | template<> struct conj_helper { \\\\\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:417:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL'\\n\"},{\"type\":1,\"output\":\" 417 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet1cd,Packet2d)\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:370:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:243:49: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SSE.h:24:46: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(4) float>::half' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:439:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:46:50: required from 'class Eigen::QuaternionBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:250:7: required from 'class Eigen::Quaternion'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SSE.h:27:3: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:243:49: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SSE.h:88:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:46:50: required from 'class Eigen::QuaternionBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:250:7: required from 'class Eigen::Quaternion'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SSE.h:92:3: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/SparseCore:37,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Sparse:26,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/RcppEigenForward.h:31:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h: In instantiation of 'class Eigen::SparseMatrixBase >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseCompressedBase.h:36:7: required from 'class Eigen::SparseCompressedBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrix.h:96:7: required from 'class Eigen::SparseMatrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/IterativeSolvers/ConstrainedConjGrad.h:61:25: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h:47:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 47 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h:168:29: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) long long int>::half' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h:168:29: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h:178:72: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h:179:36: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128i'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/aux_/na_assert.hpp:23,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/arg.hpp:25,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/placeholders.hpp:24,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/iterator/iterator_categories.hpp:16,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/iterator/iterator_concepts.hpp:10,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/range/concepts.hpp:20,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/range/size_type.hpp:20,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/range/size.hpp:21,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/random/hyperexponential_distribution.hpp:29,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/random.hpp:70,\\n\"},{\"type\":1,\"output\":\" from zonotope_approximation.cpp:10:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp:194:21: warning: unnecessary parentheses in declaration of 'assert_arg' [-Wparentheses]\\n\"},{\"type\":1,\"output\":\" 194 | failed ************ (Pred::************\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 195 | assert_arg( void (*)(Pred), typename assert_arg_pred::type )\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 196 | );\\n\"},{\"type\":1,\"output\":\" | ~ \\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp:194:21: note: remove parentheses\\n\"},{\"type\":1,\"output\":\" 194 | failed ************ (Pred::************\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" | -\\n\"},{\"type\":1,\"output\":\" 195 | assert_arg( void (*)(Pred), typename assert_arg_pred::type )\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 196 | );\\n\"},{\"type\":1,\"output\":\" | ~ \\n\"},{\"type\":1,\"output\":\" | -\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp:199:21: warning: unnecessary parentheses in declaration of 'assert_not_arg' [-Wparentheses]\\n\"},{\"type\":1,\"output\":\" 199 | failed ************ (boost::mpl::not_::************\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 200 | assert_not_arg( void (*)(Pred), typename assert_arg_pred_not::type )\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 201 | );\\n\"},{\"type\":1,\"output\":\" | ~ \\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/mpl/assert.hpp:199:21: note: remove parentheses\\n\"},{\"type\":1,\"output\":\" 199 | failed ************ (boost::mpl::not_::************\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" | -\\n\"},{\"type\":1,\"output\":\" 200 | assert_not_arg( void (*)(Pred), typename assert_arg_pred_not::type )\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 201 | );\\n\"},{\"type\":1,\"output\":\" | ~ \\n\"},{\"type\":1,\"output\":\" | -\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/traits.hpp:21,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/storage.hpp:27,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/vector.hpp:21,\\n\"},{\"type\":1,\"output\":\" from external/minimum_ellipsoid/khach.h:25,\\n\"},{\"type\":1,\"output\":\" from include/convex_bodies/vpolytope.h:19,\\n\"},{\"type\":1,\"output\":\" from include/random_walks/uniform_billiard_walk.hpp:18,\\n\"},{\"type\":1,\"output\":\" from include/random_walks/random_walks.hpp:16,\\n\"},{\"type\":1,\"output\":\" from zonotope_approximation.cpp:14:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/detail/iterator.hpp:111:21: warning: 'template struct std::iterator' is deprecated [-Wdeprecated-declarations]\\n\"},{\"type\":1,\"output\":\" 111 | public std::iterator {\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~\\n\"},{\"type\":1,\"output\":\"In file included from d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\bits\\\\stl_algobase.h:65,\\n\"},{\"type\":1,\"output\":\" from d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\bits\\\\specfun.h:45,\\n\"},{\"type\":1,\"output\":\" from d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\cmath:1935,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/Rcpp/include/Rcpp/platform/compiler.h:100,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/Rcpp/include/Rcpp/r/headers.h:62,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/Rcpp/include/RcppCommon.h:30,\\n\"},{\"type\":1,\"output\":\" from D:/Softwares/R/R-4.3.0/library/Rcpp/include/Rcpp.h:27,\\n\"},{\"type\":1,\"output\":\" from zonotope_approximation.cpp:8:\\n\"},{\"type\":1,\"output\":\"d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\bits\\\\stl_iterator_base_types.h:127:34: note: declared here\\n\"},{\"type\":1,\"output\":\" 127 | struct _GLIBCXX17_DEPRECATED iterator\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/detail/iterator.hpp:149:21: warning: 'template struct std::iterator' is deprecated [-Wdeprecated-declarations]\\n\"},{\"type\":1,\"output\":\" 149 | public std::iterator {\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~\\n\"},{\"type\":1,\"output\":\"d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\bits\\\\stl_iterator_base_types.h:127:34: note: declared here\\n\"},{\"type\":1,\"output\":\" 127 | struct _GLIBCXX17_DEPRECATED iterator\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/BH/include/boost/numeric/ublas/detail/iterator.hpp:204:21: warning: 'template struct std::iterator' is deprecated [-Wdeprecated-declarations]\\n\"},{\"type\":1,\"output\":\" 204 | public std::iterator {\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~\\n\"},{\"type\":1,\"output\":\"d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\bits\\\\stl_iterator_base_types.h:127:34: note: declared here\\n\"},{\"type\":1,\"output\":\" 127 | struct _GLIBCXX17_DEPRECATED iterator\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from zonotope_approximation.cpp:16:\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_gaussians.hpp: In function 'NT get_next_gaussian(const Polytope&, Point&, const NT&, const unsigned int&, const NT&, const NT&, const unsigned int&, RandomNumberGenerator&)':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_gaussians.hpp:166:48: warning: typedef 'viterator' locally defined but not used [-Wunused-local-typedefs]\\n\"},{\"type\":1,\"output\":\" 166 | typedef typename std::vector::iterator viterator;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_gaussians.hpp: In function 'void compute_annealing_schedule(const Polytope&, const NT&, const NT&, const NT&, const unsigned int&, const unsigned int&, const NT&, const NT&, std::vector&, RandomNumberGenerator&)':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_gaussians.hpp:221:35: warning: typedef 'VT' locally defined but not used [-Wunused-local-typedefs]\\n\"},{\"type\":1,\"output\":\" 221 | typedef typename Polytope::VT VT;\\n\"},{\"type\":1,\"output\":\" | ^~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from zonotope_approximation.cpp:17:\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp: In function 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&)':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:707:35: warning: typedef 'VT' locally defined but not used [-Wunused-local-typedefs]\\n\"},{\"type\":1,\"output\":\" 707 | typedef typename Polytope::VT VT;\\n\"},{\"type\":1,\"output\":\" | ^~\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:708:31: warning: typedef 'PointList' locally defined but not used [-Wunused-local-typedefs]\\n\"},{\"type\":1,\"output\":\" 708 | typedef std::list PointList;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"In file included from zonotope_approximation.cpp:18:\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp: In function 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&)':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:269:31: warning: typedef 'PointList' locally defined but not used [-Wunused-local-typedefs]\\n\"},{\"type\":1,\"output\":\" 269 | typedef std::list PointList;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:44:28: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:44:28: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:64:45: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Transpose >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Transpose > >'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:64:86: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/SVDBase.h:233:22: required from 'class Eigen::SVDBase, 2> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:487:60: required from 'class Eigen::JacobiSVD, 2>'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:31: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:438:19: required from 'class Eigen::ColPivHouseholderQR >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:247:10: required from 'struct Eigen::internal::qr_preconditioner_impl, 2, 0, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:607:110: required from 'class Eigen::JacobiSVD, 2>'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:31: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Transpose >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Transpose >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Transpose >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, Eigen::Transpose >, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, Eigen::Transpose >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, Eigen::Transpose >, 0>'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:47: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, Eigen::Matrix, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:67:50: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Transpose >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Transpose > >'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:68:40: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose > >, Eigen::internal::member_sum, 1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose > >, Eigen::internal::member_sum, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose > >, Eigen::internal::member_sum, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/VectorwiseOp.h:56:7: required from 'class Eigen::PartialReduxExpr, const Eigen::Transpose > >, Eigen::internal::member_sum, 1>'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:68:56: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:70:23: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::CwiseNullaryOp, Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::CwiseNullaryOp, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:70:28: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:72:60: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, Eigen::Transpose >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, Eigen::Transpose >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::Transpose >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base >, Eigen::Transpose >, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl >, Eigen::Transpose >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product >, Eigen::Transpose >, 0>'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:72:61: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:91:55: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: required from 'class Eigen::MapBase, -1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, -1, -1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, -1, -1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CommaInitializer.h:95:21: required from 'Eigen::CommaInitializer& Eigen::CommaInitializer::operator,(const Eigen::DenseBase&) [with OtherDerived = Eigen::CwiseUnaryOp, const Eigen::Transpose > >; XprType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:64:86: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp: In instantiation of 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:359:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector > >, std::allocator > > > >::size_type' {aka 'long long unsigned int'} [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 359 | for (int i = 0; i < HPolySet.size()-1; ++i) {\\n\"},{\"type\":1,\"output\":\" | ~~^~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:676:37: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:683:29: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:683:29: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, -1, -1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, -1, -1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:689:32: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:689:60: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Diagonal.h:63:53: required from 'class Eigen::Diagonal, const Eigen::Matrix >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:697:61: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, 1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, -1, 1, true, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, -1, 1, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:750:35: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, -1, 1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:757:62: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, -1, 1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, -1, 1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/VectorBlock.h:56:47: required from 'class Eigen::VectorBlock, -1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:769:65: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base >, Eigen::Matrix, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl >, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product >, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:72:31: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:91:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix, const Eigen::Transpose > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix, const Eigen::Transpose > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix, const Eigen::Transpose > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Matrix, const Eigen::Transpose >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:73:24: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:91:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Transpose > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:73:45: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:91:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Diagonal.h:63:53: required from 'class Eigen::Diagonal, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:91:21: required from 'class Eigen::Tridiagonalization >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:105:62: required from 'class Eigen::SelfAdjointEigenSolver >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:91:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Diagonal.h:63:53: required from 'class Eigen::Diagonal, -1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:96:21: required from 'class Eigen::Tridiagonalization >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:105:62: required from 'class Eigen::SelfAdjointEigenSolver >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:91:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp: In instantiation of 'NT estimate_ratio_interval(const ball&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, RNG&) [with Point = point >; ball = Ball > >; PolyBall2 = Zonotope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:761:47: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:103:53: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:630:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 630 | for (int i = 0; i < ratio_parameters.W; ++i)\\n\"},{\"type\":1,\"output\":\" | ~~^~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp: In instantiation of 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:776:38: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:103:53: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:673:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 673 | for (int i = 0; i < ratio_parameters.W; ++i)\\n\"},{\"type\":1,\"output\":\" | ~~^~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp: In instantiation of 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = BallIntersectPolytope > >, Ball > > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:800:50: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:103:53: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:673:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Inverse.h:69:7: required from 'class Eigen::InverseImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Inverse.h:43:7: required from 'class Eigen::Inverse >'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:237:27: required from 'void compute_hpoly_for_mmc(Zonotope&, HPolytope&) [with Zonotope = Zonotope > >; HPolytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:295:26: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Inverse >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Inverse >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Inverse >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, Eigen::Inverse >, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, Eigen::Inverse >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, Eigen::Inverse >, 0>'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:237:16: required from 'void compute_hpoly_for_mmc(Zonotope&, HPolytope&) [with Zonotope = Zonotope > >; HPolytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:295:26: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 1, -1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, 1, -1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, 1, -1, false>'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:241:26: required from 'void compute_hpoly_for_mmc(Zonotope&, HPolytope&) [with Zonotope = Zonotope > >; HPolytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:295:26: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::Block, 1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, 1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, 1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:242:31: required from 'void compute_hpoly_for_mmc(Zonotope&, HPolytope&) [with Zonotope = Zonotope > >; HPolytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:295:26: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, 1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, 1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, 1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, 1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, 1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:242:31: required from 'void compute_hpoly_for_mmc(Zonotope&, HPolytope&) [with Zonotope = Zonotope > >; HPolytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:295:26: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Product, Eigen::Matrix, 0> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Product, Eigen::Matrix, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Product, Eigen::Matrix, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Product, Eigen::Matrix, 0>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Product, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:41:27: required from 'bool get_first_poly(Zonotope&, HPolytope&, NT&, const cooling_ball_parameters&, RNG&, VT&) [with RandomPointGenerator = RandomPointGenerator > >, BoostRandomNumberGenerator, double> > >; Zonotope = Zonotope > >; HPolytope = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:297:51: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Product, Eigen::Matrix, 0> >, Eigen::internal::member_sum, 1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Product, Eigen::Matrix, 0> >, Eigen::internal::member_sum, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Product, Eigen::Matrix, 0> >, Eigen::internal::member_sum, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/VectorwiseOp.h:56:7: required from 'class Eigen::PartialReduxExpr, const Eigen::Product, Eigen::Matrix, 0> >, Eigen::internal::member_sum, 1>'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:41:43: required from 'bool get_first_poly(Zonotope&, HPolytope&, NT&, const cooling_ball_parameters&, RNG&, VT&) [with RandomPointGenerator = RandomPointGenerator > >, BoostRandomNumberGenerator, double> > >; Zonotope = Zonotope > >; HPolytope = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:297:51: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp: In instantiation of 'bool get_first_poly(Zonotope&, HPolytope&, NT&, const cooling_ball_parameters&, RNG&, VT&) [with RandomPointGenerator = RandomPointGenerator > >, BoostRandomNumberGenerator, double> > >; Zonotope = Zonotope > >; HPolytope = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>; VT = Eigen::Matrix]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:297:51: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:53:16: warning: comparison of integer expressions of different signedness: 'int' and 'const unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 53 | while(iter <= max_iterarions) {\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Matrix, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:57:31: required from 'bool get_first_poly(Zonotope&, HPolytope&, NT&, const cooling_ball_parameters&, RNG&, VT&) [with RandomPointGenerator = RandomPointGenerator > >, BoostRandomNumberGenerator, double> > >; Zonotope = Zonotope > >; HPolytope = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:297:51: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Matrix >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Matrix >, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Matrix >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:57:38: required from 'bool get_first_poly(Zonotope&, HPolytope&, NT&, const cooling_ball_parameters&, RNG&, VT&) [with RandomPointGenerator = RandomPointGenerator > >, BoostRandomNumberGenerator, double> > >; Zonotope = Zonotope > >; HPolytope = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:297:51: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Matrix >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Matrix >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Matrix >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Matrix >, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Matrix >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:57:38: required from 'bool get_first_poly(Zonotope&, HPolytope&, NT&, const cooling_ball_parameters&, RNG&, VT&) [with RandomPointGenerator = RandomPointGenerator > >, BoostRandomNumberGenerator, double> > >; Zonotope = Zonotope > >; HPolytope = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:297:51: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix, const Eigen::CwiseBinaryOp, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Matrix >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix, const Eigen::CwiseBinaryOp, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Matrix >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix, const Eigen::CwiseBinaryOp, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Matrix >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Matrix, const Eigen::CwiseBinaryOp, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Matrix >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::CwiseBinaryOp, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Matrix >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:57:23: required from 'bool get_first_poly(Zonotope&, HPolytope&, NT&, const cooling_ball_parameters&, RNG&, VT&) [with RandomPointGenerator = RandomPointGenerator > >, BoostRandomNumberGenerator, double> > >; Zonotope = Zonotope > >; HPolytope = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:297:51: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp: In instantiation of 'bool get_first_poly(Zonotope&, HPolytope&, NT&, const cooling_ball_parameters&, RNG&, VT&) [with RandomPointGenerator = RandomPointGenerator > >, BoostRandomNumberGenerator, double> > >; Zonotope = Zonotope > >; HPolytope = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>; VT = Eigen::Matrix]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:297:51: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:45:46: warning: unused variable 'N' [-Wunused-variable]\\n\"},{\"type\":1,\"output\":\" 45 | int n = P.dimension(), m = b_max.size(), N = 1200, iter = 1, count = 0;\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:45:66: warning: unused variable 'count' [-Wunused-variable]\\n\"},{\"type\":1,\"output\":\" 45 | int n = P.dimension(), m = b_max.size(), N = 1200, iter = 1, count = 0;\\n\"},{\"type\":1,\"output\":\" | ^~~~~\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:47:19: warning: unused variable 'print' [-Wunused-variable]\\n\"},{\"type\":1,\"output\":\" 47 | bool too_few, print = false;\\n\"},{\"type\":1,\"output\":\" | ^~~~~\\n\"},{\"type\":1,\"output\":\"In file included from include/volume/volume_sequence_of_balls.hpp:33,\\n\"},{\"type\":1,\"output\":\" from zonotope_approximation.cpp:15:\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp: In instantiation of 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:70:25: warning: comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 70 | for (i=0 ; idimension(); i++){\\n\"},{\"type\":1,\"output\":\" | ~^~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, Eigen::Matrix, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:106:27: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix, const Eigen::Product, Eigen::Matrix, 0> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix, const Eigen::Product, Eigen::Matrix, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix, const Eigen::Product, Eigen::Matrix, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Matrix, const Eigen::Product, Eigen::Matrix, 0>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Product, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:106:23: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp: In instantiation of 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = CDHRWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = HPolytope > >; PolyBall2 = Zonotope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:332:56: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:673:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 673 | for (int i = 0; i < ratio_parameters.W; ++i)\\n\"},{\"type\":1,\"output\":\" | ~~^~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp: In instantiation of 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:341:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:673:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp: In instantiation of 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = ZonoIntersectHPoly > >, HPolytope > > >; PolyBall2 = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:363:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:673:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/TriangularMatrix.h:174:44: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/TriangularMatrix.h:331:58: required from 'class Eigen::TriangularViewImpl, -1, -1, false> >, 1, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/TriangularMatrix.h:186:58: required from 'class Eigen::TriangularView, -1, -1, false> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:232:121: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/misc/RealSvd2x2.h:25:26: required from 'void Eigen::internal::real_2x2_jacobi_svd(const MatrixType&, Index, Index, Eigen::JacobiRotation*, Eigen::JacobiRotation*) [with MatrixType = Eigen::Matrix; RealScalar = double; Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:722:42: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp: In instantiation of 'bool get_first_ball(const Polytope&, Ball&, NT&, const NT&, const cooling_ball_parameters&, RNG&) [with Polytope = Zonotope > >; Ball = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:299:25: required from 'bool get_sequence_of_polytopeballs(Polytope&, std::vector&, std::vector&, const int&, const NT&, const unsigned int&, const cooling_ball_parameters&, RNG&) [with RandomPointGenerator = RandomPointGenerator > >, BoostRandomNumberGenerator, double> > >; PolyBall = BallIntersectPolytope > >, Ball > > >; ball = Ball > >; Polytope = Zonotope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:741:12: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:103:53: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:180:17: warning: comparison of integer expressions of different signedness: 'int' and 'const unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 180 | while (iter <= max_iterarions) {\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp: In instantiation of 'bool get_next_zonotopeball(std::vector&, const PointList&, const NT&, std::vector&, const cooling_ball_parameters&) [with Point = point >; ball = Ball > >; PointList = std::__cxx11::list >, std::allocator > > >; NT = double]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:319:39: required from 'bool get_sequence_of_polytopeballs(Polytope&, std::vector&, std::vector&, const int&, const NT&, const unsigned int&, const cooling_ball_parameters&, RNG&) [with RandomPointGenerator = RandomPointGenerator > >, BoostRandomNumberGenerator, double> > >; PolyBall = BallIntersectPolytope > >, Ball > > >; ball = Ball > >; Polytope = Zonotope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:741:12: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:103:53: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:236:17: warning: comparison of integer expressions of different signedness: 'int' and 'const unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 236 | while (iter <= max_iterarions)\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp: In instantiation of 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:675:28: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:776:38: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:103:53: required from here\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:253:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 253 | while (it < 50*n)\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:268:20: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 268 | if (it == 50*n){\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~~\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp: In instantiation of 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = BallIntersectPolytope > >, Ball > > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:675:28: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = BallIntersectPolytope > >, Ball > > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:800:50: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:103:53: required from here\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:253:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 253 | while (it < 50*n)\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:268:20: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 268 | if (it == 50*n){\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~~\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp: In instantiation of 'bool get_next_zonoball(std::vector&, HPolytope&, const VT&, const VT&, PointList&, std::vector&, const cooling_ball_parameters&) [with Zonotope = Zonotope > >; HPolytope = HPolytope > >; VT = Eigen::Matrix; PointList = std::__cxx11::list >, std::allocator > > >; NT = double]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:181:38: required from 'bool get_sequence_of_zonopolys(Zonotope&, const HPolytope&, std::vector&, std::vector&, const VT&, const unsigned int&, const unsigned int&, const cooling_ball_parameters&, RNG&) [with RandomPointGenerator = RandomPointGenerator > >, BoostRandomNumberGenerator, double> > >; ZonoHP = ZonoIntersectHPoly > >, HPolytope > > >; Zonotope = Zonotope > >; HPolytope = HPolytope > >; VT = Eigen::Matrix; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:309:24: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:113:17: warning: comparison of integer expressions of different signedness: 'int' and 'const unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 113 | while (iter <= max_iterarions) {\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:108:9: warning: unused variable 'n' [-Wunused-variable]\\n\"},{\"type\":1,\"output\":\" 108 | int n = HP2.dimension(), iter = 1;\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp: In instantiation of 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = ZonoIntersectHPoly > >, HPolytope > > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:675:28: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = ZonoIntersectHPoly > >, HPolytope > > >; PolyBall2 = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:363:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:253:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 253 | while (it < 50*n)\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:268:20: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 268 | if (it == 50*n){\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Diagonal.h:63:53: required from 'class Eigen::Diagonal, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:249:21: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, -1, 1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:256:59: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, true>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/VectorBlock.h:56:47: required from 'class Eigen::VectorBlock, -1, 1, true>, -1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:262:26: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/VectorBlock.h:56:47: required from 'class Eigen::VectorBlock, -1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:82: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, 2, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, 2, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, 2, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, 2, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, 2, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, 2, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, 1, 2, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:279:10: required from 'void Eigen::MatrixBase::applyOnTheLeft(Eigen::Index, Eigen::Index, const Eigen::JacobiRotation&) [with OtherScalar = double; Derived = Eigen::Matrix; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/misc/RealSvd2x2.h:46:19: required from 'void Eigen::internal::real_2x2_jacobi_svd(const MatrixType&, Index, Index, Eigen::JacobiRotation*, Eigen::JacobiRotation*) [with MatrixType = Eigen::Matrix; RealScalar = double; Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:722:42: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:174:81: required from 'class Eigen::DenseBase, 1, 2, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, 2, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, 2, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: required from 'class Eigen::MapBase, 1, 2, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, 1, 2, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:279:10: required from 'void Eigen::MatrixBase::applyOnTheLeft(Eigen::Index, Eigen::Index, const Eigen::JacobiRotation&) [with OtherScalar = double; Derived = Eigen::Matrix; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/misc/RealSvd2x2.h:46:19: required from 'void Eigen::internal::real_2x2_jacobi_svd(const MatrixType&, Index, Index, Eigen::JacobiRotation*, Eigen::JacobiRotation*) [with MatrixType = Eigen::Matrix; RealScalar = double; Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:722:42: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:445:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:454:5: required from 'void Eigen::internal::apply_rotation_in_the_plane(Eigen::DenseBase&, Eigen::DenseBase&, const Eigen::JacobiRotation&) [with VectorX = Eigen::Block, 1, -1, false>; VectorY = Eigen::Block, 1, -1, false>; OtherScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:281:40: required from 'void Eigen::MatrixBase::applyOnTheLeft(Eigen::Index, Eigen::Index, const Eigen::JacobiRotation&) [with OtherScalar = double; Derived = Eigen::Matrix; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:725:40: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:454:5: required from 'void Eigen::internal::apply_rotation_in_the_plane(Eigen::DenseBase&, Eigen::DenseBase&, const Eigen::JacobiRotation&) [with VectorX = Eigen::Block, -1, 1, true>; VectorY = Eigen::Block, -1, 1, true>; OtherScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:296:40: required from 'void Eigen::MatrixBase::applyOnTheRight(Eigen::Index, Eigen::Index, const Eigen::JacobiRotation&) [with OtherScalar = double; Derived = Eigen::Matrix; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:726:53: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:71:51: required from 'class Eigen::internal::visitor_evaluator, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:110:17: required from 'void Eigen::DenseBase::visit(Visitor&) const [with Visitor = Eigen::internal::max_coeff_visitor, -1, 1, false> >; Derived = Eigen::Block, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:266:14: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::maxCoeff(IndexType*) const [with IndexType = long long int; Derived = Eigen::Block, -1, 1, false>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:769:88: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp: In instantiation of 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:671:14: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:776:38: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:103:53: required from here\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:84:23: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 84 | for (int i = 0; i < P.dimension(); ++i) {\\n\"},{\"type\":1,\"output\":\" | ~~^~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:91:26: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:671:14: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:776:38: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:103:53: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:92:38: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:671:14: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:776:38: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:103:53: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, Eigen::Transpose >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, Eigen::Transpose >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::Transpose >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base >, Eigen::Transpose >, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl >, Eigen::Transpose >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product >, Eigen::Transpose >, 0>'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:92:41: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:671:14: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:776:38: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:103:53: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base >, Eigen::Matrix, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl >, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product >, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:96:42: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:671:14: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:776:38: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:103:53: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp: In instantiation of 'void BilliardWalk::Walk::initialize(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:221:19: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:671:14: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:776:38: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:103:53: required from here\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:313:19: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 313 | while (it <= 50*n)\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:321:26: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 321 | }else if (it == 50*n) {\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, 1, -1, false>'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:394:40: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:675:28: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:776:38: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:103:53: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase > > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase > > >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ReturnByValue.h:50:34: required from 'class Eigen::ReturnByValue > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/misc/Kernel.h:37:46: required from 'struct Eigen::internal::kernel_retval_base > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/FullPivLU.h:619:8: required from 'struct Eigen::internal::kernel_retval > >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:399:39: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:675:28: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:776:38: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:103:53: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:403:14: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:675:28: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:776:38: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:103:53: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp: In instantiation of 'void BilliardWalk::Walk::initialize(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = BallIntersectPolytope > >, Ball > > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:221:19: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = BallIntersectPolytope > >, Ball > > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:671:14: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = BallIntersectPolytope > >, Ball > > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:800:50: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:103:53: required from here\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:313:19: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 313 | while (it <= 50*n)\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:321:26: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 321 | }else if (it == 50*n) {\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:40: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, 1, -1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::norm() const [with Derived = Eigen::Block, 1, -1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:241:34: required from 'void compute_hpoly_for_mmc(Zonotope&, HPolytope&) [with Zonotope = Zonotope > >; HPolytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:295:26: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false>, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:121:7: required from 'class Eigen::internal::dense_product_base, 1, -1, false>, Eigen::Matrix, 0, 6>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, 1, -1, false>, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, 1, -1, false>, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:219:36: required from 'int HPolytope::is_in(const Point&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:79:20: required from 'bool check_convergence(const ConvexBody&, const PointList&, bool&, NT&, const int&, const bool&, const bool&, const cooling_ball_parameters&) [with Point = point >; ConvexBody = HPolytope > >; PointList = std::__cxx11::list >, std::allocator > > >; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:175:33: required from 'bool get_sequence_of_zonopolys(Zonotope&, const HPolytope&, std::vector&, std::vector&, const VT&, const unsigned int&, const unsigned int&, const cooling_ball_parameters&, RNG&) [with RandomPointGenerator = RandomPointGenerator > >, BoostRandomNumberGenerator, double> > >; ZonoHP = ZonoIntersectHPoly > >, HPolytope > > >; Zonotope = Zonotope > >; HPolytope = HPolytope > >; VT = Eigen::Matrix; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:309:24: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:174:81: required from 'class Eigen::DenseBase, 1, -1, false>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:121:7: required from 'class Eigen::internal::dense_product_base, 1, -1, false>, Eigen::Matrix, 0, 6>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, 1, -1, false>, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, 1, -1, false>, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:219:36: required from 'int HPolytope::is_in(const Point&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:79:20: required from 'bool check_convergence(const ConvexBody&, const PointList&, bool&, NT&, const int&, const bool&, const bool&, const cooling_ball_parameters&) [with Point = point >; ConvexBody = HPolytope > >; PointList = std::__cxx11::list >, std::allocator > > >; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:175:33: required from 'bool get_sequence_of_zonopolys(Zonotope&, const HPolytope&, std::vector&, std::vector&, const VT&, const unsigned int&, const unsigned int&, const cooling_ball_parameters&, RNG&) [with RandomPointGenerator = RandomPointGenerator > >, BoostRandomNumberGenerator, double> > >; ZonoHP = ZonoIntersectHPoly > >, HPolytope > > >; Zonotope = Zonotope > >; HPolytope = HPolytope > >; VT = Eigen::Matrix; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:309:24: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false>, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, false>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/VectorBlock.h:56:47: required from 'class Eigen::VectorBlock, 1, -1, false>, -1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:441:101: required from 'Eigen::LLT& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:115:14: required from 'Eigen::LLT::LLT(Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:99:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, -1, 1, true>'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:414:34: required from 'std::pair HPolytope::line_intersect_coord(const Point&, const Point&, const unsigned int&, const unsigned int&, VT&) const [with Point = point >; typename Point::FT = double; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/gaussian_cdhr_walk.hpp:109:43: required from 'void GaussianCDHRWalk::Walk::apply(const BallPolytope&, Point&, const NT&, const unsigned int&, RandomNumberGenerator&) [with BallPolytope = HPolytope > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_gaussians.hpp:420:32: required from 'double volume_cooling_gaussians(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&) [with WalkTypePolicy = GaussianCDHRWalk; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:329:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, true>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, true>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, true>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, -1, 1, true>, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:415:26: required from 'std::pair HPolytope::line_intersect_coord(const Point&, const Point&, const unsigned int&, const unsigned int&, VT&) const [with Point = point >; typename Point::FT = double; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/gaussian_cdhr_walk.hpp:109:43: required from 'void GaussianCDHRWalk::Walk::apply(const BallPolytope&, Point&, const NT&, const unsigned int&, RandomNumberGenerator&) [with BallPolytope = HPolytope > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_gaussians.hpp:420:32: required from 'double volume_cooling_gaussians(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&) [with WalkTypePolicy = GaussianCDHRWalk; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:329:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::CwiseNullaryOp, Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::CwiseNullaryOp, Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::CwiseNullaryOp, Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::CwiseNullaryOp, Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::CwiseNullaryOp, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:146:40: required from 'static NT compute_diameter, HPolytope > >::compute(const ZonoIntersectHPoly, HPolytope >&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = ZonoIntersectHPoly > >, HPolytope > > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:671:14: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = ZonoIntersectHPoly > >, HPolytope > > >; PolyBall2 = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:363:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp: In instantiation of 'void BilliardWalk::Walk::initialize(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = ZonoIntersectHPoly > >, HPolytope > > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]':\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:221:19: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = ZonoIntersectHPoly > >, HPolytope > > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:671:14: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = ZonoIntersectHPoly > >, HPolytope > > >; PolyBall2 = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:363:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:313:19: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 313 | while (it <= 50*n)\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~~\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:321:26: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare]\\n\"},{\"type\":1,\"output\":\" 321 | }else if (it == 50*n) {\\n\"},{\"type\":1,\"output\":\" | ~~~^~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:519:73: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:475:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:161:63: required from 'void Eigen::MatrixBase::applyHouseholderOnTheRight(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Block, -1, 1, false>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:256:43: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:162:82: required from 'void Eigen::MatrixBase::applyHouseholderOnTheRight(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Block, -1, 1, false>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:256:43: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:163:27: required from 'void Eigen::MatrixBase::applyHouseholderOnTheRight(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Block, -1, 1, false>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:256:43: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:164:21: required from 'void Eigen::MatrixBase::applyHouseholderOnTheRight(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Block, -1, 1, false>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:256:43: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:165:25: required from 'void Eigen::MatrixBase::applyHouseholderOnTheRight(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Block, -1, 1, false>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:256:43: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:166:55: required from 'void Eigen::MatrixBase::applyHouseholderOnTheRight(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Block, -1, 1, false>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:256:43: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, false> >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, false> >, 0, 5>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, false> >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, false> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:166:34: required from 'void Eigen::MatrixBase::applyHouseholderOnTheRight(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Block, -1, 1, false>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:256:43: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:124:63: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Block, -1, 1, false>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:259:42: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:126:41: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Block, -1, 1, false>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:259:42: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:127:21: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Block, -1, 1, false>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:259:42: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:128:25: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Block, -1, 1, false>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:259:42: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:129:29: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Block, -1, 1, false>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:259:42: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0, 5>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:129:41: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Block, -1, 1, false>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:259:42: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:83:75: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/TriangularMatrix.h:174:44: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:92:93: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:92:96: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 2>, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 2>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 2>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, 2>, Eigen::Matrix, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, 2>, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, 2>, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:94:66: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/TriangularMatrix.h:174:44: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:95:63: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 1>, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, 1>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, 1>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base >, 1>, Eigen::Matrix, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl >, 1>, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product >, 1>, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:95:66: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 5>, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, 5>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, 5>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, 5>, Eigen::Matrix, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, false>, 5>, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false>, 5>, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:96:22: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, 2, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:454:5: required from 'void Eigen::internal::apply_rotation_in_the_plane(Eigen::DenseBase&, Eigen::DenseBase&, const Eigen::JacobiRotation&) [with VectorX = Eigen::Block, 1, 2, false>; VectorY = Eigen::Block, 1, 2, false>; OtherScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:281:40: required from 'void Eigen::MatrixBase::applyOnTheLeft(Eigen::Index, Eigen::Index, const Eigen::JacobiRotation&) [with OtherScalar = double; Derived = Eigen::Matrix; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/misc/RealSvd2x2.h:46:19: required from 'void Eigen::internal::real_2x2_jacobi_svd(const MatrixType&, Index, Index, Eigen::JacobiRotation*, Eigen::JacobiRotation*) [with MatrixType = Eigen::Matrix; RealScalar = double; Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:722:42: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from include/convex_bodies/zpolytope.h:19,\\n\"},{\"type\":1,\"output\":\" from include/random_walks/uniform_billiard_walk.hpp:20:\\n\"},{\"type\":1,\"output\":\"include/lp_oracles/zpolyoracles.h: In instantiation of 'bool memLP_Zonotope(const MT&, const Point&, NT*, int*) [with MT = Eigen::Matrix; Point = point >; NT = double]':\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:241:26: required from 'int Zonotope::is_in(const Point&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:400:22: required from 'bool estimate_ratio_generic(const Pollyball&, const Point&, const NT&, estimate_ratio_parameters&) [with Pollyball = Zonotope > >; Point = point >; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:496:36: required from 'NT estimate_ratio(const ball&, const PolyBall&, const NT&, const NT&, const int&, const int&, RNG&) [with Point = point >; ball = Ball > >; PolyBall = Zonotope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:758:38: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:103:53: required from here\\n\"},{\"type\":1,\"output\":\"include/lp_oracles/zpolyoracles.h:52:10: warning: unused variable 'infinite' [-Wunused-variable]\\n\"},{\"type\":1,\"output\":\" 52 | REAL infinite = get_infinite(lp); /* will return 1.0e30 */\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"include/cartesian_geom/point.h:135:30: required from 'point point::operator*(FT) const [with K = Cartesian; FT = double]'\\n\"},{\"type\":1,\"output\":\"include/cartesian_geom/point.h:201:14: required from 'point operator*(const typename K::FT&, const point&) [with K = Cartesian; typename K::FT = double]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:258:30: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:675:28: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:776:38: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:103:53: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Matrix, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"include/cartesian_geom/point.h:106:31: required from 'void point::operator+=(const Coeff&) [with K = Cartesian; Coeff = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:407:11: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:675:28: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:776:38: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:103:53: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:131:44: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:132:22: required from 'Eigen::internal::dense_product_base::operator const Scalar() const [with Lhs = Eigen::Block, 1, -1, false>; Rhs = Eigen::Matrix; int Option = 0; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:219:25: required from 'int HPolytope::is_in(const Point&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:79:20: required from 'bool check_convergence(const ConvexBody&, const PointList&, bool&, NT&, const int&, const bool&, const bool&, const cooling_ball_parameters&) [with Point = point >; ConvexBody = HPolytope > >; PointList = std::__cxx11::list >, std::allocator > > >; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:175:33: required from 'bool get_sequence_of_zonopolys(Zonotope&, const HPolytope&, std::vector&, std::vector&, const VT&, const unsigned int&, const unsigned int&, const cooling_ball_parameters&, RNG&) [with RandomPointGenerator = RandomPointGenerator > >, BoostRandomNumberGenerator, double> > >; ZonoHP = ZonoIntersectHPoly > >, HPolytope > > >; Zonotope = Zonotope > >; HPolytope = HPolytope > >; VT = Eigen::Matrix; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:309:24: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase > >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ReturnByValue.h:50:34: required from 'class Eigen::ReturnByValue > >'\\n\"},{\"type\":1,\"output\":\"d:\\\\softwares\\\\r\\\\r-4.3.0\\\\library\\\\rcppeigen\\\\include\\\\eigen\\\\src\\\\eigenvalues\\\\hessenbergdecomposition.h:339:38: required from 'struct Eigen::internal::HessenbergDecompositionMatrixHReturnType >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:39: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, 1, -1, false>, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, 1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, 1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, 1, -1, false>, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, 1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:468:100: required from 'void Eigen::EigenSolver<_MatrixType>::doComputeEigenvectors() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:447:7: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:615:39: required from 'void Eigen::EigenSolver<_MatrixType>::doComputeEigenvectors() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:447:7: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, true>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, true>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, true>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, true>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, true>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, true>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:615:45: required from 'void Eigen::EigenSolver<_MatrixType>::doComputeEigenvectors() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:447:7: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix, const Eigen::Product, Eigen::Matrix, 0> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix, const Eigen::Product, Eigen::Matrix, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix, const Eigen::Product, Eigen::Matrix, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Matrix, const Eigen::Product, Eigen::Matrix, 0>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Product, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:380:30: required from 'std::pair HPolytope::line_intersect_coord(const Point&, const unsigned int&, VT&) const [with Point = point >; typename Point::FT = double; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/gaussian_cdhr_walk.hpp:133:58: required from 'void GaussianCDHRWalk::Walk::initialize(const BallPolytope&, const Point&, const NT&, RandomNumberGenerator&) [with BallPolytope = HPolytope > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/gaussian_cdhr_walk.hpp:82:19: required from 'GaussianCDHRWalk::Walk::Walk(const Polytope&, const Point&, const NT&, RandomNumberGenerator&) [with Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_gaussians.hpp:412:18: required from 'double volume_cooling_gaussians(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&) [with WalkTypePolicy = GaussianCDHRWalk; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:329:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:488:39: required from 'void HPolytope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zonoIntersecthpoly.h:179:34: required from 'void ZonoIntersectHPoly::compute_reflection(PointType&, const PointType&, const int&) const [with Zonotope = Zonotope > >; HPolytope = HPolytope > >; PointType = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = ZonoIntersectHPoly > >, HPolytope > > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:675:28: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = ZonoIntersectHPoly > >, HPolytope > > >; PolyBall2 = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:363:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseUnaryOp, const Eigen::Matrix >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_max_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Matrix > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_max_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Matrix >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:438:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::maxCoeff() const [with Derived = Eigen::CwiseUnaryOp, const Eigen::Matrix >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:676:48: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, -1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, -1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, true>, -1, 1, false>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:538:52: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:475:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:548:35: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:475:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:548:35: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:475:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:129:29: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::VectorBlock, -1, 1, true>, -1>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:548:35: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:475:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0, 5>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:548:35: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:475:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/TriangularMatrix.h:392:42: required from 'Eigen::TriangularViewImpl<_MatrixType, _Mode, Eigen::Dense>::TriangularViewType& Eigen::TriangularViewImpl<_MatrixType, _Mode, Eigen::Dense>::setConstant(const Scalar&) [with _MatrixType = Eigen::Matrix; unsigned int _Mode = 10; TriangularViewType = Eigen::TriangularView, 10>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/TriangularMatrix.h:395:44: required from 'Eigen::TriangularViewImpl<_MatrixType, _Mode, Eigen::Dense>::TriangularViewType& Eigen::TriangularViewImpl<_MatrixType, _Mode, Eigen::Dense>::setZero() [with _MatrixType = Eigen::Matrix; unsigned int _Mode = 10; TriangularViewType = Eigen::TriangularView, 10>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:250:61: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, true>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false>, -1, 1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, 1, true>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false>, -1, 1, true>, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:63:57: required from 'void Eigen::internal::make_block_householder_triangular_factor(TriangularFactorType&, const VectorsType&, const CoeffsType&) [with TriangularFactorType = Eigen::Matrix; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false>, -1, -1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, Eigen::internal::member_sum, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix >, Eigen::internal::member_sum, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix >, Eigen::internal::member_sum, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/VectorwiseOp.h:56:7: required from 'class Eigen::PartialReduxExpr, const Eigen::Matrix >, Eigen::internal::member_sum, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:523:46: required from 'void Eigen::PartialPivLU::compute() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:78:56: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Diagonal.h:63:53: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:91:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:520:87: required from 'Eigen::ComputationInfo Eigen::internal::computeFromTridiagonal_impl(DiagType&, SubDiagType&, Eigen::Index, bool, MatrixType&) [with MatrixType = Eigen::Matrix; DiagType = Eigen::Matrix; SubDiagType = Eigen::Matrix; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:439:49: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:91:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Product >, Eigen::Matrix, 0> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Product >, Eigen::Matrix, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Product >, Eigen::Matrix, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Product >, Eigen::Matrix, 0>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Product >, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:40: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Product >, Eigen::Matrix, 0>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::norm() const [with Derived = Eigen::Product >, Eigen::Matrix, 0>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:96:52: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:671:14: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:776:38: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:103:53: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Matrix, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:44: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Matrix; U = Eigen::Matrix; bool NeedToTranspose = false; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: required from 'typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType Eigen::MatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Matrix; Derived = Eigen::Matrix; typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType = double; typename Eigen::internal::traits::Scalar = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:401:35: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:675:28: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:776:38: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:103:53: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:40: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Matrix; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::norm() const [with Derived = Eigen::Matrix; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:403:21: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:675:28: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:776:38: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:103:53: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:334:18: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:334:57: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:221:22: required from 'static typename Eigen::NumTraits::Scalar>::Real Eigen::internal::lpNorm_selector::run(const Eigen::MatrixBase&) [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:269:52: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::lpNorm() const [with int p = 1; Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:441:74: required from 'Eigen::LLT& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:115:14: required from 'Eigen::LLT::LLT(Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:99:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Product, Eigen::Matrix, 0> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Product, Eigen::Matrix, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Product, Eigen::Matrix, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Product, Eigen::Matrix, 0>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Product, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:40: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Product, Eigen::Matrix, 0>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::norm() const [with Derived = Eigen::Product, Eigen::Matrix, 0>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:168:55: required from 'static NT compute_diameter, HPolytope > >::compute(const ZonoIntersectHPoly, HPolytope >&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = ZonoIntersectHPoly > >, HPolytope > > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:671:14: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = ZonoIntersectHPoly > >, HPolytope > > >; PolyBall2 = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:363:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:318:36: required from 'std::pair HPolytope::line_intersect(const Point&, const Point&, VT&, VT&, const NT&, bool) const [with Point = point >; typename Point::FT = double; VT = Eigen::Matrix; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:363:30: required from 'std::pair HPolytope::line_positive_intersect(const Point&, const Point&, VT&, VT&, const NT&) const [with Point = point >; typename Point::FT = double; VT = Eigen::Matrix; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zonoIntersecthpoly.h:134:66: required from 'std::pair ZonoIntersectHPoly::line_positive_intersect(const PointType&, const PointType&, VT&, VT&, const NT&) const [with Zonotope = Zonotope > >; HPolytope = HPolytope > >; typename CBall::NT = double; PointType = point >; VT = Eigen::Matrix; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:255:56: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = ZonoIntersectHPoly > >, HPolytope > > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:675:28: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = ZonoIntersectHPoly > >, HPolytope > > >; PolyBall2 = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:363:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from include/random_walks/uniform_billiard_walk.hpp:17:\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h: In instantiation of 'std::pair HPolytope::line_intersect(const Point&, const Point&, VT&, VT&, const NT&, bool) const [with Point = point >; typename Point::FT = double; VT = Eigen::Matrix; NT = double]':\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:363:30: required from 'std::pair HPolytope::line_positive_intersect(const Point&, const Point&, VT&, VT&, const NT&) const [with Point = point >; typename Point::FT = double; VT = Eigen::Matrix; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zonoIntersecthpoly.h:134:66: required from 'std::pair ZonoIntersectHPoly::line_positive_intersect(const PointType&, const PointType&, VT&, VT&, const NT&) const [with Zonotope = Zonotope > >; HPolytope = HPolytope > >; typename CBall::NT = double; PointType = point >; VT = Eigen::Matrix; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:255:56: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = ZonoIntersectHPoly > >, HPolytope > > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:675:28: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = ZonoIntersectHPoly > >, HPolytope > > >; PolyBall2 = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:363:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:313:12: warning: unused variable 'mult' [-Wunused-variable]\\n\"},{\"type\":1,\"output\":\" 313 | NT mult;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:315:22: warning: unused variable 'j' [-Wunused-variable]\\n\"},{\"type\":1,\"output\":\" 315 | unsigned int j;\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>; SrcXprType = Eigen::CwiseUnaryOp, const Eigen::Transpose > >; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>; SrcXprType = Eigen::CwiseUnaryOp, const Eigen::Transpose > >; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>; Src = Eigen::CwiseUnaryOp, const Eigen::Transpose > >; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>; Src = Eigen::CwiseUnaryOp, const Eigen::Transpose > >; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Block, -1, -1, false>; Src = Eigen::CwiseUnaryOp, const Eigen::Transpose > >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Assign.h:66:28: required from 'Derived& Eigen::MatrixBase::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::CwiseUnaryOp, const Eigen::Transpose > >; Derived = Eigen::Block, -1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CommaInitializer.h:95:64: required from 'Eigen::CommaInitializer& Eigen::CommaInitializer::operator,(const Eigen::DenseBase&) [with OtherDerived = Eigen::CwiseUnaryOp, const Eigen::Transpose > >; XprType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:64:86: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Transpose >, 1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Transpose >, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Transpose >, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, Eigen::Transpose >, 1, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, Eigen::Transpose >, 1, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, Eigen::Transpose >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:436:50: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; Lhs = Eigen::Matrix; Rhs = Eigen::Transpose >; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, Eigen::Transpose >, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, -1, 1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:40: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:505:52: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:475:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:71:51: required from 'class Eigen::internal::visitor_evaluator, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:110:17: required from 'void Eigen::DenseBase::visit(Visitor&) const [with Visitor = Eigen::internal::max_coeff_visitor, 1, -1, false> >; Derived = Eigen::Block, 1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:266:14: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::maxCoeff(IndexType*) const [with IndexType = long long int; Derived = Eigen::Block, 1, -1, false>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:519:90: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:475:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, true>, -1, 1, false>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, 1, true>, -1, 1, false>, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:538:52: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:475:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:91:22: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:538:52: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:475:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:40: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:565:77: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:475:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, Eigen::Transpose >, 1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, Eigen::Transpose >, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::Transpose >, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base >, Eigen::Transpose >, 1, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl >, Eigen::Transpose >, 1, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product >, Eigen::Transpose >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:436:50: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; Lhs = Eigen::Transpose >; Rhs = Eigen::Transpose >; int Options = 0; Scalar = double; SrcXprType = Eigen::Product >, Eigen::Transpose >, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Product >, Eigen::Transpose >, 0>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:75:12: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:78:56: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:368:35: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:91:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:520:87: required from 'Eigen::ComputationInfo Eigen::internal::computeFromTridiagonal_impl(DiagType&, SubDiagType&, Eigen::Index, bool, MatrixType&) [with MatrixType = Eigen::Matrix; DiagType = Eigen::Matrix; SubDiagType = Eigen::Matrix; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:439:49: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:91:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 3, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 3, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 3, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 3, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 3, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 2, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 2, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 2, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 2, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 2, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 2, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, false>, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:522:41: required from 'struct Eigen::internal::unary_evaluator, const Eigen::Block, 1, -1, false>, 1, -1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, 1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Block, 1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:468:106: required from 'void Eigen::EigenSolver<_MatrixType>::doComputeEigenvectors() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:447:7: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false>, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, 1, -1, false>, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, 1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:50:23: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:492:54: required from 'void Eigen::EigenSolver<_MatrixType>::doComputeEigenvectors() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:447:7: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, 1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, 1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, 1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, 1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, 1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:50:56: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:492:54: required from 'void Eigen::EigenSolver<_MatrixType>::doComputeEigenvectors() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:447:7: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:401:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:449:42: required from 'Eigen::LLT& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:115:14: required from 'Eigen::LLT::LLT(Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:99:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:325:58: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:401:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:449:42: required from 'Eigen::LLT& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:115:14: required from 'Eigen::LLT::LLT(Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:99:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, Eigen::Transpose, 1, -1, false> >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, Eigen::Transpose, 1, -1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, Eigen::Transpose, 1, -1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, Eigen::Transpose, 1, -1, false> >, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, false>, Eigen::Transpose, 1, -1, false> >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false>, Eigen::Transpose, 1, -1, false> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:325:45: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:401:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:449:42: required from 'Eigen::LLT& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:115:14: required from 'Eigen::LLT::LLT(Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:99:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:401:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:449:42: required from 'Eigen::LLT& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:115:14: required from 'Eigen::LLT::LLT(Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:99:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:325:58: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:401:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:449:42: required from 'Eigen::LLT& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:115:14: required from 'Eigen::LLT::LLT(Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:99:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, Eigen::Transpose, -1, -1, false>, 1, -1, false> >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false>, Eigen::Transpose, -1, -1, false>, 1, -1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false>, Eigen::Transpose, -1, -1, false>, 1, -1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, -1, -1, false>, Eigen::Transpose, -1, -1, false>, 1, -1, false> >, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, false>, -1, -1, false>, Eigen::Transpose, -1, -1, false>, 1, -1, false> >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Transpose, -1, -1, false>, 1, -1, false> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:325:45: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:401:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:449:42: required from 'Eigen::LLT& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:115:14: required from 'Eigen::LLT::LLT(Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:99:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:40: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:458:42: required from 'std::vector HPolytope::get_dists(const NT&) const [with Point = point >; typename Point::FT = double; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_gaussians.hpp:89:41: required from 'void get_first_gaussian(const Polytope&, const NT&, const NT&, const NT&, std::vector&) [with Polytope = HPolytope > >; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_gaussians.hpp:224:23: required from 'void compute_annealing_schedule(const Polytope&, const NT&, const NT&, const NT&, const unsigned int&, const unsigned int&, const NT&, const NT&, std::vector&, RandomNumberGenerator&) [with WalkType = GaussianCDHRWalk::Walk > >, BoostRandomNumberGenerator, double> >; RandomPointGenerator = GaussianRandomPointGenerator > >, BoostRandomNumberGenerator, double> > >; Polytope = HPolytope > >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_gaussians.hpp:361:6: required from 'double volume_cooling_gaussians(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&) [with WalkTypePolicy = GaussianCDHRWalk; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:329:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:40: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:76:71: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:538:52: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:475:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, true>, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:141:7: required from 'Eigen::DenseCoeffsBase::CoeffReturnType Eigen::DenseCoeffsBase::coeff(Eigen::Index) const [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; CoeffReturnType = const double&; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:77:20: required from 'void Eigen::MatrixBase::makeHouseholder(EssentialPart&, Scalar&, RealScalar&) const [with EssentialPart = Eigen::VectorBlock, -1, 1, true>, -1, 1, false>, -1>; Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; Scalar = double; RealScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:45:18: required from 'void Eigen::MatrixBase::makeHouseholderInPlace(Scalar&, RealScalar&) [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; Scalar = double; RealScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:538:52: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:475:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:369:102: required from 'struct Eigen::internal::plain_object_eval, -1, -1, false>, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:369:45: required from 'struct Eigen::internal::generic_product_impl, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Src = Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/NoAlias.h:42:31: required from 'ExpressionType& Eigen::NoAlias::operator=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>; ExpressionType = Eigen::Map, 0, Eigen::Stride<0, 0> >; StorageBase = Eigen::MatrixBase]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:163:19: required from 'void Eigen::MatrixBase::applyHouseholderOnTheRight(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Block, -1, 1, false>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:256:43: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:369:102: required from 'struct Eigen::internal::plain_object_eval, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:370:45: required from 'struct Eigen::internal::generic_product_impl, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Src = Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/NoAlias.h:42:31: required from 'ExpressionType& Eigen::NoAlias::operator=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>; ExpressionType = Eigen::Map, 0, Eigen::Stride<0, 0> >; StorageBase = Eigen::MatrixBase]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:163:19: required from 'void Eigen::MatrixBase::applyHouseholderOnTheRight(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Block, -1, 1, false>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:256:43: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:141:7: required from 'Eigen::DenseCoeffsBase::CoeffReturnType Eigen::DenseCoeffsBase::coeff(Eigen::Index) const [with Derived = Eigen::Block, -1, 1, false>; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:181:19: required from 'Eigen::DenseCoeffsBase::CoeffReturnType Eigen::DenseCoeffsBase::operator()(Eigen::Index) const [with Derived = Eigen::Block, -1, 1, false>; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:63:53: required from 'void Eigen::internal::make_block_householder_triangular_factor(TriangularFactorType&, const VectorsType&, const CoeffsType&) [with TriangularFactorType = Eigen::Matrix; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:78:56: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:78:56: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 0, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:492:30: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:78:56: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:454:5: required from 'void Eigen::internal::apply_rotation_in_the_plane(Eigen::DenseBase&, Eigen::DenseBase&, const Eigen::JacobiRotation&) [with VectorX = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; VectorY = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; OtherScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:296:40: required from 'void Eigen::MatrixBase::applyOnTheRight(Eigen::Index, Eigen::Index, const Eigen::JacobiRotation&) [with OtherScalar = double; Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:862:24: required from 'void Eigen::internal::tridiagonal_qr_step(RealScalar*, RealScalar*, Index, Index, Scalar*, Index) [with int StorageOrder = 0; RealScalar = double; Scalar = double; Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:520:87: required from 'Eigen::ComputationInfo Eigen::internal::computeFromTridiagonal_impl(DiagType&, SubDiagType&, Eigen::Index, bool, MatrixType&) [with MatrixType = Eigen::Matrix; DiagType = Eigen::Matrix; SubDiagType = Eigen::Matrix; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:439:49: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:91:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/FullPivLU.h:522:35: required from 'void Eigen::FullPivLU::computeInPlace() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/FullPivLU.h:121:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/FullPivLU.h:886:10: required from 'const Eigen::FullPivLU::PlainObject> Eigen::MatrixBase::fullPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:399:30: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:675:28: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:776:38: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:103:53: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, Eigen::Block, 1, -1, false>, 1, -1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false>, Eigen::Block, 1, -1, false>, 1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false>, Eigen::Block, 1, -1, false>, 1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, 1, true>, -1, 1, false>, Eigen::Block, 1, -1, false>, 1, -1, false>, 0, 5>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, 1, true>, -1, 1, false>, Eigen::Block, 1, -1, false>, 1, -1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, 1, true>, -1, 1, false>, Eigen::Block, 1, -1, false>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/FullPivLU.h:563:85: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/FullPivLU.h:886:10: required from 'const Eigen::FullPivLU::PlainObject> Eigen::MatrixBase::fullPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:399:30: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:675:28: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:776:38: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:103:53: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:251:39: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:132:22: required from 'Eigen::internal::dense_product_base::operator const Scalar() const [with Lhs = Eigen::Block, 1, -1, false>; Rhs = Eigen::Matrix; int Option = 0; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:219:25: required from 'int HPolytope::is_in(const Point&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:79:20: required from 'bool check_convergence(const ConvexBody&, const PointList&, bool&, NT&, const int&, const bool&, const bool&, const cooling_ball_parameters&) [with Point = point >; ConvexBody = HPolytope > >; PointList = std::__cxx11::list >, std::allocator > > >; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:175:33: required from 'bool get_sequence_of_zonopolys(Zonotope&, const HPolytope&, std::vector&, std::vector&, const VT&, const unsigned int&, const unsigned int&, const cooling_ball_parameters&, RNG&) [with RandomPointGenerator = RandomPointGenerator > >, BoostRandomNumberGenerator, double> > >; ZonoHP = ZonoIntersectHPoly > >, HPolytope > > >; Zonotope = Zonotope > >; HPolytope = HPolytope > >; VT = Eigen::Matrix; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:309:24: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, 1, -1, false> >, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, 1, -1, false> >, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:251:54: required from 'static void Eigen::internal::generic_product_impl::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::Block, 1, -1, false>; Rhs = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:124:75: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:132:22: required from 'Eigen::internal::dense_product_base::operator const Scalar() const [with Lhs = Eigen::Block, 1, -1, false>; Rhs = Eigen::Matrix; int Option = 0; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:219:25: required from 'int HPolytope::is_in(const Point&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:79:20: required from 'bool check_convergence(const ConvexBody&, const PointList&, bool&, NT&, const int&, const bool&, const bool&, const cooling_ball_parameters&) [with Point = point >; ConvexBody = HPolytope > >; PointList = std::__cxx11::list >, std::allocator > > >; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:175:33: required from 'bool get_sequence_of_zonopolys(Zonotope&, const HPolytope&, std::vector&, std::vector&, const VT&, const unsigned int&, const unsigned int&, const cooling_ball_parameters&, RNG&) [with RandomPointGenerator = RandomPointGenerator > >, BoostRandomNumberGenerator, double> > >; ZonoHP = ZonoIntersectHPoly > >, HPolytope > > >; Zonotope = Zonotope > >; HPolytope = HPolytope > >; VT = Eigen::Matrix; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:309:24: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, true>, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, true>, -1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, true>, -1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, true>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, true>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, true>, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:271:17: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, true>, -1, -1, false>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, true>, -1, -1, false>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, true>, -1, -1, false>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, true>, -1, -1, false>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, true>, -1, -1, false>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, true>, -1, -1, false>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:163:27: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:271:17: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, true>, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, true>, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, true>, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, true>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, true>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, true>, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:271:17: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, true>, -1, 1, false> >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, true>, -1, 1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, true>, -1, 1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, true>, -1, 1, false> >, 0, 5>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, true>, -1, 1, false> >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, true>, -1, 1, false> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:166:34: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:271:17: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, true>, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, true>, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, true>, 1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, true>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 2, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 2, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 2, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 2, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 2, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 2, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::Block, 2, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, 2, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, 2, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, 2, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, 2, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, 2, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, 2, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:91:22: required from 'void Eigen::MatrixBase::makeHouseholder(EssentialPart&, Scalar&, RealScalar&) const [with EssentialPart = Eigen::Matrix; Derived = Eigen::Matrix; Scalar = double; RealScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:511:22: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 2, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 2, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 2, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, 2, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, 2, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 2, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:126:38: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, Eigen::Block, -1, -1, false>, 2, -1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, Eigen::Block, -1, -1, false>, 2, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::Block, -1, -1, false>, 2, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base >, Eigen::Block, -1, -1, false>, 2, -1, false>, 0, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl >, Eigen::Block, -1, -1, false>, 2, -1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product >, Eigen::Block, -1, -1, false>, 2, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:126:41: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:129:29: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Matrix; Derived = Eigen::Block, -1, -1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:521:62: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0, 4>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:129:41: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 2, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 2, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 2, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 2, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 2, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, 2, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 2, false>, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 2, false>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 2, false>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, -1, 2, false>, Eigen::Matrix, 0, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, false>, -1, 2, false>, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false>, -1, 2, false>, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:163:27: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 0, 4>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:166:34: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::Block, 1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, 1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, 1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, 1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, 1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, 1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, 1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:91:22: required from 'void Eigen::MatrixBase::makeHouseholder(EssentialPart&, Scalar&, RealScalar&) const [with EssentialPart = Eigen::Matrix; Derived = Eigen::Matrix; Scalar = double; RealScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:531:20: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:126:38: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, Eigen::Block, -1, -1, false>, 1, -1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, Eigen::Block, -1, -1, false>, 1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::Block, -1, -1, false>, 1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base >, Eigen::Block, -1, -1, false>, 1, -1, false>, 0, 4>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl >, Eigen::Block, -1, -1, false>, 1, -1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product >, Eigen::Block, -1, -1, false>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:126:41: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:129:29: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Matrix; Derived = Eigen::Block, -1, -1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:536:69: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0, 4>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:129:41: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, false>, Eigen::Matrix, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, false>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, false>, Eigen::Matrix, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, -1, 1, false>, Eigen::Matrix, 0, 4>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, false>, -1, 1, false>, Eigen::Matrix, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false>, -1, 1, false>, Eigen::Matrix, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:163:27: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 0, 4>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:166:34: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:369:102: required from 'struct Eigen::internal::plain_object_eval, -1, -1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:369:45: required from 'struct Eigen::internal::generic_product_impl, -1, -1, true>, Eigen::Block, -1, 1, true>, -1, 1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; Lhs = Eigen::Block, -1, -1, true>; Rhs = Eigen::Block, -1, 1, true>, -1, 1, false>; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, -1, -1, true>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Product, -1, -1, true>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/NoAlias.h:42:31: required from 'ExpressionType& Eigen::NoAlias::operator=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, -1, true>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0>; ExpressionType = Eigen::Matrix; StorageBase = Eigen::MatrixBase]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:615:21: required from 'void Eigen::EigenSolver<_MatrixType>::doComputeEigenvectors() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:447:7: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, -1, false>, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, -1, -1, false>, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:40: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, -1, -1, false>, 1, -1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:321:36: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:401:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:449:42: required from 'Eigen::LLT& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:115:14: required from 'Eigen::LLT::LLT(Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:99:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Inverse.h:69:7: required from 'class Eigen::InverseImpl >, Eigen::SolverStorage>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Inverse.h:43:7: required from 'class Eigen::Inverse > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/InverseImpl.h:28:43: required from 'static void Eigen::internal::compute_inverse::run(const MatrixType&, ResultType&) [with MatrixType = Eigen::Matrix; ResultType = Eigen::Matrix; int Size = -1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/InverseImpl.h:310:60: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:105:12: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Block, -1, 1, true>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, -1, 1, true>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Matrix; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Functor = add_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/NoAlias.h:50:31: required from 'ExpressionType& Eigen::NoAlias::operator+=(const StorageBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; ExpressionType = Eigen::Matrix; StorageBase = Eigen::MatrixBase]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:414:26: required from 'std::pair HPolytope::line_intersect_coord(const Point&, const Point&, const unsigned int&, const unsigned int&, VT&) const [with Point = point >; typename Point::FT = double; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/gaussian_cdhr_walk.hpp:109:43: required from 'void GaussianCDHRWalk::Walk::apply(const BallPolytope&, Point&, const NT&, const unsigned int&, RandomNumberGenerator&) [with BallPolytope = HPolytope > >; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_gaussians.hpp:420:32: required from 'double volume_cooling_gaussians(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&) [with WalkTypePolicy = GaussianCDHRWalk; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:329:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::Matrix; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_max_op; Derived = Eigen::internal::redux_evaluator >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_max_op; Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:438:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::maxCoeff() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:509:85: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:475:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Matrix; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Matrix; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::CwiseBinaryOp, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:689:18: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose > >, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose > >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose > >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::Transpose > >, -1, 1, false, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::Transpose > >, -1, 1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::Transpose > >, -1, 1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1316:33: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Matrix; SrcXprType = Eigen::PartialReduxExpr, const Eigen::Transpose > >, Eigen::internal::member_sum, 1>; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::PartialReduxExpr, const Eigen::Transpose > >, member_sum, 1>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::PartialReduxExpr, const Eigen::Transpose > >, Eigen::internal::member_sum, 1>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::PartialReduxExpr, const Eigen::Transpose > >, Eigen::internal::member_sum, 1>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::PartialReduxExpr, const Eigen::Transpose > >, Eigen::internal::member_sum, 1>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:68:57: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose > >, 1, -1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose > >, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose > >, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::Transpose > >, 1, -1, true, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::Transpose > >, 1, -1, true, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::Transpose > >, 1, -1, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1318:33: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Matrix; SrcXprType = Eigen::PartialReduxExpr, const Eigen::Transpose > >, Eigen::internal::member_sum, 1>; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::PartialReduxExpr, const Eigen::Transpose > >, member_sum, 1>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::PartialReduxExpr, const Eigen::Transpose > >, Eigen::internal::member_sum, 1>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::PartialReduxExpr, const Eigen::Transpose > >, Eigen::internal::member_sum, 1>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::PartialReduxExpr, const Eigen::Transpose > >, Eigen::internal::member_sum, 1>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:68:57: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:78:56: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:78:56: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:381:43: required from 'static Eigen::Index Eigen::internal::partial_lu_impl::unblocked_lu(MatrixType&, PivIndex*, PivIndex&) [with Scalar = double; int StorageOrder = 0; PivIndex = int; Eigen::Index = long long int; MatrixType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:436:26: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:78:56: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:78:56: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:78:56: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0, 5>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:406:78: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:78:56: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:44: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block, -1, 1, false>; U = Eigen::Block, -1, 1, true>, -1, 1, false>; bool NeedToTranspose = false; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:91:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false>, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, false>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, 1, false>, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:91:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointRank2Update.h:33:74: required from 'static void Eigen::internal::selfadjoint_rank2_update_selector::run(Scalar*, Index, const UType&, const VType&, const Scalar&) [with Scalar = double; Index = long long int; UType = Eigen::Block, -1, 1, true>, -1, 1, false>; VType = Eigen::Block, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointRank2Update.h:86:10: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:91:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointRank2Update.h:34:60: required from 'static void Eigen::internal::selfadjoint_rank2_update_selector::run(Scalar*, Index, const UType&, const VType&, const Scalar&) [with Scalar = double; Index = long long int; UType = Eigen::Block, -1, 1, true>, -1, 1, false>; VType = Eigen::Block, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointRank2Update.h:86:10: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:91:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointRank2Update.h:34:23: required from 'static void Eigen::internal::selfadjoint_rank2_update_selector::run(Scalar*, Index, const UType&, const VType&, const Scalar&) [with Scalar = double; Index = long long int; UType = Eigen::Block, -1, 1, true>, -1, 1, false>; VType = Eigen::Block, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointRank2Update.h:86:10: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:91:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false>, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 1, -1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, false>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 1, -1, false>, 1, -1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::ReturnByValue > > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:399:12: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:675:28: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:776:38: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:103:53: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::ReturnByValue > > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:399:12: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:675:28: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:776:38: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:103:53: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, 1, -1, false>, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, 1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, 1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, 1, -1, false>, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, 1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/FullPivLU.h:696:90: required from 'void Eigen::internal::kernel_retval >::evalTo(Dest&) const [with Dest = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/misc/Kernel.h:56:71: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::ReturnByValue > > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:399:12: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:675:28: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:776:38: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:103:53: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix, 1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, Eigen::Matrix, 1, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, Eigen::Matrix, 1, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, Eigen::Matrix, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:436:50: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:236:8: required from 'void compute_hpoly_for_mmc(Zonotope&, HPolytope&) [with Zonotope = Zonotope > >; HPolytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:295:26: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Inverse >, 1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Inverse >, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Inverse >, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, Eigen::Inverse >, 1, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, Eigen::Inverse >, 1, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, Eigen::Inverse >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:436:50: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Inverse >, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Inverse >, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, Eigen::Inverse >, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:237:8: required from 'void compute_hpoly_for_mmc(Zonotope&, HPolytope&) [with Zonotope = Zonotope > >; HPolytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:295:26: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, true>, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:454:5: required from 'void Eigen::internal::apply_rotation_in_the_plane(Eigen::DenseBase&, Eigen::DenseBase&, const Eigen::JacobiRotation&) [with VectorX = Eigen::Block, -1, -1, true>, 1, -1, false>; VectorY = Eigen::Block, -1, -1, true>, 1, -1, false>; OtherScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:281:40: required from 'void Eigen::MatrixBase::applyOnTheLeft(Eigen::Index, Eigen::Index, const Eigen::JacobiRotation&) [with OtherScalar = double; Derived = Eigen::Block, -1, -1, true>; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:412:47: required from 'void Eigen::RealSchur<_MatrixType>::splitOffTwoRows(Index, bool, const Scalar&) [with _MatrixType = Eigen::Matrix; Index = long long int; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:327:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:454:5: required from 'void Eigen::internal::apply_rotation_in_the_plane(Eigen::DenseBase&, Eigen::DenseBase&, const Eigen::JacobiRotation&) [with VectorX = Eigen::Block, -1, -1, false>, -1, 1, true>; VectorY = Eigen::Block, -1, -1, false>, -1, 1, true>; OtherScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Jacobi/Jacobi.h:296:40: required from 'void Eigen::MatrixBase::applyOnTheRight(Eigen::Index, Eigen::Index, const Eigen::JacobiRotation&) [with OtherScalar = double; Derived = Eigen::Block, -1, -1, false>; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:413:41: required from 'void Eigen::RealSchur<_MatrixType>::splitOffTwoRows(Index, bool, const Scalar&) [with _MatrixType = Eigen::Matrix; Index = long long int; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:327:9: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::computeFromHessenberg(const HessMatrixType&, const OrthMatrixType&, bool) [with HessMatrixType = Eigen::internal::HessenbergDecompositionMatrixHReturnType >; OrthMatrixType = Eigen::HouseholderSequence, Eigen::Matrix, 1>; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, 2, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, 2, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, 2, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, 2, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, 2, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:40: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, 2, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:76:71: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, 1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, 1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:40: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, 1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:76:71: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:496:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: In instantiation of 'class Eigen::internal::gebp_traits':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularSolverMatrix.h:215:27: required from 'static void Eigen::internal::triangular_solve_matrix::run(Index, Index, const Scalar*, Index, Scalar*, Index, Index, Eigen::internal::level3_blocking&) [with Scalar = double; Index = long long int; int Mode = 2; bool Conjugate = false; int TriStorageOrder = 1; int OtherInnerStride = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/SolveTriangular.h:102:12: required from 'static void Eigen::internal::triangular_solver_selector::run(const Lhs&, Rhs&) [with Lhs = const Eigen::Transpose, -1, -1, false> >; Rhs = Eigen::Block, -1, -1, false>; int Side = 2; int Mode = 2]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/SolveTriangular.h:182:21: required from 'void Eigen::TriangularViewImpl<_MatrixType, _Mode, Eigen::Dense>::solveInPlace(const Eigen::MatrixBase&) const [with int Side = 2; OtherDerived = Eigen::Block, -1, -1, false>; _MatrixType = const Eigen::Transpose, -1, -1, false> >; unsigned int _Mode = 2]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:357:96: required from 'static Eigen::Index Eigen::internal::llt_inplace::blocked(MatrixType&) [with MatrixType = Eigen::Matrix; Scalar = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:401:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:449:42: required from 'Eigen::LLT& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:115:14: required from 'Eigen::LLT::LLT(Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:99:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:391:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 391 | typedef typename conditional::type LhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:392:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 392 | typedef typename conditional::type RhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:393:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 393 | typedef typename conditional::type ResPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:522:41: required from 'struct Eigen::internal::unary_evaluator, const Eigen::Block, 1, -1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Block, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, 1, -1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:458:42: required from 'std::vector HPolytope::get_dists(const NT&) const [with Point = point >; typename Point::FT = double; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_gaussians.hpp:89:41: required from 'void get_first_gaussian(const Polytope&, const NT&, const NT&, const NT&, std::vector&) [with Polytope = HPolytope > >; NT = double]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_gaussians.hpp:224:23: required from 'void compute_annealing_schedule(const Polytope&, const NT&, const NT&, const NT&, const unsigned int&, const unsigned int&, const NT&, const NT&, std::vector&, RandomNumberGenerator&) [with WalkType = GaussianCDHRWalk::Walk > >, BoostRandomNumberGenerator, double> >; RandomPointGenerator = GaussianRandomPointGenerator > >, BoostRandomNumberGenerator, double> > >; Polytope = HPolytope > >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_gaussians.hpp:361:6: required from 'double volume_cooling_gaussians(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&) [with WalkTypePolicy = GaussianCDHRWalk; Polytope = HPolytope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:329:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, true>, -1, 1, false>, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, 1, true>, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:522:41: required from 'struct Eigen::internal::unary_evaluator, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:538:52: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:475:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, -1, false>, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:166:21: required from 'void Eigen::MatrixBase::applyHouseholderOnTheRight(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Block, -1, 1, false>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:256:43: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::Block, -1, -1, false>, 1, -1, false>; Functor = add_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::Block, -1, -1, false>, 1, -1, false>; Functor = Eigen::internal::add_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Src = Eigen::Block, -1, -1, false>, 1, -1, false>; Func = add_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Src = Eigen::Block, -1, -1, false>, 1, -1, false>; Func = add_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:177:18: required from 'Derived& Eigen::MatrixBase::operator+=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::Block, -1, -1, false>, 1, -1, false>; Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:127:9: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Block, -1, 1, false>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:259:42: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseUnaryOp, const Eigen::Product >, Eigen::Matrix, 0> >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Product >, Eigen::Matrix, 0> > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Product >, Eigen::Matrix, 0> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseUnaryOp, const Eigen::Product >, Eigen::Matrix, 0> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:46: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Product >, Eigen::Matrix, 0>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::norm() const [with Derived = Eigen::Product >, Eigen::Matrix, 0>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:96:52: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:671:14: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:776:38: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:103:53: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Matrix >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Matrix, const Eigen::Matrix > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Matrix >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Matrix >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:51: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Matrix; U = Eigen::Matrix; bool NeedToTranspose = false; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: required from 'typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType Eigen::MatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Matrix; Derived = Eigen::Matrix; typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType = double; typename Eigen::internal::traits::Scalar = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:401:35: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:675:28: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:776:38: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:103:53: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseUnaryOp, const Eigen::Matrix >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Matrix > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Matrix >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseUnaryOp, const Eigen::Matrix >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:46: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Matrix; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::norm() const [with Derived = Eigen::Matrix; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:403:21: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:675:28: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:776:38: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:103:53: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:327:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:501:10: required from 'Derived& Eigen::DenseBase::setZero() [with Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:84:22: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:327:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:501:10: required from 'Derived& Eigen::DenseBase::setZero() [with Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:84:22: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Block, -1, 1, true>, -1, 1, false> > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:221:28: required from 'static typename Eigen::NumTraits::Scalar>::Real Eigen::internal::lpNorm_selector::run(const Eigen::MatrixBase&) [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:269:52: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::lpNorm() const [with int p = 1; Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:441:74: required from 'Eigen::LLT& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:115:14: required from 'Eigen::LLT::LLT(Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:99:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: In instantiation of 'void Eigen::internal::gebp_kernel::operator()(const DataMapper&, const LhsScalar*, const RhsScalar*, Index, Index, Index, ResScalar, Index, Index, Index, Index) [with LhsScalar = double; RhsScalar = double; Index = long long int; DataMapper = Eigen::internal::blas_data_mapper; int mr = 4; int nr = 4; bool ConjugateLhs = false; bool ConjugateRhs = false; ResScalar = double]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularSolverMatrix.h:287:26: required from 'static void Eigen::internal::triangular_solve_matrix::run(Index, Index, const Scalar*, Index, Scalar*, Index, Index, Eigen::internal::level3_blocking&) [with Scalar = double; Index = long long int; int Mode = 2; bool Conjugate = false; int TriStorageOrder = 1; int OtherInnerStride = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/SolveTriangular.h:102:12: required from 'static void Eigen::internal::triangular_solver_selector::run(const Lhs&, Rhs&) [with Lhs = const Eigen::Transpose, -1, -1, false> >; Rhs = Eigen::Block, -1, -1, false>; int Side = 2; int Mode = 2]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/SolveTriangular.h:182:21: required from 'void Eigen::TriangularViewImpl<_MatrixType, _Mode, Eigen::Dense>::solveInPlace(const Eigen::MatrixBase&) const [with int Side = 2; OtherDerived = Eigen::Block, -1, -1, false>; _MatrixType = const Eigen::Transpose, -1, -1, false> >; unsigned int _Mode = 2]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:357:96: required from 'static Eigen::Index Eigen::internal::llt_inplace::blocked(MatrixType&) [with MatrixType = Eigen::Matrix; Scalar = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:401:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:449:42: required from 'Eigen::LLT& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:115:14: required from 'Eigen::LLT::LLT(Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:99:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1537:103: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 1537 | const int SResPacketHalfSize = unpacket_traits::half>::size;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1592:135: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 1592 | typedef typename conditional=8,typename unpacket_traits::half,SResPacket>::type SResPacketHalf;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1593:135: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 1593 | typedef typename conditional=8,typename unpacket_traits::half,SLhsPacket>::type SLhsPacketHalf;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1594:135: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 1594 | typedef typename conditional=8,typename unpacket_traits::half,SRhsPacket>::type SRhsPacketHalf;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1595:135: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 1595 | typedef typename conditional=8,typename unpacket_traits::half,SAccPacket>::type SAccPacketHalf;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h:155:52: required from 'void Eigen::internal::tribb_kernel::operator()(ResScalar*, Index, Index, const LhsScalar*, const RhsScalar*, Index, Index, const ResScalar&) [with LhsScalar = double; RhsScalar = double; Index = long long int; int mr = 4; int nr = 4; bool ConjLhs = false; bool ConjRhs = false; int ResInnerStride = 1; int UpLo = 1; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h:116:13: required from 'static void Eigen::internal::general_matrix_matrix_triangular_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, Index, const ResScalar&, Eigen::internal::level3_blocking&) [with Index = long long int; LhsScalar = double; int LhsStorageOrder = 0; bool ConjugateLhs = false; RhsScalar = double; int RhsStorageOrder = 1; bool ConjugateRhs = false; int ResInnerStride = 1; int UpLo = 1; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointProduct.h:113:12: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:401:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:449:42: required from 'Eigen::LLT& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:115:14: required from 'Eigen::LLT::LLT(Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:99:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:401:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:449:42: required from 'Eigen::LLT& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:115:14: required from 'Eigen::LLT::LLT(Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:99:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseUnaryOp, const Eigen::Product, Eigen::Matrix, 0> >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Product, Eigen::Matrix, 0> > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Product, Eigen::Matrix, 0> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseUnaryOp, const Eigen::Product, Eigen::Matrix, 0> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:46: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Product, Eigen::Matrix, 0>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::norm() const [with Derived = Eigen::Product, Eigen::Matrix, 0>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:168:55: required from 'static NT compute_diameter, HPolytope > >::compute(const ZonoIntersectHPoly, HPolytope >&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = ZonoIntersectHPoly > >, HPolytope > > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:671:14: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = ZonoIntersectHPoly > >, HPolytope > > >; PolyBall2 = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:363:69: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true> >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Block, -1, 1, true> > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:46: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, -1, 1, true>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::norm() const [with Derived = Eigen::Block, -1, 1, true>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:505:52: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:475:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Block, -1, 1, true>, -1, 1, false> > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:46: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::norm() const [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:565:77: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:475:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:327:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:501:10: required from 'Derived& Eigen::DenseBase::setZero() [with Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:16: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:126:19: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Block, -1, 1, false>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:259:42: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: In instantiation of 'void Eigen::internal::gemm_pack_lhs::operator()(Scalar*, const DataMapper&, Index, Index, Index, Index) [with Scalar = double; Index = long long int; DataMapper = Eigen::internal::const_blas_data_mapper; int Pack1 = 4; int Pack2 = 2; bool Conjugate = false; bool PanelMode = false]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixMatrix.h:182:17: required from 'static void Eigen::internal::general_matrix_matrix_product::run(Index, Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, Index, ResScalar, Eigen::internal::level3_blocking&, Eigen::internal::GemmParallelInfo*) [with Index = long long int; LhsScalar = double; int LhsStorageOrder = 1; bool ConjugateLhs = false; RhsScalar = double; int RhsStorageOrder = 1; bool ConjugateRhs = false; int ResInnerStride = 1; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixMatrix.h:228:14: required from 'void Eigen::internal::gemm_functor::operator()(Index, Index, Index, Index, Eigen::internal::GemmParallelInfo*) const [with Scalar = double; Index = long long int; Gemm = Eigen::internal::general_matrix_matrix_product; Lhs = Eigen::Transpose >; Rhs = Eigen::Transpose >; Dest = Eigen::Matrix; BlockingType = Eigen::internal::gemm_blocking_space<0, double, double, -1, -1, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/Parallelizer.h:98:7: required from 'void Eigen::internal::parallelize_gemm(const Functor&, Index, Index, Index, bool) [with bool Condition = true; Functor = gemm_functor, Eigen::Transpose >, Eigen::Transpose >, Eigen::Matrix, gemm_blocking_space<0, double, double, -1, -1, -1, 1, false> >; Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixMatrix.h:487:9: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::Transpose >; Rhs = Eigen::Transpose >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixMatrix.h:437:20: required from 'static void Eigen::internal::generic_product_impl::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::Transpose >; Rhs = Eigen::Transpose >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; Lhs = Eigen::Transpose >; Rhs = Eigen::Transpose >; int Options = 0; Scalar = double; SrcXprType = Eigen::Product >, Eigen::Transpose >, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Product >, Eigen::Transpose >, 0>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:75:12: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1847:33: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 1847 | PacketBlock kernel;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1847:33: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::Matrix >, -1, 1, true, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::Matrix >, -1, 1, true, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::Matrix >, -1, 1, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1307:33: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:78:56: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix >, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix >, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::Matrix >, 1, -1, false, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::Matrix >, 1, -1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::Matrix >, 1, -1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1309:33: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:78:56: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:961:41: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:522:41: required from 'struct Eigen::internal::unary_evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:71:51: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:533:31: required from 'void Eigen::PartialPivLU::compute() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:78:56: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:961:41: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:522:41: required from 'struct Eigen::internal::unary_evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:71:51: required from 'class Eigen::internal::visitor_evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:110:17: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:78:56: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:522:41: required from 'struct Eigen::internal::unary_evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:71:51: required from 'class Eigen::internal::visitor_evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:110:17: required from 'void Eigen::DenseBase::visit(Visitor&) const [with Visitor = Eigen::internal::max_coeff_visitor, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Visitor.h:266:14: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:78:56: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, Eigen::Matrix, 1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, Eigen::Matrix, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::Matrix, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base >, Eigen::Matrix, 1, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl >, Eigen::Matrix, 1, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product >, Eigen::Matrix, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:436:50: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:78:8: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:671:14: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:776:38: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:103:53: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, true>, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:369:102: required from 'struct Eigen::internal::plain_object_eval, -1, -1, true>, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:369:45: required from 'struct Eigen::internal::generic_product_impl, -1, -1, true>, -1, -1, false>, Eigen::Block, -1, 1, true>, -1, 1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, true>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, true>, -1, 1, false>; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, -1, -1, true>, -1, -1, false>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Src = Eigen::Product, -1, -1, true>, -1, -1, false>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/NoAlias.h:42:31: required from 'ExpressionType& Eigen::NoAlias::operator=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, -1, true>, -1, -1, false>, Eigen::Block, -1, 1, true>, -1, 1, false>, 0>; ExpressionType = Eigen::Map, 0, Eigen::Stride<0, 0> >; StorageBase = Eigen::MatrixBase]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:163:19: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:271:17: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 2, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 2, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:522:41: required from 'struct Eigen::internal::unary_evaluator, const Eigen::Block, 2, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, 2, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Block, 2, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, 2, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:522:41: required from 'struct Eigen::internal::unary_evaluator, const Eigen::Block, 1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Block, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, 1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:46: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:76:71: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:538:52: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:475:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:499:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'struct Eigen::internal::general_matrix_vector_product, 0, false, double, Eigen::internal::const_blas_data_mapper, false, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:244:134: required from 'static void Eigen::internal::gemv_dense_selector<2, 0, true>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; Dest = Eigen::Map, 0, Eigen::Stride<0, 0> >; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:383:34: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: required from 'static void Eigen::internal::generic_product_impl_base::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:163:19: required from 'void Eigen::MatrixBase::applyHouseholderOnTheRight(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Block, -1, 1, false>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:256:43: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:75:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 75 | typedef typename conditional::type LhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:76:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 76 | typedef typename conditional::type RhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:77:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 77 | typedef typename conditional::type ResPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 2, Eigen::Stride<0, 0> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 2, Eigen::Stride<0, 0> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 2, Eigen::Stride<0, 0> >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 2, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 2, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 2, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:163:19: required from 'void Eigen::MatrixBase::applyHouseholderOnTheRight(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Block, -1, 1, false>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:256:43: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 2, Eigen::Stride<0, 0> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 2, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 2, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 2, Eigen::Stride<0, 0> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 2, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:287:40: required from 'static void Eigen::internal::gemv_dense_selector<2, 0, true>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; Dest = Eigen::Map, 0, Eigen::Stride<0, 0> >; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:383:34: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:163:19: required from 'void Eigen::MatrixBase::applyHouseholderOnTheRight(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Block, -1, 1, false>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:256:43: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, 0, Eigen::Stride<0, 0> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:126:19: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Block, -1, 1, false>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:259:42: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:197:26: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:126:19: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Block, -1, 1, false>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:259:42: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false> > >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, 1, false> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:197:43: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:126:19: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Block, -1, 1, false>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:259:42: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:961:41: required from 'struct Eigen::internal::evaluator, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false>; SrcXprType = Eigen::Matrix; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false>; SrcXprType = Eigen::Matrix; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Src = Eigen::Matrix; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:797:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Src = Eigen::Product, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, true>, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false>; SrcXprType = Eigen::Matrix; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false>; SrcXprType = Eigen::Matrix; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Src = Eigen::Matrix; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:797:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Src = Eigen::Product, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Src = Eigen::Product, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Assign.h:66:28: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:59: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, -1, -1, false>; int Mode = 5; bool LhsIsTriangular = true; Lhs = const Eigen::Block, -1, -1, false>; Rhs = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:96:17: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:74: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:96:17: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, -1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:96:17: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, -1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false>, -1, -1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:96:17: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:462:59: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, -1, -1, false>; int Mode = 5; bool LhsIsTriangular = true; Lhs = const Eigen::Block, -1, -1, false>; Rhs = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:96:17: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::Transpose > >, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Transpose > >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::Block, const Eigen::Transpose > >, -1, 1, false>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::Block, const Eigen::Transpose > >, -1, 1, false>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/VectorwiseOp.h:104:1: required from 'ResultType Eigen::internal::member_sum::operator()(const XprType&) const [with XprType = Eigen::Block, const Eigen::Transpose > >, -1, 1, false>; ResultType = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1316:23: required from 'const Eigen::internal::evaluator >::Scalar Eigen::internal::evaluator >::coeff(Eigen::Index) const [with ArgType = const Eigen::CwiseUnaryOp, const Eigen::Transpose > >; MemberOp = Eigen::internal::member_sum; int Direction = 1; Scalar = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:637:61: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Matrix; SrcXprType = Eigen::PartialReduxExpr, const Eigen::Transpose > >, Eigen::internal::member_sum, 1>; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::PartialReduxExpr, const Eigen::Transpose > >, member_sum, 1>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::PartialReduxExpr, const Eigen::Transpose > >, Eigen::internal::member_sum, 1>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::PartialReduxExpr, const Eigen::Transpose > >, Eigen::internal::member_sum, 1>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::PartialReduxExpr, const Eigen::Transpose > >, Eigen::internal::member_sum, 1>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:68:57: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::Transpose > >, 1, -1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Transpose > >, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::Block, const Eigen::Transpose > >, 1, -1, true>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::Block, const Eigen::Transpose > >, 1, -1, true>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/VectorwiseOp.h:104:1: required from 'ResultType Eigen::internal::member_sum::operator()(const XprType&) const [with XprType = Eigen::Block, const Eigen::Transpose > >, 1, -1, true>; ResultType = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1318:23: required from 'const Eigen::internal::evaluator >::Scalar Eigen::internal::evaluator >::coeff(Eigen::Index) const [with ArgType = const Eigen::CwiseUnaryOp, const Eigen::Transpose > >; MemberOp = Eigen::internal::member_sum; int Direction = 1; Scalar = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:637:61: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Matrix; SrcXprType = Eigen::PartialReduxExpr, const Eigen::Transpose > >, Eigen::internal::member_sum, 1>; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::PartialReduxExpr, const Eigen::Transpose > >, member_sum, 1>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::PartialReduxExpr, const Eigen::Transpose > >, Eigen::internal::member_sum, 1>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::PartialReduxExpr, const Eigen::Transpose > >, Eigen::internal::member_sum, 1>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::PartialReduxExpr, const Eigen::Transpose > >, Eigen::internal::member_sum, 1>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:68:57: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, Eigen::Block, -1, -1, false>, 2, -1, false>, 1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, Eigen::Block, -1, -1, false>, 2, -1, false>, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::Block, -1, -1, false>, 2, -1, false>, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base >, Eigen::Block, -1, -1, false>, 2, -1, false>, 1, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl >, Eigen::Block, -1, -1, false>, 2, -1, false>, 1, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product >, Eigen::Block, -1, -1, false>, 2, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:397:50: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 1, 4>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 1, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:411:50: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 2, false>, Eigen::Matrix, 1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 2, false>, Eigen::Matrix, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 2, false>, Eigen::Matrix, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, -1, 2, false>, Eigen::Matrix, 1, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, false>, -1, 2, false>, Eigen::Matrix, 1, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false>, -1, 2, false>, Eigen::Matrix, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:397:50: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 1, 4>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 1, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:411:50: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, Eigen::Block, -1, -1, false>, 1, -1, false>, 1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, Eigen::Block, -1, -1, false>, 1, -1, false>, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::Block, -1, -1, false>, 1, -1, false>, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base >, Eigen::Block, -1, -1, false>, 1, -1, false>, 1, 4>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl >, Eigen::Block, -1, -1, false>, 1, -1, false>, 1, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product >, Eigen::Block, -1, -1, false>, 1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:397:50: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 1, 4>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 1, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:411:50: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, false>, Eigen::Matrix, 1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, false>, Eigen::Matrix, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, false>, Eigen::Matrix, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, -1, 1, false>, Eigen::Matrix, 1, 4>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, false>, -1, 1, false>, Eigen::Matrix, 1, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false>, -1, 1, false>, Eigen::Matrix, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:397:50: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 1, 4>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 1, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:411:50: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, 1, false>; SrcXprType = Eigen::CwiseNullaryOp, Eigen::Matrix >; Functor = div_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, 1, false>; SrcXprType = Eigen::CwiseNullaryOp, Eigen::Matrix >; Functor = Eigen::internal::div_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, 1, false>; Src = Eigen::CwiseNullaryOp, Eigen::Matrix >; Func = div_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, 1, false>; Src = Eigen::CwiseNullaryOp, Eigen::Matrix >; Func = div_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/SelfCwiseBinaryOp.h:41:28: required from 'Derived& Eigen::DenseBase::operator/=(const Scalar&) [with Derived = Eigen::Block, -1, 1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:326:21: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:401:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:449:42: required from 'Eigen::LLT& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:115:14: required from 'Eigen::LLT::LLT(Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:99:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, 1, false>; SrcXprType = Eigen::CwiseNullaryOp, Eigen::Matrix >; Functor = div_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, 1, false>; SrcXprType = Eigen::CwiseNullaryOp, Eigen::Matrix >; Functor = Eigen::internal::div_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>, -1, 1, false>; Src = Eigen::CwiseNullaryOp, Eigen::Matrix >; Func = div_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>, -1, 1, false>; Src = Eigen::CwiseNullaryOp, Eigen::Matrix >; Func = div_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/SelfCwiseBinaryOp.h:41:28: required from 'Derived& Eigen::DenseBase::operator/=(const Scalar&) [with Derived = Eigen::Block, -1, -1, false>, -1, 1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:326:21: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:401:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:449:42: required from 'Eigen::LLT& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:115:14: required from 'Eigen::LLT::LLT(Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:99:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:327:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:501:10: required from 'Derived& Eigen::DenseBase::setZero() [with Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h:171:23: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:401:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:449:42: required from 'Eigen::LLT& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:115:14: required from 'Eigen::LLT::LLT(Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix; int _UpLo = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:99:24: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, true>, -1, 1, false>, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Assign.h:66:28: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:538:52: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:475:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false> > >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, 1, true>, -1, 1, false> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:197:43: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:548:35: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/QR/ColPivHouseholderQR.h:475:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:230:19: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'static void Eigen::internal::general_matrix_vector_product::run(Index, Index, const LhsMapper&, const RhsMapper&, ResScalar*, Index, RhsScalar) [with Index = long long int; LhsScalar = double; LhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateLhs = false; RhsScalar = double; RhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateRhs = false; int Version = 0; ResScalar = double]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:244:134: required from 'static void Eigen::internal::gemv_dense_selector<2, 0, true>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; Dest = Eigen::Map, 0, Eigen::Stride<0, 0> >; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:383:34: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: required from 'static void Eigen::internal::generic_product_impl_base::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:163:19: required from 'void Eigen::MatrixBase::applyHouseholderOnTheRight(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Block, -1, 1, false>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:256:43: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:112:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 112 | conj_helper pcj;\\n\"},{\"type\":1,\"output\":\" | ^~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:112:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'struct Eigen::internal::general_matrix_vector_product, 1, false, double, Eigen::internal::const_blas_data_mapper, false, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:339:132: required from 'static void Eigen::internal::gemv_dense_selector<2, 1, true>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, -1, 1, false> > >; Dest = Eigen::Transpose, 0, Eigen::Stride<0, 0> > >; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:197:12: required from 'static void Eigen::internal::gemv_dense_selector<1, StorageOrder, BlasCompatible>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, 1, false> >; Rhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Dest = Eigen::Map, 0, Eigen::Stride<0, 0> >; int StorageOrder = 0; bool BlasCompatible = true; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:383:34: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Transpose, -1, 1, false> >; Rhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Transpose, -1, 1, false> >; Rhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Derived = Eigen::internal::generic_product_impl, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: required from 'static void Eigen::internal::generic_product_impl_base::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Transpose, -1, 1, false> >; Rhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Derived = Eigen::internal::generic_product_impl, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:126:19: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Block, -1, 1, false>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:259:42: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:351:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 351 | typedef typename conditional::type LhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:352:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 352 | typedef typename conditional::type RhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:353:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 353 | typedef typename conditional::type ResPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> > >, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:126:19: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Block, -1, 1, false>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:259:42: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, true>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, true>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, 1, -1, true>, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false>, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:32: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:48: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; int Mode = 5; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = const Eigen::Block, -1, -1, false>, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:751:113: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:150:68: required from 'static void Eigen::internal::product_triangular_matrix_matrix::run(Index, Index, Index, const Scalar*, Index, const Scalar*, Index, Scalar*, Index, Index, const Scalar&, Eigen::internal::level3_blocking&) [with Scalar = double; Index = long long int; int Mode = 5; int LhsStorageOrder = 0; bool ConjugateLhs = false; int RhsStorageOrder = 0; bool ConjugateRhs = false; int ResInnerStride = 1; int Version = 0]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:443:12: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, -1, -1, false>; int Mode = 5; bool LhsIsTriangular = true; Lhs = const Eigen::Block, -1, -1, false>; Rhs = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:96:17: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:96:17: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Diagonal.h:63:53: required from 'class Eigen::Diagonal, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:153:32: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:96:17: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:174:81: required from 'class Eigen::DenseBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Diagonal.h:63:53: required from 'class Eigen::Diagonal, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:153:32: required from 'static void Eigen::internal::product_triangular_matrix_matrix::run(Index, Index, Index, const Scalar*, Index, const Scalar*, Index, Scalar*, Index, Index, const Scalar&, Eigen::internal::level3_blocking&) [with Scalar = double; Index = long long int; int Mode = 5; int LhsStorageOrder = 0; bool ConjugateLhs = false; int RhsStorageOrder = 0; bool ConjugateRhs = false; int ResInnerStride = 1; int Version = 0]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:443:12: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, -1, -1, false>; int Mode = 5; bool LhsIsTriangular = true; Lhs = const Eigen::Block, -1, -1, false>; Rhs = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:96:17: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 187 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value>\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:187:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:205:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 205 | typedef typename find_best_packet_helper::type>::type type;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:961:41: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; SrcXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Functor = swap_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; SrcXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Functor = Eigen::internal::swap_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Src = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Func = swap_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Src = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Func = swap_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:418:22: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:78:56: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; SrcXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Functor = swap_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; SrcXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Functor = Eigen::internal::swap_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Src = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Func = swap_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Src = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Func = swap_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:418:22: required from 'void Eigen::DenseBase::swap(const Eigen::DenseBase&) [with OtherDerived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>; Derived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:480:24: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:78:56: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: In instantiation of 'void Eigen::internal::gemm_pack_rhs::operator()(Scalar*, const DataMapper&, Index, Index, Index, Index) [with Scalar = double; Index = long long int; DataMapper = Eigen::internal::blas_data_mapper; int nr = 4; bool Conjugate = false; bool PanelMode = true]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularSolverMatrix.h:153:19: required from 'static void Eigen::internal::triangular_solve_matrix::run(Index, Index, const Scalar*, Index, Scalar*, Index, Index, Eigen::internal::level3_blocking&) [with Scalar = double; Index = long long int; int Mode = 5; bool Conjugate = false; int TriStorageOrder = 0; int OtherInnerStride = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/SolveTriangular.h:102:12: required from 'static void Eigen::internal::triangular_solver_selector::run(const Lhs&, Rhs&) [with Lhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; int Side = 1; int Mode = 5]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/SolveTriangular.h:182:21: required from 'void Eigen::TriangularViewImpl<_MatrixType, _Mode, Eigen::Dense>::solveInPlace(const Eigen::MatrixBase&) const [with int Side = 1; OtherDerived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; _MatrixType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; unsigned int _Mode = 5]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/TriangularMatrix.h:509:37: required from 'void Eigen::TriangularViewImpl<_MatrixType, _Mode, Eigen::Dense>::solveInPlace(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; _MatrixType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; unsigned int _Mode = 5]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:490:62: required from 'static Eigen::Index Eigen::internal::partial_lu_impl::blocked_lu(Eigen::Index, Eigen::Index, Scalar*, Eigen::Index, PivIndex*, PivIndex&, Eigen::Index) [with Scalar = double; int StorageOrder = 0; PivIndex = int; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:509:17: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:78:56: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1981:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 1981 | PacketBlock kernel;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:436:50: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:78:56: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0, 7>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, -1, -1, false>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:165:45: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:91:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:51: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block, -1, 1, false>; U = Eigen::Block, -1, 1, true>, -1, 1, false>; bool NeedToTranspose = false; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: required from 'typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType Eigen::MatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Block, -1, 1, true>, -1, 1, false>; Derived = Eigen::Block, -1, 1, false>; typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType = double; typename Eigen::internal::traits::Scalar = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:370:86: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:91:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase > >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase > >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:92:8: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:671:14: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:776:38: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:103:53: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase > >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:197:26: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:92:8: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:671:14: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:776:38: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:103:53: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase > >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:197:43: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:92:8: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:671:14: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:776:38: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:103:53: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: In instantiation of 'void Eigen::internal::gemm_pack_rhs::operator()(Scalar*, const DataMapper&, Index, Index, Index, Index) [with Scalar = double; Index = long long int; DataMapper = Eigen::internal::const_blas_data_mapper; int nr = 4; bool Conjugate = false; bool PanelMode = false]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixMatrix.h:193:21: required from 'static void Eigen::internal::general_matrix_matrix_product::run(Index, Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, Index, ResScalar, Eigen::internal::level3_blocking&, Eigen::internal::GemmParallelInfo*) [with Index = long long int; LhsScalar = double; int LhsStorageOrder = 0; bool ConjugateLhs = false; RhsScalar = double; int RhsStorageOrder = 0; bool ConjugateRhs = false; int ResInnerStride = 1; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixMatrix.h:228:14: required from 'void Eigen::internal::gemm_functor::operator()(Index, Index, Index, Index, Eigen::internal::GemmParallelInfo*) const [with Scalar = double; Index = long long int; Gemm = Eigen::internal::general_matrix_matrix_product; Lhs = Eigen::Matrix; Rhs = Eigen::Matrix; Dest = Eigen::Matrix; BlockingType = Eigen::internal::gemm_blocking_space<0, double, double, -1, -1, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/Parallelizer.h:98:7: required from 'void Eigen::internal::parallelize_gemm(const Functor&, Index, Index, Index, bool) [with bool Condition = true; Functor = gemm_functor, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, gemm_blocking_space<0, double, double, -1, -1, -1, 1, false> >; Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixMatrix.h:487:9: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::Matrix; Rhs = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixMatrix.h:437:20: required from 'static void Eigen::internal::generic_product_impl::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::Matrix; Rhs = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:236:8: required from 'void compute_hpoly_for_mmc(Zonotope&, HPolytope&) [with Zonotope = Zonotope > >; HPolytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:295:26: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1981:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 1981 | PacketBlock kernel;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, true>, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::Block, -1, -1, true>, -1, 1, true>; Functor = add_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::Block, -1, -1, true>, -1, 1, true>; Functor = Eigen::internal::add_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Src = Eigen::Block, -1, -1, true>, -1, 1, true>; Func = add_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Src = Eigen::Block, -1, -1, true>, -1, 1, true>; Func = add_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:177:18: required from 'Derived& Eigen::MatrixBase::operator+=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::Block, -1, -1, true>, -1, 1, true>; Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:164:9: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:271:17: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, true>, -1, -1, false>, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, true>, -1, -1, false>, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, true>, -1, -1, false>, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, true>, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, true>, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, true>, -1, -1, false>, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:271:17: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 2, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Matrix; SrcXprType = Eigen::Block, 2, 1, false>; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Matrix; SrcXprType = Eigen::Block, 2, 1, false>; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Block, 2, 1, false>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Block, 2, 1, false>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Block, 2, 1, false>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase >, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense >, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; Lhs = Eigen::Matrix; Rhs = Eigen::Transpose >; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, Eigen::Transpose >, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block >, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block >, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:578:52: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index, Eigen::Index) const [with Lhs = Eigen::Matrix; Rhs = Eigen::Transpose >; int ProductTag = 8; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Transpose >; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Matrix; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:631:63: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; Lhs = Eigen::Matrix; Rhs = Eigen::Transpose >; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, Eigen::Transpose >, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:371:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/Memory.h: In instantiation of 'Index Eigen::internal::first_default_aligned(const Scalar*, Index) [with Scalar = double; Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:128:55: required from 'static void Eigen::internal::general_matrix_vector_product::run(Index, Index, const LhsMapper&, const RhsMapper&, ResScalar*, Index, RhsScalar) [with Index = long long int; LhsScalar = double; LhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateLhs = false; RhsScalar = double; RhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:244:134: required from 'static void Eigen::internal::gemv_dense_selector<2, 0, true>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; Dest = Eigen::Map, 0, Eigen::Stride<0, 0> >; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:383:34: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: required from 'static void Eigen::internal::generic_product_impl_base::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:163:19: required from 'void Eigen::MatrixBase::applyHouseholderOnTheRight(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Block, -1, 1, false>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:256:43: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/Memory.h:470:60: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 470 | return first_aligned::alignment>(array, size);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'static void Eigen::internal::general_matrix_vector_product::run(Index, Index, const LhsMapper&, const RhsMapper&, ResScalar*, Index, ResScalar) [with Index = long long int; LhsScalar = double; LhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateLhs = false; RhsScalar = double; RhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateRhs = false; int Version = 0; ResScalar = double]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:339:132: required from 'static void Eigen::internal::gemv_dense_selector<2, 1, true>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, -1, 1, false> > >; Dest = Eigen::Transpose, 0, Eigen::Stride<0, 0> > >; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:197:12: required from 'static void Eigen::internal::gemv_dense_selector<1, StorageOrder, BlasCompatible>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, 1, false> >; Rhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Dest = Eigen::Map, 0, Eigen::Stride<0, 0> >; int StorageOrder = 0; bool BlasCompatible = true; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:383:34: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Transpose, -1, 1, false> >; Rhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Transpose, -1, 1, false> >; Rhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Derived = Eigen::internal::generic_product_impl, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: required from 'static void Eigen::internal::generic_product_impl_base::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Transpose, -1, 1, false> >; Rhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Derived = Eigen::internal::generic_product_impl, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:126:19: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Block, -1, 1, false>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:259:42: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:385:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 385 | conj_helper pcj;\\n\"},{\"type\":1,\"output\":\" | ^~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:385:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/BlasUtil.h:464:13: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, -1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, -1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, true>, 1, -1, false> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, true>, 1, -1, false> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, true>, 1, -1, false> >, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/VectorBlock.h:56:47: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:341:54: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >; Dest = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; int Mode = 6; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:59: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Matrix; int Mode = 6; bool LhsIsTriangular = true; Lhs = const Eigen::Transpose, -1, -1, false> >; Rhs = Eigen::Block, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:92:78: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:74: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:92:78: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false> >, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false> >, -1, -1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false> >, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false> >, -1, -1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:92:78: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, const Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:92:78: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:462:59: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Matrix; int Mode = 6; bool LhsIsTriangular = true; Lhs = const Eigen::Transpose, -1, -1, false> >; Rhs = Eigen::Block, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:92:78: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::Block, const Eigen::Transpose > >, 1, -1, true>; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Transpose > >, 1, -1, true> >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::Block, const Eigen::Transpose > >, 1, -1, true>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::Block, const Eigen::Transpose > >, 1, -1, true>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/VectorwiseOp.h:104:1: required from 'ResultType Eigen::internal::member_sum::operator()(const XprType&) const [with XprType = Eigen::Block, const Eigen::Transpose > >, 1, -1, true>; ResultType = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1318:23: required from 'const Eigen::internal::evaluator >::Scalar Eigen::internal::evaluator >::coeff(Eigen::Index) const [with ArgType = const Eigen::CwiseUnaryOp, const Eigen::Transpose > >; MemberOp = Eigen::internal::member_sum; int Direction = 1; Scalar = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:637:61: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Matrix; SrcXprType = Eigen::PartialReduxExpr, const Eigen::Transpose > >, Eigen::internal::member_sum, 1>; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::PartialReduxExpr, const Eigen::Transpose > >, member_sum, 1>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::PartialReduxExpr, const Eigen::Transpose > >, Eigen::internal::member_sum, 1>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::PartialReduxExpr, const Eigen::Transpose > >, Eigen::internal::member_sum, 1>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::PartialReduxExpr, const Eigen::Transpose > >, Eigen::internal::member_sum, 1>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:68:57: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 1, -1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, 1, -1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase >, 1, -1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense >, 1, -1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; Lhs = Eigen::Transpose >; Rhs = Eigen::Transpose >; int Options = 0; Scalar = double; SrcXprType = Eigen::Product >, Eigen::Transpose >, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Product >, Eigen::Transpose >, 0>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:75:12: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 1, -1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, 1, -1, true> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, 1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, 1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl >, 1, -1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:578:37: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; Lhs = Eigen::Transpose >; Rhs = Eigen::Transpose >; int Options = 0; Scalar = double; SrcXprType = Eigen::Product >, Eigen::Transpose >, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Product >, Eigen::Transpose >, 0>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:75:12: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase >, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense >, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; Lhs = Eigen::Transpose >; Rhs = Eigen::Transpose >; int Options = 0; Scalar = double; SrcXprType = Eigen::Product >, Eigen::Transpose >, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Product >, Eigen::Transpose >, 0>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:75:12: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block >, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block >, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:578:52: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index, Eigen::Index) const [with Lhs = Eigen::Transpose >; Rhs = Eigen::Transpose >; int ProductTag = 8; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Transpose >; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Transpose >; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:631:63: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; Lhs = Eigen::Transpose >; Rhs = Eigen::Transpose >; int Options = 0; Scalar = double; SrcXprType = Eigen::Product >, Eigen::Transpose >, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Product >, Eigen::Transpose >, 0>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:75:12: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::Matrix >, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Matrix >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/VectorwiseOp.h:104:1: required from 'ResultType Eigen::internal::member_sum::operator()(const XprType&) const [with XprType = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; ResultType = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1307:23: required from 'const Eigen::internal::evaluator >::Scalar Eigen::internal::evaluator >::coeff(Eigen::Index, Eigen::Index) const [with ArgType = const Eigen::CwiseUnaryOp, const Eigen::Matrix >; MemberOp = Eigen::internal::member_sum; int Direction = 0; Scalar = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:381:29: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:78:56: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::Matrix >, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Matrix >, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::Block, const Eigen::Matrix >, 1, -1, false>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::Block, const Eigen::Matrix >, 1, -1, false>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/VectorwiseOp.h:104:1: required from 'ResultType Eigen::internal::member_sum::operator()(const XprType&) const [with XprType = Eigen::Block, const Eigen::Matrix >, 1, -1, false>; ResultType = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1309:23: required from 'const Eigen::internal::evaluator >::Scalar Eigen::internal::evaluator >::coeff(Eigen::Index, Eigen::Index) const [with ArgType = const Eigen::CwiseUnaryOp, const Eigen::Matrix >; MemberOp = Eigen::internal::member_sum; int Direction = 0; Scalar = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:381:29: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:78:56: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>; SrcXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>; Functor = swap_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>; SrcXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>; Functor = Eigen::internal::swap_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>; Src = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>; Func = swap_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>; Src = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>; Func = swap_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:418:22: required from 'void Eigen::DenseBase::swap(const Eigen::DenseBase&) [with OtherDerived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>; Derived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:390:25: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:78:56: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:274:18: required from 'void Eigen::internal::outer_product_selector_run(Dst&, const Lhs&, const Rhs&, const Func&, const false_type&) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; Lhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>; Rhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>; Func = generic_product_impl, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, Eigen::DenseShape, Eigen::DenseShape, 5>::sub]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:329:41: required from 'static void Eigen::internal::generic_product_impl::subTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; Lhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>; Rhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:178:42: required from 'static void Eigen::internal::Assignment, Eigen::internal::sub_assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::sub_assign_op&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; Lhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>; Rhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; Src = Eigen::Product, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0>; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/NoAlias.h:58:31: required from 'ExpressionType& Eigen::NoAlias::operator-=(const StorageBase&) [with OtherDerived = Eigen::Product, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, 0>; ExpressionType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; StorageBase = Eigen::MatrixBase]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:406:53: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:78:56: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:78:56: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:280:48: required from 'void Eigen::internal::outer_product_selector_run(Dst&, const Lhs&, const Rhs&, const Func&, const false_type&) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; Lhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>; Rhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>; Func = generic_product_impl, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, 1, -1, false>, 1, -1, false>, Eigen::DenseShape, Eigen::DenseShape, 5>::sub]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:329:41: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:78:56: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, false>, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, 1, false>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:91:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase > >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/BlasUtil.h:464:13: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:92:8: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:671:14: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:776:38: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:103:53: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/BlasUtil.h:464:13: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:92:8: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:671:14: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:776:38: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:103:53: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase > >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/BlasUtil.h:464:13: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:92:8: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:671:14: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:776:38: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:103:53: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 3, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Matrix; SrcXprType = Eigen::Block, 3, 1, false>; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Matrix; SrcXprType = Eigen::Block, 3, 1, false>; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Block, 3, 1, false>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Block, 3, 1, false>; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Block, 3, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, Eigen::CwiseNullaryOp, Eigen::Matrix > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, Eigen::CwiseNullaryOp, Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::CwiseNullaryOp, Eigen::Matrix > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Solve.h:86:7: required from 'class Eigen::SolveImpl >, Eigen::CwiseNullaryOp, Eigen::Matrix >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Solve.h:62:7: required from 'class Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:577:39: required from 'static void Eigen::internal::Assignment >, Eigen::internal::assign_op::Scalar>, Eigen::internal::Dense2Dense>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op::Scalar>&) [with DstXprType = Eigen::Matrix; MatrixType = Eigen::Matrix; SrcXprType = Eigen::Inverse > >; typename Eigen::PartialPivLU::Scalar = double; typename DstXprType::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:105:12: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::OuterStride<> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::OuterStride<> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::OuterStride<> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Map.h:94:79: required from 'class Eigen::Map, 0, Eigen::OuterStride<> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:115:18: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Map.h:94:79: required from 'class Eigen::Map, 0, Eigen::Stride<0, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:119:18: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::InnerStride<> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::InnerStride<> >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::InnerStride<> >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::InnerStride<> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::InnerStride<> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::InnerStride<> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::OuterStride<> >, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::OuterStride<> >, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::OuterStride<> >, 1, -1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::Stride<0, 0> >, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, 0, Eigen::Stride<0, 0> >, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:137:106: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> >, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:137:77: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const ResScalar&) [with Index = long long int; int Mode = 6; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:332:12: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'struct Eigen::internal::general_matrix_vector_product, 1, false, double, Eigen::internal::const_blas_data_mapper, false, 1>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:145:123: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const ResScalar&) [with Index = long long int; int Mode = 6; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:332:12: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >; Dest = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; int Mode = 6; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; int Mode = 5; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = const Eigen::Block, -1, -1, false>, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:751:113: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>; int ProductTag = 7; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>; Derived = Eigen::internal::generic_product_impl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, Eigen::DenseShape, Eigen::TriangularShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:351:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 351 | typedef typename conditional::type LhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:352:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 352 | typedef typename conditional::type RhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:353:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 353 | typedef typename conditional::type ResPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'struct Eigen::internal::general_matrix_vector_product, 1, false, double, Eigen::internal::const_blas_data_mapper, false, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:154:113: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const ResScalar&) [with Index = long long int; int Mode = 6; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:332:12: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >; Dest = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; int Mode = 6; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; int Mode = 5; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = const Eigen::Block, -1, -1, false>, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:751:113: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>; int ProductTag = 7; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>; Derived = Eigen::internal::generic_product_impl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, Eigen::DenseShape, Eigen::TriangularShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:351:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 351 | typedef typename conditional::type LhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:352:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 352 | typedef typename conditional::type RhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:353:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 353 | typedef typename conditional::type ResPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:92:78: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Diagonal.h:63:53: required from 'class Eigen::Diagonal, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:153:32: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:92:78: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:327:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:501:10: required from 'Derived& Eigen::DenseBase::setZero() [with Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:151:29: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:96:17: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:327:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Diagonal, 0>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:501:10: required from 'Derived& Eigen::DenseBase::setZero() [with Derived = Eigen::Diagonal, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:153:42: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:96:17: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:503:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h: In instantiation of 'static void Eigen::internal::selfadjoint_matrix_vector_product::run(Index, const Scalar*, Index, const Scalar*, Scalar*, Scalar) [with Scalar = double; Index = long long int; int StorageOrder = 0; int UpLo = 1; bool ConjugateLhs = false; bool ConjugateRhs = false; int Version = 0]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:227:7: required from 'static void Eigen::internal::selfadjoint_product_impl::run(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, -1, 1, false>; Lhs = Eigen::Block, -1, -1, false>; int LhsMode = 17; Rhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:772:109: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, -1, 1, false>; Lhs = Eigen::SelfAdjointView, -1, -1, false>, 1>; Rhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; int ProductTag = 7; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Block, -1, 1, false>; Lhs = Eigen::SelfAdjointView, -1, -1, false>, 1>; Rhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::SelfAdjointShape, Eigen::DenseShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: required from 'static void Eigen::internal::generic_product_impl_base::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Block, -1, 1, false>; Lhs = Eigen::SelfAdjointView, -1, -1, false>, 1>; Rhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::SelfAdjointShape, Eigen::DenseShape, 7>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Block, -1, 1, false>; Lhs = Eigen::SelfAdjointView, -1, -1, false>, 1>; Rhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/Tridiagonalization.h:430:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:437:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:168:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:74:43: required from 'void Zonotope::compute_eigenvectors(const MT&) [with Point = point >; MT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:192:9: required from 'void Zonotope::init(unsigned int, const MT&, const VT&) [with Point = point >; MT = Eigen::Matrix; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:91:16: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:60:121: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 60 | conj_helper::IsComplex && EIGEN_LOGICAL_XOR(ConjugateLhs, IsRowMajor), ConjugateRhs> pcj0;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:60:121: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:61:121: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 61 | conj_helper::IsComplex && EIGEN_LOGICAL_XOR(ConjugateLhs, !IsRowMajor), ConjugateRhs> pcj1;\\n\"},{\"type\":1,\"output\":\" | ^~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:61:121: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, false>, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, false>, 1, -1, false>; SrcXprType = Eigen::Block, 1, -1, false>, 1, -1, false>; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, false>, 1, -1, false>; SrcXprType = Eigen::Block, 1, -1, false>, 1, -1, false>; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 1, -1, false>, 1, -1, false>; Src = Eigen::Block, 1, -1, false>, 1, -1, false>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 1, -1, false>, 1, -1, false>; Src = Eigen::Block, 1, -1, false>, 1, -1, false>; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Block, 1, -1, false>, 1, -1, false>; Src = Eigen::Block, 1, -1, false>, 1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Assign.h:66:28: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::ReturnByValue > > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:399:12: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:675:28: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:776:38: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:103:53: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, 1, false>; SrcXprType = Eigen::CwiseUnaryOp, const Eigen::Block, 1, -1, false>, 1, -1, false> >; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, 1, false>; SrcXprType = Eigen::CwiseUnaryOp, const Eigen::Block, 1, -1, false>, 1, -1, false> >; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 1, 1, false>; Src = Eigen::CwiseUnaryOp, const Eigen::Block, 1, -1, false>, 1, -1, false> >; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 1, 1, false>; Src = Eigen::CwiseUnaryOp, const Eigen::Block, 1, -1, false>, 1, -1, false> >; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Block, 1, 1, false>; Src = Eigen::CwiseUnaryOp, const Eigen::Block, 1, -1, false>, 1, -1, false> >]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Assign.h:66:28: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::ReturnByValue > > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zpolytope.h:399:12: required from 'void Zonotope::compute_reflection(Point&, const Point&, const int&) const [with Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:265:37: required from 'void BilliardWalk::Walk::apply(const GenericPolytope&, Point&, const unsigned int&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:675:28: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:776:38: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:103:53: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, 2, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:369:102: required from 'struct Eigen::internal::plain_object_eval, -1, -1, false>, 2, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:499:76: required from 'struct Eigen::internal::product_evaluator >, Eigen::Block, -1, -1, false>, 2, -1, false>, 1>, 3, Eigen::DenseShape, Eigen::DenseShape, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:29:8: required from 'struct Eigen::internal::evaluator >, Eigen::Block, -1, -1, false>, 2, -1, false>, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::Product >, Eigen::Block, -1, -1, false>, 2, -1, false>, 1>; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::Product >, Eigen::Block, -1, -1, false>, 2, -1, false>, 1>; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 2, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:369:102: required from 'struct Eigen::internal::plain_object_eval, -1, -1, false>, -1, 2, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:498:76: required from 'struct Eigen::internal::product_evaluator, -1, -1, false>, -1, 2, false>, Eigen::Matrix, 1>, 3, Eigen::DenseShape, Eigen::DenseShape, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:29:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 2, false>, Eigen::Matrix, 1> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::Product, -1, -1, false>, -1, 2, false>, Eigen::Matrix, 1>; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::Product, -1, -1, false>, -1, 2, false>, Eigen::Matrix, 1>; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator >, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block >, -1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block >, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; Lhs = Eigen::Matrix; Rhs = Eigen::Transpose >; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, Eigen::Transpose >, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, false>, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >; Derived = Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:305:135: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/Householder.h:166:21: required from 'void Eigen::MatrixBase::applyHouseholderOnTheRight(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Block, -1, 1, false>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:256:43: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:233:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'static void Eigen::internal::general_matrix_vector_product::run(Index, Index, const LhsMapper&, const RhsMapper&, ResScalar*, Index, ResScalar) [with Index = long long int; LhsScalar = double; LhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateLhs = false; RhsScalar = double; RhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateRhs = false; int Version = 1; ResScalar = double]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:145:123: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const ResScalar&) [with Index = long long int; int Mode = 6; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:332:12: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >; Dest = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; int Mode = 6; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; int Mode = 5; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = const Eigen::Block, -1, -1, false>, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:751:113: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>; int ProductTag = 7; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>; Derived = Eigen::internal::generic_product_impl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, Eigen::DenseShape, Eigen::TriangularShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:385:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 385 | conj_helper pcj;\\n\"},{\"type\":1,\"output\":\" | ^~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:385:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'static void Eigen::internal::general_matrix_vector_product::run(Index, Index, const LhsMapper&, const RhsMapper&, ResScalar*, Index, ResScalar) [with Index = long long int; LhsScalar = double; LhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateLhs = false; RhsScalar = double; RhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateRhs = false; int Version = 0; ResScalar = double]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:154:113: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const ResScalar&) [with Index = long long int; int Mode = 6; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:332:12: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >; Dest = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; int Mode = 6; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; int Mode = 5; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = const Eigen::Block, -1, -1, false>, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:751:113: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>; int ProductTag = 7; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>; Derived = Eigen::internal::generic_product_impl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, Eigen::DenseShape, Eigen::TriangularShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:385:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:385:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator >, 1, -1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator >, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:270:41: required from 'struct Eigen::internal::unary_evaluator >, 1, -1, true> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator >, 1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator >, 1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block >, -1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; Lhs = Eigen::Transpose >; Rhs = Eigen::Transpose >; int Options = 0; Scalar = double; SrcXprType = Eigen::Product >, Eigen::Transpose >, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Product >, Eigen::Transpose >, 0>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:75:12: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator >, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block >, -1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block >, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; Lhs = Eigen::Transpose >; Rhs = Eigen::Transpose >; int Options = 0; Scalar = double; SrcXprType = Eigen::Product >, Eigen::Transpose >, 0>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Product >, Eigen::Transpose >, 0>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Transpose >, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:75:12: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Matrix >, -1, 1, true> >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/VectorwiseOp.h:104:1: required from 'ResultType Eigen::internal::member_sum::operator()(const XprType&) const [with XprType = Eigen::Block, const Eigen::Matrix >, -1, 1, true>; ResultType = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1307:23: required from 'const Eigen::internal::evaluator >::Scalar Eigen::internal::evaluator >::coeff(Eigen::Index, Eigen::Index) const [with ArgType = const Eigen::CwiseUnaryOp, const Eigen::Matrix >; MemberOp = Eigen::internal::member_sum; int Direction = 0; Scalar = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:381:29: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:78:56: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block, -1, 1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block, -1, 1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:578:52: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index, Eigen::Index) const [with Lhs = Eigen::Matrix; Rhs = Eigen::Matrix; int ProductTag = 8; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Matrix; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Matrix; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:631:63: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Matrix, 0>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:236:8: required from 'void compute_hpoly_for_mmc(Zonotope&, HPolytope&) [with Zonotope = Zonotope > >; HPolytope = HPolytope > >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:295:26: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, 1, -1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, 1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:961:41: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:270:41: required from 'struct Eigen::internal::unary_evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:327:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Matrix; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:501:10: required from 'Derived& Eigen::DenseBase::setZero() [with Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:151:29: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:92:78: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:96:17: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Derived = Eigen::Block, -1, -1, false>, -1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:31: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:96:17: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:96:17: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Derived = Eigen::Block, -1, -1, false>, -1, -1, true>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:462:32: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:96:17: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::Block, -1, 1, true>; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, -1, 1, true> >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::Block, -1, 1, true>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::Block, -1, 1, true>; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/VectorwiseOp.h:104:1: required from 'ResultType Eigen::internal::member_sum::operator()(const XprType&) const [with XprType = Eigen::Block, -1, 1, true>; ResultType = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1316:23: required from 'const Eigen::internal::evaluator >::Scalar Eigen::internal::evaluator >::coeff(Eigen::Index) const [with ArgType = const Eigen::CwiseUnaryOp, const Eigen::Product, Eigen::Matrix, 0> >; MemberOp = Eigen::internal::member_sum; int Direction = 1; Scalar = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:637:61: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::PartialReduxExpr, const Eigen::Product, Eigen::Matrix, 0> >, member_sum, 1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:714:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::PartialReduxExpr, const Eigen::Product, Eigen::Matrix, 0> >, Eigen::internal::member_sum, 1>; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::PartialReduxExpr, const Eigen::Product, Eigen::Matrix, 0> >, Eigen::internal::member_sum, 1>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:41:11: required from 'bool get_first_poly(Zonotope&, HPolytope&, NT&, const cooling_ball_parameters&, RNG&, VT&) [with RandomPointGenerator = RandomPointGenerator > >, BoostRandomNumberGenerator, double> > >; Zonotope = Zonotope > >; HPolytope = HPolytope > >; NT = double; RNG = BoostRandomNumberGenerator, double>; VT = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:297:51: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase >, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase >, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:32: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, true>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, true>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, 1, -1, true>, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, 1, -1, true>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:48: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:94:19: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:462:59: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Matrix; int Mode = 2; bool LhsIsTriangular = true; Lhs = Eigen::Matrix; Rhs = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:94:19: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, -1, -1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, -1, -1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase >, -1, -1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense >, -1, -1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:95:19: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:462:59: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Matrix; int Mode = 1; bool LhsIsTriangular = true; Lhs = const Eigen::Transpose >; Rhs = Eigen::Matrix; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:738:14: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:95:19: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:578:52: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index, Eigen::Index) const [with Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; int ProductTag = 8; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Matrix; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Transpose >; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:631:63: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:78:8: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:671:14: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:776:38: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:103:53: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::norm() const [with Derived = Eigen::Product >, Eigen::Matrix, 0>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:96:52: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:671:14: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:776:38: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:103:53: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 1, 2, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, 1, 2, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, 1, 2, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, 1, 2, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase >, 1, 2, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense >, 1, 2, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 1, 2, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, 1, 2, true> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, 1, 2, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, 1, 2, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl >, 1, 2, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >, 1, 2, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:589:37: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 2, -1, false>, 2, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 2, -1, false>, 2, 1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, 2, -1, false>, 2, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, 2, -1, false>, 2, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 2, -1, false>, 2, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false>, 2, -1, false>, 2, 1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose >, 1, 2, true> >, const Eigen::Block, -1, -1, false>, 2, -1, false>, 2, 1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose >, 1, 2, true> >, const Eigen::Block, -1, -1, false>, 2, -1, false>, 2, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose >, 1, 2, true> >, const Eigen::Block, -1, -1, false>, 2, -1, false>, 2, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose >, 1, 2, true> >, const Eigen::Block, -1, -1, false>, 2, -1, false>, 2, 1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose >, 1, 2, true> >, const Eigen::Block, -1, -1, false>, 2, -1, false>, 2, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:589:52: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index) const [with Lhs = Eigen::Transpose >; Rhs = Eigen::Block, -1, -1, false>, 2, -1, false>; int ProductTag = 3; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Block, -1, -1, false>, 2, -1, false>; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Transpose >; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:637:61: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, 1, 1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, 1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, 1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase >, 1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense >, 1, 1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 1, 1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, 1, 1, true> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, 1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, 1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl >, 1, 1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >, 1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:589:37: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false>, 1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false>, 1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, 1, -1, false>, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, 1, -1, false>, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 1, -1, false>, 1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false>, 1, -1, false>, 1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose >, 1, 1, true> >, const Eigen::Block, -1, -1, false>, 1, -1, false>, 1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose >, 1, 1, true> >, const Eigen::Block, -1, -1, false>, 1, -1, false>, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose >, 1, 1, true> >, const Eigen::Block, -1, -1, false>, 1, -1, false>, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose >, 1, 1, true> >, const Eigen::Block, -1, -1, false>, 1, -1, false>, 1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose >, 1, 1, true> >, const Eigen::Block, -1, -1, false>, 1, -1, false>, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:589:52: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index) const [with Lhs = Eigen::Transpose >; Rhs = Eigen::Block, -1, -1, false>, 1, -1, false>; int ProductTag = 4; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Block, -1, -1, false>, 1, -1, false>; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Transpose >; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:637:61: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 1, 1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, 1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:589:37: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, 1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::Stride<0, 0> >, 1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:589:52: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index) const [with Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >; Rhs = Eigen::Map, 0, Eigen::Stride<0, 0> >; int ProductTag = 4; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Map, 0, Eigen::Stride<0, 0> >; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:637:61: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:137:114: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const ResScalar&) [with Index = long long int; int Mode = 6; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:332:12: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >; Dest = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; int Mode = 6; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:961:41: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:270:41: required from 'struct Eigen::internal::unary_evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: [ skipping 27 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:270:41: required from 'struct Eigen::internal::unary_evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: [ skipping 25 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, true>, 1, -1, false> >, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >; Derived = Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:341:27: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase >, -1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase >, -1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase >, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 19 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, true>, 1, -1, false> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, true>, 1, -1, false> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, true>, 1, -1, false> >, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 1, -1, true>, 1, -1, false> >, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:282:54: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false> >; Rhs = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; Dest = Eigen::Transpose >; int Mode = 1; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Derived = Eigen::Block, -1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:31: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:92:78: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false> >, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false> >, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:92:78: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, true>, -1, -1, false>, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>, -1, -1, false>, -1, 1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>, -1, -1, false>, -1, 1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, true>, -1, -1, false>, -1, 1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, true>, -1, -1, false>, -1, 1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >; Derived = Eigen::Block, -1, -1, true>, -1, -1, false>, -1, 1, true>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:305:135: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:271:17: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 2, false>, 1, 2, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 2, false>, 1, 2, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 2, false>, 1, 2, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 2, false>, 1, 2, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, 2, false>, 1, 2, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false>, -1, 2, false>, 1, 2, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 2, false>, 1, 2, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 2, false>, 1, 2, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 2, false>, 1, 2, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 2, false>, 1, 2, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, -1, 2, false>, 1, 2, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false>, -1, 2, false>, 1, 2, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:589:37: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 2, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 2, 1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 2, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 2, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 2, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 2, 1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, -1, -1, false>, -1, 2, false>, 1, 2, false> >, const Eigen::Block, 2, 1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, -1, -1, false>, -1, 2, false>, 1, 2, false> >, const Eigen::Block, 2, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, -1, -1, false>, -1, 2, false>, 1, 2, false> >, const Eigen::Block, 2, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, -1, -1, false>, -1, 2, false>, 1, 2, false> >, const Eigen::Block, 2, 1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, -1, false>, -1, 2, false>, 1, 2, false> >, const Eigen::Block, 2, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:589:52: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index) const [with Lhs = Eigen::Block, -1, -1, false>, -1, 2, false>; Rhs = Eigen::Matrix; int ProductTag = 3; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Matrix; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Block, -1, -1, false>, -1, 2, false>; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:637:61: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:578:22: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:578:37: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index, Eigen::Index) const [with Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >; Rhs = Eigen::Transpose >; int ProductTag = 4; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Transpose >; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:631:63: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, 1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase >, 1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense >, 1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >, const Eigen::Block >, 1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >, const Eigen::Block >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >, const Eigen::Block >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >, const Eigen::Block >, 1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >, const Eigen::Block >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:578:52: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index, Eigen::Index) const [with Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >; Rhs = Eigen::Transpose >; int ProductTag = 4; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Transpose >; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:631:63: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, false>, 1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, false>, 1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, false>, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, false>, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, 1, false>, 1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false>, -1, 1, false>, 1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, false>, 1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, false>, 1, 1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, false>, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, false>, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, -1, 1, false>, 1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false>, -1, 1, false>, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:589:37: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 1, 1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 1, 1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, -1, -1, false>, -1, 1, false>, 1, 1, false> >, const Eigen::Block, 1, 1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, -1, -1, false>, -1, 1, false>, 1, 1, false> >, const Eigen::Block, 1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, -1, -1, false>, -1, 1, false>, 1, 1, false> >, const Eigen::Block, 1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, -1, -1, false>, -1, 1, false>, 1, 1, false> >, const Eigen::Block, 1, 1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, -1, false>, -1, 1, false>, 1, 1, false> >, const Eigen::Block, 1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:589:52: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index) const [with Lhs = Eigen::Block, -1, -1, false>, -1, 1, false>; Rhs = Eigen::Matrix; int ProductTag = 4; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Matrix; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Block, -1, -1, false>, -1, 1, false>; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:637:61: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase >, 1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase >, 1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense >, 1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >, const Eigen::Block >, 1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >, const Eigen::Block >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >, const Eigen::Block >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >, const Eigen::Block >, 1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >, const Eigen::Block >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:589:52: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index) const [with Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >; Rhs = Eigen::Transpose >; int ProductTag = 4; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Transpose >; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:637:61: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::OuterStride<> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::OuterStride<> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::OuterStride<> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Map.h:94:79: required from 'class Eigen::Map, 0, Eigen::OuterStride<> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:44:18: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::InnerStride<> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::InnerStride<> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::InnerStride<> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::InnerStride<> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::InnerStride<> >, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Map.h:94:79: required from 'class Eigen::Map, 0, Eigen::InnerStride<> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:48:18: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:300:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, false>, 1>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:551:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, false>, 3>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:221:34: [ skipping 20 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, -1, 1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::OuterStride<> >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::OuterStride<> >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::OuterStride<> >, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::OuterStride<> >, -1, 1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 18 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:66:56: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const RhsScalar&) [with Index = long long int; int Mode = 1; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:266:12: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'struct Eigen::internal::general_matrix_vector_product, 0, false, double, Eigen::internal::const_blas_data_mapper, false, 1>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:74:123: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const RhsScalar&) [with Index = long long int; int Mode = 1; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:266:12: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false> >; Rhs = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; Dest = Eigen::Transpose >; int Mode = 1; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Matrix; int Mode = 2; Lhs = Eigen::Block, 1, -1, true>, 1, -1, false>; Rhs = Eigen::Block, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:751:113: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::Block, 1, -1, true>, 1, -1, false>; Rhs = Eigen::TriangularView, -1, -1, false>, 2>; int ProductTag = 7; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Matrix; Lhs = Eigen::Block, 1, -1, true>, 1, -1, false>; Rhs = Eigen::TriangularView, -1, -1, false>, 2>; Derived = Eigen::internal::generic_product_impl, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, Eigen::DenseShape, Eigen::TriangularShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:75:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 75 | typedef typename conditional::type LhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:76:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 76 | typedef typename conditional::type RhsPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:77:71: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 77 | typedef typename conditional::type ResPacket;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, 1, true>, -1, 1, false> >; Derived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:305:135: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:78:56: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:78:56: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:115:37: required from 'class Eigen::TransposeImpl, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:578:37: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:78:56: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:478:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>, 0>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true, true>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:78:56: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true>, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:578:52: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index, Eigen::Index) const [with Lhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; int ProductTag = 8; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:631:63: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:78:56: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator >, 1, 2, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator >, 1, 2, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:270:41: required from 'struct Eigen::internal::unary_evaluator >, 1, 2, true> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator >, 1, 2, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator >, 1, 2, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose >, 1, 2, true> >, const Eigen::Block, -1, -1, false>, 2, -1, false>, 2, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, 2, -1, false>, 2, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, 2, -1, false>, 2, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose >, 1, 2, true> >, const Eigen::Block, -1, -1, false>, 2, -1, false>, 2, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Transpose >, 1, 2, true> >, const Eigen::Block, -1, -1, false>, 2, -1, false>, 2, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Transpose >, 1, 2, true> >, const Eigen::Block, -1, -1, false>, 2, -1, false>, 2, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose >, 1, 2, true> >, const Eigen::Block, -1, -1, false>, 2, -1, false>, 2, 1, true> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator >, 1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator >, 1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:270:41: required from 'struct Eigen::internal::unary_evaluator >, 1, 1, true> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator >, 1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator >, 1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose >, 1, 1, true> >, const Eigen::Block, -1, -1, false>, 1, -1, false>, 1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, 1, -1, false>, 1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, 1, -1, false>, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose >, 1, 1, true> >, const Eigen::Block, -1, -1, false>, 1, -1, false>, 1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Transpose >, 1, 1, true> >, const Eigen::Block, -1, -1, false>, 1, -1, false>, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Transpose >, 1, 1, true> >, const Eigen::Block, -1, -1, false>, 1, -1, false>, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose >, 1, 1, true> >, const Eigen::Block, -1, -1, false>, 1, -1, false>, 1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:270:41: required from 'struct Eigen::internal::unary_evaluator, 1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, 1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Transpose, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Transpose, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'static void Eigen::internal::general_matrix_vector_product::run(Index, Index, const LhsMapper&, const RhsMapper&, ResScalar*, Index, RhsScalar) [with Index = long long int; LhsScalar = double; LhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateLhs = false; RhsScalar = double; RhsMapper = Eigen::internal::const_blas_data_mapper; bool ConjugateRhs = false; int Version = 1; ResScalar = double]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:74:123: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const RhsScalar&) [with Index = long long int; int Mode = 1; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:266:12: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false> >; Rhs = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; Dest = Eigen::Transpose >; int Mode = 1; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Matrix; int Mode = 2; Lhs = Eigen::Block, 1, -1, true>, 1, -1, false>; Rhs = Eigen::Block, -1, -1, false>; typename Dest::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:751:113: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::Block, 1, -1, true>, 1, -1, false>; Rhs = Eigen::TriangularView, -1, -1, false>, 2>; int ProductTag = 7; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Matrix; Lhs = Eigen::Block, 1, -1, true>, 1, -1, false>; Rhs = Eigen::TriangularView, -1, -1, false>, 2>; Derived = Eigen::internal::generic_product_impl, 1, -1, true>, 1, -1, false>, Eigen::TriangularView, -1, -1, false>, 2>, Eigen::DenseShape, Eigen::TriangularShape, 7>; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:112:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 112 | conj_helper pcj;\\n\"},{\"type\":1,\"output\":\" | ^~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:112:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 2, false>, 1, 2, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 2, false>, 1, 2, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:270:41: required from 'struct Eigen::internal::unary_evaluator, -1, -1, false>, -1, 2, false>, 1, 2, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 2, false>, 1, 2, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 2, false>, 1, 2, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, -1, -1, false>, -1, 2, false>, 1, 2, false> >, const Eigen::Block, 2, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: [ skipping 18 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 2, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 2, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, -1, -1, false>, -1, 2, false>, 1, 2, false> >, const Eigen::Block, 2, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Transpose, -1, -1, false>, -1, 2, false>, 1, 2, false> >, const Eigen::Block, 2, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Transpose, -1, -1, false>, -1, 2, false>, 1, 2, false> >, const Eigen::Block, 2, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, -1, false>, -1, 2, false>, 1, 2, false> >, const Eigen::Block, 2, 1, true> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:270:41: required from 'struct Eigen::internal::unary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >, const Eigen::Block >, 1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: [ skipping 18 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator >, 1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >, const Eigen::Block >, 1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >, const Eigen::Block >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >, const Eigen::Block >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >, const Eigen::Block >, 1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, false>, 1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, false>, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:270:41: required from 'struct Eigen::internal::unary_evaluator, -1, -1, false>, -1, 1, false>, 1, 1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, false>, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, false>, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, -1, -1, false>, -1, 1, false>, 1, 1, false> >, const Eigen::Block, 1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: [ skipping 18 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, -1, -1, false>, -1, 1, false>, 1, 1, false> >, const Eigen::Block, 1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Transpose, -1, -1, false>, -1, 1, false>, 1, 1, false> >, const Eigen::Block, 1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Transpose, -1, -1, false>, -1, 1, false>, 1, 1, false> >, const Eigen::Block, 1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, -1, false>, -1, 1, false>, 1, 1, false> >, const Eigen::Block, 1, 1, true> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator >, 1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator >, 1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >, const Eigen::Block >, 1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >, const Eigen::Block >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >, const Eigen::Block >, 1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 1, 1, false> >, const Eigen::Block >, 1, 1, false> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/RealSchur.h:274:24: required from 'Eigen::RealSchur& Eigen::RealSchur<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:389:22: required from 'Eigen::EigenSolver& Eigen::EigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Eigenvalues/EigenSolver.h:156:14: required from 'Eigen::EigenSolver<_MatrixType>::EigenSolver(const Eigen::EigenBase&, bool) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:91:32: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::CwiseNullaryOp, Eigen::Matrix >, 2>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::CwiseNullaryOp, Eigen::Matrix >, 2> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::CwiseNullaryOp, Eigen::Matrix >, 2> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:115:7: required from 'class Eigen::internal::dense_product_base, Eigen::CwiseNullaryOp, Eigen::Matrix >, 2, 8>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:147:7: required from 'class Eigen::ProductImpl, Eigen::CwiseNullaryOp, Eigen::Matrix >, 2, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, Eigen::CwiseNullaryOp, Eigen::Matrix >, 2>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:237:28: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:105:12: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:270:41: required from 'struct Eigen::internal::unary_evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, Eigen::internal::IndexBased, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:37: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: [ skipping 19 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:78:56: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:349:33: required from 'class Eigen::internal::redux_evaluator, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:416:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, -1, false>, -1, -1, false>, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:131:14: required from 'Eigen::PartialPivLU& Eigen::PartialPivLU::compute(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:323:10: required from 'Eigen::PartialPivLU::PartialPivLU(const Eigen::EigenBase&) [with InputType = Eigen::Matrix; _MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/PartialPivLU.h:594:10: required from 'const Eigen::PartialPivLU::PlainObject> Eigen::MatrixBase::partialPivLu() const [with Derived = Eigen::Matrix; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:41:26: required from 'static typename Eigen::internal::traits::Scalar Eigen::internal::determinant_impl::run(const Derived&) [with Derived = Eigen::Matrix; int DeterminantType = -1; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/LU/Determinant.h:96:86: required from 'typename Eigen::internal::traits::Scalar Eigen::MatrixBase::determinant() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:78:56: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> >; Eigen::Index = long long int]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:225:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Derived&, const Func&) [with Func = Eigen::internal::scalar_sum_op; Derived = Eigen::internal::redux_evaluator, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> > >; Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Redux.h:453:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:578:75: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index, Eigen::Index) const [with Lhs = Eigen::Transpose >; Rhs = Eigen::Matrix; int ProductTag = 8; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Matrix; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Transpose >; CoeffReturnType = double; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:631:63: required from 'void Eigen::internal::generic_dense_assignment_kernel::assignCoeff(Eigen::Index, Eigen::Index) [with DstEvaluatorTypeT = Eigen::internal::evaluator >; SrcEvaluatorTypeT = Eigen::internal::evaluator >, Eigen::Matrix, 1> >; Functor = Eigen::internal::assign_op; int Version = 0; Eigen::Index = long long int]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:645:16: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:78:8: required from 'static NT compute_diameter >::compute(const Zonotope&) [with NT = double; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/random_walks/uniform_billiard_walk.hpp:220:39: required from 'BilliardWalk::Walk::Walk(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = Zonotope > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>; Point = point >]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:671:14: required from 'NT estimate_ratio_interval(const PolyBall1&, const PolyBall2&, const NT&, const NT&, const int&, const int&, const NT&, const unsigned int&, RNG&) [with WalkType = BilliardWalk::Walk > >, BoostRandomNumberGenerator, double> >; Point = point >; PolyBall1 = Zonotope > >; PolyBall2 = Ball > >; NT = double; RNG = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_balls.hpp:776:38: required from 'double volume_cooling_balls(const Polytope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:103:53: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:650:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 650 | return internal::first_aligned::alignment),Derived>(m);\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, -1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:94:19: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator >, -1, -1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator >, -1, -1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:95:19: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, true>, 1, -1, false> >, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 1, -1, true>, 1, -1, false> >, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator >, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >; Functor = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block >, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >; Func = sub_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block >, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false> >; Derived = Eigen::Block >, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:282:27: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, -1, 1, true> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, -1, 1, true> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:961:41: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: [ skipping 20 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:99:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:681:69: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:665:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> > >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >; Functor = add_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >; Functor = Eigen::internal::add_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: [ skipping 18 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:736:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >; Functor = add_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >; Functor = Eigen::internal::add_assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >; Func = add_assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >; Func = add_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:177:18: required from 'Derived& Eigen::MatrixBase::operator+=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >; Derived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:66:28: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/BlockHouseholder.h:85:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Householder/HouseholderSequence.h:333:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:237:47: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:684:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/SVD/JacobiSVD.h:548:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:65:91: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 1, -1, false>, 0>':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix >, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix >, 1, -1, false> >'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, Eigen::Matrix >, 1, -1, false, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, Eigen::Matrix >, 1, -1, false, Eigen::Dense>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, Eigen::Matrix >, 1, -1, false>'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:1009:11: [ skipping 24 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:105:12: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:55:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 55 | >::type PacketReturnType;\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, Eigen::Matrix >, 1, -1, false> >':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:730:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, false>; SrcXprType = Eigen::Block, Eigen::Matrix >, 1, -1, false>; Functor = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:879:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, false>; SrcXprType = Eigen::Block, Eigen::Matrix >, 1, -1, false>; Functor = Eigen::internal::assign_op; Weak = void]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:836:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 1, -1, false>; Src = Eigen::Block, Eigen::Matrix >, 1, -1, false>; Func = assign_op]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:804:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 1, -1, false>; Src = Eigen::Block, Eigen::Matrix >, 1, -1, false>; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:782:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Block, 1, -1, false>; Src = Eigen::Block, Eigen::Matrix >, 1, -1, false>]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Assign.h:66:28: [ skipping 25 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:732:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:537:19: required from 'Eigen::PlainObjectBase::PlainObjectBase(const Eigen::DenseBase&) [with OtherDerived = Eigen::Inverse >; Derived = Eigen::Matrix]'\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/Matrix.h:377:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Inverse >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]'\\n\"},{\"type\":1,\"output\":\"include/volume/rounding.hpp:105:12: required from 'std::pair, NT> round_polytope(Polytope&, std::pair&, const unsigned int&, RandomNumberGenerator&) [with WalkTypePolicy = CDHRWalk; MT = Eigen::Matrix; VT = Eigen::Matrix; Polytope = HPolytope > >; Point = point >; NT = double; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"include/volume/volume_cooling_hpoly.hpp:325:78: required from 'double volume_cooling_hpoly(const Zonotope&, RandomNumberGenerator&, const double&, const unsigned int&, const unsigned int&) [with WalkTypePolicy = BilliardWalk; HPolytope = HPolytope > >; Zonotope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]'\\n\"},{\"type\":1,\"output\":\"zonotope_approximation.cpp:105:64: required from here\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:989:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes]\\n\"},{\"type\":1,\"output\":\" 989 | PacketAlignment = unpacket_traits::alignment,\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\bits\\\\stl_algobase.h:64:\\n\"},{\"type\":1,\"output\":\"In constructor 'constexpr std::pair<_T1, _T2>::pair(_U1&&, _U2&&) [with _U1 = const double&; _U2 = int&; typename std::enable_if<(std::_PCC::_MoveConstructiblePair<_U1, _U2>() && std::_PCC::_ImplicitlyMoveConvertiblePair<_U1, _U2>()), bool>::type = true; _T1 = double; _T2 = int]',\\n\"},{\"type\":1,\"output\":\" inlined from 'std::pair ZonoIntersectHPoly::line_positive_intersect(const PointType&, const PointType&, VT&, VT&, const NT&) const [with Zonotope = Zonotope > >; HPolytope = HPolytope > >]' at include/convex_bodies/zonoIntersecthpoly.h:142:40:\\n\"},{\"type\":1,\"output\":\"d:\\\\softwares\\\\rtools\\\\rtools43\\\\x86_64-w64-mingw32.static.posix\\\\lib\\\\gcc\\\\x86_64-w64-mingw32.static.posix\\\\12.2.0\\\\include\\\\c++\\\\bits\\\\stl_pair.h:535:42: warning: 'facet' may be used uninitialized [-Wmaybe-uninitialized]\\n\"},{\"type\":1,\"output\":\" 535 | : first(std::forward<_U1>(__x)), second(std::forward<_U2>(__y)) { }\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h: In member function 'std::pair ZonoIntersectHPoly::line_positive_intersect(const PointType&, const PointType&, VT&, VT&, const NT&) const [with Zonotope = Zonotope > >; HPolytope = HPolytope > >]':\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:316:39: note: 'facet' was declared here\\n\"},{\"type\":1,\"output\":\" 316 | int m = num_of_hyperplanes(), facet;\\n\"},{\"type\":1,\"output\":\" | ^~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h: In function 'static void Eigen::internal::selfadjoint_product_impl::run(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, -1, 1, false>; Lhs = Eigen::Block, -1, -1, false>; int LhsMode = 17; Rhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:227:7: warning: 'result' may be used uninitialized [-Wmaybe-uninitialized]\\n\"},{\"type\":1,\"output\":\" 225 | internal::selfadjoint_matrix_vector_product::Flags&RowMajorBit) ? RowMajor : ColMajor,\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 226 | int(LhsUpLo), bool(LhsBlasTraits::NeedToConjugate), bool(RhsBlasTraits::NeedToConjugate)>::run\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 227 | (\\n\"},{\"type\":1,\"output\":\" | ^\\n\"},{\"type\":1,\"output\":\" 228 | lhs.rows(), // size\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 229 | &lhs.coeffRef(0,0), lhs.outerStride(), // lhs info\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 230 | actualRhsPtr, // rhs info\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 231 | actualDestPtr, // result info\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 232 | actualAlpha // scale factor\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 233 | );\\n\"},{\"type\":1,\"output\":\" | ~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:39:24: note: by argument 4 of type 'const double*' to 'static void Eigen::internal::selfadjoint_matrix_vector_product::run(Index, const Scalar*, Index, const Scalar*, Scalar*, Scalar) [with Scalar = double; Index = long long int; int StorageOrder = 0; int UpLo = 1; bool ConjugateLhs = false; bool ConjugateRhs = false; int Version = 0]' declared here\\n\"},{\"type\":1,\"output\":\" 39 | EIGEN_DONT_INLINE void selfadjoint_matrix_vector_product::run(\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/Core:507:\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h: In static member function 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >; Dest = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; int Mode = 6]':\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:332:12: warning: 'result' may be used uninitialized [-Wmaybe-uninitialized]\\n\"},{\"type\":1,\"output\":\" 327 | internal::triangular_matrix_vector_product\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 328 | \\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 332 | ::run(actualLhs.rows(),actualLhs.cols(),\\n\"},{\"type\":1,\"output\":\" | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 333 | actualLhs.data(),actualLhs.outerStride(),\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 334 | actualRhsPtr,1,\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 335 | dest.data(),dest.innerStride(),\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\" 336 | actualAlpha);\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"D:/Softwares/R/R-4.3.0/library/RcppEigen/include/Eigen/src/Core/products/TriangularMatrixVector.h:105:24: note: by argument 5 of type 'const double*' to 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const ResScalar&) [with Index = long long int; int Mode = 6; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0]' declared here\\n\"},{\"type\":1,\"output\":\" 105 | EIGEN_DONT_INLINE void triangular_matrix_vector_product\\n\"},{\"type\":1,\"output\":\" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"In file included from include/random_walks/uniform_billiard_walk.hpp:21:\\n\"},{\"type\":1,\"output\":\"In member function 'void ZonoIntersectHPoly::compute_reflection(PointType&, const PointType&, const int&) const [with Zonotope = Zonotope > >; HPolytope = HPolytope > >]',\\n\"},{\"type\":1,\"output\":\" inlined from 'void BilliardWalk::Walk::initialize(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = ZonoIntersectHPoly > >, HPolytope > > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]' at include/random_walks/uniform_billiard_walk.hpp:311:29:\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/zonoIntersecthpoly.h:179:34: warning: 'facet' may be used uninitialized [-Wmaybe-uninitialized]\\n\"},{\"type\":1,\"output\":\" 179 | HP.compute_reflection(v, p, facet);\\n\"},{\"type\":1,\"output\":\" | ~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h: In member function 'void BilliardWalk::Walk::initialize(const GenericPolytope&, const Point&, RandomNumberGenerator&) [with GenericPolytope = ZonoIntersectHPoly > >, HPolytope > > >; Polytope = Zonotope > >; RandomNumberGenerator = BoostRandomNumberGenerator, double>]':\\n\"},{\"type\":1,\"output\":\"include/convex_bodies/hpolytope.h:274:39: note: 'facet' was declared here\\n\"},{\"type\":1,\"output\":\" 274 | int m = num_of_hyperplanes(), facet;\\n\"},{\"type\":1,\"output\":\" | ^~~~~\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"g++ -std=gnu++17 -shared -s -static-libgcc -o volesti.dll tmp.def RcppExports.o copula.o direct_sampling.o exact_vol.o frustum_of_simplex.o inner_ball.o load_sdpa_format_file.o poly_gen.o rotating.o rounding.o sample_points.o volume.o write_sdpa_format_file.o zonotope_approximation.o -Lexternal/lpsolve/build/lp_solve -llp_solve -LD:/Softwares/R/R-4.3.0/bin/x64 -lRlapack -LD:/Softwares/R/R-4.3.0/bin/x64 -lRblas -lgfortran -lm -lquadmath -LD:/Softwares/RTools/rtools43/x86_64-w64-mingw32.static.posix/lib/x64 -LD:/Softwares/RTools/rtools43/x86_64-w64-mingw32.static.posix/lib -LD:/Softwares/R/R-4.3.0/bin/x64 -lR\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"installing to D:/Softwares/R/R-4.3.0/library/00LOCK-Forked_Volesti_R/00new/volesti/libs/x64\\r\\n\"},{\"type\":1,\"output\":\"** R\\r\\n\"},{\"type\":1,\"output\":\"** inst\\r\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"** byte-compile and prepare package for lazy loading\\r\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"** help\\r\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"*** installing help indices\\r\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"** building package indices\\r\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"** testing if installed package can be loaded from temporary location\\r\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"** testing if installed package can be loaded from final location\\r\\n\"},{\"type\":1,\"output\":\"\"},{\"type\":1,\"output\":\"** testing if installed package keeps a record of temporary installation path\\r\\n\"},{\"type\":1,\"output\":\"* DONE (volesti)\\r\\n\"},{\"type\":1,\"output\":\"\"}]" +compile_pdf_state="{\"tab_visible\":false,\"running\":false,\"target_file\":\"\",\"output\":\"\",\"errors\":[]}" +files.monitored-path="" +find-in-files-state="{\"handle\":\"\",\"input\":\"\",\"path\":\"\",\"regex\":false,\"ignoreCase\":false,\"results\":{\"file\":[],\"line\":[],\"lineValue\":[],\"matchOn\":[],\"matchOff\":[],\"replaceMatchOn\":[],\"replaceMatchOff\":[]},\"running\":false,\"replace\":false,\"preview\":false,\"gitFlag\":false,\"replacePattern\":\"\"}" +imageDirtyState="0" +saveActionState="0" diff --git a/.Rproj.user/CF1601EC/rmd-outputs b/.Rproj.user/CF1601EC/rmd-outputs new file mode 100644 index 00000000..3f2ff2d6 --- /dev/null +++ b/.Rproj.user/CF1601EC/rmd-outputs @@ -0,0 +1,5 @@ + + + + + diff --git a/.Rproj.user/CF1601EC/saved_source_markers b/.Rproj.user/CF1601EC/saved_source_markers new file mode 100644 index 00000000..2b1bef11 --- /dev/null +++ b/.Rproj.user/CF1601EC/saved_source_markers @@ -0,0 +1 @@ +{"active_set":"","sets":[]} \ No newline at end of file diff --git a/.Rproj.user/shared/notebooks/patch-chunk-names b/.Rproj.user/shared/notebooks/patch-chunk-names new file mode 100644 index 00000000..e69de29b diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..de1a4146 --- /dev/null +++ b/.gitignore @@ -0,0 +1,10 @@ +.Rproj.user +.Rhistory +.RData +.Ruserdata +src/*.o +src/external/lpsolve/build/lp_solve/*.o +src/RcppExports.cpp +src/*.so +src/*.dll +volesti.Rproj diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 00000000..d20c2d3b --- /dev/null +++ b/.gitmodules @@ -0,0 +1,4 @@ +[submodule "src/include"] + path = src/include + url = https://github.com/Soumya624/volesti.git + branch = contentsOfInclude diff --git a/DESCRIPTION b/DESCRIPTION new file mode 100644 index 00000000..55424ed1 --- /dev/null +++ b/DESCRIPTION @@ -0,0 +1,24 @@ +Package: volesti +Type: Package +License: LGPL-3 +Title: Volume Approximation and Sampling of Convex Polytopes +Author: Vissarion Fisikopoulos [aut, cph, cre], + Apostolos Chalkis [cph, aut], + contributors in file inst/AUTHORS +Copyright: file inst/COPYRIGHTS +Description: Provides an R interface for 'volesti' C++ package. 'volesti' computes estimations of volume + of polytopes given by (i) a set of points, (ii) linear inequalities or (iii) Minkowski sum of segments + (a.k.a. zonotopes). There are three algorithms for volume estimation as well as algorithms + for sampling, rounding and rotating polytopes. Moreover, 'volesti' provides algorithms for + estimating copulas useful in computational finance. Methods implemented in 'volesti' are described + in A. Chalkis and V. Fisikopoulos (2022) and references therein. +Version: 1.1.2-6 +Date: 2023-04-11 +Maintainer: Vissarion Fisikopoulos +Depends: Rcpp (>= 0.12.17) +Imports: methods, stats +LinkingTo: Rcpp, RcppEigen, BH +Suggests: testthat +Encoding: UTF-8 +RoxygenNote: 7.1.1 +BugReports: https://github.com/GeomScale/volesti/issues diff --git a/NAMESPACE b/NAMESPACE new file mode 100644 index 00000000..e12919ab --- /dev/null +++ b/NAMESPACE @@ -0,0 +1,35 @@ +# Generated by roxygen2: do not edit by hand + +export(compute_indicators) +export(copula) +export(direct_sampling) +export(exact_vol) +export(frustum_of_simplex) +export(gen_cross) +export(gen_cube) +export(gen_prod_simplex) +export(gen_rand_hpoly) +export(gen_rand_vpoly) +export(gen_rand_zonotope) +export(gen_simplex) +export(gen_skinny_cube) +export(inner_ball) +export(read_sdpa_format_file) +export(rotate_polytope) +export(round_polytope) +export(sample_points) +export(volume) +export(write_sdpa_format_file) +export(zonotope_approximation) +exportClasses(Hpolytope) +exportClasses(Spectrahedron) +exportClasses(Vpolytope) +exportClasses(VpolytopeIntersection) +exportClasses(Zonotope) +exportPattern("^[[:alpha:]]+") +importFrom("methods","new") +importFrom("stats","cov") +importFrom("utils","read.csv") +importFrom(Rcpp,evalCpp) +importFrom(Rcpp,loadModule) +useDynLib(volesti, .registration=TRUE) diff --git a/NEWS.md b/NEWS.md new file mode 100644 index 00000000..e3329b9f --- /dev/null +++ b/NEWS.md @@ -0,0 +1,52 @@ +# volesti 1.0.0 + +* This is the first release of volesti R-Package. + +# volesti 1.0.1 + +* Fix some bugs for solaris os. + +# volesti 1.0.2 + +* Remove r-striper to avoid CRAN policy violation. + +# volesti 1.0.3 + +* Fix CRAN warnings. + +# volesti 1.1.0 + +* New volume computation algorithm. +* Billiard walk for uniform sampling. +* Modified exact volume computation function. +* Implementation and evaluation of PCA method for zonotope approximation. +* Boundary sampling. +* Improved functionality for finance applications. +* Improved names for functions and input variables. +* Use exclusively Eigen/BH library for linear algebra. + +# volesti 1.1.1 + +* Fix CRAN warnings about deprecated use of ftime + +# volesti 1.1.2 + +- Improve functionality of R function. +- Use lower case and "_" separated names for the volesti's functions. +- Use R classes for the convex polytopes + +# volesti 1.1.2-2 + +- Remove `loadSdpaFormatFile()` and `readSdpaFormatFile()` functions. + +# volesti 1.1.2-3 + +- Remove unneeded-internal-declaration warning in clang-15 + +# volesti 1.1.2-4 + +- Remove uninitialized warning in clang-16 (lp_presolve) + +# volesti 1.1.2-6 + +- Fix UBSAN issues (lp_presolve) diff --git a/R/HpolytopeClass.R b/R/HpolytopeClass.R new file mode 100644 index 00000000..8cf7ecc7 --- /dev/null +++ b/R/HpolytopeClass.R @@ -0,0 +1,42 @@ +#' An R class to represent an H-polytope +#' +#' An H-polytope is a convex polytope defined by a set of linear inequalities or equivalently a \eqn{d}-dimensional H-polytope with \eqn{m} facets is defined by a \eqn{m\times d} matrix A and a \eqn{m}-dimensional vector b, s.t.: \eqn{Ax\leq b}. +#' +#' \describe{ +#' \item{A}{An \eqn{m\times d} numerical matrix.} +#' +#' \item{b}{An \eqn{m}-dimensional vector b.} +#' +#' \item{volume}{The volume of the polytope if it is known, \eqn{NaN} otherwise by default.} +#' +#' \item{type}{A character with default value 'Hpolytope', to declare the representation of the polytope.} +#' } +#' +#' @examples +#' A = matrix(c(-1,0,0,-1,1,1), ncol=2, nrow=3, byrow=TRUE) +#' b = c(0,0,1) +#' P = Hpolytope(A = A, b = b) +#' +#' @name Hpolytope-class +#' @rdname Hpolytope-class +#' @exportClass Hpolytope +Hpolytope <- setClass ( + # Class name + "Hpolytope", + + # Defining slot type + representation ( + A = "matrix", + b = "numeric", + volume = "numeric", + type = "character" + ), + + # Initializing slots + prototype = list( + A = as.matrix(0), + b = as.numeric(NULL), + volume = as.numeric(NaN), + type = "Hpolytope" + ) +) diff --git a/R/RcppExports.R b/R/RcppExports.R new file mode 100644 index 00000000..ba2c1cd6 --- /dev/null +++ b/R/RcppExports.R @@ -0,0 +1,323 @@ +# Generated by using Rcpp::compileAttributes() -> do not edit by hand +# Generator token: 10BE3573-1514-4C36-9D1C-5A225CD40393 + +#' Construct a copula using uniform sampling from the unit simplex +#' +#' Given two families of parallel hyperplanes or a family of parallel hyperplanes and a family of concentric ellispoids centered at the origin intersecting the canonical simplex, this function uniformly samples from the canonical simplex and construct an approximation of the bivariate probability distribution, called copula (see \url{https://en.wikipedia.org/wiki/Copula_(probability_theory)}). +#' At least two families of hyperplanes or one family of hyperplanes and one family of ellipsoids have to be given as input. +#' +#' @param r1 The \eqn{d}-dimensional normal vector of the first family of parallel hyperplanes. +#' @param r2 Optional. The \eqn{d}-dimensional normal vector of the second family of parallel hyperplanes. +#' @param sigma Optional. The \eqn{d\times d} symmetric positive semidefine matrix that describes the family of concentric ellipsoids centered at the origin. +#' @param m The number of the slices for the copula. The default value is 100. +#' @param n The number of points to sample. The default value is \eqn{5\cdot 10^5}. +#' @param seed Optional. A fixed seed for the number generator. +#' +#' @references \cite{L. Cales, A. Chalkis, I.Z. Emiris, V. Fisikopoulos, +#' \dQuote{Practical volume computation of structured convex bodies, and an application to modeling portfolio dependencies and financial crises,} \emph{Proc. of Symposium on Computational Geometry, Budapest, Hungary,} 2018.} +#' +#' @return A \eqn{m\times m} numerical matrix that corresponds to a copula. +#' @examples +#' # compute a copula for two random families of parallel hyperplanes +#' h1 = runif(n = 10, min = 1, max = 1000) +#' h1 = h1 / 1000 +#' h2=runif(n = 10, min = 1, max = 1000) +#' h2 = h2 / 1000 +#' cop = copula(r1 = h1, r2 = h2, m = 10, n = 100000) +#' +#' # compute a copula for a family of parallel hyperplanes and a family of conentric ellipsoids +#' h = runif(n = 10, min = 1, max = 1000) +#' h = h / 1000 +#' E = replicate(10, rnorm(20)) +#' E = cov(E) +#' cop = copula(r1 = h, sigma = E, m = 10, n = 100000) +#' +#' @export +copula <- function(r1, r2 = NULL, sigma = NULL, m = NULL, n = NULL, seed = NULL) { + .Call(`_volesti_copula`, r1, r2, sigma, m, n, seed) +} + +#' Sample perfect uniformly distributed points from well known convex bodies: (a) the unit simplex, (b) the canonical simplex, (c) the boundary of a hypersphere or (d) the interior of a hypersphere. +#' +#' The \eqn{d}-dimensional unit simplex is the set of points \eqn{\vec{x}\in \R^d}, s.t.: \eqn{\sum_i x_i\leq 1}, \eqn{x_i\geq 0}. The \eqn{d}-dimensional canonical simplex is the set of points \eqn{\vec{x}\in \R^d}, s.t.: \eqn{\sum_i x_i = 1}, \eqn{x_i\geq 0}. +#' +#' @param body A list to request exact uniform sampling from special well known convex bodies through the following input parameters: +#' \itemize{ +#' \item{\code{type} }{ A string that declares the type of the body for the exact sampling: a) \code{'unit_simplex'} for the unit simplex, b) \code{'canonical_simplex'} for the canonical simplex, c) \code{'hypersphere'} for the boundary of a hypersphere centered at the origin, d) \code{'ball'} for the interior of a hypersphere centered at the origin.} +#' \item{\code{dimension} }{ An integer that declares the dimension when exact sampling is enabled for a simplex or a hypersphere.} +#' \item{\code{radius} }{ The radius of the \eqn{d}-dimensional hypersphere. The default value is \eqn{1}.} +#' \item{\code{seed} }{ A fixed seed for the number generator.} +#' } +#' @param n The number of points that the function is going to sample. +#' +#' @references \cite{R.Y. Rubinstein and B. Melamed, +#' \dQuote{Modern simulation and modeling} \emph{ Wiley Series in Probability and Statistics,} 1998.} +#' @references \cite{A Smith, Noah and W Tromble, Roy, +#' \dQuote{Sampling Uniformly from the Unit Simplex,} \emph{ Center for Language and Speech Processing Johns Hopkins University,} 2004.} +#' +#' @return A \eqn{d\times n} matrix that contains, column-wise, the sampled points from the convex polytope P. +#' @examples +#' # 100 uniform points from the 2-d unit ball +#' points = direct_sampling(n = 100, body = list("type" = "ball", "dimension" = 2)) +#' @export +direct_sampling <- function(body, n) { + .Call(`_volesti_direct_sampling`, body, n) +} + +#' Compute the exact volume of (a) a zonotope (b) an arbitrary simplex in V-representation or (c) if the volume is known and declared by the input object. +#' +#' Given a zonotope (as an object of class Zonotope), this function computes the sum of the absolute values of the determinants of all the \eqn{d \times d} submatrices of the \eqn{m\times d} matrix \eqn{G} that contains row-wise the \eqn{m} \eqn{d}-dimensional segments that define the zonotope. +#' For an arbitrary simplex that is given in V-representation this function computes the absolute value of the determinant formed by the simplex's points assuming it is shifted to the origin. +#' +#' @param P A polytope +#' +#' @references \cite{E. Gover and N. Krikorian, +#' \dQuote{Determinants and the Volumes of Parallelotopes and Zonotopes,} \emph{Linear Algebra and its Applications, 433(1), 28 - 40,} 2010.} +#' +#' @return The exact volume of the input polytope, for zonotopes, simplices in V-representation and polytopes with known exact volume +#' @examples +#' +#' # compute the exact volume of a 5-dimensional zonotope defined by the Minkowski sum of 10 segments +#' Z = gen_rand_zonotope(2, 5) +#' vol = exact_vol(Z) +#' +#' \donttest{# compute the exact volume of a 2-d arbitrary simplex +#' V = matrix(c(2,3,-1,7,0,0),ncol = 2, nrow = 3, byrow = TRUE) +#' P = Vpolytope(V = V) +#' vol = exact_vol(P) +#' } +#' +#' # compute the exact volume the 10-dimensional cross polytope +#' P = gen_cross(10,'V') +#' vol = exact_vol(P) +#' @export +exact_vol <- function(P) { + .Call(`_volesti_exact_vol`, P) +} + +#' Compute the percentage of the volume of the simplex that is contained in the intersection of a half-space and the simplex. +#' +#' A half-space \eqn{H} is given as a pair of a vector \eqn{a\in R^d} and a scalar \eqn{z0\in R} s.t.: \eqn{a^Tx\leq z0}. This function calls the Ali's version of the Varsi formula to compute a frustum of the simplex. +#' +#' @param a A \eqn{d}-dimensional vector that defines the direction of the hyperplane. +#' @param z0 The scalar that defines the half-space. +#' +#' @references \cite{Varsi, Giulio, +#' \dQuote{The multidimensional content of the frustum of the simplex,} \emph{Pacific J. Math. 46, no. 1, 303--314,} 1973.} +#' +#' @references \cite{Ali, Mir M., +#' \dQuote{Content of the frustum of a simplex,} \emph{ Pacific J. Math. 48, no. 2, 313--322,} 1973.} +#' +#' @return The percentage of the volume of the simplex that is contained in the intersection of a given half-space and the simplex. +#' +#' @examples +#' # compute the frustum of H: -x1+x2<=0 +#' a=c(-1,1) +#' z0=0 +#' frustum = frustum_of_simplex(a, z0) +#' @export +frustum_of_simplex <- function(a, z0) { + .Call(`_volesti_frustum_of_simplex`, a, z0) +} + +#' Compute an inscribed ball of a convex polytope +#' +#' For a H-polytope described by a \eqn{m\times d} matrix \eqn{A} and a \eqn{m}-dimensional vector \eqn{b}, s.t.: \eqn{P=\{x\ |\ Ax\leq b\} }, this function computes the largest inscribed ball (Chebychev ball) by solving the corresponding linear program. +#' For both zonotopes and V-polytopes the function computes the minimum \eqn{r} s.t.: \eqn{ r e_i \in P} for all \eqn{i=1, \dots ,d}. Then the ball centered at the origin with radius \eqn{r/ \sqrt{d}} is an inscribed ball. +#' +#' @param P A convex polytope. It is an object from class (a) Hpolytope or (b) Vpolytope or (c) Zonotope or (d) VpolytopeIntersection. +#' +#' @return A \eqn{(d+1)}-dimensional vector that describes the inscribed ball. The first \eqn{d} coordinates corresponds to the center of the ball and the last one to the radius. +#' +#' @examples +#' # compute the Chebychev ball of the 2d unit simplex +#' P = gen_simplex(2,'H') +#' ball_vec = inner_ball(P) +#' +#' # compute an inscribed ball of the 3-dimensional unit cube in V-representation +#' P = gen_cube(3, 'V') +#' ball_vec = inner_ball(P) +#' @export +inner_ball <- function(P) { + .Call(`_volesti_inner_ball`, P) +} + +#' An internal Rccp function to read a SDPA format file +#' +#' @param input_file Name of the input file +#' +#' @keywords internal +#' +#' @return A list with two named items: an item "matrices" which is a list of the matrices and an vector "objFunction" +load_sdpa_format_file <- function(input_file = NULL) { + .Call(`_volesti_load_sdpa_format_file`, input_file) +} + +#' An internal Rccp function as a polytope generator +#' +#' @param kind_gen An integer to declare the type of the polytope. +#' @param Vpoly_gen A boolean parameter to declare if the requested polytope has to be in V-representation. +#' @param Zono_gen A boolean parameter to declare if the requested polytope has to be a zonotope. +#' @param dim_gen An integer to declare the dimension of the requested polytope. +#' @param m_gen An integer to declare the number of generators for the requested random zonotope or the number of vertices for a V-polytope. +#' @param seed Optional. A fixed seed for the random polytope generator. +#' +#' @keywords internal +#' +#' @return A numerical matrix describing the requested polytope +poly_gen <- function(kind_gen, Vpoly_gen, Zono_gen, dim_gen, m_gen, seed = NULL) { + .Call(`_volesti_poly_gen`, kind_gen, Vpoly_gen, Zono_gen, dim_gen, m_gen, seed) +} + +#' An internal Rccp function for the random rotation of a convex polytope +#' +#' @param P A convex polytope (H-, V-polytope or a zonotope). +#' @param T Optional. A rotation matrix. +#' @param seed Optional. A fixed seed for the random linear map generator. +#' +#' @keywords internal +#' +#' @return A matrix that describes the rotated polytope +rotating <- function(P, T = NULL, seed = NULL) { + .Call(`_volesti_rotating`, P, T, seed) +} + +#' Internal rcpp function for the rounding of a convex polytope +#' +#' @param P A convex polytope (H- or V-representation or zonotope). +#' @param settings A list to set the random walk and its walk length +#' @param seed Optional. A fixed seed for the number generator. +#' +#' @keywords internal +#' +#' @return A numerical matrix that describes the rounded polytope, a numerical matrix of the inverse linear transofmation that is applied on the input polytope, the numerical vector the the input polytope is shifted and the determinant of the matrix of the linear transformation that is applied on the input polytope. +rounding <- function(P, settings = NULL, seed = NULL) { + .Call(`_volesti_rounding`, P, settings, seed) +} + +#' Sample uniformly or normally distributed points from a convex Polytope (H-polytope, V-polytope, zonotope or intersection of two V-polytopes). +#' +#' Sample n points with uniform or multidimensional spherical gaussian -with a mode at any point- as the target distribution. +#' +#' @param P A convex polytope. It is an object from class (a) Hpolytope or (b) Vpolytope or (c) Zonotope or (d) VpolytopeIntersection. +#' @param n The number of points that the function is going to sample from the convex polytope. +#' @param random_walk Optional. A list that declares the random walk and some related parameters as follows: +#' \itemize{ +#' \item{\code{walk} }{ A string to declare the random walk: i) \code{'CDHR'} for Coordinate Directions Hit-and-Run, ii) \code{'RDHR'} for Random Directions Hit-and-Run, iii) \code{'BaW'} for Ball Walk, iv) \code{'BiW'} for Billiard walk, v) \code{'BCDHR'} boundary sampling by keeping the extreme points of CDHR or vi) \code{'BRDHR'} boundary sampling by keeping the extreme points of RDHR. The default walk is \code{'BiW'} for the uniform distribution or \code{'CDHR'} for the Gaussian distribution.} +#' \item{\code{walk_length} }{ The number of the steps per generated point for the random walk. The default value is 1.} +#' \item{\code{nburns} }{ The number of points to burn before start sampling.} +#' \item{\code{starting_point} }{ A \eqn{d}-dimensional numerical vector that declares a starting point in the interior of the polytope for the random walk. The default choice is the center of the ball as that one computed by the function \code{inner_ball()}.} +#' \item{\code{BaW_rad} }{ The radius for the ball walk.} +#' \item{\code{L} }{ The maximum length of the billiard trajectory.} +#' \item{\code{seed} }{ A fixed seed for the number generator.} +#' } +#' @param distribution Optional. A list that declares the target density and some related parameters as follows: +#' \itemize{ +#' \item{\code{density} }{ A string: (a) \code{'uniform'} for the uniform distribution or b) \code{'gaussian'} for the multidimensional spherical distribution. The default target distribution is uniform.} +#' \item{\code{variance} }{ The variance of the multidimensional spherical gaussian. The default value is 1.} +#' \item{\code{mode} }{ A \eqn{d}-dimensional numerical vector that declares the mode of the Gaussian distribution. The default choice is the center of the as that one computed by the function \code{inner_ball()}.} +#' } +#' +#' @return A \eqn{d\times n} matrix that contains, column-wise, the sampled points from the convex polytope P. +#' @examples +#' # uniform distribution from the 3d unit cube in H-representation using ball walk +#' P = gen_cube(3, 'H') +#' points = sample_points(P, n = 100, random_walk = list("walk" = "BaW", "walk_length" = 5)) +#' +#' # gaussian distribution from the 2d unit simplex in H-representation with variance = 2 +#' A = matrix(c(-1,0,0,-1,1,1), ncol=2, nrow=3, byrow=TRUE) +#' b = c(0,0,1) +#' P = Hpolytope(A = A, b = b) +#' points = sample_points(P, n = 100, distribution = list("density" = "gaussian", "variance" = 2)) +#' +#' # uniform points from the boundary of a 2-dimensional random H-polytope +#' P = gen_rand_hpoly(2,20) +#' points = sample_points(P, n = 100, random_walk = list("walk" = "BRDHR")) +#' +#' @export +sample_points <- function(P, n, random_walk = NULL, distribution = NULL) { + .Call(`_volesti_sample_points`, P, n, random_walk, distribution) +} + +#' The main function for volume approximation of a convex Polytope (H-polytope, V-polytope, zonotope or intersection of two V-polytopes) +#' +#' For the volume approximation can be used three algorithms. Either CoolingBodies (CB) or SequenceOfBalls (SOB) or CoolingGaussian (CG). An H-polytope with \eqn{m} facets is described by a \eqn{m\times d} matrix \eqn{A} and a \eqn{m}-dimensional vector \eqn{b}, s.t.: \eqn{P=\{x\ |\ Ax\leq b\} }. A V-polytope is defined as the convex hull of \eqn{m} \eqn{d}-dimensional points which correspond to the vertices of P. A zonotope is desrcibed by the Minkowski sum of \eqn{m} \eqn{d}-dimensional segments. +#' +#' @param P A convex polytope. It is an object from class a) Hpolytope or b) Vpolytope or c) Zonotope or d) VpolytopeIntersection. +#' @param settings Optional. A list that declares which algorithm, random walk and values of parameters to use, as follows: +#' \itemize{ +#' \item{\code{algorithm} }{ A string to set the algorithm to use: a) \code{'CB'} for CB algorithm, b) \code{'SoB'} for SOB algorithm or b) \code{'CG'} for CG algorithm. The defalut algorithm is \code{'CB'}.} +#' \item{\code{error} }{ A numeric value to set the upper bound for the approximation error. The default value is \eqn{1} for SOB algorithm and \eqn{0.1} otherwise.} +#' \item{\code{random_walk} }{ A string that declares the random walk method: a) \code{'CDHR'} for Coordinate Directions Hit-and-Run, b) \code{'RDHR'} for Random Directions Hit-and-Run, c) \code{'BaW'} for Ball Walk, or \code{'BiW'} for Billiard walk. For CB and SOB algorithms the default walk is \code{'CDHR'} for H-polytopes and \code{'BiW'} for the other representations. For CG algorithm the default walk is \code{'CDHR'} for H-polytopes and \code{'RDHR'} for the other representations.} +#' \item{\code{walk_length} }{ An integer to set the number of the steps for the random walk. The default value is \eqn{\lfloor 10 + d/10\rfloor} for \code{'SOB'} and \eqn{1} otherwise.} +#' \item{\code{win_len} }{ The length of the sliding window for CB or CG algorithm. The default value is \eqn{400+3d^2} for CB or \eqn{500+4d^2} for CG.} +#' \item{\code{hpoly} }{ A boolean parameter to use H-polytopes in MMC of CB algorithm when the input polytope is a zonotope. The default value is \code{TRUE} when the order of the zonotope is \eqn{<5}, otherwise it is \code{FALSE}.} +#' \item{\code{seed} }{ A fixed seed for the number generator.} +#' } +#' @param rounding A boolean parameter for rounding. The default value is \code{FALSE}. +#' +#' @references \cite{I.Z.Emiris and V. Fisikopoulos, +#' \dQuote{Practical polytope volume approximation,} \emph{ACM Trans. Math. Soft.,} 2018.}, +#' @references \cite{A. Chalkis and I.Z.Emiris and V. Fisikopoulos, +#' \dQuote{Practical Volume Estimation by a New Annealing Schedule for Cooling Convex Bodies,} \emph{CoRR, abs/1905.05494,} 2019.}, +#' @references \cite{B. Cousins and S. Vempala, \dQuote{A practical volume algorithm,} \emph{Springer-Verlag Berlin Heidelberg and The Mathematical Programming Society,} 2015.} +#' +#' +#' @return The approximation of the volume of a convex polytope. +#' @examples +#' +#' # calling SOB algorithm for a H-polytope (3d unit simplex) +#' HP = gen_cube(3,'H') +#' vol = volume(HP) +#' +#' # calling CG algorithm for a V-polytope (2d simplex) +#' VP = gen_simplex(2,'V') +#' vol = volume(VP, settings = list("algorithm" = "CG")) +#' +#' # calling CG algorithm for a 2-dimensional zonotope defined as the Minkowski sum of 4 segments +#' Z = gen_rand_zonotope(2, 4) +#' vol = volume(Z, settings = list("random_walk" = "RDHR", "walk_length" = 2)) +#' +#' @export +volume <- function(P, settings = NULL, rounding = FALSE) { + .Call(`_volesti_volume`, P, settings, rounding) +} + +#' Write a SDPA format file +#' +#' Outputs a spectrahedron (the matrices defining a linear matrix inequality) and a vector (the objective function) +#' to a SDPA format file. +#' +#' @param spectrahedron A spectrahedron in n dimensions; must be an object of class Spectrahedron +#' @param objective_function A numerical vector of length n +#' @param output_file Name of the output file +#' +#' @examples +#' \donttest{ +#' A0 = matrix(c(-1,0,0,0,-2,1,0,1,-2), nrow=3, ncol=3, byrow = TRUE) +#' A1 = matrix(c(-1,0,0,0,0,1,0,1,0), nrow=3, ncol=3, byrow = TRUE) +#' A2 = matrix(c(0,0,-1,0,0,0,-1,0,0), nrow=3, ncol=3, byrow = TRUE) +#' lmi = list(A0, A1, A2) +#' S = Spectrahedron(matrices = lmi) +#' objFunction = c(1,1) +#' write_sdpa_format_file(S, objFunction, "output.txt") +#' } +#' @export +write_sdpa_format_file <- function(spectrahedron, objective_function, output_file) { + invisible(.Call(`_volesti_write_sdpa_format_file`, spectrahedron, objective_function, output_file)) +} + +#' An internal Rccp function for the over-approximation of a zonotope +#' +#' @param Z A zonotope. +#' @param fit_ratio Optional. A boolean parameter to request the computation of the ratio of fitness. +#' @param settings Optional. A list that declares the values of the parameters of CB algorithm. +#' @param seed Optional. A fixed seed for the number generator. +#' +#' @keywords internal +#' +#' @return A List that contains a numerical matrix that describes the PCA approximation as a H-polytope and the ratio of fitness. +zono_approx <- function(Z, fit_ratio = NULL, settings = NULL, seed = NULL) { + .Call(`_volesti_zono_approx`, Z, fit_ratio, settings, seed) +} + diff --git a/R/SpectrahedronClass.R b/R/SpectrahedronClass.R new file mode 100644 index 00000000..822ce013 --- /dev/null +++ b/R/SpectrahedronClass.R @@ -0,0 +1,33 @@ +#' An R class to represent a Spectrahedron +#' +#' A spectrahedron is a convex body defined by a linear matrix inequality of the form \eqn{A_0 + x_1 A_1 + ... + x_n A_n \preceq 0}. +#' The matrices \eqn{A_i} are symmetric \eqn{m \times m} real matrices and \eqn{\preceq 0} denoted negative semidefiniteness. +#' +#' \describe{ +#' \item{matrices}{A List that contains the matrices \eqn{A_0, A_1, ..., A_n}.} +#' } +#' +#' @examples +#' A0 = matrix(c(-1,0,0,0,-2,1,0,1,-2), nrow=3, ncol=3, byrow = TRUE) +#' A1 = matrix(c(-1,0,0,0,0,1,0,1,0), nrow=3, ncol=3, byrow = TRUE) +#' A2 = matrix(c(0,0,-1,0,0,0,-1,0,0), nrow=3, ncol=3, byrow = TRUE) +#' lmi = list(A0, A1, A2) +#' S = Spectrahedron(matrices = lmi); +#' +#' @name Spectrahedron-class +#' @rdname Spectrahedron-class +#' @exportClass Spectrahedron +Spectrahedron <- setClass ( + # Class name + "Spectrahedron", + + # Defining slot type + representation ( + matrices = "list" + ), + + # Initializing slots + prototype = list( + matrices = list() + ) +) diff --git a/R/VpolytopeClass.R b/R/VpolytopeClass.R new file mode 100644 index 00000000..0bb34758 --- /dev/null +++ b/R/VpolytopeClass.R @@ -0,0 +1,37 @@ +#' An R class to represent a V-polytope +#' +#' A V-polytope is a convex polytope defined by the set of its vertices. +#' +#' \describe{ +#' \item{V}{An \eqn{m\times d} numerical matrix that contains the vertices row-wise.} +#' +#' \item{volume}{The volume of the polytope if it is known, \eqn{NaN} otherwise by default.} +#' +#' \item{type}{A character with default value 'Vpolytope', to declare the representation of the polytope.} +#' } +#' +#' @examples +#' V = matrix(c(2,3,-1,7,0,0),ncol = 2, nrow = 3, byrow = TRUE) +#' P = Vpolytope(V = V) +#' +#' @name Vpolytope-class +#' @rdname Vpolytope-class +#' @exportClass Vpolytope +Vpolytope <- setClass ( + # Class name + "Vpolytope", + + # Defining slot type + representation ( + V = "matrix", + volume = "numeric", + type = "character" + ), + + # Initializing slots + prototype = list( + V = as.matrix(0), + volume = as.numeric(NaN), + type = "Vpolytope" + ) +) diff --git a/R/VpolytopeIntersectionClass.R b/R/VpolytopeIntersectionClass.R new file mode 100644 index 00000000..d0764708 --- /dev/null +++ b/R/VpolytopeIntersectionClass.R @@ -0,0 +1,42 @@ +#' An R class to represent the intersection of two V-polytopes +#' +#' An intersection of two V-polytopes is defined by the intersection of the two coresponding convex hulls. +#' +#' \describe{ +#' \item{V1}{An \eqn{m\times d} numerical matrix that contains the vertices of the first V-polytope (row-wise).} +#' +#' \item{V2}{An \eqn{q\times d} numerical matrix that contains the vertices of the second V-polytope (row-wise).} +#' +#' \item{volume}{The volume of the polytope if it is known, \eqn{NaN} otherwise by default.} +#' +#' \item{type}{A character with default value 'VpolytopeIntersection', to declare the representation of the polytope.} +#' } +#' +#' @examples +#' P1 = gen_simplex(2,'V') +#' P2 = gen_cross(2,'V') +#' P = VpolytopeIntersection(V1 = P1@V, V2 = P2@V) +#' +#' @name VpolytopeIntersection-class +#' @rdname VpolytopeIntersection-class +#' @exportClass VpolytopeIntersection +VpolytopeIntersection <- setClass ( + # Class name + "VpolytopeIntersection", + + # Defining slot type + representation ( + V1 = "matrix", + V2 = "matrix", + volume = "numeric", + type = "character" + ), + + # Initializing slots + prototype = list( + V1 = as.matrix(0), + V2 = as.matrix(0), + volume = as.numeric(NaN), + type = "VpolytopeIntersection" + ) +) diff --git a/R/ZonotopeClass.R b/R/ZonotopeClass.R new file mode 100644 index 00000000..d226ae35 --- /dev/null +++ b/R/ZonotopeClass.R @@ -0,0 +1,37 @@ +#' An R class to represent a Zonotope +#' +#' A zonotope is a convex polytope defined by the Minkowski sum of \eqn{m} \eqn{d}-dimensional segments. +#' +#' \describe{ +#' \item{G}{An \eqn{m\times d} numerical matrix that contains the segments (or generators) row-wise} +#' +#' \item{volume}{The volume of the polytope if it is known, \eqn{NaN} otherwise by default.} +#' +#' \item{type}{A character with default value 'Zonotope', to declare the representation of the polytope.} +#' } +#' +#' @examples +#' G = matrix(c(2,3,-1,7,0,0),ncol = 2, nrow = 3, byrow = TRUE) +#' P = Zonotope(G = G) +#' +#' @name Zonotope-class +#' @rdname Zonotope-class +#' @exportClass Zonotope +Zonotope <- setClass ( + # Class name + "Zonotope", + + # Defining slot type + representation ( + G = "matrix", + volume = "numeric", + type = "character" + ), + + # Initializing slots + prototype = list( + G = as.matrix(0), + volume = as.numeric(NaN), + type = "Zonotope" + ) +) diff --git a/R/compute_indicators.R b/R/compute_indicators.R new file mode 100644 index 00000000..b16012e1 --- /dev/null +++ b/R/compute_indicators.R @@ -0,0 +1,133 @@ +#' Compute an indicator for each time period that describes the state of a market. +#' +#' Given a matrix that contains row-wise the assets' returns and a sliding window \code{win_length}, this function computes an approximation of the joint distribution (copula, e.g. see \url{https://en.wikipedia.org/wiki/Copula_(probability_theory)}) between portfolios' return and volatility in each time period defined by \code{win_len}. +#' For each copula it computes an indicator: If the indicator is large it corresponds to a crisis period and if it is small it corresponds to a normal period. +#' In particular, the periods over which the indicator is greater than 1 for more than 60 consecutive sliding windows are warnings and for more than 100 are crisis. The sliding window is shifted by one day. +#' +#' @param returns A \eqn{d}-dimensional vector that describes the direction of the first family of parallel hyperplanes. +#' @param parameters A list to set a parameterization. +#' \itemize{ +#' \item{win_length }{ The length of the sliding window. The default value is 60.} +#' \item{m } { The number of slices for the copula. The default value is 100.} +#' \item{n }{ The number of points to sample. The default value is \eqn{5\cdot 10^5}.} +#' \item{nwarning }{ The number of consecutive indicators larger than 1 required to declare a warning period. The default value is 60.} +#' \item{ncrisis }{ The number of consecutive indicators larger than 1 required to declare a crisis period. The default value is 100.} +#' \item{seed }{ A fixed seed for the number generator.} +#' } +#' +#' @references \cite{L. Cales, A. Chalkis, I.Z. Emiris, V. Fisikopoulos, +#' \dQuote{Practical volume computation of structured convex bodies, and an application to modeling portfolio dependencies and financial crises,} \emph{Proc. of Symposium on Computational Geometry, Budapest, Hungary,} 2018.} +#' +#' @return A list that contains the indicators and the corresponding vector that label each time period with respect to the market state: a) normal, b) crisis, c) warning. +#' +#' @examples +#' # simple example on random asset returns +#' asset_returns = replicate(10, rnorm(14)) +#' market_states_and_indicators = compute_indicators(asset_returns, +#' parameters = list("win_length" = 10, "m" = 10, "n" = 10000, "nwarning" = 2, "ncrisis" = 3)) +#' +#' @export +#' @useDynLib volesti, .registration=TRUE +#' @importFrom Rcpp evalCpp +#' @importFrom Rcpp loadModule +#' @importFrom "utils" "read.csv" +#' @importFrom "stats" "cov" +#' @importFrom "methods" "new" +compute_indicators <- function(returns, parameters = list("win_length" = 60, "m" = 100, "n" = 500000, "nwarning" = 60, "ncrisis" = 100)) { + + win_length = 60 + if (!is.null(parameters$win_length)) { + win_length = parameters$win_length + } + m=100 + if (!is.null(parameters$m)){ + m = parameters$m + } + n = 500000 + if (!is.null(parameters$n)){ + n = parameters$n + } + nwarning = 60 + if (!is.null(parameters$nwarning)) { + nwarning = parameters$nwarning + } + ncrisis = 100 + if (!is.null(parameters$ncrisis)) { + ncrisis = parameters$ncrisis + } + seed = NULL + if (!is.null(parameters$seed)) { + seed = parameters$seed + } + + nrows = dim(returns)[1] + nassets = dim(returns)[2] + wl = win_length-1 + + indicators = c() + for (i in 1:(nrows-wl)) { + + Win=i:(i+wl) + E = cov(returns[Win,]) + + compRet = rep(1,nassets) + for (j in 1:nassets) { + for (k in Win) { + compRet[j] = compRet[j] * (1 + returns[k, j]) + } + compRet[j] = compRet[j] - 1 + } + + cop = copula(r1 = compRet, sigma = E, m = m, n = n, seed = seed) + blue_mass = 0 + red_mass = 0 + + for (row in 1:m) { + for (col in 1:m) { + if (row-col<=0.2*m && row-col>=-0.2*m) { + if (row+col<0.8*m || row+col>1.2*m) { + red_mass = red_mass + cop[row,col] + } + } else { + if (row+col>=0.8*m+1 && row+col<=1.2*m+1) { + blue_mass = blue_mass + cop[row,col] + } + } + } + } + indicators = c(indicators, blue_mass / red_mass) + } + + N = length(indicators) + + index = 0 + set_index = FALSE + col = rep("normal", N) + + for (i in 1:N) { + + if(indicators[i]>1 && !set_index){ + index = i + set_index = TRUE + } else if (indicators[i]<1) { + if(set_index){ + if(i-index > nwarning-1 && i-index <= ncrisis-1){ + col[index:(i-1)] = "warning" + } else if(i-index > ncrisis-1) { + col[index:(i-1)] = "crisis" + } + } + set_index = FALSE + } + } + if(set_index){ + if(N-index+1 > nwarning-1 && N-index+1 <= ncrisis-1){ + col[index:i] = "warning" + } else if(N-index+1 > ncrisis-1) { + col[index:i] = "crisis" + } + } + + return(list("indicators" = indicators, market_states = col)) + +} diff --git a/R/gen_cross.R b/R/gen_cross.R new file mode 100644 index 00000000..a1f20f1a --- /dev/null +++ b/R/gen_cross.R @@ -0,0 +1,41 @@ +#' Generator function for cross polytopes +#' +#' This function generates the \eqn{d}-dimensional cross polytope in H- or V-representation. +#' +#' @param dimension The dimension of the cross polytope. +#' @param representation A string to declare the representation. It has to be \code{'H'} for H-representation or \code{'V'} for V-representation. Default valus is 'H'. +#' +#' @return A polytope class representing a cross polytope in H- or V-representation. +#' @examples +#' # generate a 10-dimensional cross polytope in H-representation +#' P = gen_cross(5, 'H') +#' +#' # generate a 15-dimension cross polytope in V-representation +#' P = gen_cross(15, 'V') +#' @export +gen_cross <- function(dimension, representation = 'H') { + + kind_gen = 2 + m_gen = 0 + if (representation == 'V') { + Vpoly_gen = TRUE + } else if (representation == 'H') { + Vpoly_gen = FALSE + } else { + stop('Not a known representation.') + } + + Mat = poly_gen(kind_gen, Vpoly_gen, FALSE, dimension, m_gen) + + # first column is the vector b + b = Mat[, 1] + Mat = Mat[, -c(1), drop = FALSE] + + if (Vpoly_gen) { + P = Vpolytope(V = Mat, volume = 2^dimension / prod(1:dimension)) + } else { + P = Hpolytope(A = -Mat, b = b, volume = 2^dimension / prod(1:dimension)) + } + + return(P) +} \ No newline at end of file diff --git a/R/gen_cube.R b/R/gen_cube.R new file mode 100644 index 00000000..b57de75a --- /dev/null +++ b/R/gen_cube.R @@ -0,0 +1,40 @@ +#' Generator function for hypercubes +#' +#' This function generates the \eqn{d}-dimensional unit hypercube \eqn{[-1,1]^d} in H- or V-representation. +#' +#' @param dimension The dimension of the hypercube +#' @param representation A string to declare the representation. It has to be \code{'H'} for H-representation or \code{'V'} for V-representation. Default valus is 'H'. +#' +#' @return A polytope class representing the unit \eqn{d}-dimensional hypercube in H- or V-representation. +#' @examples +#' # generate a 10-dimensional hypercube in H-representation +#' P = gen_cube(10, 'H') +#' +#' # generate a 15-dimension hypercube in V-representation +#' P = gen_cube(5, 'V') +#' @export +gen_cube <- function(dimension, representation = 'H') { + + kind_gen = 1 + m_gen = 0 + if (representation == 'V') { + Vpoly_gen = TRUE + } else if (representation == 'H') { + Vpoly_gen = FALSE + } else { + stop('Not a known representation.') + } + + Mat = poly_gen(kind_gen, Vpoly_gen, FALSE, dimension, m_gen) + + # first column is the vector b + b = Mat[, 1] + Mat = Mat[, -c(1), drop = FALSE] + if (Vpoly_gen) { + P = Vpolytope(V = Mat, volume = 2^dimension) + } else { + P = Hpolytope(A = -Mat, b = b, volume = 2^dimension) + } + + return(P) +} diff --git a/R/gen_prod_simplex.R b/R/gen_prod_simplex.R new file mode 100644 index 00000000..3bd304c4 --- /dev/null +++ b/R/gen_prod_simplex.R @@ -0,0 +1,29 @@ +#' Generator function for product of simplices +#' +#' This function generates a \eqn{2d}-dimensional polytope that is defined as the product of two \eqn{d}-dimensional unit simplices in H-representation. +#' +#' @param dimension The dimension of the simplices. +#' +#' @return A polytope class representing the product of the two \eqn{d}-dimensional unit simplices in H-representation. +#' +#' @examples +#' # generate a product of two 5-dimensional simplices. +#' P = gen_prod_simplex(5) +#' @export +gen_prod_simplex <- function(dimension) { + + kind_gen = 4 + m_gen = 0 + Vpoly_gen = FALSE + + Mat = poly_gen(kind_gen, Vpoly_gen, FALSE, dimension, m_gen) + + # first column is the vector b + b = Mat[, 1] + Mat = Mat[, -c(1), drop = FALSE] + + P = Hpolytope(A = -Mat, b = b, volume = (1/prod(1:dimension))^2) + + return(P) + +} diff --git a/R/gen_rand_hpoly.R b/R/gen_rand_hpoly.R new file mode 100644 index 00000000..9e1a4fb4 --- /dev/null +++ b/R/gen_rand_hpoly.R @@ -0,0 +1,45 @@ +#' Generator function for random H-polytopes +#' +#' This function generates a \eqn{d}-dimensional polytope in H-representation with \eqn{m} facets. We pick \eqn{m} random hyperplanes tangent on the \eqn{d}-dimensional unit hypersphere as facets. +#' +#' @param dimension The dimension of the convex polytope. +#' @param nfacets The number of the facets. +#' @param generator A list that could contain two elements. +#' \itemize{ +#' \item{constants }{ To declare how to set the constants \eqn{b_i} for each facets: (i) 'sphere', each hyperplane is tangent to the hypersphere of radius 10, (ii) 'uniform' for each \eqn{b_i} the generator picks a uniform number from \eqn{(0,1)}. The defalut value is 'sphere'.} +#' \item{seed }{ Optional. A fixed seed for the number generator.} +#' } +#' +#' @return A polytope class representing a H-polytope. +#' @examples +#' # generate a 10-dimensional polytope with 50 facets +#' P = gen_rand_hpoly(10, 50) +#' @export +gen_rand_hpoly <- function(dimension, nfacets, generator = list('constants' = 'sphere')) { + + seed = NULL + if (!is.null(generator$seed)) { + seed = generator$seed + } + + if (is.null(generator$constants)) { + kind_gen = 6 + } else if (generator$constants == 'sphere'){ + kind_gen = 6 + } else if (generator$constants == 'uniform') { + kind_gen = 7 + } else { + stop("Wrong generator!") + } + Vpoly_gen = FALSE + + Mat = poly_gen(kind_gen, Vpoly_gen, FALSE, dimension, nfacets, seed) + + # first column is the vector b + b = Mat[, 1] + Mat = Mat[, -c(1), drop = FALSE] + + P = Hpolytope(A = Mat, b = b) + + return(P) +} diff --git a/R/gen_rand_vpoly.R b/R/gen_rand_vpoly.R new file mode 100644 index 00000000..3486f2e1 --- /dev/null +++ b/R/gen_rand_vpoly.R @@ -0,0 +1,44 @@ +#' Generator function for random V-polytopes +#' +#' This function generates a \eqn{d}-dimensional polytope in V-representation with \eqn{m} vertices. We pick \eqn{m} random points from the boundary of the \eqn{d}-dimensional unit hypersphere as vertices. +#' +#' @param dimension The dimension of the convex polytope. +#' @param nvertices The number of the vertices. +#' @param generator A list that could contain two elements. +#' \itemize{ +#' \item{body }{ the body that the generator samples uniformly the vertices from: (i) 'cube' or (ii) 'sphere', the default value is 'sphere'.} +#' \item{seed }{ Optional. A fixed seed for the number generator.} +#' } +#' +#' @return A polytope class representing a V-polytope. +#' @examples +#' # generate a 10-dimensional polytope defined as the convex hull of 25 random vertices +#' P = gen_rand_vpoly(10, 25) +#' @export +gen_rand_vpoly <- function(dimension, nvertices, generator = list('body' = 'sphere')) { + + seed = NULL + if (!is.null(generator$seed)) { + seed = generator$seed + } + + if (is.null(generator$body)) { + kind_gen = 4 + } else if (generator$body == 'cube'){ + kind_gen = 5 + } else if (generator$body == 'sphere') { + kind_gen = 4 + } else { + stop("Wrong generator!") + } + + Mat = poly_gen(kind_gen, TRUE, FALSE, dimension, nvertices, seed) + + # first column is the vector b + b = Mat[, 1] + Mat = Mat[, -c(1), drop = FALSE] + + P = Vpolytope(V = Mat) + + return(P) +} diff --git a/R/gen_rand_zonotope.R b/R/gen_rand_zonotope.R new file mode 100644 index 00000000..656f844b --- /dev/null +++ b/R/gen_rand_zonotope.R @@ -0,0 +1,48 @@ +#' Generator function for zonotopes +#' +#' This function generates a random \eqn{d}-dimensional zonotope defined by the Minkowski sum of \eqn{m} \eqn{d}-dimensional segments. +#' The function considers \eqn{m} random directions in \eqn{R^d}. There are three strategies to pick the length of each segment: a) it is uniformly sampled from \eqn{[0,100]}, b) it is random from \eqn{\mathcal{N}(50,(50/3)^2)} truncated to \eqn{[0,100]}, c) it is random from \eqn{Exp(1/30)} truncated to \eqn{[0,100]}. +#' +#' @param dimension The dimension of the zonotope. +#' @param nsegments The number of segments that generate the zonotope. +#' @param generator A list that could contain two elements. +#' \itemize{ +#' \item{distribution }{ the distribution to pick the length of each segment from \eqn{[0,100]}: (i) 'uniform', (ii) 'gaussian' or (iii) 'exponential', the default value is 'uniform.} +#' \item {seed }{ Optional. A fixed seed for the number generator.} +#' } +#' +#' @return A polytope class representing a zonotope. +#' +#' @examples +#' # generate a 10-dimensional zonotope defined by the Minkowski sum of 20 segments +#' P = gen_rand_zonotope(10, 20) +#' @export +gen_rand_zonotope <- function(dimension, nsegments, generator = list('distribution' = 'uniform')) { + + seed = NULL + if (!is.null(generator$seed)) { + seed = generator$seed + } + + if (is.null(generator$distribution)) { + kind_gen = 1 + } else if (generator$distribution == 'gaussian') { + kind_gen = 2 + } else if (generator$distribution == 'exponential') { + kind_gen = 3 + } else if (generator$distribution == 'uniform'){ + kind_gen = 1 + } else { + stop("Wrong generator!") + } + + Mat = poly_gen(kind_gen, FALSE, TRUE, dimension, nsegments, seed) + + # first column is the vector b + b = Mat[, 1] + Mat = Mat[, -c(1), drop = FALSE] + + P = Zonotope(G = Mat) + + return(P) +} diff --git a/R/gen_simplex.R b/R/gen_simplex.R new file mode 100644 index 00000000..48fbfcbc --- /dev/null +++ b/R/gen_simplex.R @@ -0,0 +1,41 @@ +#' Generator function for simplices +#' +#' This function generates the \eqn{d}-dimensional unit simplex in H- or V-representation. +#' +#' @param dimension The dimension of the unit simplex. +#' @param representation A string to declare the representation. It has to be \code{'H'} for H-representation or \code{'V'} for V-representation. Default valus is 'H'. +#' +#' @return A polytope class representing the \eqn{d}-dimensional unit simplex in H- or V-representation. +#' @examples +#' # generate a 10-dimensional simplex in H-representation +#' PolyList = gen_simplex(10, 'H') +#' +#' # generate a 20-dimensional simplex in V-representation +#' P = gen_simplex(20, 'V') +#' @export +gen_simplex <- function(dimension, representation = 'H') { + + kind_gen = 3 + m_gen = 0 + if (representation == "V") { + Vpoly_gen = TRUE + } else if (representation == "H") { + Vpoly_gen = FALSE + } else { + stop('Not a known representation.') + } + + Mat = poly_gen(kind_gen, Vpoly_gen, FALSE, dimension, m_gen) + + # first column is the vector b + b = Mat[, 1] + Mat = Mat[, -c(1), drop = FALSE] + + if (Vpoly_gen) { + P = Vpolytope(V = Mat, volume = 1/prod(1:dimension)) + } else { + P = Hpolytope(A = -Mat, b = b, volume = 1/prod(1:dimension)) + } + + return(P) +} diff --git a/R/gen_skinny_cube.R b/R/gen_skinny_cube.R new file mode 100644 index 00000000..d31c19de --- /dev/null +++ b/R/gen_skinny_cube.R @@ -0,0 +1,28 @@ +#' Generator function for skinny hypercubes +#' +#' This function generates a \eqn{d}-dimensional skinny hypercube \eqn{[-1,1]^{d-1}\times [-100,100]}. +#' +#' @param dimension The dimension of the skinny hypercube. +#' +#' @return A polytope class representing the \eqn{d}-dimensional skinny hypercube in H-representation. +#' +#' @examples +#' # generate a 10-dimensional skinny hypercube. +#' P = gen_skinny_cube(10) +#' @export +gen_skinny_cube <- function(dimension) { + + kind_gen = 5 + m_gen = 0 + Vpoly_gen = FALSE + + Mat = poly_gen(kind_gen, Vpoly_gen, FALSE, dimension, m_gen) + + # first column is the vector b + b = Mat[, 1] + Mat = Mat[, -c(1), drop = FALSE] + + P = Hpolytope(A = -Mat, b = b, volume = 2^(dimension -1)*200) + + return(P) +} diff --git a/R/read_sdpa_file.R b/R/read_sdpa_file.R new file mode 100644 index 00000000..ebabb8bd --- /dev/null +++ b/R/read_sdpa_file.R @@ -0,0 +1,26 @@ +#' Read a SDPA format file +#' +#' Read a SDPA format file and return a spectrahedron (an object of class Spectrahedron) which is defined by +#' the linear matrix inequality in the input file, and the objective function. +#' +#' @param path Name of the input file +#' +#' @return A list with two named items: an item "matrices" which is an object of class Spectrahedron and an vector "objFunction" +#' +#' @examples +#' path = system.file('extdata', package = 'volesti') +#' l = read_sdpa_format_file(paste0(path,'/sdpa_n2m3.txt')) +#' Spectrahedron = l$spectrahedron +#' objFunction = l$objFunction +#' @export +#' @useDynLib volesti, .registration=TRUE +#' @importFrom Rcpp evalCpp +#' @importFrom Rcpp loadModule +#' @importFrom "methods" "new" +#' @exportPattern "^[[:alpha:]]+" +read_sdpa_format_file <- function(path){ + l = load_sdpa_format_file(path) + S = Spectrahedron(matrices = l$matrices) + + return(list("spectrahedron"=S, "objFunction"= l$objFunction)) +} diff --git a/R/rotate_polytope.R b/R/rotate_polytope.R new file mode 100644 index 00000000..26837e01 --- /dev/null +++ b/R/rotate_polytope.R @@ -0,0 +1,75 @@ +#' Apply a random rotation to a convex polytope (H-polytope, V-polytope, zonotope or intersection of two V-polytopes) +#' +#' Given a convex H- or V- polytope or a zonotope or an intersection of two V-polytopes as input, this function applies (a) a random rotation or (b) a given rotation by an input matrix \eqn{T}. +#' +#' @param P A convex polytope. It is an object from class (a) Hpolytope, (b) Vpolytope, (c) Zonotope, (d) intersection of two V-polytopes. +#' @param rotation A list that contains (a) the rotation matrix T and (b) the 'seed' to set a spesific seed for the number generator. +#' +#' @return A list that contains the rotated polytope and the matrix \eqn{T} of the linear transformation. +#' +#' @details Let \eqn{P} be the given polytope and \eqn{Q} the rotated one and \eqn{T} be the matrix of the linear transformation. +#' \itemize{ +#' \item{If \eqn{P} is in H-representation and \eqn{A} is the matrix that contains the normal vectors of the facets of \eqn{Q} then \eqn{AT} contains the normal vactors of the facets of \eqn{P}.} +#' \item{If \eqn{P} is in V-representation and \eqn{V} is the matrix that contains column-wise the vertices of \eqn{Q} then \eqn{T^TV} contains the vertices of \eqn{P}.} +#' \item{If \eqn{P} is a zonotope and \eqn{G} is the matrix that contains column-wise the generators of \eqn{Q} then \eqn{T^TG} contains the generators of \eqn{P}.} +#' \item{If \eqn{M} is a matrix that contains column-wise points in \eqn{Q} then \eqn{T^TM} contains points in \eqn{P}.} +#' } +#' @examples +#' # rotate a H-polytope (2d unit simplex) +#' P = gen_simplex(2, 'H') +#' poly_matrix_list = rotate_polytope(P) +#' +#' # rotate a V-polytope (3d cube) +#' P = gen_cube(3, 'V') +#' poly_matrix_list = rotate_polytope(P) +#' +#' # rotate a 5-dimensional zonotope defined by the Minkowski sum of 15 segments +#' Z = gen_rand_zonotope(3, 6) +#' poly_matrix_list = rotate_polytope(Z) +#' @export +rotate_polytope <- function(P, rotation = list()) { + + seed = NULL + if (!is.null(rotation$seed)) { + seed = rotation$seed + } + + if (is.null(rotation$T)) { + T = NULL + } else { + T = rotation$T + } + + #call rcpp rotating function + Mat = rotating(P, T, seed) + + type = P@type + + if (type == 'Vpolytope') { + n = dim(P@V)[2] + }else if (type == 'Zonotope') { + n = dim(P@G)[2] + } else { + n = dim(P@A)[2] + } + + m = dim(Mat)[2] - n + Tr = Mat[, -c(1:(dim(Mat)[2]-n)), drop = FALSE] + Tr = Tr[1:n, 1:n] + Mat = t(Mat[, 1:m]) + + # first column is the vector b + b = Mat[, 1] + + # remove first column + A = Mat[, -c(1), drop = FALSE] + + if (type == 'Vpolytope') { + PP = Vpolytope(V = A) + }else if (type == 'Zonotope') { + PP = Zonotope(G = A) + } else { + PP = Hpolytope(A = A, b = b) + } + return(list("P" = PP, "T" = Tr)) +} diff --git a/R/round_polytope.R b/R/round_polytope.R new file mode 100644 index 00000000..32b92bd4 --- /dev/null +++ b/R/round_polytope.R @@ -0,0 +1,62 @@ +#' Apply rounding to a convex polytope (H-polytope, V-polytope or a zonotope) +#' +#' Given a convex H or V polytope or a zonotope as input this function brings the polytope in rounded position based on minimum volume enclosing ellipsoid of a pointset. +#' +#' @param P A convex polytope. It is an object from class (a) Hpolytope or (b) Vpolytope or (c) Zonotope. +#' @param settings Optional. A list to parameterize the method by the random walk. +#' \itemize{ +#' \item{\code{random_walk} }{ The random walk to sample uniformly distributed points: (a) \code{'CDHR'} for Coordinate Directions Hit-and-Run, (b) \code{'RDHR'} for Random Directions Hit-and-Run or (c) \code{'BiW'} for Billiard walk. The default random walk is \code{'CDHR'} for H-polytopes and \code{'BiW'} for the rest of the representations.} +#' \item{\code{walk_length} }{ The walk length of the random walk. The default value is \eqn{10 + 10d} for \code{'CDHR'} or \code{'RDHR'} and 2 for \code{'BiW'}.} +#' \item{\code{seed} }{ Optional. A fixed seed for the number generator.} +#' } +#' +#' @return A list with 4 elements: (a) a polytope of the same class as the input polytope class and (b) the element "T" which is the matrix of the inverse linear transformation that is applied on the input polytope, (c) the element "shift" which is the opposite vector of that which has shifted the input polytope, (d) the element "round_value" which is the determinant of the square matrix of the linear transformation that is applied on the input polytope. +#' +#' @references \cite{I.Z.Emiris and V. Fisikopoulos, +#' \dQuote{Practical polytope volume approximation,} \emph{ACM Trans. Math. Soft.,} 2018.}, +#' @references \cite{Michael J. Todd and E. Alper Yildirim, +#' \dQuote{On Khachiyan’s Algorithm for the Computation of Minimum Volume Enclosing Ellipsoids,} \emph{Discrete Applied Mathematics,} 2007.} +#' +#' @examples +#' # rotate a H-polytope (2d unit simplex) +#' A = matrix(c(-1,0,0,-1,1,1), ncol=2, nrow=3, byrow=TRUE) +#' b = c(0,0,1) +#' P = Hpolytope(A = A, b = b) +#' listHpoly = round_polytope(P) +#' +#' # rotate a V-polytope (3d unit cube) using Random Directions HnR with step equal to 50 +#' P = gen_cube(3, 'V') +#' ListVpoly = round_polytope(P) +#' +#' # round a 2-dimensional zonotope defined by 6 generators using ball walk +#' Z = gen_rand_zonotope(2,6) +#' ListZono = round_polytope(Z) +#' @export +round_polytope <- function(P, settings = list()){ + + seed = NULL + if (!is.null(settings$seed)) { + seed = settings$seed + } + + ret_list = rounding(P, settings, seed) + + #get the matrix that describes the polytope + Mat = ret_list$Mat + + # first column is the vector b + b = Mat[, 1] + + # remove first column + A = Mat[, -c(1), drop = FALSE] + + type = P@type + if (type == 'Vpolytope') { + PP = list("P" = Vpolytope(V = A), "T" = ret_list$T, "shift" = ret_list$shift, "round_value" = ret_list$round_value) + }else if (type == 'Zonotope') { + PP = list("P" = Zonotope(G = A), "T" = ret_list$T, "shift" = ret_list$shift, "round_value" = ret_list$round_value) + } else { + PP = list("P" = Hpolytope(A = A, b = b), "T" = ret_list$T, "shift" = ret_list$shift, "round_value" = ret_list$round_value) + } + return(PP) +} diff --git a/R/zonotope_approximation.R b/R/zonotope_approximation.R new file mode 100644 index 00000000..52387076 --- /dev/null +++ b/R/zonotope_approximation.R @@ -0,0 +1,48 @@ +#' A function to over-approximate a zonotope with PCA method and to evaluate the approximation by computing a ratio of fitness. +#' +#' For the evaluation of the PCA method the exact volume of the approximation body is computed and the volume of the input zonotope is computed by CoolingBodies algorithm. The ratio of fitness is \eqn{R=vol(P) / vol(P_{red})}, where \eqn{P_{red}} is the approximate polytope. +#' +#' @param Z A zonotope. +#' @param fit_ratio Optional. A boolean parameter to request the computation of the ratio of fitness. +#' @param settings Optional. A list that declares the values of the parameters of CB algorithm as follows: +#' \itemize{ +#' \item{\code{error} }{ A numeric value to set the upper bound for the approximation error. The default value is \eqn{0.1}.} +#' \item{\code{walk_length} }{ An integer to set the number of the steps for the random walk. The default value is \eqn{1}.} +#' \item{\code{win_len} }{ The length of the sliding window for CB algorithm. The default value is \eqn{250}.} +#' \item{\code{hpoly} }{ A boolean parameter to use H-polytopes in MMC of CB algorithm. The default value is \code{TRUE} when the order of the zonotope is \eqn{<5}, otherwise it is \code{FALSE}.} +#' \item{\code{seed} }{ Optional. A fixed seed for the number generator.} +#' } +#' +#' @return A list that contains the approximation body in H-representation and the ratio of fitness +#' +#' @references \cite{A.K. Kopetzki and B. Schurmann and M. Althoff, +#' \dQuote{Methods for Order Reduction of Zonotopes,} \emph{IEEE Conference on Decision and Control,} 2017.} +#' +#' @examples +#' # over-approximate a 2-dimensional zonotope with 10 generators and compute the ratio of fitness +#' Z = gen_rand_zonotope(2, 8) +#' retList = zonotope_approximation(Z = Z) +#' +#' @export +zonotope_approximation <- function(Z, fit_ratio = FALSE, settings = list('error' = 0.1, 'walk_length' = 1, 'win_len' = 250, 'hpoly' = FALSE)){ + + seed = NULL + if (!is.null(settings$seed)) { + seed = settings$seed + } + + ret_list = zono_approx(Z, fit_ratio, settings, seed) + + Mat = ret_list$Mat + + # first column is the vector b + b = Mat[, 1] + + # remove first column + A = Mat[, -c(1), drop = FALSE] + PP = list("P" = Hpolytope(A = A, b = b), "fit_ratio" = ret_list$fit_ratio) + + return(PP) + +} + diff --git a/README.md b/README.md new file mode 100644 index 00000000..3d6ef674 --- /dev/null +++ b/README.md @@ -0,0 +1,47 @@ +# Volume computation and sampling + +## About +The `volesti` package provides [R](https://www.r-project.org/) with functions for volume estimation and sampling. In particular, it provides an R interface for the C++ library [**volesti**](https://github.com/GeomScale/volesti). + +`volesti` computes approximations of volume of polytopes given as a set of points or linear inequalities or as a Minkowski sum of segments (zonotopes). There are algorithms for volume approximation as well as algorithms for sampling, rounding and rotating polytopes. Last but not least, `volesti` provides implementations of geometric algorithms to compute the score of a portfolio given asset returns and to detect financial crises in stock markets. + +## Download and install + +* The latest stable version is available from CRAN. +* The latest development version is available on Github `https://github.com/GeomScale/Rvolesti` + +To use the development version of `volesti` that includes the C++ code, you need to clone the repository and fetch the submodule. Follow these steps: + +* Clone the main `Rvolesti` repository. +* Change into the volesti directory: +``` +cd volesti +``` +* Fetch the submodule from the repository https://github.com/Soumya624/volesti: +``` +git submodule update --init --recursive +``` +* Install volesti by running: +``` +install.packages("volesti") +``` + +The package-dependencies are: `Rcpp`, `RcppEigen`, `BH`. + +## Documentation + +* [Using the R Interface](https://github.com/GeomScale/volesti/blob/v1.1.1/doc/r_interface.md) +* [Wikipage with Tutorials and Demos](https://github.com/GeomScale/volesti/wiki) +* [Tutorial given to PyData meetup](https://vissarion.github.io/tutorials/volesti_tutorial_pydata.html) + + +## Credits + +* [Contributors and Package History](https://github.com/GeomScale/volesti/blob/v1.1.1/doc/credits.md) +* [List of Publications](https://github.com/GeomScale/volesti/blob/v1.1.1/doc/publications.md) + +Copyright (c) 2012-2020 Vissarion Fisikopoulos +Copyright (c) 2018-2020 Apostolos Chalkis + +You may redistribute or modify the software under the GNU Lesser General Public License as published by Free Software Foundation, either version 3 of the License, or (at your option) any later version. It is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY. + diff --git a/inst/AUTHORS b/inst/AUTHORS new file mode 100644 index 00000000..956eb325 --- /dev/null +++ b/inst/AUTHORS @@ -0,0 +1,4 @@ +1. Bojan Nikolic . We have modified the implementations of Khachiyan's Algorithm by B. Nikolic from bnmin1-1.11 package for the Computation of Minimum Volume Enclosing Ellipsoids in /src/external/minimum_ellipsoid. + +2. Kjell Konis , Stefan I. Larimore and Timothy A. Davis , Kjell Eikland, Michel Berkelaar, Richard Stallman, Authors of lpsolve package , in /src/external/lpsolve. + diff --git a/inst/COPYRIGHTS b/inst/COPYRIGHTS new file mode 100644 index 00000000..39cabd5a --- /dev/null +++ b/inst/COPYRIGHTS @@ -0,0 +1,6 @@ +All files in src/external are taken from +(i) lpsolve (https://cran.r-project.org/src/contrib/Archive/lpSolveAPI) version 5.5.2.0, +(ii) bnmin1 (https://www.mrao.cam.ac.uk/~bn204/oof/bnmin1.html) version 1.11 + +Copyrights and modification details are explicitly described at the beginning of each of those files. + diff --git a/inst/checks/README.md b/inst/checks/README.md new file mode 100644 index 00000000..a21b374b --- /dev/null +++ b/inst/checks/README.md @@ -0,0 +1,31 @@ +| Check | cran-name | ERRORS | WARNINGS | NOTES | URL | +| ----------------------- |-------------|:-------------:| :-------: | :---: | -- | +| `macOS 10.9 Mavericks, R-oldrel (experimental)` | `r-oldrel-osx-x86_64` | 0 | 0 | 0 | [PREPERROR](https://builder.r-hub.io/status/volesti_1.0.2.tar.gz-4561558b7b96f9d9ab4662b565f1b871)* | +| `macOS 10.11 El Capitan, R-release (experimental)` | `r-release-osx-x86_64` | 0 | 0 | 0 | [OK](https://builder.r-hub.io/status/volesti_1.0.2.tar.gz-b02c328852acddb3fcd3048f9f327055) | +| `Windows Server 2008 R2 SP1, R-oldrel, 32/64 bit` | `r-oldrel-windows-ix86+x86_64` | 0 | 0 | 0 | [OK](https://builder.r-hub.io/status/volesti_1.0.2.tar.gz-f43945e177bd0a39f2a4effa8f6e9c88) | +| `Windows Server 2008 R2 SP1, R-release, 32/64 bit` | `r-release-windows-ix86+x86_64` | 0 | 0 | 0 | [OK](https://builder.r-hub.io/status/volesti_1.0.2.tar.gz-707ffbeaa5fb7f3b00a1cff357e63c7f) | +| `Windows Server 2008 R2 SP1, R-patched, 32/64 bit` | `N/A` | 0 | 0 | 0 | [OK](https://builder.r-hub.io/status/volesti_1.0.2.tar.gz-3376f9b5f6a17ba0a2c30b0cbf0bf917) | +| `Windows Server 2008 R2 SP1, R-devel, 32/64 bit` | `r-devel-windows-ix86+x86_64` | 0 | 0 | 0 | [OK](https://builder.r-hub.io/status/volesti_1.0.2.tar.gz-901e108dfc1802c6f8726f162c95e597) | +| `Windows Server 2012, R-devel, Rtools4.0, 32/64 bit (experimental)` | `N/A` | 0 | 0 | 1 | [NOTE](https://builder.r-hub.io/status/volesti_1.0.2.tar.gz-c48dc0fa6839ef8b509c73c48f0ca887) | +| `Oracle Solaris 10, x86, 32 bit, R-patched (experimental)` | `r-patched-solaris-x86` | 0 | 0 | 0 | [OK](https://builder.r-hub.io/status/volesti_1.0.2.tar.gz-39bda3d243591a660eb3a4d2cdb4ac3f) | +| `Debian Linux, R-devel, GCC` | `r-devel-linux-x86_64-debian-gcc` | 0 | 0 | 1 | [NOTE](https://builder.r-hub.io/status/volesti_1.0.2.tar.gz-907c4d873965c64d435bc672335063eb) | +| `Debian Linux, R-devel, GCC, no long double` | `N/A` | 0 | 0 | 1 | [NOTE](https://builder.r-hub.io/status/volesti_1.0.2.tar.gz-cb5a82d9e3112bb706e6c767e778e3a5) | +| `Debian Linux, R-release, GCC` | `r-release-linux-x86_64` | 0 | 0 | 1 | [NOTE](https://builder.r-hub.io/status/volesti_1.0.2.tar.gz-4c142b0323d2f174d53a761564e0b498) | +| `Debian Linux, R-patched, GCC` | `r-patched-linux-x86_64` | 0 | 0 | 1 | [NOTE](https://builder.r-hub.io/status/volesti_1.0.2.tar.gz-031047558bf41664b387180f558adfd1) | +| `Debian Linux, R-devel, clang, ISO-8859-15 locale` | `r-devel-linux-x86_64-debian-clang` | 0 | 0 | 1 | [NOTE](https://builder.r-hub.io/status/volesti_1.0.2.tar.gz-eecaf29af2fd88fdf148667c5463e141) | +| `Fedora Linux, R-devel, GCC` | `r-devel-linux-x86_64-fedora-gcc` | 0 | 0 | 1 | [NOTE](https://builder.r-hub.io/status/volesti_1.0.2.tar.gz-f919c24153e9afd09ef0654d4799fb12) | +| `Fedora Linux, R-devel, clang, gfortran` | `r-devel-linux-x86_64-fedora-clang` | 0 | 0 | 1 | [NOTE](https://builder.r-hub.io/status/volesti_1.0.2.tar.gz-0efbc2539568b86e2fa716db1a1231d6) | +| `Ubuntu Linux 16.04 LTS, R-devel, GCC` | `N/A` | 0 | 0 | 1 | [NOTE](https://builder.r-hub.io/status/volesti_1.0.2.tar.gz-7d47fbd13a90cb4c3712232cfa320fc3) | +| `Ubuntu Linux 16.04 LTS, R-release, GCC` |`N/A` | 0 | 0 | 1 | [NOTE](https://builder.r-hub.io/status/volesti_1.0.2.tar.gz-6911a48496c075be151e7ba5d6326fbb) | +| `CentOS 6, stock R from EPEL` |`N/A` | 1 | 0 | 0 | [ERROR](https://builder.r-hub.io/status/volesti_1.0.2.tar.gz-6f5d27f5b548d46da8fcafab677b86e4)** | +| `CentOS 6 with Redhat Developer Toolset, R from EPEL` | `N/A` | 0 | 0 | 1 | [NOTE](https://builder.r-hub.io/status/volesti_1.0.2.tar.gz-efce07b30b0a73c6c4f39db5fed70efa) | +| `Debian Linux, R-devel, GCC ASAN/UBSAN` *** | `N/A` | | | | [SUCCESS](https://builder.r-hub.io/status/volesti_1.0.2.tar.gz-1d695055bc3e2facdc252827c5d27f1b) | +| `Ubuntu Linux 16.04 LTS, R-devel with rchk` *** | `N/A` | | | | [SUCCESS](https://builder.r-hub.io/status/volesti_1.0.2.tar.gz-a35e57a5f29f45f2e74e07fd3b72c9e5) | + +All the checks above have performed via [rhub](https://cran.r-project.org/web/packages/rhub/index.html) package. For more details on system characteristics see [rhub's vignettes](https://cran.r-project.org/web/packages/rhub/vignettes/rhub.html). **cran-name** column shows the correspondance to [CRAN package check flavors](https://cran.r-project.org/web/checks/check_flavors.html) + +*The check on `macOS 10.9 Mavericks, R-oldrel (experimental)` fails because the system fails to install `RcppEigen`. You can see our [issue](https://github.com/r-hub/rhub/issues/280) at [rhub's github page](https://github.com/r-hub/rhub). + +** This is expected since our C++ code needs C++11 standard at least while this systems uses gcc4.4.X which does not support C++11 + +*** Checks for compiled code diff --git a/inst/extdata/birk10.ine b/inst/extdata/birk10.ine new file mode 100644 index 00000000..eb07974e --- /dev/null +++ b/inst/extdata/birk10.ine @@ -0,0 +1,106 @@ +birk10.ine +H-representation +begin + 100 82 integer +-8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +1 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 +1 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 +1 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 +1 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 +1 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 +1 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 +1 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 +1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 +1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 +1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +1 0 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 +1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 -1 +0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +end +input_incidence diff --git a/inst/extdata/birk11.ine b/inst/extdata/birk11.ine new file mode 100644 index 00000000..78999dee --- /dev/null +++ b/inst/extdata/birk11.ine @@ -0,0 +1,127 @@ +birk11.ine +H-representation +begin + 121 101 integer +-9 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +1 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 +1 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 +1 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 +1 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 +1 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 +1 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 +1 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 +1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 +1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 +1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 +1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +1 0 0 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 0 +1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +end +input_incidence diff --git a/inst/extdata/birk3.ine b/inst/extdata/birk3.ine new file mode 100644 index 00000000..3a09c642 --- /dev/null +++ b/inst/extdata/birk3.ine @@ -0,0 +1,15 @@ +birk3.ine +H-representation +begin + 9 5 integer + -1 1 1 1 1 + 1 -1 0 -1 0 + 1 0 -1 0 -1 + 1 -1 -1 0 0 + 1 0 0 -1 -1 + 0 1 0 0 0 + 0 0 1 0 0 + 0 0 0 1 0 + 0 0 0 0 1 +end +input_incidence diff --git a/inst/extdata/birk4.ine b/inst/extdata/birk4.ine new file mode 100644 index 00000000..f7515b94 --- /dev/null +++ b/inst/extdata/birk4.ine @@ -0,0 +1,22 @@ +birk4.ine +H-representation +begin + 16 10 integer +-2 1 1 1 1 1 1 1 1 1 + 1 -1 0 0 -1 0 0 -1 0 0 + 1 0 -1 0 0 -1 0 0 -1 0 + 1 0 0 -1 0 0 -1 0 0 -1 + 1 -1 -1 -1 0 0 0 0 0 0 + 1 0 0 0 -1 -1 -1 0 0 0 + 1 0 0 0 0 0 0 -1 -1 -1 + 0 1 0 0 0 0 0 0 0 0 + 0 0 1 0 0 0 0 0 0 0 + 0 0 0 1 0 0 0 0 0 0 + 0 0 0 0 1 0 0 0 0 0 + 0 0 0 0 0 1 0 0 0 0 + 0 0 0 0 0 0 1 0 0 0 + 0 0 0 0 0 0 0 1 0 0 + 0 0 0 0 0 0 0 0 1 0 + 0 0 0 0 0 0 0 0 0 1 +end +input_incidence diff --git a/inst/extdata/birk5.ine b/inst/extdata/birk5.ine new file mode 100644 index 00000000..7a59b3f1 --- /dev/null +++ b/inst/extdata/birk5.ine @@ -0,0 +1,31 @@ +birk5.ine +H-representation +begin + 25 17 integer +-3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +1 -1 0 0 0 -1 0 0 0 -1 0 0 0 -1 0 0 0 +1 0 -1 0 0 0 -1 0 0 0 -1 0 0 0 -1 0 0 +1 0 0 -1 0 0 0 -1 0 0 0 -1 0 0 0 -1 0 +1 0 0 0 -1 0 0 0 -1 0 0 0 -1 0 0 0 -1 +1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 0 0 0 +1 0 0 0 0 -1 -1 -1 -1 0 0 0 0 0 0 0 0 +1 0 0 0 0 0 0 0 0 -1 -1 -1 -1 0 0 0 0 +1 0 0 0 0 0 0 0 0 0 0 0 0 -1 -1 -1 -1 +0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +end +input_incidence diff --git a/inst/extdata/birk6.ine b/inst/extdata/birk6.ine new file mode 100644 index 00000000..01377514 --- /dev/null +++ b/inst/extdata/birk6.ine @@ -0,0 +1,42 @@ +birk6.ine +H-representation +begin + 36 26 integer +-4 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +1 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 +1 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 +1 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 +1 0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 +1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 +1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +1 0 0 0 0 0 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +1 0 0 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 0 +1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 0 0 0 0 0 +1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 +0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +end +input_incidence diff --git a/inst/extdata/birk7.ine b/inst/extdata/birk7.ine new file mode 100644 index 00000000..4d172fe2 --- /dev/null +++ b/inst/extdata/birk7.ine @@ -0,0 +1,55 @@ +birk7.ine +H-representation + 49 37 begin +integer +-5 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +1 -1 0 0 0 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 +1 0 -1 0 0 0 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 -1 0 0 0 0 +1 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 -1 0 0 0 +1 0 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 -1 0 0 +1 0 0 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 -1 0 +1 0 0 0 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 -1 +1 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +1 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +1 0 0 0 0 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 0 0 0 +1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 +1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 +0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +end +input_incidence diff --git a/inst/extdata/birk8.ine b/inst/extdata/birk8.ine new file mode 100644 index 00000000..7d24e4d5 --- /dev/null +++ b/inst/extdata/birk8.ine @@ -0,0 +1,70 @@ +birk8.ine +H-representation +begin + 64 50 integer +-6 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +1 -1 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 0 0 +1 0 -1 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 0 +1 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 +1 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 +1 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 +1 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 +1 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 +1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +1 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 +1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 +0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +end +input_incidence diff --git a/inst/extdata/birk9.ine b/inst/extdata/birk9.ine new file mode 100644 index 00000000..72201c3c --- /dev/null +++ b/inst/extdata/birk9.ine @@ -0,0 +1,87 @@ +birk9.ine +H-representation +begin + 81 65 integer +-7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +1 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 +1 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 +1 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 +1 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 +1 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 +1 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 +1 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 +1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 +1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +1 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 +1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 +0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +end +input_incidence diff --git a/inst/extdata/cross_10.ext b/inst/extdata/cross_10.ext new file mode 100644 index 00000000..c14ee63c --- /dev/null +++ b/inst/extdata/cross_10.ext @@ -0,0 +1,27 @@ +cross_10.ext +V-representation +begin + 20 11 integer + 1 0 0 0 0 0 0 0 0 0 1 + 1 1 0 0 0 0 0 0 0 0 0 + 1 0 1 0 0 0 0 0 0 0 0 + 1 0 0 1 0 0 0 0 0 0 0 + 1 0 0 0 1 0 0 0 0 0 0 + 1 0 0 0 0 1 0 0 0 0 0 + 1 0 0 0 0 0 1 0 0 0 0 + 1 0 0 0 0 0 0 1 0 0 0 + 1 0 0 0 0 0 0 0 1 0 0 + 1 0 0 0 0 0 0 0 0 1 0 + 1 0 0 0 0 0 0 0 0 0 -1 + 1 0 0 0 0 0 0 0 0 -1 0 + 1 0 0 0 0 0 0 0 -1 0 0 + 1 0 0 0 0 0 0 -1 0 0 0 + 1 0 0 0 0 0 -1 0 0 0 0 + 1 0 0 0 0 -1 0 0 0 0 0 + 1 0 0 0 -1 0 0 0 0 0 0 + 1 0 0 -1 0 0 0 0 0 0 0 + 1 0 -1 0 0 0 0 0 0 0 0 + 1 -1 0 0 0 0 0 0 0 0 0 +end +hull +incidence diff --git a/inst/extdata/cross_10.ine b/inst/extdata/cross_10.ine new file mode 100644 index 00000000..6f1b3048 --- /dev/null +++ b/inst/extdata/cross_10.ine @@ -0,0 +1,1030 @@ +cross_10.ine +H-representation +begin + 1024 11 integer + 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 + 1 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 + 1 -1 1 -1 -1 -1 -1 -1 -1 -1 -1 + 1 1 1 -1 -1 -1 -1 -1 -1 -1 -1 + 1 -1 -1 1 -1 -1 -1 -1 -1 -1 -1 + 1 1 -1 1 -1 -1 -1 -1 -1 -1 -1 + 1 -1 1 1 -1 -1 -1 -1 -1 -1 -1 + 1 1 1 1 -1 -1 -1 -1 -1 -1 -1 + 1 -1 -1 -1 1 -1 -1 -1 -1 -1 -1 + 1 1 -1 -1 1 -1 -1 -1 -1 -1 -1 + 1 -1 1 -1 1 -1 -1 -1 -1 -1 -1 + 1 1 1 -1 1 -1 -1 -1 -1 -1 -1 + 1 -1 -1 1 1 -1 -1 -1 -1 -1 -1 + 1 1 -1 1 1 -1 -1 -1 -1 -1 -1 + 1 -1 1 1 1 -1 -1 -1 -1 -1 -1 + 1 1 1 1 1 -1 -1 -1 -1 -1 -1 + 1 -1 -1 -1 -1 1 -1 -1 -1 -1 -1 + 1 1 -1 -1 -1 1 -1 -1 -1 -1 -1 + 1 -1 1 -1 -1 1 -1 -1 -1 -1 -1 + 1 1 1 -1 -1 1 -1 -1 -1 -1 -1 + 1 -1 -1 1 -1 1 -1 -1 -1 -1 -1 + 1 1 -1 1 -1 1 -1 -1 -1 -1 -1 + 1 -1 1 1 -1 1 -1 -1 -1 -1 -1 + 1 1 1 1 -1 1 -1 -1 -1 -1 -1 + 1 -1 -1 -1 1 1 -1 -1 -1 -1 -1 + 1 1 -1 -1 1 1 -1 -1 -1 -1 -1 + 1 -1 1 -1 1 1 -1 -1 -1 -1 -1 + 1 1 1 -1 1 1 -1 -1 -1 -1 -1 + 1 -1 -1 1 1 1 -1 -1 -1 -1 -1 + 1 1 -1 1 1 1 -1 -1 -1 -1 -1 + 1 -1 1 1 1 1 -1 -1 -1 -1 -1 + 1 1 1 1 1 1 -1 -1 -1 -1 -1 + 1 -1 -1 -1 -1 -1 1 -1 -1 -1 -1 + 1 1 -1 -1 -1 -1 1 -1 -1 -1 -1 + 1 -1 1 -1 -1 -1 1 -1 -1 -1 -1 + 1 1 1 -1 -1 -1 1 -1 -1 -1 -1 + 1 -1 -1 1 -1 -1 1 -1 -1 -1 -1 + 1 1 -1 1 -1 -1 1 -1 -1 -1 -1 + 1 -1 1 1 -1 -1 1 -1 -1 -1 -1 + 1 1 1 1 -1 -1 1 -1 -1 -1 -1 + 1 -1 -1 -1 1 -1 1 -1 -1 -1 -1 + 1 1 -1 -1 1 -1 1 -1 -1 -1 -1 + 1 -1 1 -1 1 -1 1 -1 -1 -1 -1 + 1 1 1 -1 1 -1 1 -1 -1 -1 -1 + 1 -1 -1 1 1 -1 1 -1 -1 -1 -1 + 1 1 -1 1 1 -1 1 -1 -1 -1 -1 + 1 -1 1 1 1 -1 1 -1 -1 -1 -1 + 1 1 1 1 1 -1 1 -1 -1 -1 -1 + 1 -1 -1 -1 -1 1 1 -1 -1 -1 -1 + 1 1 -1 -1 -1 1 1 -1 -1 -1 -1 + 1 -1 1 -1 -1 1 1 -1 -1 -1 -1 + 1 1 1 -1 -1 1 1 -1 -1 -1 -1 + 1 -1 -1 1 -1 1 1 -1 -1 -1 -1 + 1 1 -1 1 -1 1 1 -1 -1 -1 -1 + 1 -1 1 1 -1 1 1 -1 -1 -1 -1 + 1 1 1 1 -1 1 1 -1 -1 -1 -1 + 1 -1 -1 -1 1 1 1 -1 -1 -1 -1 + 1 1 -1 -1 1 1 1 -1 -1 -1 -1 + 1 -1 1 -1 1 1 1 -1 -1 -1 -1 + 1 1 1 -1 1 1 1 -1 -1 -1 -1 + 1 -1 -1 1 1 1 1 -1 -1 -1 -1 + 1 1 -1 1 1 1 1 -1 -1 -1 -1 + 1 -1 1 1 1 1 1 -1 -1 -1 -1 + 1 1 1 1 1 1 1 -1 -1 -1 -1 + 1 -1 -1 -1 -1 -1 -1 1 -1 -1 -1 + 1 1 -1 -1 -1 -1 -1 1 -1 -1 -1 + 1 -1 1 -1 -1 -1 -1 1 -1 -1 -1 + 1 1 1 -1 -1 -1 -1 1 -1 -1 -1 + 1 -1 -1 1 -1 -1 -1 1 -1 -1 -1 + 1 1 -1 1 -1 -1 -1 1 -1 -1 -1 + 1 -1 1 1 -1 -1 -1 1 -1 -1 -1 + 1 1 1 1 -1 -1 -1 1 -1 -1 -1 + 1 -1 -1 -1 1 -1 -1 1 -1 -1 -1 + 1 1 -1 -1 1 -1 -1 1 -1 -1 -1 + 1 -1 1 -1 1 -1 -1 1 -1 -1 -1 + 1 1 1 -1 1 -1 -1 1 -1 -1 -1 + 1 -1 -1 1 1 -1 -1 1 -1 -1 -1 + 1 1 -1 1 1 -1 -1 1 -1 -1 -1 + 1 -1 1 1 1 -1 -1 1 -1 -1 -1 + 1 1 1 1 1 -1 -1 1 -1 -1 -1 + 1 -1 -1 -1 -1 1 -1 1 -1 -1 -1 + 1 1 -1 -1 -1 1 -1 1 -1 -1 -1 + 1 -1 1 -1 -1 1 -1 1 -1 -1 -1 + 1 1 1 -1 -1 1 -1 1 -1 -1 -1 + 1 -1 -1 1 -1 1 -1 1 -1 -1 -1 + 1 1 -1 1 -1 1 -1 1 -1 -1 -1 + 1 -1 1 1 -1 1 -1 1 -1 -1 -1 + 1 1 1 1 -1 1 -1 1 -1 -1 -1 + 1 -1 -1 -1 1 1 -1 1 -1 -1 -1 + 1 1 -1 -1 1 1 -1 1 -1 -1 -1 + 1 -1 1 -1 1 1 -1 1 -1 -1 -1 + 1 1 1 -1 1 1 -1 1 -1 -1 -1 + 1 -1 -1 1 1 1 -1 1 -1 -1 -1 + 1 1 -1 1 1 1 -1 1 -1 -1 -1 + 1 -1 1 1 1 1 -1 1 -1 -1 -1 + 1 1 1 1 1 1 -1 1 -1 -1 -1 + 1 -1 -1 -1 -1 -1 1 1 -1 -1 -1 + 1 1 -1 -1 -1 -1 1 1 -1 -1 -1 + 1 -1 1 -1 -1 -1 1 1 -1 -1 -1 + 1 1 1 -1 -1 -1 1 1 -1 -1 -1 + 1 -1 -1 1 -1 -1 1 1 -1 -1 -1 + 1 1 -1 1 -1 -1 1 1 -1 -1 -1 + 1 -1 1 1 -1 -1 1 1 -1 -1 -1 + 1 1 1 1 -1 -1 1 1 -1 -1 -1 + 1 -1 -1 -1 1 -1 1 1 -1 -1 -1 + 1 1 -1 -1 1 -1 1 1 -1 -1 -1 + 1 -1 1 -1 1 -1 1 1 -1 -1 -1 + 1 1 1 -1 1 -1 1 1 -1 -1 -1 + 1 -1 -1 1 1 -1 1 1 -1 -1 -1 + 1 1 -1 1 1 -1 1 1 -1 -1 -1 + 1 -1 1 1 1 -1 1 1 -1 -1 -1 + 1 1 1 1 1 -1 1 1 -1 -1 -1 + 1 -1 -1 -1 -1 1 1 1 -1 -1 -1 + 1 1 -1 -1 -1 1 1 1 -1 -1 -1 + 1 -1 1 -1 -1 1 1 1 -1 -1 -1 + 1 1 1 -1 -1 1 1 1 -1 -1 -1 + 1 -1 -1 1 -1 1 1 1 -1 -1 -1 + 1 1 -1 1 -1 1 1 1 -1 -1 -1 + 1 -1 1 1 -1 1 1 1 -1 -1 -1 + 1 1 1 1 -1 1 1 1 -1 -1 -1 + 1 -1 -1 -1 1 1 1 1 -1 -1 -1 + 1 1 -1 -1 1 1 1 1 -1 -1 -1 + 1 -1 1 -1 1 1 1 1 -1 -1 -1 + 1 1 1 -1 1 1 1 1 -1 -1 -1 + 1 -1 -1 1 1 1 1 1 -1 -1 -1 + 1 1 -1 1 1 1 1 1 -1 -1 -1 + 1 -1 1 1 1 1 1 1 -1 -1 -1 + 1 1 1 1 1 1 1 1 -1 -1 -1 + 1 -1 -1 -1 -1 -1 -1 -1 1 -1 -1 + 1 1 -1 -1 -1 -1 -1 -1 1 -1 -1 + 1 -1 1 -1 -1 -1 -1 -1 1 -1 -1 + 1 1 1 -1 -1 -1 -1 -1 1 -1 -1 + 1 -1 -1 1 -1 -1 -1 -1 1 -1 -1 + 1 1 -1 1 -1 -1 -1 -1 1 -1 -1 + 1 -1 1 1 -1 -1 -1 -1 1 -1 -1 + 1 1 1 1 -1 -1 -1 -1 1 -1 -1 + 1 -1 -1 -1 1 -1 -1 -1 1 -1 -1 + 1 1 -1 -1 1 -1 -1 -1 1 -1 -1 + 1 -1 1 -1 1 -1 -1 -1 1 -1 -1 + 1 1 1 -1 1 -1 -1 -1 1 -1 -1 + 1 -1 -1 1 1 -1 -1 -1 1 -1 -1 + 1 1 -1 1 1 -1 -1 -1 1 -1 -1 + 1 -1 1 1 1 -1 -1 -1 1 -1 -1 + 1 1 1 1 1 -1 -1 -1 1 -1 -1 + 1 -1 -1 -1 -1 1 -1 -1 1 -1 -1 + 1 1 -1 -1 -1 1 -1 -1 1 -1 -1 + 1 -1 1 -1 -1 1 -1 -1 1 -1 -1 + 1 1 1 -1 -1 1 -1 -1 1 -1 -1 + 1 -1 -1 1 -1 1 -1 -1 1 -1 -1 + 1 1 -1 1 -1 1 -1 -1 1 -1 -1 + 1 -1 1 1 -1 1 -1 -1 1 -1 -1 + 1 1 1 1 -1 1 -1 -1 1 -1 -1 + 1 -1 -1 -1 1 1 -1 -1 1 -1 -1 + 1 1 -1 -1 1 1 -1 -1 1 -1 -1 + 1 -1 1 -1 1 1 -1 -1 1 -1 -1 + 1 1 1 -1 1 1 -1 -1 1 -1 -1 + 1 -1 -1 1 1 1 -1 -1 1 -1 -1 + 1 1 -1 1 1 1 -1 -1 1 -1 -1 + 1 -1 1 1 1 1 -1 -1 1 -1 -1 + 1 1 1 1 1 1 -1 -1 1 -1 -1 + 1 -1 -1 -1 -1 -1 1 -1 1 -1 -1 + 1 1 -1 -1 -1 -1 1 -1 1 -1 -1 + 1 -1 1 -1 -1 -1 1 -1 1 -1 -1 + 1 1 1 -1 -1 -1 1 -1 1 -1 -1 + 1 -1 -1 1 -1 -1 1 -1 1 -1 -1 + 1 1 -1 1 -1 -1 1 -1 1 -1 -1 + 1 -1 1 1 -1 -1 1 -1 1 -1 -1 + 1 1 1 1 -1 -1 1 -1 1 -1 -1 + 1 -1 -1 -1 1 -1 1 -1 1 -1 -1 + 1 1 -1 -1 1 -1 1 -1 1 -1 -1 + 1 -1 1 -1 1 -1 1 -1 1 -1 -1 + 1 1 1 -1 1 -1 1 -1 1 -1 -1 + 1 -1 -1 1 1 -1 1 -1 1 -1 -1 + 1 1 -1 1 1 -1 1 -1 1 -1 -1 + 1 -1 1 1 1 -1 1 -1 1 -1 -1 + 1 1 1 1 1 -1 1 -1 1 -1 -1 + 1 -1 -1 -1 -1 1 1 -1 1 -1 -1 + 1 1 -1 -1 -1 1 1 -1 1 -1 -1 + 1 -1 1 -1 -1 1 1 -1 1 -1 -1 + 1 1 1 -1 -1 1 1 -1 1 -1 -1 + 1 -1 -1 1 -1 1 1 -1 1 -1 -1 + 1 1 -1 1 -1 1 1 -1 1 -1 -1 + 1 -1 1 1 -1 1 1 -1 1 -1 -1 + 1 1 1 1 -1 1 1 -1 1 -1 -1 + 1 -1 -1 -1 1 1 1 -1 1 -1 -1 + 1 1 -1 -1 1 1 1 -1 1 -1 -1 + 1 -1 1 -1 1 1 1 -1 1 -1 -1 + 1 1 1 -1 1 1 1 -1 1 -1 -1 + 1 -1 -1 1 1 1 1 -1 1 -1 -1 + 1 1 -1 1 1 1 1 -1 1 -1 -1 + 1 -1 1 1 1 1 1 -1 1 -1 -1 + 1 1 1 1 1 1 1 -1 1 -1 -1 + 1 -1 -1 -1 -1 -1 -1 1 1 -1 -1 + 1 1 -1 -1 -1 -1 -1 1 1 -1 -1 + 1 -1 1 -1 -1 -1 -1 1 1 -1 -1 + 1 1 1 -1 -1 -1 -1 1 1 -1 -1 + 1 -1 -1 1 -1 -1 -1 1 1 -1 -1 + 1 1 -1 1 -1 -1 -1 1 1 -1 -1 + 1 -1 1 1 -1 -1 -1 1 1 -1 -1 + 1 1 1 1 -1 -1 -1 1 1 -1 -1 + 1 -1 -1 -1 1 -1 -1 1 1 -1 -1 + 1 1 -1 -1 1 -1 -1 1 1 -1 -1 + 1 -1 1 -1 1 -1 -1 1 1 -1 -1 + 1 1 1 -1 1 -1 -1 1 1 -1 -1 + 1 -1 -1 1 1 -1 -1 1 1 -1 -1 + 1 1 -1 1 1 -1 -1 1 1 -1 -1 + 1 -1 1 1 1 -1 -1 1 1 -1 -1 + 1 1 1 1 1 -1 -1 1 1 -1 -1 + 1 -1 -1 -1 -1 1 -1 1 1 -1 -1 + 1 1 -1 -1 -1 1 -1 1 1 -1 -1 + 1 -1 1 -1 -1 1 -1 1 1 -1 -1 + 1 1 1 -1 -1 1 -1 1 1 -1 -1 + 1 -1 -1 1 -1 1 -1 1 1 -1 -1 + 1 1 -1 1 -1 1 -1 1 1 -1 -1 + 1 -1 1 1 -1 1 -1 1 1 -1 -1 + 1 1 1 1 -1 1 -1 1 1 -1 -1 + 1 -1 -1 -1 1 1 -1 1 1 -1 -1 + 1 1 -1 -1 1 1 -1 1 1 -1 -1 + 1 -1 1 -1 1 1 -1 1 1 -1 -1 + 1 1 1 -1 1 1 -1 1 1 -1 -1 + 1 -1 -1 1 1 1 -1 1 1 -1 -1 + 1 1 -1 1 1 1 -1 1 1 -1 -1 + 1 -1 1 1 1 1 -1 1 1 -1 -1 + 1 1 1 1 1 1 -1 1 1 -1 -1 + 1 -1 -1 -1 -1 -1 1 1 1 -1 -1 + 1 1 -1 -1 -1 -1 1 1 1 -1 -1 + 1 -1 1 -1 -1 -1 1 1 1 -1 -1 + 1 1 1 -1 -1 -1 1 1 1 -1 -1 + 1 -1 -1 1 -1 -1 1 1 1 -1 -1 + 1 1 -1 1 -1 -1 1 1 1 -1 -1 + 1 -1 1 1 -1 -1 1 1 1 -1 -1 + 1 1 1 1 -1 -1 1 1 1 -1 -1 + 1 -1 -1 -1 1 -1 1 1 1 -1 -1 + 1 1 -1 -1 1 -1 1 1 1 -1 -1 + 1 -1 1 -1 1 -1 1 1 1 -1 -1 + 1 1 1 -1 1 -1 1 1 1 -1 -1 + 1 -1 -1 1 1 -1 1 1 1 -1 -1 + 1 1 -1 1 1 -1 1 1 1 -1 -1 + 1 -1 1 1 1 -1 1 1 1 -1 -1 + 1 1 1 1 1 -1 1 1 1 -1 -1 + 1 -1 -1 -1 -1 1 1 1 1 -1 -1 + 1 1 -1 -1 -1 1 1 1 1 -1 -1 + 1 -1 1 -1 -1 1 1 1 1 -1 -1 + 1 1 1 -1 -1 1 1 1 1 -1 -1 + 1 -1 -1 1 -1 1 1 1 1 -1 -1 + 1 1 -1 1 -1 1 1 1 1 -1 -1 + 1 -1 1 1 -1 1 1 1 1 -1 -1 + 1 1 1 1 -1 1 1 1 1 -1 -1 + 1 -1 -1 -1 1 1 1 1 1 -1 -1 + 1 1 -1 -1 1 1 1 1 1 -1 -1 + 1 -1 1 -1 1 1 1 1 1 -1 -1 + 1 1 1 -1 1 1 1 1 1 -1 -1 + 1 -1 -1 1 1 1 1 1 1 -1 -1 + 1 1 -1 1 1 1 1 1 1 -1 -1 + 1 -1 1 1 1 1 1 1 1 -1 -1 + 1 1 1 1 1 1 1 1 1 -1 -1 + 1 -1 -1 -1 -1 -1 -1 -1 -1 1 -1 + 1 1 -1 -1 -1 -1 -1 -1 -1 1 -1 + 1 -1 1 -1 -1 -1 -1 -1 -1 1 -1 + 1 1 1 -1 -1 -1 -1 -1 -1 1 -1 + 1 -1 -1 1 -1 -1 -1 -1 -1 1 -1 + 1 1 -1 1 -1 -1 -1 -1 -1 1 -1 + 1 -1 1 1 -1 -1 -1 -1 -1 1 -1 + 1 1 1 1 -1 -1 -1 -1 -1 1 -1 + 1 -1 -1 -1 1 -1 -1 -1 -1 1 -1 + 1 1 -1 -1 1 -1 -1 -1 -1 1 -1 + 1 -1 1 -1 1 -1 -1 -1 -1 1 -1 + 1 1 1 -1 1 -1 -1 -1 -1 1 -1 + 1 -1 -1 1 1 -1 -1 -1 -1 1 -1 + 1 1 -1 1 1 -1 -1 -1 -1 1 -1 + 1 -1 1 1 1 -1 -1 -1 -1 1 -1 + 1 1 1 1 1 -1 -1 -1 -1 1 -1 + 1 -1 -1 -1 -1 1 -1 -1 -1 1 -1 + 1 1 -1 -1 -1 1 -1 -1 -1 1 -1 + 1 -1 1 -1 -1 1 -1 -1 -1 1 -1 + 1 1 1 -1 -1 1 -1 -1 -1 1 -1 + 1 -1 -1 1 -1 1 -1 -1 -1 1 -1 + 1 1 -1 1 -1 1 -1 -1 -1 1 -1 + 1 -1 1 1 -1 1 -1 -1 -1 1 -1 + 1 1 1 1 -1 1 -1 -1 -1 1 -1 + 1 -1 -1 -1 1 1 -1 -1 -1 1 -1 + 1 1 -1 -1 1 1 -1 -1 -1 1 -1 + 1 -1 1 -1 1 1 -1 -1 -1 1 -1 + 1 1 1 -1 1 1 -1 -1 -1 1 -1 + 1 -1 -1 1 1 1 -1 -1 -1 1 -1 + 1 1 -1 1 1 1 -1 -1 -1 1 -1 + 1 -1 1 1 1 1 -1 -1 -1 1 -1 + 1 1 1 1 1 1 -1 -1 -1 1 -1 + 1 -1 -1 -1 -1 -1 1 -1 -1 1 -1 + 1 1 -1 -1 -1 -1 1 -1 -1 1 -1 + 1 -1 1 -1 -1 -1 1 -1 -1 1 -1 + 1 1 1 -1 -1 -1 1 -1 -1 1 -1 + 1 -1 -1 1 -1 -1 1 -1 -1 1 -1 + 1 1 -1 1 -1 -1 1 -1 -1 1 -1 + 1 -1 1 1 -1 -1 1 -1 -1 1 -1 + 1 1 1 1 -1 -1 1 -1 -1 1 -1 + 1 -1 -1 -1 1 -1 1 -1 -1 1 -1 + 1 1 -1 -1 1 -1 1 -1 -1 1 -1 + 1 -1 1 -1 1 -1 1 -1 -1 1 -1 + 1 1 1 -1 1 -1 1 -1 -1 1 -1 + 1 -1 -1 1 1 -1 1 -1 -1 1 -1 + 1 1 -1 1 1 -1 1 -1 -1 1 -1 + 1 -1 1 1 1 -1 1 -1 -1 1 -1 + 1 1 1 1 1 -1 1 -1 -1 1 -1 + 1 -1 -1 -1 -1 1 1 -1 -1 1 -1 + 1 1 -1 -1 -1 1 1 -1 -1 1 -1 + 1 -1 1 -1 -1 1 1 -1 -1 1 -1 + 1 1 1 -1 -1 1 1 -1 -1 1 -1 + 1 -1 -1 1 -1 1 1 -1 -1 1 -1 + 1 1 -1 1 -1 1 1 -1 -1 1 -1 + 1 -1 1 1 -1 1 1 -1 -1 1 -1 + 1 1 1 1 -1 1 1 -1 -1 1 -1 + 1 -1 -1 -1 1 1 1 -1 -1 1 -1 + 1 1 -1 -1 1 1 1 -1 -1 1 -1 + 1 -1 1 -1 1 1 1 -1 -1 1 -1 + 1 1 1 -1 1 1 1 -1 -1 1 -1 + 1 -1 -1 1 1 1 1 -1 -1 1 -1 + 1 1 -1 1 1 1 1 -1 -1 1 -1 + 1 -1 1 1 1 1 1 -1 -1 1 -1 + 1 1 1 1 1 1 1 -1 -1 1 -1 + 1 -1 -1 -1 -1 -1 -1 1 -1 1 -1 + 1 1 -1 -1 -1 -1 -1 1 -1 1 -1 + 1 -1 1 -1 -1 -1 -1 1 -1 1 -1 + 1 1 1 -1 -1 -1 -1 1 -1 1 -1 + 1 -1 -1 1 -1 -1 -1 1 -1 1 -1 + 1 1 -1 1 -1 -1 -1 1 -1 1 -1 + 1 -1 1 1 -1 -1 -1 1 -1 1 -1 + 1 1 1 1 -1 -1 -1 1 -1 1 -1 + 1 -1 -1 -1 1 -1 -1 1 -1 1 -1 + 1 1 -1 -1 1 -1 -1 1 -1 1 -1 + 1 -1 1 -1 1 -1 -1 1 -1 1 -1 + 1 1 1 -1 1 -1 -1 1 -1 1 -1 + 1 -1 -1 1 1 -1 -1 1 -1 1 -1 + 1 1 -1 1 1 -1 -1 1 -1 1 -1 + 1 -1 1 1 1 -1 -1 1 -1 1 -1 + 1 1 1 1 1 -1 -1 1 -1 1 -1 + 1 -1 -1 -1 -1 1 -1 1 -1 1 -1 + 1 1 -1 -1 -1 1 -1 1 -1 1 -1 + 1 -1 1 -1 -1 1 -1 1 -1 1 -1 + 1 1 1 -1 -1 1 -1 1 -1 1 -1 + 1 -1 -1 1 -1 1 -1 1 -1 1 -1 + 1 1 -1 1 -1 1 -1 1 -1 1 -1 + 1 -1 1 1 -1 1 -1 1 -1 1 -1 + 1 1 1 1 -1 1 -1 1 -1 1 -1 + 1 -1 -1 -1 1 1 -1 1 -1 1 -1 + 1 1 -1 -1 1 1 -1 1 -1 1 -1 + 1 -1 1 -1 1 1 -1 1 -1 1 -1 + 1 1 1 -1 1 1 -1 1 -1 1 -1 + 1 -1 -1 1 1 1 -1 1 -1 1 -1 + 1 1 -1 1 1 1 -1 1 -1 1 -1 + 1 -1 1 1 1 1 -1 1 -1 1 -1 + 1 1 1 1 1 1 -1 1 -1 1 -1 + 1 -1 -1 -1 -1 -1 1 1 -1 1 -1 + 1 1 -1 -1 -1 -1 1 1 -1 1 -1 + 1 -1 1 -1 -1 -1 1 1 -1 1 -1 + 1 1 1 -1 -1 -1 1 1 -1 1 -1 + 1 -1 -1 1 -1 -1 1 1 -1 1 -1 + 1 1 -1 1 -1 -1 1 1 -1 1 -1 + 1 -1 1 1 -1 -1 1 1 -1 1 -1 + 1 1 1 1 -1 -1 1 1 -1 1 -1 + 1 -1 -1 -1 1 -1 1 1 -1 1 -1 + 1 1 -1 -1 1 -1 1 1 -1 1 -1 + 1 -1 1 -1 1 -1 1 1 -1 1 -1 + 1 1 1 -1 1 -1 1 1 -1 1 -1 + 1 -1 -1 1 1 -1 1 1 -1 1 -1 + 1 1 -1 1 1 -1 1 1 -1 1 -1 + 1 -1 1 1 1 -1 1 1 -1 1 -1 + 1 1 1 1 1 -1 1 1 -1 1 -1 + 1 -1 -1 -1 -1 1 1 1 -1 1 -1 + 1 1 -1 -1 -1 1 1 1 -1 1 -1 + 1 -1 1 -1 -1 1 1 1 -1 1 -1 + 1 1 1 -1 -1 1 1 1 -1 1 -1 + 1 -1 -1 1 -1 1 1 1 -1 1 -1 + 1 1 -1 1 -1 1 1 1 -1 1 -1 + 1 -1 1 1 -1 1 1 1 -1 1 -1 + 1 1 1 1 -1 1 1 1 -1 1 -1 + 1 -1 -1 -1 1 1 1 1 -1 1 -1 + 1 1 -1 -1 1 1 1 1 -1 1 -1 + 1 -1 1 -1 1 1 1 1 -1 1 -1 + 1 1 1 -1 1 1 1 1 -1 1 -1 + 1 -1 -1 1 1 1 1 1 -1 1 -1 + 1 1 -1 1 1 1 1 1 -1 1 -1 + 1 -1 1 1 1 1 1 1 -1 1 -1 + 1 1 1 1 1 1 1 1 -1 1 -1 + 1 -1 -1 -1 -1 -1 -1 -1 1 1 -1 + 1 1 -1 -1 -1 -1 -1 -1 1 1 -1 + 1 -1 1 -1 -1 -1 -1 -1 1 1 -1 + 1 1 1 -1 -1 -1 -1 -1 1 1 -1 + 1 -1 -1 1 -1 -1 -1 -1 1 1 -1 + 1 1 -1 1 -1 -1 -1 -1 1 1 -1 + 1 -1 1 1 -1 -1 -1 -1 1 1 -1 + 1 1 1 1 -1 -1 -1 -1 1 1 -1 + 1 -1 -1 -1 1 -1 -1 -1 1 1 -1 + 1 1 -1 -1 1 -1 -1 -1 1 1 -1 + 1 -1 1 -1 1 -1 -1 -1 1 1 -1 + 1 1 1 -1 1 -1 -1 -1 1 1 -1 + 1 -1 -1 1 1 -1 -1 -1 1 1 -1 + 1 1 -1 1 1 -1 -1 -1 1 1 -1 + 1 -1 1 1 1 -1 -1 -1 1 1 -1 + 1 1 1 1 1 -1 -1 -1 1 1 -1 + 1 -1 -1 -1 -1 1 -1 -1 1 1 -1 + 1 1 -1 -1 -1 1 -1 -1 1 1 -1 + 1 -1 1 -1 -1 1 -1 -1 1 1 -1 + 1 1 1 -1 -1 1 -1 -1 1 1 -1 + 1 -1 -1 1 -1 1 -1 -1 1 1 -1 + 1 1 -1 1 -1 1 -1 -1 1 1 -1 + 1 -1 1 1 -1 1 -1 -1 1 1 -1 + 1 1 1 1 -1 1 -1 -1 1 1 -1 + 1 -1 -1 -1 1 1 -1 -1 1 1 -1 + 1 1 -1 -1 1 1 -1 -1 1 1 -1 + 1 -1 1 -1 1 1 -1 -1 1 1 -1 + 1 1 1 -1 1 1 -1 -1 1 1 -1 + 1 -1 -1 1 1 1 -1 -1 1 1 -1 + 1 1 -1 1 1 1 -1 -1 1 1 -1 + 1 -1 1 1 1 1 -1 -1 1 1 -1 + 1 1 1 1 1 1 -1 -1 1 1 -1 + 1 -1 -1 -1 -1 -1 1 -1 1 1 -1 + 1 1 -1 -1 -1 -1 1 -1 1 1 -1 + 1 -1 1 -1 -1 -1 1 -1 1 1 -1 + 1 1 1 -1 -1 -1 1 -1 1 1 -1 + 1 -1 -1 1 -1 -1 1 -1 1 1 -1 + 1 1 -1 1 -1 -1 1 -1 1 1 -1 + 1 -1 1 1 -1 -1 1 -1 1 1 -1 + 1 1 1 1 -1 -1 1 -1 1 1 -1 + 1 -1 -1 -1 1 -1 1 -1 1 1 -1 + 1 1 -1 -1 1 -1 1 -1 1 1 -1 + 1 -1 1 -1 1 -1 1 -1 1 1 -1 + 1 1 1 -1 1 -1 1 -1 1 1 -1 + 1 -1 -1 1 1 -1 1 -1 1 1 -1 + 1 1 -1 1 1 -1 1 -1 1 1 -1 + 1 -1 1 1 1 -1 1 -1 1 1 -1 + 1 1 1 1 1 -1 1 -1 1 1 -1 + 1 -1 -1 -1 -1 1 1 -1 1 1 -1 + 1 1 -1 -1 -1 1 1 -1 1 1 -1 + 1 -1 1 -1 -1 1 1 -1 1 1 -1 + 1 1 1 -1 -1 1 1 -1 1 1 -1 + 1 -1 -1 1 -1 1 1 -1 1 1 -1 + 1 1 -1 1 -1 1 1 -1 1 1 -1 + 1 -1 1 1 -1 1 1 -1 1 1 -1 + 1 1 1 1 -1 1 1 -1 1 1 -1 + 1 -1 -1 -1 1 1 1 -1 1 1 -1 + 1 1 -1 -1 1 1 1 -1 1 1 -1 + 1 -1 1 -1 1 1 1 -1 1 1 -1 + 1 1 1 -1 1 1 1 -1 1 1 -1 + 1 -1 -1 1 1 1 1 -1 1 1 -1 + 1 1 -1 1 1 1 1 -1 1 1 -1 + 1 -1 1 1 1 1 1 -1 1 1 -1 + 1 1 1 1 1 1 1 -1 1 1 -1 + 1 -1 -1 -1 -1 -1 -1 1 1 1 -1 + 1 1 -1 -1 -1 -1 -1 1 1 1 -1 + 1 -1 1 -1 -1 -1 -1 1 1 1 -1 + 1 1 1 -1 -1 -1 -1 1 1 1 -1 + 1 -1 -1 1 -1 -1 -1 1 1 1 -1 + 1 1 -1 1 -1 -1 -1 1 1 1 -1 + 1 -1 1 1 -1 -1 -1 1 1 1 -1 + 1 1 1 1 -1 -1 -1 1 1 1 -1 + 1 -1 -1 -1 1 -1 -1 1 1 1 -1 + 1 1 -1 -1 1 -1 -1 1 1 1 -1 + 1 -1 1 -1 1 -1 -1 1 1 1 -1 + 1 1 1 -1 1 -1 -1 1 1 1 -1 + 1 -1 -1 1 1 -1 -1 1 1 1 -1 + 1 1 -1 1 1 -1 -1 1 1 1 -1 + 1 -1 1 1 1 -1 -1 1 1 1 -1 + 1 1 1 1 1 -1 -1 1 1 1 -1 + 1 -1 -1 -1 -1 1 -1 1 1 1 -1 + 1 1 -1 -1 -1 1 -1 1 1 1 -1 + 1 -1 1 -1 -1 1 -1 1 1 1 -1 + 1 1 1 -1 -1 1 -1 1 1 1 -1 + 1 -1 -1 1 -1 1 -1 1 1 1 -1 + 1 1 -1 1 -1 1 -1 1 1 1 -1 + 1 -1 1 1 -1 1 -1 1 1 1 -1 + 1 1 1 1 -1 1 -1 1 1 1 -1 + 1 -1 -1 -1 1 1 -1 1 1 1 -1 + 1 1 -1 -1 1 1 -1 1 1 1 -1 + 1 -1 1 -1 1 1 -1 1 1 1 -1 + 1 1 1 -1 1 1 -1 1 1 1 -1 + 1 -1 -1 1 1 1 -1 1 1 1 -1 + 1 1 -1 1 1 1 -1 1 1 1 -1 + 1 -1 1 1 1 1 -1 1 1 1 -1 + 1 1 1 1 1 1 -1 1 1 1 -1 + 1 -1 -1 -1 -1 -1 1 1 1 1 -1 + 1 1 -1 -1 -1 -1 1 1 1 1 -1 + 1 -1 1 -1 -1 -1 1 1 1 1 -1 + 1 1 1 -1 -1 -1 1 1 1 1 -1 + 1 -1 -1 1 -1 -1 1 1 1 1 -1 + 1 1 -1 1 -1 -1 1 1 1 1 -1 + 1 -1 1 1 -1 -1 1 1 1 1 -1 + 1 1 1 1 -1 -1 1 1 1 1 -1 + 1 -1 -1 -1 1 -1 1 1 1 1 -1 + 1 1 -1 -1 1 -1 1 1 1 1 -1 + 1 -1 1 -1 1 -1 1 1 1 1 -1 + 1 1 1 -1 1 -1 1 1 1 1 -1 + 1 -1 -1 1 1 -1 1 1 1 1 -1 + 1 1 -1 1 1 -1 1 1 1 1 -1 + 1 -1 1 1 1 -1 1 1 1 1 -1 + 1 1 1 1 1 -1 1 1 1 1 -1 + 1 -1 -1 -1 -1 1 1 1 1 1 -1 + 1 1 -1 -1 -1 1 1 1 1 1 -1 + 1 -1 1 -1 -1 1 1 1 1 1 -1 + 1 1 1 -1 -1 1 1 1 1 1 -1 + 1 -1 -1 1 -1 1 1 1 1 1 -1 + 1 1 -1 1 -1 1 1 1 1 1 -1 + 1 -1 1 1 -1 1 1 1 1 1 -1 + 1 1 1 1 -1 1 1 1 1 1 -1 + 1 -1 -1 -1 1 1 1 1 1 1 -1 + 1 1 -1 -1 1 1 1 1 1 1 -1 + 1 -1 1 -1 1 1 1 1 1 1 -1 + 1 1 1 -1 1 1 1 1 1 1 -1 + 1 -1 -1 1 1 1 1 1 1 1 -1 + 1 1 -1 1 1 1 1 1 1 1 -1 + 1 -1 1 1 1 1 1 1 1 1 -1 + 1 1 1 1 1 1 1 1 1 1 -1 + 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 + 1 1 -1 -1 -1 -1 -1 -1 -1 -1 1 + 1 -1 1 -1 -1 -1 -1 -1 -1 -1 1 + 1 1 1 -1 -1 -1 -1 -1 -1 -1 1 + 1 -1 -1 1 -1 -1 -1 -1 -1 -1 1 + 1 1 -1 1 -1 -1 -1 -1 -1 -1 1 + 1 -1 1 1 -1 -1 -1 -1 -1 -1 1 + 1 1 1 1 -1 -1 -1 -1 -1 -1 1 + 1 -1 -1 -1 1 -1 -1 -1 -1 -1 1 + 1 1 -1 -1 1 -1 -1 -1 -1 -1 1 + 1 -1 1 -1 1 -1 -1 -1 -1 -1 1 + 1 1 1 -1 1 -1 -1 -1 -1 -1 1 + 1 -1 -1 1 1 -1 -1 -1 -1 -1 1 + 1 1 -1 1 1 -1 -1 -1 -1 -1 1 + 1 -1 1 1 1 -1 -1 -1 -1 -1 1 + 1 1 1 1 1 -1 -1 -1 -1 -1 1 + 1 -1 -1 -1 -1 1 -1 -1 -1 -1 1 + 1 1 -1 -1 -1 1 -1 -1 -1 -1 1 + 1 -1 1 -1 -1 1 -1 -1 -1 -1 1 + 1 1 1 -1 -1 1 -1 -1 -1 -1 1 + 1 -1 -1 1 -1 1 -1 -1 -1 -1 1 + 1 1 -1 1 -1 1 -1 -1 -1 -1 1 + 1 -1 1 1 -1 1 -1 -1 -1 -1 1 + 1 1 1 1 -1 1 -1 -1 -1 -1 1 + 1 -1 -1 -1 1 1 -1 -1 -1 -1 1 + 1 1 -1 -1 1 1 -1 -1 -1 -1 1 + 1 -1 1 -1 1 1 -1 -1 -1 -1 1 + 1 1 1 -1 1 1 -1 -1 -1 -1 1 + 1 -1 -1 1 1 1 -1 -1 -1 -1 1 + 1 1 -1 1 1 1 -1 -1 -1 -1 1 + 1 -1 1 1 1 1 -1 -1 -1 -1 1 + 1 1 1 1 1 1 -1 -1 -1 -1 1 + 1 -1 -1 -1 -1 -1 1 -1 -1 -1 1 + 1 1 -1 -1 -1 -1 1 -1 -1 -1 1 + 1 -1 1 -1 -1 -1 1 -1 -1 -1 1 + 1 1 1 -1 -1 -1 1 -1 -1 -1 1 + 1 -1 -1 1 -1 -1 1 -1 -1 -1 1 + 1 1 -1 1 -1 -1 1 -1 -1 -1 1 + 1 -1 1 1 -1 -1 1 -1 -1 -1 1 + 1 1 1 1 -1 -1 1 -1 -1 -1 1 + 1 -1 -1 -1 1 -1 1 -1 -1 -1 1 + 1 1 -1 -1 1 -1 1 -1 -1 -1 1 + 1 -1 1 -1 1 -1 1 -1 -1 -1 1 + 1 1 1 -1 1 -1 1 -1 -1 -1 1 + 1 -1 -1 1 1 -1 1 -1 -1 -1 1 + 1 1 -1 1 1 -1 1 -1 -1 -1 1 + 1 -1 1 1 1 -1 1 -1 -1 -1 1 + 1 1 1 1 1 -1 1 -1 -1 -1 1 + 1 -1 -1 -1 -1 1 1 -1 -1 -1 1 + 1 1 -1 -1 -1 1 1 -1 -1 -1 1 + 1 -1 1 -1 -1 1 1 -1 -1 -1 1 + 1 1 1 -1 -1 1 1 -1 -1 -1 1 + 1 -1 -1 1 -1 1 1 -1 -1 -1 1 + 1 1 -1 1 -1 1 1 -1 -1 -1 1 + 1 -1 1 1 -1 1 1 -1 -1 -1 1 + 1 1 1 1 -1 1 1 -1 -1 -1 1 + 1 -1 -1 -1 1 1 1 -1 -1 -1 1 + 1 1 -1 -1 1 1 1 -1 -1 -1 1 + 1 -1 1 -1 1 1 1 -1 -1 -1 1 + 1 1 1 -1 1 1 1 -1 -1 -1 1 + 1 -1 -1 1 1 1 1 -1 -1 -1 1 + 1 1 -1 1 1 1 1 -1 -1 -1 1 + 1 -1 1 1 1 1 1 -1 -1 -1 1 + 1 1 1 1 1 1 1 -1 -1 -1 1 + 1 -1 -1 -1 -1 -1 -1 1 -1 -1 1 + 1 1 -1 -1 -1 -1 -1 1 -1 -1 1 + 1 -1 1 -1 -1 -1 -1 1 -1 -1 1 + 1 1 1 -1 -1 -1 -1 1 -1 -1 1 + 1 -1 -1 1 -1 -1 -1 1 -1 -1 1 + 1 1 -1 1 -1 -1 -1 1 -1 -1 1 + 1 -1 1 1 -1 -1 -1 1 -1 -1 1 + 1 1 1 1 -1 -1 -1 1 -1 -1 1 + 1 -1 -1 -1 1 -1 -1 1 -1 -1 1 + 1 1 -1 -1 1 -1 -1 1 -1 -1 1 + 1 -1 1 -1 1 -1 -1 1 -1 -1 1 + 1 1 1 -1 1 -1 -1 1 -1 -1 1 + 1 -1 -1 1 1 -1 -1 1 -1 -1 1 + 1 1 -1 1 1 -1 -1 1 -1 -1 1 + 1 -1 1 1 1 -1 -1 1 -1 -1 1 + 1 1 1 1 1 -1 -1 1 -1 -1 1 + 1 -1 -1 -1 -1 1 -1 1 -1 -1 1 + 1 1 -1 -1 -1 1 -1 1 -1 -1 1 + 1 -1 1 -1 -1 1 -1 1 -1 -1 1 + 1 1 1 -1 -1 1 -1 1 -1 -1 1 + 1 -1 -1 1 -1 1 -1 1 -1 -1 1 + 1 1 -1 1 -1 1 -1 1 -1 -1 1 + 1 -1 1 1 -1 1 -1 1 -1 -1 1 + 1 1 1 1 -1 1 -1 1 -1 -1 1 + 1 -1 -1 -1 1 1 -1 1 -1 -1 1 + 1 1 -1 -1 1 1 -1 1 -1 -1 1 + 1 -1 1 -1 1 1 -1 1 -1 -1 1 + 1 1 1 -1 1 1 -1 1 -1 -1 1 + 1 -1 -1 1 1 1 -1 1 -1 -1 1 + 1 1 -1 1 1 1 -1 1 -1 -1 1 + 1 -1 1 1 1 1 -1 1 -1 -1 1 + 1 1 1 1 1 1 -1 1 -1 -1 1 + 1 -1 -1 -1 -1 -1 1 1 -1 -1 1 + 1 1 -1 -1 -1 -1 1 1 -1 -1 1 + 1 -1 1 -1 -1 -1 1 1 -1 -1 1 + 1 1 1 -1 -1 -1 1 1 -1 -1 1 + 1 -1 -1 1 -1 -1 1 1 -1 -1 1 + 1 1 -1 1 -1 -1 1 1 -1 -1 1 + 1 -1 1 1 -1 -1 1 1 -1 -1 1 + 1 1 1 1 -1 -1 1 1 -1 -1 1 + 1 -1 -1 -1 1 -1 1 1 -1 -1 1 + 1 1 -1 -1 1 -1 1 1 -1 -1 1 + 1 -1 1 -1 1 -1 1 1 -1 -1 1 + 1 1 1 -1 1 -1 1 1 -1 -1 1 + 1 -1 -1 1 1 -1 1 1 -1 -1 1 + 1 1 -1 1 1 -1 1 1 -1 -1 1 + 1 -1 1 1 1 -1 1 1 -1 -1 1 + 1 1 1 1 1 -1 1 1 -1 -1 1 + 1 -1 -1 -1 -1 1 1 1 -1 -1 1 + 1 1 -1 -1 -1 1 1 1 -1 -1 1 + 1 -1 1 -1 -1 1 1 1 -1 -1 1 + 1 1 1 -1 -1 1 1 1 -1 -1 1 + 1 -1 -1 1 -1 1 1 1 -1 -1 1 + 1 1 -1 1 -1 1 1 1 -1 -1 1 + 1 -1 1 1 -1 1 1 1 -1 -1 1 + 1 1 1 1 -1 1 1 1 -1 -1 1 + 1 -1 -1 -1 1 1 1 1 -1 -1 1 + 1 1 -1 -1 1 1 1 1 -1 -1 1 + 1 -1 1 -1 1 1 1 1 -1 -1 1 + 1 1 1 -1 1 1 1 1 -1 -1 1 + 1 -1 -1 1 1 1 1 1 -1 -1 1 + 1 1 -1 1 1 1 1 1 -1 -1 1 + 1 -1 1 1 1 1 1 1 -1 -1 1 + 1 1 1 1 1 1 1 1 -1 -1 1 + 1 -1 -1 -1 -1 -1 -1 -1 1 -1 1 + 1 1 -1 -1 -1 -1 -1 -1 1 -1 1 + 1 -1 1 -1 -1 -1 -1 -1 1 -1 1 + 1 1 1 -1 -1 -1 -1 -1 1 -1 1 + 1 -1 -1 1 -1 -1 -1 -1 1 -1 1 + 1 1 -1 1 -1 -1 -1 -1 1 -1 1 + 1 -1 1 1 -1 -1 -1 -1 1 -1 1 + 1 1 1 1 -1 -1 -1 -1 1 -1 1 + 1 -1 -1 -1 1 -1 -1 -1 1 -1 1 + 1 1 -1 -1 1 -1 -1 -1 1 -1 1 + 1 -1 1 -1 1 -1 -1 -1 1 -1 1 + 1 1 1 -1 1 -1 -1 -1 1 -1 1 + 1 -1 -1 1 1 -1 -1 -1 1 -1 1 + 1 1 -1 1 1 -1 -1 -1 1 -1 1 + 1 -1 1 1 1 -1 -1 -1 1 -1 1 + 1 1 1 1 1 -1 -1 -1 1 -1 1 + 1 -1 -1 -1 -1 1 -1 -1 1 -1 1 + 1 1 -1 -1 -1 1 -1 -1 1 -1 1 + 1 -1 1 -1 -1 1 -1 -1 1 -1 1 + 1 1 1 -1 -1 1 -1 -1 1 -1 1 + 1 -1 -1 1 -1 1 -1 -1 1 -1 1 + 1 1 -1 1 -1 1 -1 -1 1 -1 1 + 1 -1 1 1 -1 1 -1 -1 1 -1 1 + 1 1 1 1 -1 1 -1 -1 1 -1 1 + 1 -1 -1 -1 1 1 -1 -1 1 -1 1 + 1 1 -1 -1 1 1 -1 -1 1 -1 1 + 1 -1 1 -1 1 1 -1 -1 1 -1 1 + 1 1 1 -1 1 1 -1 -1 1 -1 1 + 1 -1 -1 1 1 1 -1 -1 1 -1 1 + 1 1 -1 1 1 1 -1 -1 1 -1 1 + 1 -1 1 1 1 1 -1 -1 1 -1 1 + 1 1 1 1 1 1 -1 -1 1 -1 1 + 1 -1 -1 -1 -1 -1 1 -1 1 -1 1 + 1 1 -1 -1 -1 -1 1 -1 1 -1 1 + 1 -1 1 -1 -1 -1 1 -1 1 -1 1 + 1 1 1 -1 -1 -1 1 -1 1 -1 1 + 1 -1 -1 1 -1 -1 1 -1 1 -1 1 + 1 1 -1 1 -1 -1 1 -1 1 -1 1 + 1 -1 1 1 -1 -1 1 -1 1 -1 1 + 1 1 1 1 -1 -1 1 -1 1 -1 1 + 1 -1 -1 -1 1 -1 1 -1 1 -1 1 + 1 1 -1 -1 1 -1 1 -1 1 -1 1 + 1 -1 1 -1 1 -1 1 -1 1 -1 1 + 1 1 1 -1 1 -1 1 -1 1 -1 1 + 1 -1 -1 1 1 -1 1 -1 1 -1 1 + 1 1 -1 1 1 -1 1 -1 1 -1 1 + 1 -1 1 1 1 -1 1 -1 1 -1 1 + 1 1 1 1 1 -1 1 -1 1 -1 1 + 1 -1 -1 -1 -1 1 1 -1 1 -1 1 + 1 1 -1 -1 -1 1 1 -1 1 -1 1 + 1 -1 1 -1 -1 1 1 -1 1 -1 1 + 1 1 1 -1 -1 1 1 -1 1 -1 1 + 1 -1 -1 1 -1 1 1 -1 1 -1 1 + 1 1 -1 1 -1 1 1 -1 1 -1 1 + 1 -1 1 1 -1 1 1 -1 1 -1 1 + 1 1 1 1 -1 1 1 -1 1 -1 1 + 1 -1 -1 -1 1 1 1 -1 1 -1 1 + 1 1 -1 -1 1 1 1 -1 1 -1 1 + 1 -1 1 -1 1 1 1 -1 1 -1 1 + 1 1 1 -1 1 1 1 -1 1 -1 1 + 1 -1 -1 1 1 1 1 -1 1 -1 1 + 1 1 -1 1 1 1 1 -1 1 -1 1 + 1 -1 1 1 1 1 1 -1 1 -1 1 + 1 1 1 1 1 1 1 -1 1 -1 1 + 1 -1 -1 -1 -1 -1 -1 1 1 -1 1 + 1 1 -1 -1 -1 -1 -1 1 1 -1 1 + 1 -1 1 -1 -1 -1 -1 1 1 -1 1 + 1 1 1 -1 -1 -1 -1 1 1 -1 1 + 1 -1 -1 1 -1 -1 -1 1 1 -1 1 + 1 1 -1 1 -1 -1 -1 1 1 -1 1 + 1 -1 1 1 -1 -1 -1 1 1 -1 1 + 1 1 1 1 -1 -1 -1 1 1 -1 1 + 1 -1 -1 -1 1 -1 -1 1 1 -1 1 + 1 1 -1 -1 1 -1 -1 1 1 -1 1 + 1 -1 1 -1 1 -1 -1 1 1 -1 1 + 1 1 1 -1 1 -1 -1 1 1 -1 1 + 1 -1 -1 1 1 -1 -1 1 1 -1 1 + 1 1 -1 1 1 -1 -1 1 1 -1 1 + 1 -1 1 1 1 -1 -1 1 1 -1 1 + 1 1 1 1 1 -1 -1 1 1 -1 1 + 1 -1 -1 -1 -1 1 -1 1 1 -1 1 + 1 1 -1 -1 -1 1 -1 1 1 -1 1 + 1 -1 1 -1 -1 1 -1 1 1 -1 1 + 1 1 1 -1 -1 1 -1 1 1 -1 1 + 1 -1 -1 1 -1 1 -1 1 1 -1 1 + 1 1 -1 1 -1 1 -1 1 1 -1 1 + 1 -1 1 1 -1 1 -1 1 1 -1 1 + 1 1 1 1 -1 1 -1 1 1 -1 1 + 1 -1 -1 -1 1 1 -1 1 1 -1 1 + 1 1 -1 -1 1 1 -1 1 1 -1 1 + 1 -1 1 -1 1 1 -1 1 1 -1 1 + 1 1 1 -1 1 1 -1 1 1 -1 1 + 1 -1 -1 1 1 1 -1 1 1 -1 1 + 1 1 -1 1 1 1 -1 1 1 -1 1 + 1 -1 1 1 1 1 -1 1 1 -1 1 + 1 1 1 1 1 1 -1 1 1 -1 1 + 1 -1 -1 -1 -1 -1 1 1 1 -1 1 + 1 1 -1 -1 -1 -1 1 1 1 -1 1 + 1 -1 1 -1 -1 -1 1 1 1 -1 1 + 1 1 1 -1 -1 -1 1 1 1 -1 1 + 1 -1 -1 1 -1 -1 1 1 1 -1 1 + 1 1 -1 1 -1 -1 1 1 1 -1 1 + 1 -1 1 1 -1 -1 1 1 1 -1 1 + 1 1 1 1 -1 -1 1 1 1 -1 1 + 1 -1 -1 -1 1 -1 1 1 1 -1 1 + 1 1 -1 -1 1 -1 1 1 1 -1 1 + 1 -1 1 -1 1 -1 1 1 1 -1 1 + 1 1 1 -1 1 -1 1 1 1 -1 1 + 1 -1 -1 1 1 -1 1 1 1 -1 1 + 1 1 -1 1 1 -1 1 1 1 -1 1 + 1 -1 1 1 1 -1 1 1 1 -1 1 + 1 1 1 1 1 -1 1 1 1 -1 1 + 1 -1 -1 -1 -1 1 1 1 1 -1 1 + 1 1 -1 -1 -1 1 1 1 1 -1 1 + 1 -1 1 -1 -1 1 1 1 1 -1 1 + 1 1 1 -1 -1 1 1 1 1 -1 1 + 1 -1 -1 1 -1 1 1 1 1 -1 1 + 1 1 -1 1 -1 1 1 1 1 -1 1 + 1 -1 1 1 -1 1 1 1 1 -1 1 + 1 1 1 1 -1 1 1 1 1 -1 1 + 1 -1 -1 -1 1 1 1 1 1 -1 1 + 1 1 -1 -1 1 1 1 1 1 -1 1 + 1 -1 1 -1 1 1 1 1 1 -1 1 + 1 1 1 -1 1 1 1 1 1 -1 1 + 1 -1 -1 1 1 1 1 1 1 -1 1 + 1 1 -1 1 1 1 1 1 1 -1 1 + 1 -1 1 1 1 1 1 1 1 -1 1 + 1 1 1 1 1 1 1 1 1 -1 1 + 1 -1 -1 -1 -1 -1 -1 -1 -1 1 1 + 1 1 -1 -1 -1 -1 -1 -1 -1 1 1 + 1 -1 1 -1 -1 -1 -1 -1 -1 1 1 + 1 1 1 -1 -1 -1 -1 -1 -1 1 1 + 1 -1 -1 1 -1 -1 -1 -1 -1 1 1 + 1 1 -1 1 -1 -1 -1 -1 -1 1 1 + 1 -1 1 1 -1 -1 -1 -1 -1 1 1 + 1 1 1 1 -1 -1 -1 -1 -1 1 1 + 1 -1 -1 -1 1 -1 -1 -1 -1 1 1 + 1 1 -1 -1 1 -1 -1 -1 -1 1 1 + 1 -1 1 -1 1 -1 -1 -1 -1 1 1 + 1 1 1 -1 1 -1 -1 -1 -1 1 1 + 1 -1 -1 1 1 -1 -1 -1 -1 1 1 + 1 1 -1 1 1 -1 -1 -1 -1 1 1 + 1 -1 1 1 1 -1 -1 -1 -1 1 1 + 1 1 1 1 1 -1 -1 -1 -1 1 1 + 1 -1 -1 -1 -1 1 -1 -1 -1 1 1 + 1 1 -1 -1 -1 1 -1 -1 -1 1 1 + 1 -1 1 -1 -1 1 -1 -1 -1 1 1 + 1 1 1 -1 -1 1 -1 -1 -1 1 1 + 1 -1 -1 1 -1 1 -1 -1 -1 1 1 + 1 1 -1 1 -1 1 -1 -1 -1 1 1 + 1 -1 1 1 -1 1 -1 -1 -1 1 1 + 1 1 1 1 -1 1 -1 -1 -1 1 1 + 1 -1 -1 -1 1 1 -1 -1 -1 1 1 + 1 1 -1 -1 1 1 -1 -1 -1 1 1 + 1 -1 1 -1 1 1 -1 -1 -1 1 1 + 1 1 1 -1 1 1 -1 -1 -1 1 1 + 1 -1 -1 1 1 1 -1 -1 -1 1 1 + 1 1 -1 1 1 1 -1 -1 -1 1 1 + 1 -1 1 1 1 1 -1 -1 -1 1 1 + 1 1 1 1 1 1 -1 -1 -1 1 1 + 1 -1 -1 -1 -1 -1 1 -1 -1 1 1 + 1 1 -1 -1 -1 -1 1 -1 -1 1 1 + 1 -1 1 -1 -1 -1 1 -1 -1 1 1 + 1 1 1 -1 -1 -1 1 -1 -1 1 1 + 1 -1 -1 1 -1 -1 1 -1 -1 1 1 + 1 1 -1 1 -1 -1 1 -1 -1 1 1 + 1 -1 1 1 -1 -1 1 -1 -1 1 1 + 1 1 1 1 -1 -1 1 -1 -1 1 1 + 1 -1 -1 -1 1 -1 1 -1 -1 1 1 + 1 1 -1 -1 1 -1 1 -1 -1 1 1 + 1 -1 1 -1 1 -1 1 -1 -1 1 1 + 1 1 1 -1 1 -1 1 -1 -1 1 1 + 1 -1 -1 1 1 -1 1 -1 -1 1 1 + 1 1 -1 1 1 -1 1 -1 -1 1 1 + 1 -1 1 1 1 -1 1 -1 -1 1 1 + 1 1 1 1 1 -1 1 -1 -1 1 1 + 1 -1 -1 -1 -1 1 1 -1 -1 1 1 + 1 1 -1 -1 -1 1 1 -1 -1 1 1 + 1 -1 1 -1 -1 1 1 -1 -1 1 1 + 1 1 1 -1 -1 1 1 -1 -1 1 1 + 1 -1 -1 1 -1 1 1 -1 -1 1 1 + 1 1 -1 1 -1 1 1 -1 -1 1 1 + 1 -1 1 1 -1 1 1 -1 -1 1 1 + 1 1 1 1 -1 1 1 -1 -1 1 1 + 1 -1 -1 -1 1 1 1 -1 -1 1 1 + 1 1 -1 -1 1 1 1 -1 -1 1 1 + 1 -1 1 -1 1 1 1 -1 -1 1 1 + 1 1 1 -1 1 1 1 -1 -1 1 1 + 1 -1 -1 1 1 1 1 -1 -1 1 1 + 1 1 -1 1 1 1 1 -1 -1 1 1 + 1 -1 1 1 1 1 1 -1 -1 1 1 + 1 1 1 1 1 1 1 -1 -1 1 1 + 1 -1 -1 -1 -1 -1 -1 1 -1 1 1 + 1 1 -1 -1 -1 -1 -1 1 -1 1 1 + 1 -1 1 -1 -1 -1 -1 1 -1 1 1 + 1 1 1 -1 -1 -1 -1 1 -1 1 1 + 1 -1 -1 1 -1 -1 -1 1 -1 1 1 + 1 1 -1 1 -1 -1 -1 1 -1 1 1 + 1 -1 1 1 -1 -1 -1 1 -1 1 1 + 1 1 1 1 -1 -1 -1 1 -1 1 1 + 1 -1 -1 -1 1 -1 -1 1 -1 1 1 + 1 1 -1 -1 1 -1 -1 1 -1 1 1 + 1 -1 1 -1 1 -1 -1 1 -1 1 1 + 1 1 1 -1 1 -1 -1 1 -1 1 1 + 1 -1 -1 1 1 -1 -1 1 -1 1 1 + 1 1 -1 1 1 -1 -1 1 -1 1 1 + 1 -1 1 1 1 -1 -1 1 -1 1 1 + 1 1 1 1 1 -1 -1 1 -1 1 1 + 1 -1 -1 -1 -1 1 -1 1 -1 1 1 + 1 1 -1 -1 -1 1 -1 1 -1 1 1 + 1 -1 1 -1 -1 1 -1 1 -1 1 1 + 1 1 1 -1 -1 1 -1 1 -1 1 1 + 1 -1 -1 1 -1 1 -1 1 -1 1 1 + 1 1 -1 1 -1 1 -1 1 -1 1 1 + 1 -1 1 1 -1 1 -1 1 -1 1 1 + 1 1 1 1 -1 1 -1 1 -1 1 1 + 1 -1 -1 -1 1 1 -1 1 -1 1 1 + 1 1 -1 -1 1 1 -1 1 -1 1 1 + 1 -1 1 -1 1 1 -1 1 -1 1 1 + 1 1 1 -1 1 1 -1 1 -1 1 1 + 1 -1 -1 1 1 1 -1 1 -1 1 1 + 1 1 -1 1 1 1 -1 1 -1 1 1 + 1 -1 1 1 1 1 -1 1 -1 1 1 + 1 1 1 1 1 1 -1 1 -1 1 1 + 1 -1 -1 -1 -1 -1 1 1 -1 1 1 + 1 1 -1 -1 -1 -1 1 1 -1 1 1 + 1 -1 1 -1 -1 -1 1 1 -1 1 1 + 1 1 1 -1 -1 -1 1 1 -1 1 1 + 1 -1 -1 1 -1 -1 1 1 -1 1 1 + 1 1 -1 1 -1 -1 1 1 -1 1 1 + 1 -1 1 1 -1 -1 1 1 -1 1 1 + 1 1 1 1 -1 -1 1 1 -1 1 1 + 1 -1 -1 -1 1 -1 1 1 -1 1 1 + 1 1 -1 -1 1 -1 1 1 -1 1 1 + 1 -1 1 -1 1 -1 1 1 -1 1 1 + 1 1 1 -1 1 -1 1 1 -1 1 1 + 1 -1 -1 1 1 -1 1 1 -1 1 1 + 1 1 -1 1 1 -1 1 1 -1 1 1 + 1 -1 1 1 1 -1 1 1 -1 1 1 + 1 1 1 1 1 -1 1 1 -1 1 1 + 1 -1 -1 -1 -1 1 1 1 -1 1 1 + 1 1 -1 -1 -1 1 1 1 -1 1 1 + 1 -1 1 -1 -1 1 1 1 -1 1 1 + 1 1 1 -1 -1 1 1 1 -1 1 1 + 1 -1 -1 1 -1 1 1 1 -1 1 1 + 1 1 -1 1 -1 1 1 1 -1 1 1 + 1 -1 1 1 -1 1 1 1 -1 1 1 + 1 1 1 1 -1 1 1 1 -1 1 1 + 1 -1 -1 -1 1 1 1 1 -1 1 1 + 1 1 -1 -1 1 1 1 1 -1 1 1 + 1 -1 1 -1 1 1 1 1 -1 1 1 + 1 1 1 -1 1 1 1 1 -1 1 1 + 1 -1 -1 1 1 1 1 1 -1 1 1 + 1 1 -1 1 1 1 1 1 -1 1 1 + 1 -1 1 1 1 1 1 1 -1 1 1 + 1 1 1 1 1 1 1 1 -1 1 1 + 1 -1 -1 -1 -1 -1 -1 -1 1 1 1 + 1 1 -1 -1 -1 -1 -1 -1 1 1 1 + 1 -1 1 -1 -1 -1 -1 -1 1 1 1 + 1 1 1 -1 -1 -1 -1 -1 1 1 1 + 1 -1 -1 1 -1 -1 -1 -1 1 1 1 + 1 1 -1 1 -1 -1 -1 -1 1 1 1 + 1 -1 1 1 -1 -1 -1 -1 1 1 1 + 1 1 1 1 -1 -1 -1 -1 1 1 1 + 1 -1 -1 -1 1 -1 -1 -1 1 1 1 + 1 1 -1 -1 1 -1 -1 -1 1 1 1 + 1 -1 1 -1 1 -1 -1 -1 1 1 1 + 1 1 1 -1 1 -1 -1 -1 1 1 1 + 1 -1 -1 1 1 -1 -1 -1 1 1 1 + 1 1 -1 1 1 -1 -1 -1 1 1 1 + 1 -1 1 1 1 -1 -1 -1 1 1 1 + 1 1 1 1 1 -1 -1 -1 1 1 1 + 1 -1 -1 -1 -1 1 -1 -1 1 1 1 + 1 1 -1 -1 -1 1 -1 -1 1 1 1 + 1 -1 1 -1 -1 1 -1 -1 1 1 1 + 1 1 1 -1 -1 1 -1 -1 1 1 1 + 1 -1 -1 1 -1 1 -1 -1 1 1 1 + 1 1 -1 1 -1 1 -1 -1 1 1 1 + 1 -1 1 1 -1 1 -1 -1 1 1 1 + 1 1 1 1 -1 1 -1 -1 1 1 1 + 1 -1 -1 -1 1 1 -1 -1 1 1 1 + 1 1 -1 -1 1 1 -1 -1 1 1 1 + 1 -1 1 -1 1 1 -1 -1 1 1 1 + 1 1 1 -1 1 1 -1 -1 1 1 1 + 1 -1 -1 1 1 1 -1 -1 1 1 1 + 1 1 -1 1 1 1 -1 -1 1 1 1 + 1 -1 1 1 1 1 -1 -1 1 1 1 + 1 1 1 1 1 1 -1 -1 1 1 1 + 1 -1 -1 -1 -1 -1 1 -1 1 1 1 + 1 1 -1 -1 -1 -1 1 -1 1 1 1 + 1 -1 1 -1 -1 -1 1 -1 1 1 1 + 1 1 1 -1 -1 -1 1 -1 1 1 1 + 1 -1 -1 1 -1 -1 1 -1 1 1 1 + 1 1 -1 1 -1 -1 1 -1 1 1 1 + 1 -1 1 1 -1 -1 1 -1 1 1 1 + 1 1 1 1 -1 -1 1 -1 1 1 1 + 1 -1 -1 -1 1 -1 1 -1 1 1 1 + 1 1 -1 -1 1 -1 1 -1 1 1 1 + 1 -1 1 -1 1 -1 1 -1 1 1 1 + 1 1 1 -1 1 -1 1 -1 1 1 1 + 1 -1 -1 1 1 -1 1 -1 1 1 1 + 1 1 -1 1 1 -1 1 -1 1 1 1 + 1 -1 1 1 1 -1 1 -1 1 1 1 + 1 1 1 1 1 -1 1 -1 1 1 1 + 1 -1 -1 -1 -1 1 1 -1 1 1 1 + 1 1 -1 -1 -1 1 1 -1 1 1 1 + 1 -1 1 -1 -1 1 1 -1 1 1 1 + 1 1 1 -1 -1 1 1 -1 1 1 1 + 1 -1 -1 1 -1 1 1 -1 1 1 1 + 1 1 -1 1 -1 1 1 -1 1 1 1 + 1 -1 1 1 -1 1 1 -1 1 1 1 + 1 1 1 1 -1 1 1 -1 1 1 1 + 1 -1 -1 -1 1 1 1 -1 1 1 1 + 1 1 -1 -1 1 1 1 -1 1 1 1 + 1 -1 1 -1 1 1 1 -1 1 1 1 + 1 1 1 -1 1 1 1 -1 1 1 1 + 1 -1 -1 1 1 1 1 -1 1 1 1 + 1 1 -1 1 1 1 1 -1 1 1 1 + 1 -1 1 1 1 1 1 -1 1 1 1 + 1 1 1 1 1 1 1 -1 1 1 1 + 1 -1 -1 -1 -1 -1 -1 1 1 1 1 + 1 1 -1 -1 -1 -1 -1 1 1 1 1 + 1 -1 1 -1 -1 -1 -1 1 1 1 1 + 1 1 1 -1 -1 -1 -1 1 1 1 1 + 1 -1 -1 1 -1 -1 -1 1 1 1 1 + 1 1 -1 1 -1 -1 -1 1 1 1 1 + 1 -1 1 1 -1 -1 -1 1 1 1 1 + 1 1 1 1 -1 -1 -1 1 1 1 1 + 1 -1 -1 -1 1 -1 -1 1 1 1 1 + 1 1 -1 -1 1 -1 -1 1 1 1 1 + 1 -1 1 -1 1 -1 -1 1 1 1 1 + 1 1 1 -1 1 -1 -1 1 1 1 1 + 1 -1 -1 1 1 -1 -1 1 1 1 1 + 1 1 -1 1 1 -1 -1 1 1 1 1 + 1 -1 1 1 1 -1 -1 1 1 1 1 + 1 1 1 1 1 -1 -1 1 1 1 1 + 1 -1 -1 -1 -1 1 -1 1 1 1 1 + 1 1 -1 -1 -1 1 -1 1 1 1 1 + 1 -1 1 -1 -1 1 -1 1 1 1 1 + 1 1 1 -1 -1 1 -1 1 1 1 1 + 1 -1 -1 1 -1 1 -1 1 1 1 1 + 1 1 -1 1 -1 1 -1 1 1 1 1 + 1 -1 1 1 -1 1 -1 1 1 1 1 + 1 1 1 1 -1 1 -1 1 1 1 1 + 1 -1 -1 -1 1 1 -1 1 1 1 1 + 1 1 -1 -1 1 1 -1 1 1 1 1 + 1 -1 1 -1 1 1 -1 1 1 1 1 + 1 1 1 -1 1 1 -1 1 1 1 1 + 1 -1 -1 1 1 1 -1 1 1 1 1 + 1 1 -1 1 1 1 -1 1 1 1 1 + 1 -1 1 1 1 1 -1 1 1 1 1 + 1 1 1 1 1 1 -1 1 1 1 1 + 1 -1 -1 -1 -1 -1 1 1 1 1 1 + 1 1 -1 -1 -1 -1 1 1 1 1 1 + 1 -1 1 -1 -1 -1 1 1 1 1 1 + 1 1 1 -1 -1 -1 1 1 1 1 1 + 1 -1 -1 1 -1 -1 1 1 1 1 1 + 1 1 -1 1 -1 -1 1 1 1 1 1 + 1 -1 1 1 -1 -1 1 1 1 1 1 + 1 1 1 1 -1 -1 1 1 1 1 1 + 1 -1 -1 -1 1 -1 1 1 1 1 1 + 1 1 -1 -1 1 -1 1 1 1 1 1 + 1 -1 1 -1 1 -1 1 1 1 1 1 + 1 1 1 -1 1 -1 1 1 1 1 1 + 1 -1 -1 1 1 -1 1 1 1 1 1 + 1 1 -1 1 1 -1 1 1 1 1 1 + 1 -1 1 1 1 -1 1 1 1 1 1 + 1 1 1 1 1 -1 1 1 1 1 1 + 1 -1 -1 -1 -1 1 1 1 1 1 1 + 1 1 -1 -1 -1 1 1 1 1 1 1 + 1 -1 1 -1 -1 1 1 1 1 1 1 + 1 1 1 -1 -1 1 1 1 1 1 1 + 1 -1 -1 1 -1 1 1 1 1 1 1 + 1 1 -1 1 -1 1 1 1 1 1 1 + 1 -1 1 1 -1 1 1 1 1 1 1 + 1 1 1 1 -1 1 1 1 1 1 1 + 1 -1 -1 -1 1 1 1 1 1 1 1 + 1 1 -1 -1 1 1 1 1 1 1 1 + 1 -1 1 -1 1 1 1 1 1 1 1 + 1 1 1 -1 1 1 1 1 1 1 1 + 1 -1 -1 1 1 1 1 1 1 1 1 + 1 1 -1 1 1 1 1 1 1 1 1 + 1 -1 1 1 1 1 1 1 1 1 1 + 1 1 1 1 1 1 1 1 1 1 1 +end +input_incidence diff --git a/inst/extdata/cube10.ine b/inst/extdata/cube10.ine new file mode 100644 index 00000000..1f035f33 --- /dev/null +++ b/inst/extdata/cube10.ine @@ -0,0 +1,26 @@ +cube10.ine +H-representation +begin + 20 11 real + 1 1 0 0 0 0 0 0 0 0 0 + 1 0 1 0 0 0 0 0 0 0 0 + 1 0 0 1 0 0 0 0 0 0 0 + 1 0 0 0 1 0 0 0 0 0 0 + 1 0 0 0 0 1 0 0 0 0 0 + 1 0 0 0 0 0 1 0 0 0 0 + 1 0 0 0 0 0 0 1 0 0 0 + 1 0 0 0 0 0 0 0 1 0 0 + 1 0 0 0 0 0 0 0 0 1 0 + 1 0 0 0 0 0 0 0 0 0 1 + 1 -1 0 0 0 0 0 0 0 0 0 + 1 0 -1 0 0 0 0 0 0 0 0 + 1 0 0 -1 0 0 0 0 0 0 0 + 1 0 0 0 -1 0 0 0 0 0 0 + 1 0 0 0 0 -1 0 0 0 0 0 + 1 0 0 0 0 0 -1 0 0 0 0 + 1 0 0 0 0 0 0 -1 0 0 0 + 1 0 0 0 0 0 0 0 -1 0 0 + 1 0 0 0 0 0 0 0 0 -1 0 + 1 0 0 0 0 0 0 0 0 0 -1 +end +input_incidence diff --git a/inst/extdata/cube_10.ext b/inst/extdata/cube_10.ext new file mode 100644 index 00000000..ed4dd559 --- /dev/null +++ b/inst/extdata/cube_10.ext @@ -0,0 +1,1031 @@ +cube_10.ext +V-representation +begin +1024 11 integer +1 -1 -1 -1 -1 -1 -1 -1 -1 1 1 +1 -1 -1 -1 -1 -1 -1 -1 1 -1 1 +1 -1 -1 -1 -1 -1 -1 -1 1 1 -1 +1 -1 -1 -1 -1 -1 -1 -1 1 1 1 +1 -1 -1 -1 -1 -1 -1 1 -1 -1 1 +1 -1 -1 -1 -1 -1 -1 1 -1 1 -1 +1 -1 -1 -1 -1 -1 -1 1 -1 1 1 +1 -1 -1 -1 -1 -1 -1 1 1 -1 -1 +1 -1 -1 -1 -1 -1 -1 1 1 -1 1 +1 -1 -1 -1 -1 -1 -1 1 1 1 -1 +1 -1 -1 -1 -1 -1 -1 1 1 1 1 +1 -1 -1 -1 -1 -1 1 -1 -1 -1 1 +1 -1 -1 -1 -1 -1 1 -1 -1 1 -1 +1 -1 -1 -1 -1 -1 1 -1 -1 1 1 +1 -1 -1 -1 -1 -1 1 -1 1 -1 -1 +1 -1 -1 -1 -1 -1 1 -1 1 -1 1 +1 -1 -1 -1 -1 -1 1 -1 1 1 -1 +1 -1 -1 -1 -1 -1 1 -1 1 1 1 +1 -1 -1 -1 -1 -1 1 1 -1 -1 -1 +1 -1 -1 -1 -1 -1 1 1 -1 -1 1 +1 -1 -1 -1 -1 -1 1 1 -1 1 -1 +1 -1 -1 -1 -1 -1 1 1 -1 1 1 +1 -1 -1 -1 -1 -1 1 1 1 -1 1 +1 -1 -1 -1 -1 -1 1 1 1 -1 -1 +1 -1 -1 -1 -1 -1 1 1 1 1 -1 +1 -1 -1 -1 -1 -1 1 1 1 1 1 +1 -1 -1 -1 -1 1 -1 -1 -1 -1 1 +1 -1 -1 -1 -1 1 -1 -1 -1 1 -1 +1 -1 -1 -1 -1 1 -1 -1 -1 1 1 +1 -1 -1 -1 -1 1 -1 -1 1 -1 -1 +1 -1 -1 -1 -1 1 -1 -1 1 -1 1 +1 -1 -1 -1 -1 1 -1 -1 1 1 -1 +1 -1 -1 -1 -1 1 -1 -1 1 1 1 +1 -1 -1 -1 -1 1 -1 1 -1 -1 -1 +1 -1 -1 -1 -1 1 -1 1 -1 -1 1 +1 -1 -1 -1 -1 1 -1 1 -1 1 -1 +1 -1 -1 -1 -1 1 -1 1 -1 1 1 +1 -1 -1 -1 -1 1 -1 1 1 -1 -1 +1 -1 -1 -1 -1 1 -1 1 1 -1 1 +1 -1 -1 -1 -1 1 -1 1 1 1 -1 +1 -1 -1 -1 -1 1 -1 1 1 1 1 +1 -1 -1 -1 -1 1 1 -1 -1 -1 -1 +1 -1 -1 -1 -1 1 1 -1 -1 -1 1 +1 -1 -1 -1 -1 1 1 -1 -1 1 -1 +1 -1 -1 -1 -1 1 1 -1 -1 1 1 +1 -1 -1 -1 -1 1 1 -1 1 -1 -1 +1 -1 -1 -1 -1 1 1 -1 1 -1 1 +1 -1 -1 -1 -1 1 1 -1 1 1 -1 +1 -1 -1 -1 -1 1 1 -1 1 1 1 +1 -1 -1 -1 -1 1 1 1 -1 -1 -1 +1 -1 -1 -1 -1 1 1 1 -1 -1 1 +1 -1 -1 -1 -1 1 1 1 -1 1 -1 +1 -1 -1 -1 -1 1 1 1 -1 1 1 +1 -1 -1 -1 -1 1 1 1 1 -1 1 +1 -1 -1 -1 -1 1 1 1 1 -1 -1 +1 -1 -1 -1 -1 1 1 1 1 1 -1 +1 -1 -1 -1 -1 1 1 1 1 1 1 +1 -1 -1 -1 1 -1 -1 -1 -1 -1 1 +1 -1 -1 -1 1 -1 -1 -1 -1 1 -1 +1 -1 -1 -1 1 -1 -1 -1 -1 1 1 +1 -1 -1 -1 1 -1 -1 -1 1 -1 -1 +1 -1 -1 -1 1 -1 -1 -1 1 -1 1 +1 -1 -1 -1 1 -1 -1 -1 1 1 -1 +1 -1 -1 -1 1 -1 -1 -1 1 1 1 +1 -1 -1 -1 1 -1 -1 1 -1 -1 -1 +1 -1 -1 -1 1 -1 -1 1 -1 -1 1 +1 -1 -1 -1 1 -1 -1 1 -1 1 -1 +1 -1 -1 -1 1 -1 -1 1 -1 1 1 +1 -1 -1 -1 1 -1 -1 1 1 -1 -1 +1 -1 -1 -1 1 -1 -1 1 1 -1 1 +1 -1 -1 -1 1 -1 -1 1 1 1 -1 +1 -1 -1 -1 1 -1 -1 1 1 1 1 +1 -1 -1 -1 1 -1 1 -1 -1 -1 -1 +1 -1 -1 -1 1 -1 1 -1 -1 -1 1 +1 -1 -1 -1 1 -1 1 -1 -1 1 -1 +1 -1 -1 -1 1 -1 1 -1 -1 1 1 +1 -1 -1 -1 1 -1 1 -1 1 -1 -1 +1 -1 -1 -1 1 -1 1 -1 1 -1 1 +1 -1 -1 -1 1 -1 1 -1 1 1 -1 +1 -1 -1 -1 1 -1 1 -1 1 1 1 +1 -1 -1 -1 1 -1 1 1 -1 -1 -1 +1 -1 -1 -1 1 -1 1 1 -1 -1 1 +1 -1 -1 -1 1 -1 1 1 -1 1 -1 +1 -1 -1 -1 1 -1 1 1 -1 1 1 +1 -1 -1 -1 1 -1 1 1 1 -1 1 +1 -1 -1 -1 1 -1 1 1 1 -1 -1 +1 -1 -1 -1 1 -1 1 1 1 1 -1 +1 -1 -1 -1 1 -1 1 1 1 1 1 +1 -1 -1 -1 1 1 -1 -1 -1 -1 -1 +1 -1 -1 -1 1 1 -1 -1 -1 -1 1 +1 -1 -1 -1 1 1 -1 -1 -1 1 -1 +1 -1 -1 -1 1 1 -1 -1 -1 1 1 +1 -1 -1 -1 1 1 -1 -1 1 -1 -1 +1 -1 -1 -1 1 1 -1 -1 1 -1 1 +1 -1 -1 -1 1 1 -1 -1 1 1 -1 +1 -1 -1 -1 1 1 -1 -1 1 1 1 +1 -1 -1 -1 1 1 -1 1 -1 -1 -1 +1 -1 -1 -1 1 1 -1 1 -1 -1 1 +1 -1 -1 -1 1 1 -1 1 -1 1 -1 +1 -1 -1 -1 1 1 -1 1 -1 1 1 +1 -1 -1 -1 1 1 -1 1 1 -1 -1 +1 -1 -1 -1 1 1 -1 1 1 -1 1 +1 -1 -1 -1 1 1 -1 1 1 1 -1 +1 -1 -1 -1 1 1 -1 1 1 1 1 +1 -1 -1 -1 1 1 1 -1 -1 -1 -1 +1 -1 -1 -1 1 1 1 -1 -1 -1 1 +1 -1 -1 -1 1 1 1 -1 -1 1 -1 +1 -1 -1 -1 1 1 1 -1 -1 1 1 +1 -1 -1 -1 1 1 1 -1 1 -1 -1 +1 -1 -1 -1 1 1 1 -1 1 -1 1 +1 -1 -1 -1 1 1 1 -1 1 1 -1 +1 -1 -1 -1 1 1 1 -1 1 1 1 +1 -1 -1 -1 1 1 1 1 -1 -1 -1 +1 -1 -1 -1 1 1 1 1 -1 -1 1 +1 -1 -1 -1 1 1 1 1 -1 1 -1 +1 -1 -1 -1 1 1 1 1 -1 1 1 +1 -1 -1 -1 1 1 1 1 1 -1 1 +1 -1 -1 -1 1 1 1 1 1 -1 -1 +1 -1 -1 -1 1 1 1 1 1 1 -1 +1 -1 -1 -1 1 1 1 1 1 1 1 +1 -1 -1 1 -1 -1 -1 -1 -1 -1 1 +1 -1 -1 1 -1 -1 -1 -1 -1 1 -1 +1 -1 -1 1 -1 -1 -1 -1 -1 1 1 +1 -1 -1 1 -1 -1 -1 -1 1 -1 -1 +1 -1 -1 1 -1 -1 -1 -1 1 -1 1 +1 -1 -1 1 -1 -1 -1 -1 1 1 -1 +1 -1 -1 1 -1 -1 -1 -1 1 1 1 +1 -1 -1 1 -1 -1 -1 1 -1 -1 -1 +1 -1 -1 1 -1 -1 -1 1 -1 -1 1 +1 -1 -1 1 -1 -1 -1 1 -1 1 -1 +1 -1 -1 1 -1 -1 -1 1 -1 1 1 +1 -1 -1 1 -1 -1 -1 1 1 -1 -1 +1 -1 -1 1 -1 -1 -1 1 1 -1 1 +1 -1 -1 1 -1 -1 -1 1 1 1 -1 +1 -1 -1 1 -1 -1 -1 1 1 1 1 +1 -1 -1 1 -1 -1 1 -1 -1 -1 -1 +1 -1 -1 1 -1 -1 1 -1 -1 -1 1 +1 -1 -1 1 -1 -1 1 -1 -1 1 -1 +1 -1 -1 1 -1 -1 1 -1 -1 1 1 +1 -1 -1 1 -1 -1 1 -1 1 -1 -1 +1 -1 -1 1 -1 -1 1 -1 1 -1 1 +1 -1 -1 1 -1 -1 1 -1 1 1 -1 +1 -1 -1 1 -1 -1 1 -1 1 1 1 +1 -1 -1 1 -1 -1 1 1 -1 -1 -1 +1 -1 -1 1 -1 -1 1 1 -1 -1 1 +1 -1 -1 1 -1 -1 1 1 -1 1 -1 +1 -1 -1 1 -1 -1 1 1 -1 1 1 +1 -1 -1 1 -1 -1 1 1 1 -1 1 +1 -1 -1 1 -1 -1 1 1 1 -1 -1 +1 -1 -1 1 -1 -1 1 1 1 1 -1 +1 -1 -1 1 -1 -1 1 1 1 1 1 +1 -1 -1 1 -1 1 -1 -1 -1 -1 -1 +1 -1 -1 1 -1 1 -1 -1 -1 -1 1 +1 -1 -1 1 -1 1 -1 -1 -1 1 -1 +1 -1 -1 1 -1 1 -1 -1 -1 1 1 +1 -1 -1 1 -1 1 -1 -1 1 -1 -1 +1 -1 -1 1 -1 1 -1 -1 1 -1 1 +1 -1 -1 1 -1 1 -1 -1 1 1 -1 +1 -1 -1 1 -1 1 -1 -1 1 1 1 +1 -1 -1 1 -1 1 -1 1 -1 -1 -1 +1 -1 -1 1 -1 1 -1 1 -1 -1 1 +1 -1 -1 1 -1 1 -1 1 -1 1 -1 +1 -1 -1 1 -1 1 -1 1 -1 1 1 +1 -1 -1 1 -1 1 -1 1 1 -1 -1 +1 -1 -1 1 -1 1 -1 1 1 -1 1 +1 -1 -1 1 -1 1 -1 1 1 1 -1 +1 -1 -1 1 -1 1 -1 1 1 1 1 +1 -1 -1 1 -1 1 1 -1 -1 -1 -1 +1 -1 -1 1 -1 1 1 -1 -1 -1 1 +1 -1 -1 1 -1 1 1 -1 -1 1 -1 +1 -1 -1 1 -1 1 1 -1 -1 1 1 +1 -1 -1 1 -1 1 1 -1 1 -1 -1 +1 -1 -1 1 -1 1 1 -1 1 -1 1 +1 -1 -1 1 -1 1 1 -1 1 1 -1 +1 -1 -1 1 -1 1 1 -1 1 1 1 +1 -1 -1 1 -1 1 1 1 -1 -1 -1 +1 -1 -1 1 -1 1 1 1 -1 -1 1 +1 -1 -1 1 -1 1 1 1 -1 1 -1 +1 -1 -1 1 -1 1 1 1 -1 1 1 +1 -1 -1 1 -1 1 1 1 1 -1 1 +1 -1 -1 1 -1 1 1 1 1 -1 -1 +1 -1 -1 1 -1 1 1 1 1 1 -1 +1 -1 -1 1 -1 1 1 1 1 1 1 +1 -1 -1 1 1 -1 -1 -1 -1 -1 -1 +1 -1 -1 1 1 -1 -1 -1 -1 -1 1 +1 -1 -1 1 1 -1 -1 -1 -1 1 -1 +1 -1 -1 1 1 -1 -1 -1 -1 1 1 +1 -1 -1 1 1 -1 -1 -1 1 -1 -1 +1 -1 -1 1 1 -1 -1 -1 1 -1 1 +1 -1 -1 1 1 -1 -1 -1 1 1 -1 +1 -1 -1 1 1 -1 -1 -1 1 1 1 +1 -1 -1 1 1 -1 -1 1 -1 -1 -1 +1 -1 -1 1 1 -1 -1 1 -1 -1 1 +1 -1 -1 1 1 -1 -1 1 -1 1 -1 +1 -1 -1 1 1 -1 -1 1 -1 1 1 +1 -1 -1 1 1 -1 -1 1 1 -1 -1 +1 -1 -1 1 1 -1 -1 1 1 -1 1 +1 -1 -1 1 1 -1 -1 1 1 1 -1 +1 -1 -1 1 1 -1 -1 1 1 1 1 +1 -1 -1 1 1 -1 1 -1 -1 -1 -1 +1 -1 -1 1 1 -1 1 -1 -1 -1 1 +1 -1 -1 1 1 -1 1 -1 -1 1 -1 +1 -1 -1 1 1 -1 1 -1 -1 1 1 +1 -1 -1 1 1 -1 1 -1 1 -1 -1 +1 -1 -1 1 1 -1 1 -1 1 -1 1 +1 -1 -1 1 1 -1 1 -1 1 1 -1 +1 -1 -1 1 1 -1 1 -1 1 1 1 +1 -1 -1 1 1 -1 1 1 -1 -1 -1 +1 -1 -1 1 1 -1 1 1 -1 -1 1 +1 -1 -1 1 1 -1 1 1 -1 1 -1 +1 -1 -1 1 1 -1 1 1 -1 1 1 +1 -1 -1 1 1 -1 1 1 1 -1 1 +1 -1 -1 1 1 -1 1 1 1 -1 -1 +1 -1 -1 1 1 -1 1 1 1 1 -1 +1 -1 -1 1 1 -1 1 1 1 1 1 +1 -1 -1 1 1 1 -1 -1 -1 -1 -1 +1 -1 -1 1 1 1 -1 -1 -1 -1 1 +1 -1 -1 1 1 1 -1 -1 -1 1 -1 +1 -1 -1 1 1 1 -1 -1 -1 1 1 +1 -1 -1 1 1 1 -1 -1 1 -1 -1 +1 -1 -1 1 1 1 -1 -1 1 -1 1 +1 -1 -1 1 1 1 -1 -1 1 1 -1 +1 -1 -1 1 1 1 -1 -1 1 1 1 +1 -1 -1 1 1 1 -1 1 -1 -1 -1 +1 -1 -1 1 1 1 -1 1 -1 -1 1 +1 -1 -1 1 1 1 -1 1 -1 1 -1 +1 -1 -1 1 1 1 -1 1 -1 1 1 +1 -1 -1 1 1 1 -1 1 1 -1 -1 +1 -1 -1 1 1 1 -1 1 1 -1 1 +1 -1 -1 1 1 1 -1 1 1 1 -1 +1 -1 -1 1 1 1 -1 1 1 1 1 +1 -1 -1 1 1 1 1 -1 -1 -1 -1 +1 -1 -1 1 1 1 1 -1 -1 -1 1 +1 -1 -1 1 1 1 1 -1 -1 1 -1 +1 -1 -1 1 1 1 1 -1 -1 1 1 +1 -1 -1 1 1 1 1 -1 1 -1 -1 +1 -1 -1 1 1 1 1 -1 1 -1 1 +1 -1 -1 1 1 1 1 -1 1 1 -1 +1 -1 -1 1 1 1 1 -1 1 1 1 +1 -1 -1 1 1 1 1 1 -1 -1 -1 +1 -1 -1 1 1 1 1 1 -1 -1 1 +1 -1 -1 1 1 1 1 1 -1 1 -1 +1 -1 -1 1 1 1 1 1 -1 1 1 +1 -1 -1 1 1 1 1 1 1 -1 1 +1 -1 -1 1 1 1 1 1 1 -1 -1 +1 -1 -1 1 1 1 1 1 1 1 -1 +1 -1 -1 1 1 1 1 1 1 1 1 +1 -1 1 -1 -1 -1 -1 -1 -1 1 1 +1 -1 1 -1 -1 -1 -1 -1 1 -1 1 +1 -1 1 -1 -1 -1 -1 -1 1 1 -1 +1 -1 1 -1 -1 -1 -1 -1 1 1 1 +1 -1 1 -1 -1 -1 -1 1 -1 -1 1 +1 -1 1 -1 -1 -1 -1 1 -1 1 -1 +1 -1 1 -1 -1 -1 -1 1 -1 1 1 +1 -1 1 -1 -1 -1 -1 1 1 -1 -1 +1 -1 1 -1 -1 -1 -1 1 1 -1 1 +1 -1 1 -1 -1 -1 -1 1 1 1 -1 +1 -1 1 -1 -1 -1 -1 1 1 1 1 +1 -1 1 -1 -1 -1 1 -1 -1 -1 1 +1 -1 1 -1 -1 -1 1 -1 -1 1 -1 +1 -1 1 -1 -1 -1 1 -1 -1 1 1 +1 -1 1 -1 -1 -1 1 -1 1 -1 -1 +1 -1 1 -1 -1 -1 1 -1 1 -1 1 +1 -1 1 -1 -1 -1 1 -1 1 1 -1 +1 -1 1 -1 -1 -1 1 -1 1 1 1 +1 -1 1 -1 -1 -1 1 1 -1 -1 -1 +1 -1 1 -1 -1 -1 1 1 -1 -1 1 +1 -1 1 -1 -1 -1 1 1 -1 1 -1 +1 -1 1 -1 -1 -1 1 1 -1 1 1 +1 -1 1 -1 -1 -1 1 1 1 -1 1 +1 -1 1 -1 -1 -1 1 1 1 -1 -1 +1 -1 1 -1 -1 -1 1 1 1 1 -1 +1 -1 1 -1 -1 -1 1 1 1 1 1 +1 -1 1 -1 -1 1 -1 -1 -1 -1 1 +1 -1 1 -1 -1 1 -1 -1 -1 1 -1 +1 -1 1 -1 -1 1 -1 -1 -1 1 1 +1 -1 1 -1 -1 1 -1 -1 1 -1 -1 +1 -1 1 -1 -1 1 -1 -1 1 -1 1 +1 -1 1 -1 -1 1 -1 -1 1 1 -1 +1 -1 1 -1 -1 1 -1 -1 1 1 1 +1 -1 1 -1 -1 1 -1 1 -1 -1 -1 +1 -1 1 -1 -1 1 -1 1 -1 -1 1 +1 -1 1 -1 -1 1 -1 1 -1 1 -1 +1 -1 1 -1 -1 1 -1 1 -1 1 1 +1 -1 1 -1 -1 1 -1 1 1 -1 -1 +1 -1 1 -1 -1 1 -1 1 1 -1 1 +1 -1 1 -1 -1 1 -1 1 1 1 -1 +1 -1 1 -1 -1 1 -1 1 1 1 1 +1 -1 1 -1 -1 1 1 -1 -1 -1 -1 +1 -1 1 -1 -1 1 1 -1 -1 -1 1 +1 -1 1 -1 -1 1 1 -1 -1 1 -1 +1 -1 1 -1 -1 1 1 -1 -1 1 1 +1 -1 1 -1 -1 1 1 -1 1 -1 -1 +1 -1 1 -1 -1 1 1 -1 1 -1 1 +1 -1 1 -1 -1 1 1 -1 1 1 -1 +1 -1 1 -1 -1 1 1 -1 1 1 1 +1 -1 1 -1 -1 1 1 1 -1 -1 -1 +1 -1 1 -1 -1 1 1 1 -1 -1 1 +1 -1 1 -1 -1 1 1 1 -1 1 -1 +1 -1 1 -1 -1 1 1 1 -1 1 1 +1 -1 1 -1 -1 1 1 1 1 -1 1 +1 -1 1 -1 -1 1 1 1 1 -1 -1 +1 -1 1 -1 -1 1 1 1 1 1 -1 +1 -1 1 -1 -1 1 1 1 1 1 1 +1 -1 1 -1 1 -1 -1 -1 -1 -1 1 +1 -1 1 -1 1 -1 -1 -1 -1 1 -1 +1 -1 1 -1 1 -1 -1 -1 -1 1 1 +1 -1 1 -1 1 -1 -1 -1 1 -1 -1 +1 -1 1 -1 1 -1 -1 -1 1 -1 1 +1 -1 1 -1 1 -1 -1 -1 1 1 -1 +1 -1 1 -1 1 -1 -1 -1 1 1 1 +1 -1 1 -1 1 -1 -1 1 -1 -1 -1 +1 -1 1 -1 1 -1 -1 1 -1 -1 1 +1 -1 1 -1 1 -1 -1 1 -1 1 -1 +1 -1 1 -1 1 -1 -1 1 -1 1 1 +1 -1 1 -1 1 -1 -1 1 1 -1 -1 +1 -1 1 -1 1 -1 -1 1 1 -1 1 +1 -1 1 -1 1 -1 -1 1 1 1 -1 +1 -1 1 -1 1 -1 -1 1 1 1 1 +1 -1 1 -1 1 -1 1 -1 -1 -1 -1 +1 -1 1 -1 1 -1 1 -1 -1 -1 1 +1 -1 1 -1 1 -1 1 -1 -1 1 -1 +1 -1 1 -1 1 -1 1 -1 -1 1 1 +1 -1 1 -1 1 -1 1 -1 1 -1 -1 +1 -1 1 -1 1 -1 1 -1 1 -1 1 +1 -1 1 -1 1 -1 1 -1 1 1 -1 +1 -1 1 -1 1 -1 1 -1 1 1 1 +1 -1 1 -1 1 -1 1 1 -1 -1 -1 +1 -1 1 -1 1 -1 1 1 -1 -1 1 +1 -1 1 -1 1 -1 1 1 -1 1 -1 +1 -1 1 -1 1 -1 1 1 -1 1 1 +1 -1 1 -1 1 -1 1 1 1 -1 1 +1 -1 1 -1 1 -1 1 1 1 -1 -1 +1 -1 1 -1 1 -1 1 1 1 1 -1 +1 -1 1 -1 1 -1 1 1 1 1 1 +1 -1 1 -1 1 1 -1 -1 -1 -1 -1 +1 -1 1 -1 1 1 -1 -1 -1 -1 1 +1 -1 1 -1 1 1 -1 -1 -1 1 -1 +1 -1 1 -1 1 1 -1 -1 -1 1 1 +1 -1 1 -1 1 1 -1 -1 1 -1 -1 +1 -1 1 -1 1 1 -1 -1 1 -1 1 +1 -1 1 -1 1 1 -1 -1 1 1 -1 +1 -1 1 -1 1 1 -1 -1 1 1 1 +1 -1 1 -1 1 1 -1 1 -1 -1 -1 +1 -1 1 -1 1 1 -1 1 -1 -1 1 +1 -1 1 -1 1 1 -1 1 -1 1 -1 +1 -1 1 -1 1 1 -1 1 -1 1 1 +1 -1 1 -1 1 1 -1 1 1 -1 -1 +1 -1 1 -1 1 1 -1 1 1 -1 1 +1 -1 1 -1 1 1 -1 1 1 1 -1 +1 -1 1 -1 1 1 -1 1 1 1 1 +1 -1 1 -1 1 1 1 -1 -1 -1 -1 +1 -1 1 -1 1 1 1 -1 -1 -1 1 +1 -1 1 -1 1 1 1 -1 -1 1 -1 +1 -1 1 -1 1 1 1 -1 -1 1 1 +1 -1 1 -1 1 1 1 -1 1 -1 -1 +1 -1 1 -1 1 1 1 -1 1 -1 1 +1 -1 1 -1 1 1 1 -1 1 1 -1 +1 -1 1 -1 1 1 1 -1 1 1 1 +1 -1 1 -1 1 1 1 1 -1 -1 -1 +1 -1 1 -1 1 1 1 1 -1 -1 1 +1 -1 1 -1 1 1 1 1 -1 1 -1 +1 -1 1 -1 1 1 1 1 -1 1 1 +1 -1 1 -1 1 1 1 1 1 -1 1 +1 -1 1 -1 1 1 1 1 1 -1 -1 +1 -1 1 -1 1 1 1 1 1 1 -1 +1 -1 1 -1 1 1 1 1 1 1 1 +1 -1 1 1 -1 -1 -1 -1 -1 -1 -1 +1 -1 1 1 -1 -1 -1 -1 -1 -1 1 +1 -1 1 1 -1 -1 -1 -1 -1 1 -1 +1 -1 1 1 -1 -1 -1 -1 -1 1 1 +1 -1 1 1 -1 -1 -1 -1 1 -1 -1 +1 -1 1 1 -1 -1 -1 -1 1 -1 1 +1 -1 1 1 -1 -1 -1 -1 1 1 -1 +1 -1 1 1 -1 -1 -1 -1 1 1 1 +1 -1 1 1 -1 -1 -1 1 -1 -1 -1 +1 -1 1 1 -1 -1 -1 1 -1 -1 1 +1 -1 1 1 -1 -1 -1 1 -1 1 -1 +1 -1 1 1 -1 -1 -1 1 -1 1 1 +1 -1 1 1 -1 -1 -1 1 1 -1 -1 +1 -1 1 1 -1 -1 -1 1 1 -1 1 +1 -1 1 1 -1 -1 -1 1 1 1 -1 +1 -1 1 1 -1 -1 -1 1 1 1 1 +1 -1 1 1 -1 -1 1 -1 -1 -1 -1 +1 -1 1 1 -1 -1 1 -1 -1 -1 1 +1 -1 1 1 -1 -1 1 -1 -1 1 -1 +1 -1 1 1 -1 -1 1 -1 -1 1 1 +1 -1 1 1 -1 -1 1 -1 1 -1 -1 +1 -1 1 1 -1 -1 1 -1 1 -1 1 +1 -1 1 1 -1 -1 1 -1 1 1 -1 +1 -1 1 1 -1 -1 1 -1 1 1 1 +1 -1 1 1 -1 -1 1 1 -1 -1 -1 +1 -1 1 1 -1 -1 1 1 -1 -1 1 +1 -1 1 1 -1 -1 1 1 -1 1 -1 +1 -1 1 1 -1 -1 1 1 -1 1 1 +1 -1 1 1 -1 -1 1 1 1 -1 1 +1 -1 1 1 -1 -1 1 1 1 -1 -1 +1 -1 1 1 -1 -1 1 1 1 1 -1 +1 -1 1 1 -1 -1 1 1 1 1 1 +1 -1 1 1 -1 1 -1 -1 -1 -1 -1 +1 -1 1 1 -1 1 -1 -1 -1 -1 1 +1 -1 1 1 -1 1 -1 -1 -1 1 -1 +1 -1 1 1 -1 1 -1 -1 -1 1 1 +1 -1 1 1 -1 1 -1 -1 1 -1 -1 +1 -1 1 1 -1 1 -1 -1 1 -1 1 +1 -1 1 1 -1 1 -1 -1 1 1 -1 +1 -1 1 1 -1 1 -1 -1 1 1 1 +1 -1 1 1 -1 1 -1 1 -1 -1 -1 +1 -1 1 1 -1 1 -1 1 -1 -1 1 +1 -1 1 1 -1 1 -1 1 -1 1 -1 +1 -1 1 1 -1 1 -1 1 -1 1 1 +1 -1 1 1 -1 1 -1 1 1 -1 -1 +1 -1 1 1 -1 1 -1 1 1 -1 1 +1 -1 1 1 -1 1 -1 1 1 1 -1 +1 -1 1 1 -1 1 -1 1 1 1 1 +1 -1 1 1 -1 1 1 -1 -1 -1 -1 +1 -1 1 1 -1 1 1 -1 -1 -1 1 +1 -1 1 1 -1 1 1 -1 -1 1 -1 +1 -1 1 1 -1 1 1 -1 -1 1 1 +1 -1 1 1 -1 1 1 -1 1 -1 -1 +1 -1 1 1 -1 1 1 -1 1 -1 1 +1 -1 1 1 -1 1 1 -1 1 1 -1 +1 -1 1 1 -1 1 1 -1 1 1 1 +1 -1 1 1 -1 1 1 1 -1 -1 -1 +1 -1 1 1 -1 1 1 1 -1 -1 1 +1 -1 1 1 -1 1 1 1 -1 1 -1 +1 -1 1 1 -1 1 1 1 -1 1 1 +1 -1 1 1 -1 1 1 1 1 -1 1 +1 -1 1 1 -1 1 1 1 1 -1 -1 +1 -1 1 1 -1 1 1 1 1 1 -1 +1 -1 1 1 -1 1 1 1 1 1 1 +1 -1 1 1 1 -1 -1 -1 -1 -1 -1 +1 -1 1 1 1 -1 -1 -1 -1 -1 1 +1 -1 1 1 1 -1 -1 -1 -1 1 -1 +1 -1 1 1 1 -1 -1 -1 -1 1 1 +1 -1 1 1 1 -1 -1 -1 1 -1 -1 +1 -1 1 1 1 -1 -1 -1 1 -1 1 +1 -1 1 1 1 -1 -1 -1 1 1 -1 +1 -1 1 1 1 -1 -1 -1 1 1 1 +1 -1 1 1 1 -1 -1 1 -1 -1 -1 +1 -1 1 1 1 -1 -1 1 -1 -1 1 +1 -1 1 1 1 -1 -1 1 -1 1 -1 +1 -1 1 1 1 -1 -1 1 -1 1 1 +1 -1 1 1 1 -1 -1 1 1 -1 -1 +1 -1 1 1 1 -1 -1 1 1 -1 1 +1 -1 1 1 1 -1 -1 1 1 1 -1 +1 -1 1 1 1 -1 -1 1 1 1 1 +1 -1 1 1 1 -1 1 -1 -1 -1 -1 +1 -1 1 1 1 -1 1 -1 -1 -1 1 +1 -1 1 1 1 -1 1 -1 -1 1 -1 +1 -1 1 1 1 -1 1 -1 -1 1 1 +1 -1 1 1 1 -1 1 -1 1 -1 -1 +1 -1 1 1 1 -1 1 -1 1 -1 1 +1 -1 1 1 1 -1 1 -1 1 1 -1 +1 -1 1 1 1 -1 1 -1 1 1 1 +1 -1 1 1 1 -1 1 1 -1 -1 -1 +1 -1 1 1 1 -1 1 1 -1 -1 1 +1 -1 1 1 1 -1 1 1 -1 1 -1 +1 -1 1 1 1 -1 1 1 -1 1 1 +1 -1 1 1 1 -1 1 1 1 -1 1 +1 -1 1 1 1 -1 1 1 1 -1 -1 +1 -1 1 1 1 -1 1 1 1 1 -1 +1 -1 1 1 1 -1 1 1 1 1 1 +1 -1 1 1 1 1 -1 -1 -1 -1 -1 +1 -1 1 1 1 1 -1 -1 -1 -1 1 +1 -1 1 1 1 1 -1 -1 -1 1 -1 +1 -1 1 1 1 1 -1 -1 -1 1 1 +1 -1 1 1 1 1 -1 -1 1 -1 -1 +1 -1 1 1 1 1 -1 -1 1 -1 1 +1 -1 1 1 1 1 -1 -1 1 1 -1 +1 -1 1 1 1 1 -1 -1 1 1 1 +1 -1 1 1 1 1 -1 1 -1 -1 -1 +1 -1 1 1 1 1 -1 1 -1 -1 1 +1 -1 1 1 1 1 -1 1 -1 1 -1 +1 -1 1 1 1 1 -1 1 -1 1 1 +1 -1 1 1 1 1 -1 1 1 -1 -1 +1 -1 1 1 1 1 -1 1 1 -1 1 +1 -1 1 1 1 1 -1 1 1 1 -1 +1 -1 1 1 1 1 -1 1 1 1 1 +1 -1 1 1 1 1 1 -1 -1 -1 -1 +1 -1 1 1 1 1 1 -1 -1 -1 1 +1 -1 1 1 1 1 1 -1 -1 1 -1 +1 -1 1 1 1 1 1 -1 -1 1 1 +1 -1 1 1 1 1 1 -1 1 -1 -1 +1 -1 1 1 1 1 1 -1 1 -1 1 +1 -1 1 1 1 1 1 -1 1 1 -1 +1 -1 1 1 1 1 1 -1 1 1 1 +1 -1 1 1 1 1 1 1 -1 -1 -1 +1 -1 1 1 1 1 1 1 -1 -1 1 +1 -1 1 1 1 1 1 1 -1 1 -1 +1 -1 1 1 1 1 1 1 -1 1 1 +1 -1 1 1 1 1 1 1 1 -1 1 +1 -1 1 1 1 1 1 1 1 -1 -1 +1 -1 1 1 1 1 1 1 1 1 -1 +1 -1 1 1 1 1 1 1 1 1 1 +1 -1 1 -1 -1 -1 -1 -1 -1 -1 1 +1 -1 1 -1 -1 -1 -1 -1 -1 1 -1 +1 -1 1 -1 -1 -1 -1 -1 1 -1 -1 +1 -1 1 -1 -1 -1 -1 1 -1 -1 -1 +1 -1 1 -1 -1 -1 1 -1 -1 -1 -1 +1 -1 1 -1 -1 1 -1 -1 -1 -1 -1 +1 -1 1 -1 1 -1 -1 -1 -1 -1 -1 +1 1 -1 -1 -1 -1 -1 -1 -1 1 1 +1 1 -1 -1 -1 -1 -1 -1 1 -1 1 +1 1 -1 -1 -1 -1 -1 -1 1 1 -1 +1 1 -1 -1 -1 -1 -1 -1 1 1 1 +1 1 -1 -1 -1 -1 -1 1 -1 -1 1 +1 1 -1 -1 -1 -1 -1 1 -1 1 -1 +1 1 -1 -1 -1 -1 -1 1 -1 1 1 +1 1 -1 -1 -1 -1 -1 1 1 -1 -1 +1 1 -1 -1 -1 -1 -1 1 1 -1 1 +1 1 -1 -1 -1 -1 -1 1 1 1 -1 +1 1 -1 -1 -1 -1 -1 1 1 1 1 +1 1 -1 -1 -1 -1 1 -1 -1 -1 1 +1 1 -1 -1 -1 -1 1 -1 -1 1 -1 +1 1 -1 -1 -1 -1 1 -1 -1 1 1 +1 1 -1 -1 -1 -1 1 -1 1 -1 -1 +1 1 -1 -1 -1 -1 1 -1 1 -1 1 +1 1 -1 -1 -1 -1 1 -1 1 1 -1 +1 1 -1 -1 -1 -1 1 -1 1 1 1 +1 1 -1 -1 -1 -1 1 1 -1 -1 -1 +1 1 -1 -1 -1 -1 1 1 -1 -1 1 +1 1 -1 -1 -1 -1 1 1 -1 1 -1 +1 1 -1 -1 -1 -1 1 1 -1 1 1 +1 1 -1 -1 -1 -1 1 1 1 -1 1 +1 1 -1 -1 -1 -1 1 1 1 -1 -1 +1 1 -1 -1 -1 -1 1 1 1 1 -1 +1 1 -1 -1 -1 -1 1 1 1 1 1 +1 1 -1 -1 -1 1 -1 -1 -1 -1 1 +1 1 -1 -1 -1 1 -1 -1 -1 1 -1 +1 1 -1 -1 -1 1 -1 -1 -1 1 1 +1 1 -1 -1 -1 1 -1 -1 1 -1 -1 +1 1 -1 -1 -1 1 -1 -1 1 -1 1 +1 1 -1 -1 -1 1 -1 -1 1 1 -1 +1 1 -1 -1 -1 1 -1 -1 1 1 1 +1 1 -1 -1 -1 1 -1 1 -1 -1 -1 +1 1 -1 -1 -1 1 -1 1 -1 -1 1 +1 1 -1 -1 -1 1 -1 1 -1 1 -1 +1 1 -1 -1 -1 1 -1 1 -1 1 1 +1 1 -1 -1 -1 1 -1 1 1 -1 -1 +1 1 -1 -1 -1 1 -1 1 1 -1 1 +1 1 -1 -1 -1 1 -1 1 1 1 -1 +1 1 -1 -1 -1 1 -1 1 1 1 1 +1 1 -1 -1 -1 1 1 -1 -1 -1 -1 +1 1 -1 -1 -1 1 1 -1 -1 -1 1 +1 1 -1 -1 -1 1 1 -1 -1 1 -1 +1 1 -1 -1 -1 1 1 -1 -1 1 1 +1 1 -1 -1 -1 1 1 -1 1 -1 -1 +1 1 -1 -1 -1 1 1 -1 1 -1 1 +1 1 -1 -1 -1 1 1 -1 1 1 -1 +1 1 -1 -1 -1 1 1 -1 1 1 1 +1 1 -1 -1 -1 1 1 1 -1 -1 -1 +1 1 -1 -1 -1 1 1 1 -1 -1 1 +1 1 -1 -1 -1 1 1 1 -1 1 -1 +1 1 -1 -1 -1 1 1 1 -1 1 1 +1 1 -1 -1 -1 1 1 1 1 -1 1 +1 1 -1 -1 -1 1 1 1 1 -1 -1 +1 1 -1 -1 -1 1 1 1 1 1 -1 +1 1 -1 -1 -1 1 1 1 1 1 1 +1 1 -1 -1 1 -1 -1 -1 -1 -1 1 +1 1 -1 -1 1 -1 -1 -1 -1 1 -1 +1 1 -1 -1 1 -1 -1 -1 -1 1 1 +1 1 -1 -1 1 -1 -1 -1 1 -1 -1 +1 1 -1 -1 1 -1 -1 -1 1 -1 1 +1 1 -1 -1 1 -1 -1 -1 1 1 -1 +1 1 -1 -1 1 -1 -1 -1 1 1 1 +1 1 -1 -1 1 -1 -1 1 -1 -1 -1 +1 1 -1 -1 1 -1 -1 1 -1 -1 1 +1 1 -1 -1 1 -1 -1 1 -1 1 -1 +1 1 -1 -1 1 -1 -1 1 -1 1 1 +1 1 -1 -1 1 -1 -1 1 1 -1 -1 +1 1 -1 -1 1 -1 -1 1 1 -1 1 +1 1 -1 -1 1 -1 -1 1 1 1 -1 +1 1 -1 -1 1 -1 -1 1 1 1 1 +1 1 -1 -1 1 -1 1 -1 -1 -1 -1 +1 1 -1 -1 1 -1 1 -1 -1 -1 1 +1 1 -1 -1 1 -1 1 -1 -1 1 -1 +1 1 -1 -1 1 -1 1 -1 -1 1 1 +1 1 -1 -1 1 -1 1 -1 1 -1 -1 +1 1 -1 -1 1 -1 1 -1 1 -1 1 +1 1 -1 -1 1 -1 1 -1 1 1 -1 +1 1 -1 -1 1 -1 1 -1 1 1 1 +1 1 -1 -1 1 -1 1 1 -1 -1 -1 +1 1 -1 -1 1 -1 1 1 -1 -1 1 +1 1 -1 -1 1 -1 1 1 -1 1 -1 +1 1 -1 -1 1 -1 1 1 -1 1 1 +1 1 -1 -1 1 -1 1 1 1 -1 1 +1 1 -1 -1 1 -1 1 1 1 -1 -1 +1 1 -1 -1 1 -1 1 1 1 1 -1 +1 1 -1 -1 1 -1 1 1 1 1 1 +1 1 -1 -1 1 1 -1 -1 -1 -1 -1 +1 1 -1 -1 1 1 -1 -1 -1 -1 1 +1 1 -1 -1 1 1 -1 -1 -1 1 -1 +1 1 -1 -1 1 1 -1 -1 -1 1 1 +1 1 -1 -1 1 1 -1 -1 1 -1 -1 +1 1 -1 -1 1 1 -1 -1 1 -1 1 +1 1 -1 -1 1 1 -1 -1 1 1 -1 +1 1 -1 -1 1 1 -1 -1 1 1 1 +1 1 -1 -1 1 1 -1 1 -1 -1 -1 +1 1 -1 -1 1 1 -1 1 -1 -1 1 +1 1 -1 -1 1 1 -1 1 -1 1 -1 +1 1 -1 -1 1 1 -1 1 -1 1 1 +1 1 -1 -1 1 1 -1 1 1 -1 -1 +1 1 -1 -1 1 1 -1 1 1 -1 1 +1 1 -1 -1 1 1 -1 1 1 1 -1 +1 1 -1 -1 1 1 -1 1 1 1 1 +1 1 -1 -1 1 1 1 -1 -1 -1 -1 +1 1 -1 -1 1 1 1 -1 -1 -1 1 +1 1 -1 -1 1 1 1 -1 -1 1 -1 +1 1 -1 -1 1 1 1 -1 -1 1 1 +1 1 -1 -1 1 1 1 -1 1 -1 -1 +1 1 -1 -1 1 1 1 -1 1 -1 1 +1 1 -1 -1 1 1 1 -1 1 1 -1 +1 1 -1 -1 1 1 1 -1 1 1 1 +1 1 -1 -1 1 1 1 1 -1 -1 -1 +1 1 -1 -1 1 1 1 1 -1 -1 1 +1 1 -1 -1 1 1 1 1 -1 1 -1 +1 1 -1 -1 1 1 1 1 -1 1 1 +1 1 -1 -1 1 1 1 1 1 -1 1 +1 1 -1 -1 1 1 1 1 1 -1 -1 +1 1 -1 -1 1 1 1 1 1 1 -1 +1 1 -1 -1 1 1 1 1 1 1 1 +1 1 -1 1 -1 -1 -1 -1 -1 -1 1 +1 1 -1 1 -1 -1 -1 -1 -1 1 -1 +1 1 -1 1 -1 -1 -1 -1 -1 1 1 +1 1 -1 1 -1 -1 -1 -1 1 -1 -1 +1 1 -1 1 -1 -1 -1 -1 1 -1 1 +1 1 -1 1 -1 -1 -1 -1 1 1 -1 +1 1 -1 1 -1 -1 -1 -1 1 1 1 +1 1 -1 1 -1 -1 -1 1 -1 -1 -1 +1 1 -1 1 -1 -1 -1 1 -1 -1 1 +1 1 -1 1 -1 -1 -1 1 -1 1 -1 +1 1 -1 1 -1 -1 -1 1 -1 1 1 +1 1 -1 1 -1 -1 -1 1 1 -1 -1 +1 1 -1 1 -1 -1 -1 1 1 -1 1 +1 1 -1 1 -1 -1 -1 1 1 1 -1 +1 1 -1 1 -1 -1 -1 1 1 1 1 +1 1 -1 1 -1 -1 1 -1 -1 -1 -1 +1 1 -1 1 -1 -1 1 -1 -1 -1 1 +1 1 -1 1 -1 -1 1 -1 -1 1 -1 +1 1 -1 1 -1 -1 1 -1 -1 1 1 +1 1 -1 1 -1 -1 1 -1 1 -1 -1 +1 1 -1 1 -1 -1 1 -1 1 -1 1 +1 1 -1 1 -1 -1 1 -1 1 1 -1 +1 1 -1 1 -1 -1 1 -1 1 1 1 +1 1 -1 1 -1 -1 1 1 -1 -1 -1 +1 1 -1 1 -1 -1 1 1 -1 -1 1 +1 1 -1 1 -1 -1 1 1 -1 1 -1 +1 1 -1 1 -1 -1 1 1 -1 1 1 +1 1 -1 1 -1 -1 1 1 1 -1 1 +1 1 -1 1 -1 -1 1 1 1 -1 -1 +1 1 -1 1 -1 -1 1 1 1 1 -1 +1 1 -1 1 -1 -1 1 1 1 1 1 +1 1 -1 1 -1 1 -1 -1 -1 -1 -1 +1 1 -1 1 -1 1 -1 -1 -1 -1 1 +1 1 -1 1 -1 1 -1 -1 -1 1 -1 +1 1 -1 1 -1 1 -1 -1 -1 1 1 +1 1 -1 1 -1 1 -1 -1 1 -1 -1 +1 1 -1 1 -1 1 -1 -1 1 -1 1 +1 1 -1 1 -1 1 -1 -1 1 1 -1 +1 1 -1 1 -1 1 -1 -1 1 1 1 +1 1 -1 1 -1 1 -1 1 -1 -1 -1 +1 1 -1 1 -1 1 -1 1 -1 -1 1 +1 1 -1 1 -1 1 -1 1 -1 1 -1 +1 1 -1 1 -1 1 -1 1 -1 1 1 +1 1 -1 1 -1 1 -1 1 1 -1 -1 +1 1 -1 1 -1 1 -1 1 1 -1 1 +1 1 -1 1 -1 1 -1 1 1 1 -1 +1 1 -1 1 -1 1 -1 1 1 1 1 +1 1 -1 1 -1 1 1 -1 -1 -1 -1 +1 1 -1 1 -1 1 1 -1 -1 -1 1 +1 1 -1 1 -1 1 1 -1 -1 1 -1 +1 1 -1 1 -1 1 1 -1 -1 1 1 +1 1 -1 1 -1 1 1 -1 1 -1 -1 +1 1 -1 1 -1 1 1 -1 1 -1 1 +1 1 -1 1 -1 1 1 -1 1 1 -1 +1 1 -1 1 -1 1 1 -1 1 1 1 +1 1 -1 1 -1 1 1 1 -1 -1 -1 +1 1 -1 1 -1 1 1 1 -1 -1 1 +1 1 -1 1 -1 1 1 1 -1 1 -1 +1 1 -1 1 -1 1 1 1 -1 1 1 +1 1 -1 1 -1 1 1 1 1 -1 1 +1 1 -1 1 -1 1 1 1 1 -1 -1 +1 1 -1 1 -1 1 1 1 1 1 -1 +1 1 -1 1 -1 1 1 1 1 1 1 +1 1 -1 1 1 -1 -1 -1 -1 -1 -1 +1 1 -1 1 1 -1 -1 -1 -1 -1 1 +1 1 -1 1 1 -1 -1 -1 -1 1 -1 +1 1 -1 1 1 -1 -1 -1 -1 1 1 +1 1 -1 1 1 -1 -1 -1 1 -1 -1 +1 1 -1 1 1 -1 -1 -1 1 -1 1 +1 1 -1 1 1 -1 -1 -1 1 1 -1 +1 1 -1 1 1 -1 -1 -1 1 1 1 +1 1 -1 1 1 -1 -1 1 -1 -1 -1 +1 1 -1 1 1 -1 -1 1 -1 -1 1 +1 1 -1 1 1 -1 -1 1 -1 1 -1 +1 1 -1 1 1 -1 -1 1 -1 1 1 +1 1 -1 1 1 -1 -1 1 1 -1 -1 +1 1 -1 1 1 -1 -1 1 1 -1 1 +1 1 -1 1 1 -1 -1 1 1 1 -1 +1 1 -1 1 1 -1 -1 1 1 1 1 +1 1 -1 1 1 -1 1 -1 -1 -1 -1 +1 1 -1 1 1 -1 1 -1 -1 -1 1 +1 1 -1 1 1 -1 1 -1 -1 1 -1 +1 1 -1 1 1 -1 1 -1 -1 1 1 +1 1 -1 1 1 -1 1 -1 1 -1 -1 +1 1 -1 1 1 -1 1 -1 1 -1 1 +1 1 -1 1 1 -1 1 -1 1 1 -1 +1 1 -1 1 1 -1 1 -1 1 1 1 +1 1 -1 1 1 -1 1 1 -1 -1 -1 +1 1 -1 1 1 -1 1 1 -1 -1 1 +1 1 -1 1 1 -1 1 1 -1 1 -1 +1 1 -1 1 1 -1 1 1 -1 1 1 +1 1 -1 1 1 -1 1 1 1 -1 1 +1 1 -1 1 1 -1 1 1 1 -1 -1 +1 1 -1 1 1 -1 1 1 1 1 -1 +1 1 -1 1 1 -1 1 1 1 1 1 +1 1 -1 1 1 1 -1 -1 -1 -1 -1 +1 1 -1 1 1 1 -1 -1 -1 -1 1 +1 1 -1 1 1 1 -1 -1 -1 1 -1 +1 1 -1 1 1 1 -1 -1 -1 1 1 +1 1 -1 1 1 1 -1 -1 1 -1 -1 +1 1 -1 1 1 1 -1 -1 1 -1 1 +1 1 -1 1 1 1 -1 -1 1 1 -1 +1 1 -1 1 1 1 -1 -1 1 1 1 +1 1 -1 1 1 1 -1 1 -1 -1 -1 +1 1 -1 1 1 1 -1 1 -1 -1 1 +1 1 -1 1 1 1 -1 1 -1 1 -1 +1 1 -1 1 1 1 -1 1 -1 1 1 +1 1 -1 1 1 1 -1 1 1 -1 -1 +1 1 -1 1 1 1 -1 1 1 -1 1 +1 1 -1 1 1 1 -1 1 1 1 -1 +1 1 -1 1 1 1 -1 1 1 1 1 +1 1 -1 1 1 1 1 -1 -1 -1 -1 +1 1 -1 1 1 1 1 -1 -1 -1 1 +1 1 -1 1 1 1 1 -1 -1 1 -1 +1 1 -1 1 1 1 1 -1 -1 1 1 +1 1 -1 1 1 1 1 -1 1 -1 -1 +1 1 -1 1 1 1 1 -1 1 -1 1 +1 1 -1 1 1 1 1 -1 1 1 -1 +1 1 -1 1 1 1 1 -1 1 1 1 +1 1 -1 1 1 1 1 1 -1 -1 -1 +1 1 -1 1 1 1 1 1 -1 -1 1 +1 1 -1 1 1 1 1 1 -1 1 -1 +1 1 -1 1 1 1 1 1 -1 1 1 +1 1 -1 1 1 1 1 1 1 -1 1 +1 1 -1 1 1 1 1 1 1 -1 -1 +1 1 -1 1 1 1 1 1 1 1 -1 +1 1 -1 1 1 1 1 1 1 1 1 +1 1 1 -1 -1 -1 -1 -1 -1 1 1 +1 1 1 -1 -1 -1 -1 -1 1 -1 1 +1 1 1 -1 -1 -1 -1 -1 1 1 -1 +1 1 1 -1 -1 -1 -1 -1 1 1 1 +1 1 1 -1 -1 -1 -1 1 -1 -1 1 +1 1 1 -1 -1 -1 -1 1 -1 1 -1 +1 1 1 -1 -1 -1 -1 1 -1 1 1 +1 1 1 -1 -1 -1 -1 1 1 -1 -1 +1 1 1 -1 -1 -1 -1 1 1 -1 1 +1 1 1 -1 -1 -1 -1 1 1 1 -1 +1 1 1 -1 -1 -1 -1 1 1 1 1 +1 1 1 -1 -1 -1 1 -1 -1 -1 1 +1 1 1 -1 -1 -1 1 -1 -1 1 -1 +1 1 1 -1 -1 -1 1 -1 -1 1 1 +1 1 1 -1 -1 -1 1 -1 1 -1 -1 +1 1 1 -1 -1 -1 1 -1 1 -1 1 +1 1 1 -1 -1 -1 1 -1 1 1 -1 +1 1 1 -1 -1 -1 1 -1 1 1 1 +1 1 1 -1 -1 -1 1 1 -1 -1 -1 +1 1 1 -1 -1 -1 1 1 -1 -1 1 +1 1 1 -1 -1 -1 1 1 -1 1 -1 +1 1 1 -1 -1 -1 1 1 -1 1 1 +1 1 1 -1 -1 -1 1 1 1 -1 1 +1 1 1 -1 -1 -1 1 1 1 -1 -1 +1 1 1 -1 -1 -1 1 1 1 1 -1 +1 1 1 -1 -1 -1 1 1 1 1 1 +1 1 1 -1 -1 1 -1 -1 -1 -1 1 +1 1 1 -1 -1 1 -1 -1 -1 1 -1 +1 1 1 -1 -1 1 -1 -1 -1 1 1 +1 1 1 -1 -1 1 -1 -1 1 -1 -1 +1 1 1 -1 -1 1 -1 -1 1 -1 1 +1 1 1 -1 -1 1 -1 -1 1 1 -1 +1 1 1 -1 -1 1 -1 -1 1 1 1 +1 1 1 -1 -1 1 -1 1 -1 -1 -1 +1 1 1 -1 -1 1 -1 1 -1 -1 1 +1 1 1 -1 -1 1 -1 1 -1 1 -1 +1 1 1 -1 -1 1 -1 1 -1 1 1 +1 1 1 -1 -1 1 -1 1 1 -1 -1 +1 1 1 -1 -1 1 -1 1 1 -1 1 +1 1 1 -1 -1 1 -1 1 1 1 -1 +1 1 1 -1 -1 1 -1 1 1 1 1 +1 1 1 -1 -1 1 1 -1 -1 -1 -1 +1 1 1 -1 -1 1 1 -1 -1 -1 1 +1 1 1 -1 -1 1 1 -1 -1 1 -1 +1 1 1 -1 -1 1 1 -1 -1 1 1 +1 1 1 -1 -1 1 1 -1 1 -1 -1 +1 1 1 -1 -1 1 1 -1 1 -1 1 +1 1 1 -1 -1 1 1 -1 1 1 -1 +1 1 1 -1 -1 1 1 -1 1 1 1 +1 1 1 -1 -1 1 1 1 -1 -1 -1 +1 1 1 -1 -1 1 1 1 -1 -1 1 +1 1 1 -1 -1 1 1 1 -1 1 -1 +1 1 1 -1 -1 1 1 1 -1 1 1 +1 1 1 -1 -1 1 1 1 1 -1 1 +1 1 1 -1 -1 1 1 1 1 -1 -1 +1 1 1 -1 -1 1 1 1 1 1 -1 +1 1 1 -1 -1 1 1 1 1 1 1 +1 1 1 -1 1 -1 -1 -1 -1 -1 1 +1 1 1 -1 1 -1 -1 -1 -1 1 -1 +1 1 1 -1 1 -1 -1 -1 -1 1 1 +1 1 1 -1 1 -1 -1 -1 1 -1 -1 +1 1 1 -1 1 -1 -1 -1 1 -1 1 +1 1 1 -1 1 -1 -1 -1 1 1 -1 +1 1 1 -1 1 -1 -1 -1 1 1 1 +1 1 1 -1 1 -1 -1 1 -1 -1 -1 +1 1 1 -1 1 -1 -1 1 -1 -1 1 +1 1 1 -1 1 -1 -1 1 -1 1 -1 +1 1 1 -1 1 -1 -1 1 -1 1 1 +1 1 1 -1 1 -1 -1 1 1 -1 -1 +1 1 1 -1 1 -1 -1 1 1 -1 1 +1 1 1 -1 1 -1 -1 1 1 1 -1 +1 1 1 -1 1 -1 -1 1 1 1 1 +1 1 1 -1 1 -1 1 -1 -1 -1 -1 +1 1 1 -1 1 -1 1 -1 -1 -1 1 +1 1 1 -1 1 -1 1 -1 -1 1 -1 +1 1 1 -1 1 -1 1 -1 -1 1 1 +1 1 1 -1 1 -1 1 -1 1 -1 -1 +1 1 1 -1 1 -1 1 -1 1 -1 1 +1 1 1 -1 1 -1 1 -1 1 1 -1 +1 1 1 -1 1 -1 1 -1 1 1 1 +1 1 1 -1 1 -1 1 1 -1 -1 -1 +1 1 1 -1 1 -1 1 1 -1 -1 1 +1 1 1 -1 1 -1 1 1 -1 1 -1 +1 1 1 -1 1 -1 1 1 -1 1 1 +1 1 1 -1 1 -1 1 1 1 -1 1 +1 1 1 -1 1 -1 1 1 1 -1 -1 +1 1 1 -1 1 -1 1 1 1 1 -1 +1 1 1 -1 1 -1 1 1 1 1 1 +1 1 1 -1 1 1 -1 -1 -1 -1 -1 +1 1 1 -1 1 1 -1 -1 -1 -1 1 +1 1 1 -1 1 1 -1 -1 -1 1 -1 +1 1 1 -1 1 1 -1 -1 -1 1 1 +1 1 1 -1 1 1 -1 -1 1 -1 -1 +1 1 1 -1 1 1 -1 -1 1 -1 1 +1 1 1 -1 1 1 -1 -1 1 1 -1 +1 1 1 -1 1 1 -1 -1 1 1 1 +1 1 1 -1 1 1 -1 1 -1 -1 -1 +1 1 1 -1 1 1 -1 1 -1 -1 1 +1 1 1 -1 1 1 -1 1 -1 1 -1 +1 1 1 -1 1 1 -1 1 -1 1 1 +1 1 1 -1 1 1 -1 1 1 -1 -1 +1 1 1 -1 1 1 -1 1 1 -1 1 +1 1 1 -1 1 1 -1 1 1 1 -1 +1 1 1 -1 1 1 -1 1 1 1 1 +1 1 1 -1 1 1 1 -1 -1 -1 -1 +1 1 1 -1 1 1 1 -1 -1 -1 1 +1 1 1 -1 1 1 1 -1 -1 1 -1 +1 1 1 -1 1 1 1 -1 -1 1 1 +1 1 1 -1 1 1 1 -1 1 -1 -1 +1 1 1 -1 1 1 1 -1 1 -1 1 +1 1 1 -1 1 1 1 -1 1 1 -1 +1 1 1 -1 1 1 1 -1 1 1 1 +1 1 1 -1 1 1 1 1 -1 -1 -1 +1 1 1 -1 1 1 1 1 -1 -1 1 +1 1 1 -1 1 1 1 1 -1 1 -1 +1 1 1 -1 1 1 1 1 -1 1 1 +1 1 1 -1 1 1 1 1 1 -1 1 +1 1 1 -1 1 1 1 1 1 -1 -1 +1 1 1 -1 1 1 1 1 1 1 -1 +1 1 1 -1 1 1 1 1 1 1 1 +1 1 1 1 -1 -1 -1 -1 -1 -1 -1 +1 1 1 1 -1 -1 -1 -1 -1 -1 1 +1 1 1 1 -1 -1 -1 -1 -1 1 -1 +1 1 1 1 -1 -1 -1 -1 -1 1 1 +1 1 1 1 -1 -1 -1 -1 1 -1 -1 +1 1 1 1 -1 -1 -1 -1 1 -1 1 +1 1 1 1 -1 -1 -1 -1 1 1 -1 +1 1 1 1 -1 -1 -1 -1 1 1 1 +1 1 1 1 -1 -1 -1 1 -1 -1 -1 +1 1 1 1 -1 -1 -1 1 -1 -1 1 +1 1 1 1 -1 -1 -1 1 -1 1 -1 +1 1 1 1 -1 -1 -1 1 -1 1 1 +1 1 1 1 -1 -1 -1 1 1 -1 -1 +1 1 1 1 -1 -1 -1 1 1 -1 1 +1 1 1 1 -1 -1 -1 1 1 1 -1 +1 1 1 1 -1 -1 -1 1 1 1 1 +1 1 1 1 -1 -1 1 -1 -1 -1 -1 +1 1 1 1 -1 -1 1 -1 -1 -1 1 +1 1 1 1 -1 -1 1 -1 -1 1 -1 +1 1 1 1 -1 -1 1 -1 -1 1 1 +1 1 1 1 -1 -1 1 -1 1 -1 -1 +1 1 1 1 -1 -1 1 -1 1 -1 1 +1 1 1 1 -1 -1 1 -1 1 1 -1 +1 1 1 1 -1 -1 1 -1 1 1 1 +1 1 1 1 -1 -1 1 1 -1 -1 -1 +1 1 1 1 -1 -1 1 1 -1 -1 1 +1 1 1 1 -1 -1 1 1 -1 1 -1 +1 1 1 1 -1 -1 1 1 -1 1 1 +1 1 1 1 -1 -1 1 1 1 -1 1 +1 1 1 1 -1 -1 1 1 1 -1 -1 +1 1 1 1 -1 -1 1 1 1 1 -1 +1 1 1 1 -1 -1 1 1 1 1 1 +1 1 1 1 -1 1 -1 -1 -1 -1 -1 +1 1 1 1 -1 1 -1 -1 -1 -1 1 +1 1 1 1 -1 1 -1 -1 -1 1 -1 +1 1 1 1 -1 1 -1 -1 -1 1 1 +1 1 1 1 -1 1 -1 -1 1 -1 -1 +1 1 1 1 -1 1 -1 -1 1 -1 1 +1 1 1 1 -1 1 -1 -1 1 1 -1 +1 1 1 1 -1 1 -1 -1 1 1 1 +1 1 1 1 -1 1 -1 1 -1 -1 -1 +1 1 1 1 -1 1 -1 1 -1 -1 1 +1 1 1 1 -1 1 -1 1 -1 1 -1 +1 1 1 1 -1 1 -1 1 -1 1 1 +1 1 1 1 -1 1 -1 1 1 -1 -1 +1 1 1 1 -1 1 -1 1 1 -1 1 +1 1 1 1 -1 1 -1 1 1 1 -1 +1 1 1 1 -1 1 -1 1 1 1 1 +1 1 1 1 -1 1 1 -1 -1 -1 -1 +1 1 1 1 -1 1 1 -1 -1 -1 1 +1 1 1 1 -1 1 1 -1 -1 1 -1 +1 1 1 1 -1 1 1 -1 -1 1 1 +1 1 1 1 -1 1 1 -1 1 -1 -1 +1 1 1 1 -1 1 1 -1 1 -1 1 +1 1 1 1 -1 1 1 -1 1 1 -1 +1 1 1 1 -1 1 1 -1 1 1 1 +1 1 1 1 -1 1 1 1 -1 -1 -1 +1 1 1 1 -1 1 1 1 -1 -1 1 +1 1 1 1 -1 1 1 1 -1 1 -1 +1 1 1 1 -1 1 1 1 -1 1 1 +1 1 1 1 -1 1 1 1 1 -1 1 +1 1 1 1 -1 1 1 1 1 -1 -1 +1 1 1 1 -1 1 1 1 1 1 -1 +1 1 1 1 -1 1 1 1 1 1 1 +1 1 1 1 1 -1 -1 -1 -1 -1 -1 +1 1 1 1 1 -1 -1 -1 -1 -1 1 +1 1 1 1 1 -1 -1 -1 -1 1 -1 +1 1 1 1 1 -1 -1 -1 -1 1 1 +1 1 1 1 1 -1 -1 -1 1 -1 -1 +1 1 1 1 1 -1 -1 -1 1 -1 1 +1 1 1 1 1 -1 -1 -1 1 1 -1 +1 1 1 1 1 -1 -1 -1 1 1 1 +1 1 1 1 1 -1 -1 1 -1 -1 -1 +1 1 1 1 1 -1 -1 1 -1 -1 1 +1 1 1 1 1 -1 -1 1 -1 1 -1 +1 1 1 1 1 -1 -1 1 -1 1 1 +1 1 1 1 1 -1 -1 1 1 -1 -1 +1 1 1 1 1 -1 -1 1 1 -1 1 +1 1 1 1 1 -1 -1 1 1 1 -1 +1 1 1 1 1 -1 -1 1 1 1 1 +1 1 1 1 1 -1 1 -1 -1 -1 -1 +1 1 1 1 1 -1 1 -1 -1 -1 1 +1 1 1 1 1 -1 1 -1 -1 1 -1 +1 1 1 1 1 -1 1 -1 -1 1 1 +1 1 1 1 1 -1 1 -1 1 -1 -1 +1 1 1 1 1 -1 1 -1 1 -1 1 +1 1 1 1 1 -1 1 -1 1 1 -1 +1 1 1 1 1 -1 1 -1 1 1 1 +1 1 1 1 1 -1 1 1 -1 -1 -1 +1 1 1 1 1 -1 1 1 -1 -1 1 +1 1 1 1 1 -1 1 1 -1 1 -1 +1 1 1 1 1 -1 1 1 -1 1 1 +1 1 1 1 1 -1 1 1 1 -1 1 +1 1 1 1 1 -1 1 1 1 -1 -1 +1 1 1 1 1 -1 1 1 1 1 -1 +1 1 1 1 1 -1 1 1 1 1 1 +1 1 1 1 1 1 -1 -1 -1 -1 -1 +1 1 1 1 1 1 -1 -1 -1 -1 1 +1 1 1 1 1 1 -1 -1 -1 1 -1 +1 1 1 1 1 1 -1 -1 -1 1 1 +1 1 1 1 1 1 -1 -1 1 -1 -1 +1 1 1 1 1 1 -1 -1 1 -1 1 +1 1 1 1 1 1 -1 -1 1 1 -1 +1 1 1 1 1 1 -1 -1 1 1 1 +1 1 1 1 1 1 -1 1 -1 -1 -1 +1 1 1 1 1 1 -1 1 -1 -1 1 +1 1 1 1 1 1 -1 1 -1 1 -1 +1 1 1 1 1 1 -1 1 -1 1 1 +1 1 1 1 1 1 -1 1 1 -1 -1 +1 1 1 1 1 1 -1 1 1 -1 1 +1 1 1 1 1 1 -1 1 1 1 -1 +1 1 1 1 1 1 -1 1 1 1 1 +1 1 1 1 1 1 1 -1 -1 -1 -1 +1 1 1 1 1 1 1 -1 -1 -1 1 +1 1 1 1 1 1 1 -1 -1 1 -1 +1 1 1 1 1 1 1 -1 -1 1 1 +1 1 1 1 1 1 1 -1 1 -1 -1 +1 1 1 1 1 1 1 -1 1 -1 1 +1 1 1 1 1 1 1 -1 1 1 -1 +1 1 1 1 1 1 1 -1 1 1 1 +1 1 1 1 1 1 1 1 -1 -1 -1 +1 1 1 1 1 1 1 1 -1 -1 1 +1 1 1 1 1 1 1 1 -1 1 -1 +1 1 1 1 1 1 1 1 -1 1 1 +1 1 1 1 1 1 1 1 1 -1 1 +1 1 1 1 1 1 1 1 1 -1 -1 +1 1 1 1 1 1 1 1 1 1 -1 +1 1 1 1 1 1 1 1 1 1 1 +1 1 1 -1 -1 -1 -1 -1 -1 -1 -1 +1 1 1 -1 -1 -1 -1 -1 -1 -1 1 +1 1 1 -1 -1 -1 -1 -1 -1 1 -1 +1 1 1 -1 -1 -1 -1 -1 1 -1 -1 +1 1 1 -1 -1 -1 -1 1 -1 -1 -1 +1 1 1 -1 -1 -1 1 -1 -1 -1 -1 +1 1 1 -1 -1 1 -1 -1 -1 -1 -1 +1 1 1 -1 1 -1 -1 -1 -1 -1 -1 +1 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +1 1 -1 -1 -1 -1 -1 -1 -1 -1 1 +1 1 -1 -1 -1 -1 -1 -1 -1 1 -1 +1 1 -1 -1 -1 -1 -1 -1 1 -1 -1 +1 1 -1 -1 -1 -1 -1 1 -1 -1 -1 +1 1 -1 -1 -1 -1 1 -1 -1 -1 -1 +1 1 -1 -1 -1 1 -1 -1 -1 -1 -1 +1 1 -1 -1 1 -1 -1 -1 -1 -1 -1 +1 1 -1 1 -1 -1 -1 -1 -1 -1 -1 +1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 +1 -1 -1 -1 -1 -1 -1 -1 -1 1 -1 +1 -1 -1 -1 -1 -1 -1 -1 1 -1 -1 +1 -1 -1 -1 -1 -1 -1 1 -1 -1 -1 +1 -1 -1 -1 -1 -1 1 -1 -1 -1 -1 +1 -1 -1 -1 -1 1 -1 -1 -1 -1 -1 +1 -1 -1 -1 1 -1 -1 -1 -1 -1 -1 +1 -1 -1 1 -1 -1 -1 -1 -1 -1 -1 +1 -1 1 -1 -1 -1 -1 -1 -1 -1 -1 +end +hull +incidence diff --git a/inst/extdata/linear_extensions/simple.txt b/inst/extdata/linear_extensions/simple.txt new file mode 100644 index 00000000..b50a96df --- /dev/null +++ b/inst/extdata/linear_extensions/simple.txt @@ -0,0 +1,2 @@ +50 20 +[[1,2],[1,3],[1,5],[1,7],[2,3],[2,5],[2,8],[3,4],[3,9],[4,5],[4,7],[4,10],[5,6],[5,8],[6,7],[6,8],[6,9],[7,8],[7,9],[9,10]] diff --git a/inst/extdata/linear_extensions/simple_poset.txt b/inst/extdata/linear_extensions/simple_poset.txt new file mode 100644 index 00000000..8998e738 --- /dev/null +++ b/inst/extdata/linear_extensions/simple_poset.txt @@ -0,0 +1,2 @@ +4 3 +[[1,2],[1,3],[3,4]] diff --git a/inst/extdata/prod_simplex_10_10.ine b/inst/extdata/prod_simplex_10_10.ine new file mode 100644 index 00000000..0eca1b7d --- /dev/null +++ b/inst/extdata/prod_simplex_10_10.ine @@ -0,0 +1,28 @@ +prod_simplex_10.ine +H-representation +begin + 21 21 integer +0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 +0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +1 0 0 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 +1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 0 +end +input_incidence diff --git a/inst/extdata/sdpa_n2m3.txt b/inst/extdata/sdpa_n2m3.txt new file mode 100644 index 00000000..0459374c --- /dev/null +++ b/inst/extdata/sdpa_n2m3.txt @@ -0,0 +1,13 @@ +2 +1 +3 +1 1 +-1 0 0 + 0 -2 1 + 0 1 -2 + 1 -0 -0 +-0 -0 -1 +-0 -1 -0 +-0 -0 1 +-0 -0 -0 + 1 -0 -0 diff --git a/inst/extdata/simplex10.ext b/inst/extdata/simplex10.ext new file mode 100644 index 00000000..c4097655 --- /dev/null +++ b/inst/extdata/simplex10.ext @@ -0,0 +1,18 @@ +simplex_10.ext +V-representation +begin + 11 11 integer +1 1 0 0 0 0 0 0 0 0 0 +1 0 1 0 0 0 0 0 0 0 0 +1 0 0 1 0 0 0 0 0 0 0 +1 0 0 0 1 0 0 0 0 0 0 +1 0 0 0 0 1 0 0 0 0 0 +1 0 0 0 0 0 1 0 0 0 0 +1 0 0 0 0 0 0 1 0 0 0 +1 0 0 0 0 0 0 0 1 0 0 +1 0 0 0 0 0 0 0 0 1 0 +1 0 0 0 0 0 0 0 0 0 1 +1 0 0 0 0 0 0 0 0 0 0 +end +hull +incidence diff --git a/inst/extdata/simplex10.ine b/inst/extdata/simplex10.ine new file mode 100644 index 00000000..0e3cb59a --- /dev/null +++ b/inst/extdata/simplex10.ine @@ -0,0 +1,17 @@ +simplex_10.ine +H-representation +begin + 11 11 integer +0 1 0 0 0 0 0 0 0 0 0 +0 0 1 0 0 0 0 0 0 0 0 +0 0 0 1 0 0 0 0 0 0 0 +0 0 0 0 1 0 0 0 0 0 0 +0 0 0 0 0 1 0 0 0 0 0 +0 0 0 0 0 0 1 0 0 0 0 +0 0 0 0 0 0 0 1 0 0 0 +0 0 0 0 0 0 0 0 1 0 0 +0 0 0 0 0 0 0 0 0 1 0 +0 0 0 0 0 0 0 0 0 0 1 +1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +end +input_incidence diff --git a/inst/extdata/skinny_cube10.ine b/inst/extdata/skinny_cube10.ine new file mode 100644 index 00000000..aba4f052 --- /dev/null +++ b/inst/extdata/skinny_cube10.ine @@ -0,0 +1,26 @@ +cube_10.ine +H-representation +begin + 20 11 integer + 100 1 0 0 0 0 0 0 0 0 0 + 1 0 1 0 0 0 0 0 0 0 0 + 1 0 0 1 0 0 0 0 0 0 0 + 1 0 0 0 1 0 0 0 0 0 0 + 1 0 0 0 0 1 0 0 0 0 0 + 1 0 0 0 0 0 1 0 0 0 0 + 1 0 0 0 0 0 0 1 0 0 0 + 1 0 0 0 0 0 0 0 1 0 0 + 1 0 0 0 0 0 0 0 0 1 0 + 1 0 0 0 0 0 0 0 0 0 1 + 100 -1 0 0 0 0 0 0 0 0 0 + 1 0 -1 0 0 0 0 0 0 0 0 + 1 0 0 -1 0 0 0 0 0 0 0 + 1 0 0 0 -1 0 0 0 0 0 0 + 1 0 0 0 0 -1 0 0 0 0 0 + 1 0 0 0 0 0 -1 0 0 0 0 + 1 0 0 0 0 0 0 -1 0 0 0 + 1 0 0 0 0 0 0 0 -1 0 0 + 1 0 0 0 0 0 0 0 0 -1 0 + 1 0 0 0 0 0 0 0 0 0 -1 +end +input_incidence diff --git a/man/Hpolytope-class.Rd b/man/Hpolytope-class.Rd new file mode 100644 index 00000000..1c5b2472 --- /dev/null +++ b/man/Hpolytope-class.Rd @@ -0,0 +1,27 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/HpolytopeClass.R +\docType{class} +\name{Hpolytope-class} +\alias{Hpolytope-class} +\alias{Hpolytope} +\title{An R class to represent an H-polytope} +\description{ +An H-polytope is a convex polytope defined by a set of linear inequalities or equivalently a \eqn{d}-dimensional H-polytope with \eqn{m} facets is defined by a \eqn{m\times d} matrix A and a \eqn{m}-dimensional vector b, s.t.: \eqn{Ax\leq b}. +} +\details{ +\describe{ + \item{A}{An \eqn{m\times d} numerical matrix.} + + \item{b}{An \eqn{m}-dimensional vector b.} + + \item{volume}{The volume of the polytope if it is known, \eqn{NaN} otherwise by default.} + + \item{type}{A character with default value 'Hpolytope', to declare the representation of the polytope.} +} +} +\examples{ +A = matrix(c(-1,0,0,-1,1,1), ncol=2, nrow=3, byrow=TRUE) +b = c(0,0,1) +P = Hpolytope(A = A, b = b) + +} diff --git a/man/Spectrahedron-class.Rd b/man/Spectrahedron-class.Rd new file mode 100644 index 00000000..2cc381a2 --- /dev/null +++ b/man/Spectrahedron-class.Rd @@ -0,0 +1,24 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/SpectrahedronClass.R +\docType{class} +\name{Spectrahedron-class} +\alias{Spectrahedron-class} +\alias{Spectrahedron} +\title{An R class to represent a Spectrahedron} +\description{ +A spectrahedron is a convex body defined by a linear matrix inequality of the form \eqn{A_0 + x_1 A_1 + ... + x_n A_n \preceq 0}. +The matrices \eqn{A_i} are symmetric \eqn{m \times m} real matrices and \eqn{\preceq 0} denoted negative semidefiniteness. +} +\details{ +\describe{ + \item{matrices}{A List that contains the matrices \eqn{A_0, A_1, ..., A_n}.} +} +} +\examples{ +A0 = matrix(c(-1,0,0,0,-2,1,0,1,-2), nrow=3, ncol=3, byrow = TRUE) +A1 = matrix(c(-1,0,0,0,0,1,0,1,0), nrow=3, ncol=3, byrow = TRUE) +A2 = matrix(c(0,0,-1,0,0,0,-1,0,0), nrow=3, ncol=3, byrow = TRUE) +lmi = list(A0, A1, A2) +S = Spectrahedron(matrices = lmi); + +} diff --git a/man/Vpolytope-class.Rd b/man/Vpolytope-class.Rd new file mode 100644 index 00000000..83fcc197 --- /dev/null +++ b/man/Vpolytope-class.Rd @@ -0,0 +1,24 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/VpolytopeClass.R +\docType{class} +\name{Vpolytope-class} +\alias{Vpolytope-class} +\alias{Vpolytope} +\title{An R class to represent a V-polytope} +\description{ +A V-polytope is a convex polytope defined by the set of its vertices. +} +\details{ +\describe{ + \item{V}{An \eqn{m\times d} numerical matrix that contains the vertices row-wise.} + + \item{volume}{The volume of the polytope if it is known, \eqn{NaN} otherwise by default.} + + \item{type}{A character with default value 'Vpolytope', to declare the representation of the polytope.} +} +} +\examples{ +V = matrix(c(2,3,-1,7,0,0),ncol = 2, nrow = 3, byrow = TRUE) +P = Vpolytope(V = V) + +} diff --git a/man/VpolytopeIntersection-class.Rd b/man/VpolytopeIntersection-class.Rd new file mode 100644 index 00000000..ae6e9364 --- /dev/null +++ b/man/VpolytopeIntersection-class.Rd @@ -0,0 +1,27 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/VpolytopeIntersectionClass.R +\docType{class} +\name{VpolytopeIntersection-class} +\alias{VpolytopeIntersection-class} +\alias{VpolytopeIntersection} +\title{An R class to represent the intersection of two V-polytopes} +\description{ +An intersection of two V-polytopes is defined by the intersection of the two coresponding convex hulls. +} +\details{ +\describe{ + \item{V1}{An \eqn{m\times d} numerical matrix that contains the vertices of the first V-polytope (row-wise).} + + \item{V2}{An \eqn{q\times d} numerical matrix that contains the vertices of the second V-polytope (row-wise).} + + \item{volume}{The volume of the polytope if it is known, \eqn{NaN} otherwise by default.} + + \item{type}{A character with default value 'VpolytopeIntersection', to declare the representation of the polytope.} +} +} +\examples{ +P1 = gen_simplex(2,'V') +P2 = gen_cross(2,'V') +P = VpolytopeIntersection(V1 = P1@V, V2 = P2@V) + +} diff --git a/man/Zonotope-class.Rd b/man/Zonotope-class.Rd new file mode 100644 index 00000000..0e857d50 --- /dev/null +++ b/man/Zonotope-class.Rd @@ -0,0 +1,24 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/ZonotopeClass.R +\docType{class} +\name{Zonotope-class} +\alias{Zonotope-class} +\alias{Zonotope} +\title{An R class to represent a Zonotope} +\description{ +A zonotope is a convex polytope defined by the Minkowski sum of \eqn{m} \eqn{d}-dimensional segments. +} +\details{ +\describe{ + \item{G}{An \eqn{m\times d} numerical matrix that contains the segments (or generators) row-wise} + + \item{volume}{The volume of the polytope if it is known, \eqn{NaN} otherwise by default.} + + \item{type}{A character with default value 'Zonotope', to declare the representation of the polytope.} +} +} +\examples{ +G = matrix(c(2,3,-1,7,0,0),ncol = 2, nrow = 3, byrow = TRUE) +P = Zonotope(G = G) + +} diff --git a/man/compute_indicators.Rd b/man/compute_indicators.Rd new file mode 100644 index 00000000..9bee0ab7 --- /dev/null +++ b/man/compute_indicators.Rd @@ -0,0 +1,43 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/compute_indicators.R +\name{compute_indicators} +\alias{compute_indicators} +\title{Compute an indicator for each time period that describes the state of a market.} +\usage{ +compute_indicators( + returns, + parameters = list(win_length = 60, m = 100, n = 5e+05, nwarning = 60, ncrisis = 100) +) +} +\arguments{ +\item{returns}{A \eqn{d}-dimensional vector that describes the direction of the first family of parallel hyperplanes.} + +\item{parameters}{A list to set a parameterization. +\itemize{ +\item{win_length }{ The length of the sliding window. The default value is 60.} +\item{m } { The number of slices for the copula. The default value is 100.} +\item{n }{ The number of points to sample. The default value is \eqn{5\cdot 10^5}.} +\item{nwarning }{ The number of consecutive indicators larger than 1 required to declare a warning period. The default value is 60.} +\item{ncrisis }{ The number of consecutive indicators larger than 1 required to declare a crisis period. The default value is 100.} +\item{seed }{ A fixed seed for the number generator.} +}} +} +\value{ +A list that contains the indicators and the corresponding vector that label each time period with respect to the market state: a) normal, b) crisis, c) warning. +} +\description{ +Given a matrix that contains row-wise the assets' returns and a sliding window \code{win_length}, this function computes an approximation of the joint distribution (copula, e.g. see \url{https://en.wikipedia.org/wiki/Copula_(probability_theory)}) between portfolios' return and volatility in each time period defined by \code{win_len}. +For each copula it computes an indicator: If the indicator is large it corresponds to a crisis period and if it is small it corresponds to a normal period. +In particular, the periods over which the indicator is greater than 1 for more than 60 consecutive sliding windows are warnings and for more than 100 are crisis. The sliding window is shifted by one day. +} +\examples{ +# simple example on random asset returns +asset_returns = replicate(10, rnorm(14)) +market_states_and_indicators = compute_indicators(asset_returns, + parameters = list("win_length" = 10, "m" = 10, "n" = 10000, "nwarning" = 2, "ncrisis" = 3)) + +} +\references{ +\cite{L. Cales, A. Chalkis, I.Z. Emiris, V. Fisikopoulos, +\dQuote{Practical volume computation of structured convex bodies, and an application to modeling portfolio dependencies and financial crises,} \emph{Proc. of Symposium on Computational Geometry, Budapest, Hungary,} 2018.} +} diff --git a/man/copula.Rd b/man/copula.Rd new file mode 100644 index 00000000..be99e489 --- /dev/null +++ b/man/copula.Rd @@ -0,0 +1,48 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/RcppExports.R +\name{copula} +\alias{copula} +\title{Construct a copula using uniform sampling from the unit simplex} +\usage{ +copula(r1, r2 = NULL, sigma = NULL, m = NULL, n = NULL, seed = NULL) +} +\arguments{ +\item{r1}{The \eqn{d}-dimensional normal vector of the first family of parallel hyperplanes.} + +\item{r2}{Optional. The \eqn{d}-dimensional normal vector of the second family of parallel hyperplanes.} + +\item{sigma}{Optional. The \eqn{d\times d} symmetric positive semidefine matrix that describes the family of concentric ellipsoids centered at the origin.} + +\item{m}{The number of the slices for the copula. The default value is 100.} + +\item{n}{The number of points to sample. The default value is \eqn{5\cdot 10^5}.} + +\item{seed}{Optional. A fixed seed for the number generator.} +} +\value{ +A \eqn{m\times m} numerical matrix that corresponds to a copula. +} +\description{ +Given two families of parallel hyperplanes or a family of parallel hyperplanes and a family of concentric ellispoids centered at the origin intersecting the canonical simplex, this function uniformly samples from the canonical simplex and construct an approximation of the bivariate probability distribution, called copula (see \url{https://en.wikipedia.org/wiki/Copula_(probability_theory)}). +At least two families of hyperplanes or one family of hyperplanes and one family of ellipsoids have to be given as input. +} +\examples{ +# compute a copula for two random families of parallel hyperplanes +h1 = runif(n = 10, min = 1, max = 1000) +h1 = h1 / 1000 +h2=runif(n = 10, min = 1, max = 1000) +h2 = h2 / 1000 +cop = copula(r1 = h1, r2 = h2, m = 10, n = 100000) + +# compute a copula for a family of parallel hyperplanes and a family of conentric ellipsoids +h = runif(n = 10, min = 1, max = 1000) +h = h / 1000 +E = replicate(10, rnorm(20)) +E = cov(E) +cop = copula(r1 = h, sigma = E, m = 10, n = 100000) + +} +\references{ +\cite{L. Cales, A. Chalkis, I.Z. Emiris, V. Fisikopoulos, +\dQuote{Practical volume computation of structured convex bodies, and an application to modeling portfolio dependencies and financial crises,} \emph{Proc. of Symposium on Computational Geometry, Budapest, Hungary,} 2018.} +} diff --git a/man/direct_sampling.Rd b/man/direct_sampling.Rd new file mode 100644 index 00000000..a4259531 --- /dev/null +++ b/man/direct_sampling.Rd @@ -0,0 +1,36 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/RcppExports.R +\name{direct_sampling} +\alias{direct_sampling} +\title{Sample perfect uniformly distributed points from well known convex bodies: (a) the unit simplex, (b) the canonical simplex, (c) the boundary of a hypersphere or (d) the interior of a hypersphere.} +\usage{ +direct_sampling(body, n) +} +\arguments{ +\item{body}{A list to request exact uniform sampling from special well known convex bodies through the following input parameters: +\itemize{ +\item{\code{type} }{ A string that declares the type of the body for the exact sampling: a) \code{'unit_simplex'} for the unit simplex, b) \code{'canonical_simplex'} for the canonical simplex, c) \code{'hypersphere'} for the boundary of a hypersphere centered at the origin, d) \code{'ball'} for the interior of a hypersphere centered at the origin.} +\item{\code{dimension} }{ An integer that declares the dimension when exact sampling is enabled for a simplex or a hypersphere.} +\item{\code{radius} }{ The radius of the \eqn{d}-dimensional hypersphere. The default value is \eqn{1}.} +\item{\code{seed} }{ A fixed seed for the number generator.} +}} + +\item{n}{The number of points that the function is going to sample.} +} +\value{ +A \eqn{d\times n} matrix that contains, column-wise, the sampled points from the convex polytope P. +} +\description{ +The \eqn{d}-dimensional unit simplex is the set of points \eqn{\vec{x}\in \R^d}, s.t.: \eqn{\sum_i x_i\leq 1}, \eqn{x_i\geq 0}. The \eqn{d}-dimensional canonical simplex is the set of points \eqn{\vec{x}\in \R^d}, s.t.: \eqn{\sum_i x_i = 1}, \eqn{x_i\geq 0}. +} +\examples{ +# 100 uniform points from the 2-d unit ball +points = direct_sampling(n = 100, body = list("type" = "ball", "dimension" = 2)) +} +\references{ +\cite{R.Y. Rubinstein and B. Melamed, +\dQuote{Modern simulation and modeling} \emph{ Wiley Series in Probability and Statistics,} 1998.} + +\cite{A Smith, Noah and W Tromble, Roy, +\dQuote{Sampling Uniformly from the Unit Simplex,} \emph{ Center for Language and Speech Processing Johns Hopkins University,} 2004.} +} diff --git a/man/exact_vol.Rd b/man/exact_vol.Rd new file mode 100644 index 00000000..c7328e39 --- /dev/null +++ b/man/exact_vol.Rd @@ -0,0 +1,38 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/RcppExports.R +\name{exact_vol} +\alias{exact_vol} +\title{Compute the exact volume of (a) a zonotope (b) an arbitrary simplex in V-representation or (c) if the volume is known and declared by the input object.} +\usage{ +exact_vol(P) +} +\arguments{ +\item{P}{A polytope} +} +\value{ +The exact volume of the input polytope, for zonotopes, simplices in V-representation and polytopes with known exact volume +} +\description{ +Given a zonotope (as an object of class Zonotope), this function computes the sum of the absolute values of the determinants of all the \eqn{d \times d} submatrices of the \eqn{m\times d} matrix \eqn{G} that contains row-wise the \eqn{m} \eqn{d}-dimensional segments that define the zonotope. +For an arbitrary simplex that is given in V-representation this function computes the absolute value of the determinant formed by the simplex's points assuming it is shifted to the origin. +} +\examples{ + +# compute the exact volume of a 5-dimensional zonotope defined by the Minkowski sum of 10 segments +Z = gen_rand_zonotope(2, 5) +vol = exact_vol(Z) + +\donttest{# compute the exact volume of a 2-d arbitrary simplex +V = matrix(c(2,3,-1,7,0,0),ncol = 2, nrow = 3, byrow = TRUE) +P = Vpolytope(V = V) +vol = exact_vol(P) +} + +# compute the exact volume the 10-dimensional cross polytope +P = gen_cross(10,'V') +vol = exact_vol(P) +} +\references{ +\cite{E. Gover and N. Krikorian, +\dQuote{Determinants and the Volumes of Parallelotopes and Zonotopes,} \emph{Linear Algebra and its Applications, 433(1), 28 - 40,} 2010.} +} diff --git a/man/frustum_of_simplex.Rd b/man/frustum_of_simplex.Rd new file mode 100644 index 00000000..bcb075eb --- /dev/null +++ b/man/frustum_of_simplex.Rd @@ -0,0 +1,32 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/RcppExports.R +\name{frustum_of_simplex} +\alias{frustum_of_simplex} +\title{Compute the percentage of the volume of the simplex that is contained in the intersection of a half-space and the simplex.} +\usage{ +frustum_of_simplex(a, z0) +} +\arguments{ +\item{a}{A \eqn{d}-dimensional vector that defines the direction of the hyperplane.} + +\item{z0}{The scalar that defines the half-space.} +} +\value{ +The percentage of the volume of the simplex that is contained in the intersection of a given half-space and the simplex. +} +\description{ +A half-space \eqn{H} is given as a pair of a vector \eqn{a\in R^d} and a scalar \eqn{z0\in R} s.t.: \eqn{a^Tx\leq z0}. This function calls the Ali's version of the Varsi formula to compute a frustum of the simplex. +} +\examples{ +# compute the frustum of H: -x1+x2<=0 +a=c(-1,1) +z0=0 +frustum = frustum_of_simplex(a, z0) +} +\references{ +\cite{Varsi, Giulio, +\dQuote{The multidimensional content of the frustum of the simplex,} \emph{Pacific J. Math. 46, no. 1, 303--314,} 1973.} + +\cite{Ali, Mir M., +\dQuote{Content of the frustum of a simplex,} \emph{ Pacific J. Math. 48, no. 2, 313--322,} 1973.} +} diff --git a/man/gen_cross.Rd b/man/gen_cross.Rd new file mode 100644 index 00000000..ea041442 --- /dev/null +++ b/man/gen_cross.Rd @@ -0,0 +1,26 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/gen_cross.R +\name{gen_cross} +\alias{gen_cross} +\title{Generator function for cross polytopes} +\usage{ +gen_cross(dimension, representation = "H") +} +\arguments{ +\item{dimension}{The dimension of the cross polytope.} + +\item{representation}{A string to declare the representation. It has to be \code{'H'} for H-representation or \code{'V'} for V-representation. Default valus is 'H'.} +} +\value{ +A polytope class representing a cross polytope in H- or V-representation. +} +\description{ +This function generates the \eqn{d}-dimensional cross polytope in H- or V-representation. +} +\examples{ +# generate a 10-dimensional cross polytope in H-representation +P = gen_cross(5, 'H') + +# generate a 15-dimension cross polytope in V-representation +P = gen_cross(15, 'V') +} diff --git a/man/gen_cube.Rd b/man/gen_cube.Rd new file mode 100644 index 00000000..dc97ae5a --- /dev/null +++ b/man/gen_cube.Rd @@ -0,0 +1,26 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/gen_cube.R +\name{gen_cube} +\alias{gen_cube} +\title{Generator function for hypercubes} +\usage{ +gen_cube(dimension, representation = "H") +} +\arguments{ +\item{dimension}{The dimension of the hypercube} + +\item{representation}{A string to declare the representation. It has to be \code{'H'} for H-representation or \code{'V'} for V-representation. Default valus is 'H'.} +} +\value{ +A polytope class representing the unit \eqn{d}-dimensional hypercube in H- or V-representation. +} +\description{ +This function generates the \eqn{d}-dimensional unit hypercube \eqn{[-1,1]^d} in H- or V-representation. +} +\examples{ +# generate a 10-dimensional hypercube in H-representation +P = gen_cube(10, 'H') + +# generate a 15-dimension hypercube in V-representation +P = gen_cube(5, 'V') +} diff --git a/man/gen_prod_simplex.Rd b/man/gen_prod_simplex.Rd new file mode 100644 index 00000000..108a2dc1 --- /dev/null +++ b/man/gen_prod_simplex.Rd @@ -0,0 +1,21 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/gen_prod_simplex.R +\name{gen_prod_simplex} +\alias{gen_prod_simplex} +\title{Generator function for product of simplices} +\usage{ +gen_prod_simplex(dimension) +} +\arguments{ +\item{dimension}{The dimension of the simplices.} +} +\value{ +A polytope class representing the product of the two \eqn{d}-dimensional unit simplices in H-representation. +} +\description{ +This function generates a \eqn{2d}-dimensional polytope that is defined as the product of two \eqn{d}-dimensional unit simplices in H-representation. +} +\examples{ +# generate a product of two 5-dimensional simplices. +P = gen_prod_simplex(5) +} diff --git a/man/gen_rand_hpoly.Rd b/man/gen_rand_hpoly.Rd new file mode 100644 index 00000000..85dd1757 --- /dev/null +++ b/man/gen_rand_hpoly.Rd @@ -0,0 +1,29 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/gen_rand_hpoly.R +\name{gen_rand_hpoly} +\alias{gen_rand_hpoly} +\title{Generator function for random H-polytopes} +\usage{ +gen_rand_hpoly(dimension, nfacets, generator = list(constants = "sphere")) +} +\arguments{ +\item{dimension}{The dimension of the convex polytope.} + +\item{nfacets}{The number of the facets.} + +\item{generator}{A list that could contain two elements. +\itemize{ +\item{constants }{ To declare how to set the constants \eqn{b_i} for each facets: (i) 'sphere', each hyperplane is tangent to the hypersphere of radius 10, (ii) 'uniform' for each \eqn{b_i} the generator picks a uniform number from \eqn{(0,1)}. The defalut value is 'sphere'.} +\item{seed }{ Optional. A fixed seed for the number generator.} +}} +} +\value{ +A polytope class representing a H-polytope. +} +\description{ +This function generates a \eqn{d}-dimensional polytope in H-representation with \eqn{m} facets. We pick \eqn{m} random hyperplanes tangent on the \eqn{d}-dimensional unit hypersphere as facets. +} +\examples{ +# generate a 10-dimensional polytope with 50 facets +P = gen_rand_hpoly(10, 50) +} diff --git a/man/gen_rand_vpoly.Rd b/man/gen_rand_vpoly.Rd new file mode 100644 index 00000000..e34125a5 --- /dev/null +++ b/man/gen_rand_vpoly.Rd @@ -0,0 +1,29 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/gen_rand_vpoly.R +\name{gen_rand_vpoly} +\alias{gen_rand_vpoly} +\title{Generator function for random V-polytopes} +\usage{ +gen_rand_vpoly(dimension, nvertices, generator = list(body = "sphere")) +} +\arguments{ +\item{dimension}{The dimension of the convex polytope.} + +\item{nvertices}{The number of the vertices.} + +\item{generator}{A list that could contain two elements. +\itemize{ +\item{body }{ the body that the generator samples uniformly the vertices from: (i) 'cube' or (ii) 'sphere', the default value is 'sphere'.} +\item{seed }{ Optional. A fixed seed for the number generator.} +}} +} +\value{ +A polytope class representing a V-polytope. +} +\description{ +This function generates a \eqn{d}-dimensional polytope in V-representation with \eqn{m} vertices. We pick \eqn{m} random points from the boundary of the \eqn{d}-dimensional unit hypersphere as vertices. +} +\examples{ +# generate a 10-dimensional polytope defined as the convex hull of 25 random vertices +P = gen_rand_vpoly(10, 25) +} diff --git a/man/gen_rand_zonotope.Rd b/man/gen_rand_zonotope.Rd new file mode 100644 index 00000000..41497ef2 --- /dev/null +++ b/man/gen_rand_zonotope.Rd @@ -0,0 +1,34 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/gen_rand_zonotope.R +\name{gen_rand_zonotope} +\alias{gen_rand_zonotope} +\title{Generator function for zonotopes} +\usage{ +gen_rand_zonotope( + dimension, + nsegments, + generator = list(distribution = "uniform") +) +} +\arguments{ +\item{dimension}{The dimension of the zonotope.} + +\item{nsegments}{The number of segments that generate the zonotope.} + +\item{generator}{A list that could contain two elements. +\itemize{ +\item{distribution }{ the distribution to pick the length of each segment from \eqn{[0,100]}: (i) 'uniform', (ii) 'gaussian' or (iii) 'exponential', the default value is 'uniform.} +\item {seed }{ Optional. A fixed seed for the number generator.} +}} +} +\value{ +A polytope class representing a zonotope. +} +\description{ +This function generates a random \eqn{d}-dimensional zonotope defined by the Minkowski sum of \eqn{m} \eqn{d}-dimensional segments. +The function considers \eqn{m} random directions in \eqn{R^d}. There are three strategies to pick the length of each segment: a) it is uniformly sampled from \eqn{[0,100]}, b) it is random from \eqn{\mathcal{N}(50,(50/3)^2)} truncated to \eqn{[0,100]}, c) it is random from \eqn{Exp(1/30)} truncated to \eqn{[0,100]}. +} +\examples{ +# generate a 10-dimensional zonotope defined by the Minkowski sum of 20 segments +P = gen_rand_zonotope(10, 20) +} diff --git a/man/gen_simplex.Rd b/man/gen_simplex.Rd new file mode 100644 index 00000000..0bbcb155 --- /dev/null +++ b/man/gen_simplex.Rd @@ -0,0 +1,26 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/gen_simplex.R +\name{gen_simplex} +\alias{gen_simplex} +\title{Generator function for simplices} +\usage{ +gen_simplex(dimension, representation = "H") +} +\arguments{ +\item{dimension}{The dimension of the unit simplex.} + +\item{representation}{A string to declare the representation. It has to be \code{'H'} for H-representation or \code{'V'} for V-representation. Default valus is 'H'.} +} +\value{ +A polytope class representing the \eqn{d}-dimensional unit simplex in H- or V-representation. +} +\description{ +This function generates the \eqn{d}-dimensional unit simplex in H- or V-representation. +} +\examples{ +# generate a 10-dimensional simplex in H-representation +PolyList = gen_simplex(10, 'H') + +# generate a 20-dimensional simplex in V-representation +P = gen_simplex(20, 'V') +} diff --git a/man/gen_skinny_cube.Rd b/man/gen_skinny_cube.Rd new file mode 100644 index 00000000..916f5e20 --- /dev/null +++ b/man/gen_skinny_cube.Rd @@ -0,0 +1,21 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/gen_skinny_cube.R +\name{gen_skinny_cube} +\alias{gen_skinny_cube} +\title{Generator function for skinny hypercubes} +\usage{ +gen_skinny_cube(dimension) +} +\arguments{ +\item{dimension}{The dimension of the skinny hypercube.} +} +\value{ +A polytope class representing the \eqn{d}-dimensional skinny hypercube in H-representation. +} +\description{ +This function generates a \eqn{d}-dimensional skinny hypercube \eqn{[-1,1]^{d-1}\times [-100,100]}. +} +\examples{ +# generate a 10-dimensional skinny hypercube. +P = gen_skinny_cube(10) +} diff --git a/man/inner_ball.Rd b/man/inner_ball.Rd new file mode 100644 index 00000000..9b0c21e1 --- /dev/null +++ b/man/inner_ball.Rd @@ -0,0 +1,27 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/RcppExports.R +\name{inner_ball} +\alias{inner_ball} +\title{Compute an inscribed ball of a convex polytope} +\usage{ +inner_ball(P) +} +\arguments{ +\item{P}{A convex polytope. It is an object from class (a) Hpolytope or (b) Vpolytope or (c) Zonotope or (d) VpolytopeIntersection.} +} +\value{ +A \eqn{(d+1)}-dimensional vector that describes the inscribed ball. The first \eqn{d} coordinates corresponds to the center of the ball and the last one to the radius. +} +\description{ +For a H-polytope described by a \eqn{m\times d} matrix \eqn{A} and a \eqn{m}-dimensional vector \eqn{b}, s.t.: \eqn{P=\{x\ |\ Ax\leq b\} }, this function computes the largest inscribed ball (Chebychev ball) by solving the corresponding linear program. +For both zonotopes and V-polytopes the function computes the minimum \eqn{r} s.t.: \eqn{ r e_i \in P} for all \eqn{i=1, \dots ,d}. Then the ball centered at the origin with radius \eqn{r/ \sqrt{d}} is an inscribed ball. +} +\examples{ +# compute the Chebychev ball of the 2d unit simplex +P = gen_simplex(2,'H') +ball_vec = inner_ball(P) + +# compute an inscribed ball of the 3-dimensional unit cube in V-representation +P = gen_cube(3, 'V') +ball_vec = inner_ball(P) +} diff --git a/man/load_sdpa_format_file.Rd b/man/load_sdpa_format_file.Rd new file mode 100644 index 00000000..349c0dfc --- /dev/null +++ b/man/load_sdpa_format_file.Rd @@ -0,0 +1,18 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/RcppExports.R +\name{load_sdpa_format_file} +\alias{load_sdpa_format_file} +\title{An internal Rccp function to read a SDPA format file} +\usage{ +load_sdpa_format_file(input_file = NULL) +} +\arguments{ +\item{input_file}{Name of the input file} +} +\value{ +A list with two named items: an item "matrices" which is a list of the matrices and an vector "objFunction" +} +\description{ +An internal Rccp function to read a SDPA format file +} +\keyword{internal} diff --git a/man/poly_gen.Rd b/man/poly_gen.Rd new file mode 100644 index 00000000..be2ed4dd --- /dev/null +++ b/man/poly_gen.Rd @@ -0,0 +1,28 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/RcppExports.R +\name{poly_gen} +\alias{poly_gen} +\title{An internal Rccp function as a polytope generator} +\usage{ +poly_gen(kind_gen, Vpoly_gen, Zono_gen, dim_gen, m_gen, seed = NULL) +} +\arguments{ +\item{kind_gen}{An integer to declare the type of the polytope.} + +\item{Vpoly_gen}{A boolean parameter to declare if the requested polytope has to be in V-representation.} + +\item{Zono_gen}{A boolean parameter to declare if the requested polytope has to be a zonotope.} + +\item{dim_gen}{An integer to declare the dimension of the requested polytope.} + +\item{m_gen}{An integer to declare the number of generators for the requested random zonotope or the number of vertices for a V-polytope.} + +\item{seed}{Optional. A fixed seed for the random polytope generator.} +} +\value{ +A numerical matrix describing the requested polytope +} +\description{ +An internal Rccp function as a polytope generator +} +\keyword{internal} diff --git a/man/read_sdpa_format_file.Rd b/man/read_sdpa_format_file.Rd new file mode 100644 index 00000000..50ca8ae2 --- /dev/null +++ b/man/read_sdpa_format_file.Rd @@ -0,0 +1,24 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/read_sdpa_file.R +\name{read_sdpa_format_file} +\alias{read_sdpa_format_file} +\title{Read a SDPA format file} +\usage{ +read_sdpa_format_file(path) +} +\arguments{ +\item{path}{Name of the input file} +} +\value{ +A list with two named items: an item "matrices" which is an object of class Spectrahedron and an vector "objFunction" +} +\description{ +Read a SDPA format file and return a spectrahedron (an object of class Spectrahedron) which is defined by +the linear matrix inequality in the input file, and the objective function. +} +\examples{ +path = system.file('extdata', package = 'volesti') +l = read_sdpa_format_file(paste0(path,'/sdpa_n2m3.txt')) +Spectrahedron = l$spectrahedron +objFunction = l$objFunction +} diff --git a/man/rotate_polytope.Rd b/man/rotate_polytope.Rd new file mode 100644 index 00000000..983a2911 --- /dev/null +++ b/man/rotate_polytope.Rd @@ -0,0 +1,41 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/rotate_polytope.R +\name{rotate_polytope} +\alias{rotate_polytope} +\title{Apply a random rotation to a convex polytope (H-polytope, V-polytope, zonotope or intersection of two V-polytopes)} +\usage{ +rotate_polytope(P, rotation = list()) +} +\arguments{ +\item{P}{A convex polytope. It is an object from class (a) Hpolytope, (b) Vpolytope, (c) Zonotope, (d) intersection of two V-polytopes.} + +\item{rotation}{A list that contains (a) the rotation matrix T and (b) the 'seed' to set a spesific seed for the number generator.} +} +\value{ +A list that contains the rotated polytope and the matrix \eqn{T} of the linear transformation. +} +\description{ +Given a convex H- or V- polytope or a zonotope or an intersection of two V-polytopes as input, this function applies (a) a random rotation or (b) a given rotation by an input matrix \eqn{T}. +} +\details{ +Let \eqn{P} be the given polytope and \eqn{Q} the rotated one and \eqn{T} be the matrix of the linear transformation. +\itemize{ +\item{If \eqn{P} is in H-representation and \eqn{A} is the matrix that contains the normal vectors of the facets of \eqn{Q} then \eqn{AT} contains the normal vactors of the facets of \eqn{P}.} +\item{If \eqn{P} is in V-representation and \eqn{V} is the matrix that contains column-wise the vertices of \eqn{Q} then \eqn{T^TV} contains the vertices of \eqn{P}.} +\item{If \eqn{P} is a zonotope and \eqn{G} is the matrix that contains column-wise the generators of \eqn{Q} then \eqn{T^TG} contains the generators of \eqn{P}.} +\item{If \eqn{M} is a matrix that contains column-wise points in \eqn{Q} then \eqn{T^TM} contains points in \eqn{P}.} +} +} +\examples{ +# rotate a H-polytope (2d unit simplex) +P = gen_simplex(2, 'H') +poly_matrix_list = rotate_polytope(P) + +# rotate a V-polytope (3d cube) +P = gen_cube(3, 'V') +poly_matrix_list = rotate_polytope(P) + +# rotate a 5-dimensional zonotope defined by the Minkowski sum of 15 segments +Z = gen_rand_zonotope(3, 6) +poly_matrix_list = rotate_polytope(Z) +} diff --git a/man/rotating.Rd b/man/rotating.Rd new file mode 100644 index 00000000..4b091f81 --- /dev/null +++ b/man/rotating.Rd @@ -0,0 +1,22 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/RcppExports.R +\name{rotating} +\alias{rotating} +\title{An internal Rccp function for the random rotation of a convex polytope} +\usage{ +rotating(P, T = NULL, seed = NULL) +} +\arguments{ +\item{P}{A convex polytope (H-, V-polytope or a zonotope).} + +\item{T}{Optional. A rotation matrix.} + +\item{seed}{Optional. A fixed seed for the random linear map generator.} +} +\value{ +A matrix that describes the rotated polytope +} +\description{ +An internal Rccp function for the random rotation of a convex polytope +} +\keyword{internal} diff --git a/man/round_polytope.Rd b/man/round_polytope.Rd new file mode 100644 index 00000000..1e274882 --- /dev/null +++ b/man/round_polytope.Rd @@ -0,0 +1,46 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/round_polytope.R +\name{round_polytope} +\alias{round_polytope} +\title{Apply rounding to a convex polytope (H-polytope, V-polytope or a zonotope)} +\usage{ +round_polytope(P, settings = list()) +} +\arguments{ +\item{P}{A convex polytope. It is an object from class (a) Hpolytope or (b) Vpolytope or (c) Zonotope.} + +\item{settings}{Optional. A list to parameterize the method by the random walk. +\itemize{ +\item{\code{random_walk} }{ The random walk to sample uniformly distributed points: (a) \code{'CDHR'} for Coordinate Directions Hit-and-Run, (b) \code{'RDHR'} for Random Directions Hit-and-Run or (c) \code{'BiW'} for Billiard walk. The default random walk is \code{'CDHR'} for H-polytopes and \code{'BiW'} for the rest of the representations.} +\item{\code{walk_length} }{ The walk length of the random walk. The default value is \eqn{10 + 10d} for \code{'CDHR'} or \code{'RDHR'} and 2 for \code{'BiW'}.} +\item{\code{seed} }{ Optional. A fixed seed for the number generator.} +}} +} +\value{ +A list with 4 elements: (a) a polytope of the same class as the input polytope class and (b) the element "T" which is the matrix of the inverse linear transformation that is applied on the input polytope, (c) the element "shift" which is the opposite vector of that which has shifted the input polytope, (d) the element "round_value" which is the determinant of the square matrix of the linear transformation that is applied on the input polytope. +} +\description{ +Given a convex H or V polytope or a zonotope as input this function brings the polytope in rounded position based on minimum volume enclosing ellipsoid of a pointset. +} +\examples{ +# rotate a H-polytope (2d unit simplex) +A = matrix(c(-1,0,0,-1,1,1), ncol=2, nrow=3, byrow=TRUE) +b = c(0,0,1) +P = Hpolytope(A = A, b = b) +listHpoly = round_polytope(P) + +# rotate a V-polytope (3d unit cube) using Random Directions HnR with step equal to 50 +P = gen_cube(3, 'V') +ListVpoly = round_polytope(P) + +# round a 2-dimensional zonotope defined by 6 generators using ball walk +Z = gen_rand_zonotope(2,6) +ListZono = round_polytope(Z) +} +\references{ +\cite{I.Z.Emiris and V. Fisikopoulos, +\dQuote{Practical polytope volume approximation,} \emph{ACM Trans. Math. Soft.,} 2018.}, + +\cite{Michael J. Todd and E. Alper Yildirim, +\dQuote{On Khachiyan’s Algorithm for the Computation of Minimum Volume Enclosing Ellipsoids,} \emph{Discrete Applied Mathematics,} 2007.} +} diff --git a/man/rounding.Rd b/man/rounding.Rd new file mode 100644 index 00000000..e8b92f91 --- /dev/null +++ b/man/rounding.Rd @@ -0,0 +1,22 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/RcppExports.R +\name{rounding} +\alias{rounding} +\title{Internal rcpp function for the rounding of a convex polytope} +\usage{ +rounding(P, settings = NULL, seed = NULL) +} +\arguments{ +\item{P}{A convex polytope (H- or V-representation or zonotope).} + +\item{settings}{A list to set the random walk and its walk length} + +\item{seed}{Optional. A fixed seed for the number generator.} +} +\value{ +A numerical matrix that describes the rounded polytope, a numerical matrix of the inverse linear transofmation that is applied on the input polytope, the numerical vector the the input polytope is shifted and the determinant of the matrix of the linear transformation that is applied on the input polytope. +} +\description{ +Internal rcpp function for the rounding of a convex polytope +} +\keyword{internal} diff --git a/man/sample_points.Rd b/man/sample_points.Rd new file mode 100644 index 00000000..890d2730 --- /dev/null +++ b/man/sample_points.Rd @@ -0,0 +1,53 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/RcppExports.R +\name{sample_points} +\alias{sample_points} +\title{Sample uniformly or normally distributed points from a convex Polytope (H-polytope, V-polytope, zonotope or intersection of two V-polytopes).} +\usage{ +sample_points(P, n, random_walk = NULL, distribution = NULL) +} +\arguments{ +\item{P}{A convex polytope. It is an object from class (a) Hpolytope or (b) Vpolytope or (c) Zonotope or (d) VpolytopeIntersection.} + +\item{n}{The number of points that the function is going to sample from the convex polytope.} + +\item{random_walk}{Optional. A list that declares the random walk and some related parameters as follows: +\itemize{ +\item{\code{walk} }{ A string to declare the random walk: i) \code{'CDHR'} for Coordinate Directions Hit-and-Run, ii) \code{'RDHR'} for Random Directions Hit-and-Run, iii) \code{'BaW'} for Ball Walk, iv) \code{'BiW'} for Billiard walk, v) \code{'BCDHR'} boundary sampling by keeping the extreme points of CDHR or vi) \code{'BRDHR'} boundary sampling by keeping the extreme points of RDHR. The default walk is \code{'BiW'} for the uniform distribution or \code{'CDHR'} for the Gaussian distribution.} +\item{\code{walk_length} }{ The number of the steps per generated point for the random walk. The default value is 1.} +\item{\code{nburns} }{ The number of points to burn before start sampling.} +\item{\code{starting_point} }{ A \eqn{d}-dimensional numerical vector that declares a starting point in the interior of the polytope for the random walk. The default choice is the center of the ball as that one computed by the function \code{inner_ball()}.} +\item{\code{BaW_rad} }{ The radius for the ball walk.} +\item{\code{L} }{ The maximum length of the billiard trajectory.} +\item{\code{seed} }{ A fixed seed for the number generator.} +}} + +\item{distribution}{Optional. A list that declares the target density and some related parameters as follows: +\itemize{ +\item{\code{density} }{ A string: (a) \code{'uniform'} for the uniform distribution or b) \code{'gaussian'} for the multidimensional spherical distribution. The default target distribution is uniform.} +\item{\code{variance} }{ The variance of the multidimensional spherical gaussian. The default value is 1.} + \item{\code{mode} }{ A \eqn{d}-dimensional numerical vector that declares the mode of the Gaussian distribution. The default choice is the center of the as that one computed by the function \code{inner_ball()}.} +}} +} +\value{ +A \eqn{d\times n} matrix that contains, column-wise, the sampled points from the convex polytope P. +} +\description{ +Sample n points with uniform or multidimensional spherical gaussian -with a mode at any point- as the target distribution. +} +\examples{ +# uniform distribution from the 3d unit cube in H-representation using ball walk +P = gen_cube(3, 'H') +points = sample_points(P, n = 100, random_walk = list("walk" = "BaW", "walk_length" = 5)) + +# gaussian distribution from the 2d unit simplex in H-representation with variance = 2 +A = matrix(c(-1,0,0,-1,1,1), ncol=2, nrow=3, byrow=TRUE) +b = c(0,0,1) +P = Hpolytope(A = A, b = b) +points = sample_points(P, n = 100, distribution = list("density" = "gaussian", "variance" = 2)) + +# uniform points from the boundary of a 2-dimensional random H-polytope +P = gen_rand_hpoly(2,20) +points = sample_points(P, n = 100, random_walk = list("walk" = "BRDHR")) + +} diff --git a/man/volume.Rd b/man/volume.Rd new file mode 100644 index 00000000..d1db8951 --- /dev/null +++ b/man/volume.Rd @@ -0,0 +1,54 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/RcppExports.R +\name{volume} +\alias{volume} +\title{The main function for volume approximation of a convex Polytope (H-polytope, V-polytope, zonotope or intersection of two V-polytopes)} +\usage{ +volume(P, settings = NULL, rounding = FALSE) +} +\arguments{ +\item{P}{A convex polytope. It is an object from class a) Hpolytope or b) Vpolytope or c) Zonotope or d) VpolytopeIntersection.} + +\item{settings}{Optional. A list that declares which algorithm, random walk and values of parameters to use, as follows: +\itemize{ +\item{\code{algorithm} }{ A string to set the algorithm to use: a) \code{'CB'} for CB algorithm, b) \code{'SoB'} for SOB algorithm or b) \code{'CG'} for CG algorithm. The defalut algorithm is \code{'CB'}.} +\item{\code{error} }{ A numeric value to set the upper bound for the approximation error. The default value is \eqn{1} for SOB algorithm and \eqn{0.1} otherwise.} +\item{\code{random_walk} }{ A string that declares the random walk method: a) \code{'CDHR'} for Coordinate Directions Hit-and-Run, b) \code{'RDHR'} for Random Directions Hit-and-Run, c) \code{'BaW'} for Ball Walk, or \code{'BiW'} for Billiard walk. For CB and SOB algorithms the default walk is \code{'CDHR'} for H-polytopes and \code{'BiW'} for the other representations. For CG algorithm the default walk is \code{'CDHR'} for H-polytopes and \code{'RDHR'} for the other representations.} +\item{\code{walk_length} }{ An integer to set the number of the steps for the random walk. The default value is \eqn{\lfloor 10 + d/10\rfloor} for \code{'SOB'} and \eqn{1} otherwise.} +\item{\code{win_len} }{ The length of the sliding window for CB or CG algorithm. The default value is \eqn{400+3d^2} for CB or \eqn{500+4d^2} for CG.} +\item{\code{hpoly} }{ A boolean parameter to use H-polytopes in MMC of CB algorithm when the input polytope is a zonotope. The default value is \code{TRUE} when the order of the zonotope is \eqn{<5}, otherwise it is \code{FALSE}.} +\item{\code{seed} }{ A fixed seed for the number generator.} +}} + +\item{rounding}{A boolean parameter for rounding. The default value is \code{FALSE}.} +} +\value{ +The approximation of the volume of a convex polytope. +} +\description{ +For the volume approximation can be used three algorithms. Either CoolingBodies (CB) or SequenceOfBalls (SOB) or CoolingGaussian (CG). An H-polytope with \eqn{m} facets is described by a \eqn{m\times d} matrix \eqn{A} and a \eqn{m}-dimensional vector \eqn{b}, s.t.: \eqn{P=\{x\ |\ Ax\leq b\} }. A V-polytope is defined as the convex hull of \eqn{m} \eqn{d}-dimensional points which correspond to the vertices of P. A zonotope is desrcibed by the Minkowski sum of \eqn{m} \eqn{d}-dimensional segments. +} +\examples{ + +# calling SOB algorithm for a H-polytope (3d unit simplex) +HP = gen_cube(3,'H') +vol = volume(HP) + +# calling CG algorithm for a V-polytope (2d simplex) +VP = gen_simplex(2,'V') +vol = volume(VP, settings = list("algorithm" = "CG")) + +# calling CG algorithm for a 2-dimensional zonotope defined as the Minkowski sum of 4 segments +Z = gen_rand_zonotope(2, 4) +vol = volume(Z, settings = list("random_walk" = "RDHR", "walk_length" = 2)) + +} +\references{ +\cite{I.Z.Emiris and V. Fisikopoulos, +\dQuote{Practical polytope volume approximation,} \emph{ACM Trans. Math. Soft.,} 2018.}, + +\cite{A. Chalkis and I.Z.Emiris and V. Fisikopoulos, +\dQuote{Practical Volume Estimation by a New Annealing Schedule for Cooling Convex Bodies,} \emph{CoRR, abs/1905.05494,} 2019.}, + +\cite{B. Cousins and S. Vempala, \dQuote{A practical volume algorithm,} \emph{Springer-Verlag Berlin Heidelberg and The Mathematical Programming Society,} 2015.} +} diff --git a/man/write_sdpa_format_file.Rd b/man/write_sdpa_format_file.Rd new file mode 100644 index 00000000..23ec6714 --- /dev/null +++ b/man/write_sdpa_format_file.Rd @@ -0,0 +1,30 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/RcppExports.R +\name{write_sdpa_format_file} +\alias{write_sdpa_format_file} +\title{Write a SDPA format file} +\usage{ +write_sdpa_format_file(spectrahedron, objective_function, output_file) +} +\arguments{ +\item{spectrahedron}{A spectrahedron in n dimensions; must be an object of class Spectrahedron} + +\item{objective_function}{A numerical vector of length n} + +\item{output_file}{Name of the output file} +} +\description{ +Outputs a spectrahedron (the matrices defining a linear matrix inequality) and a vector (the objective function) +to a SDPA format file. +} +\examples{ +\donttest{ +A0 = matrix(c(-1,0,0,0,-2,1,0,1,-2), nrow=3, ncol=3, byrow = TRUE) +A1 = matrix(c(-1,0,0,0,0,1,0,1,0), nrow=3, ncol=3, byrow = TRUE) +A2 = matrix(c(0,0,-1,0,0,0,-1,0,0), nrow=3, ncol=3, byrow = TRUE) +lmi = list(A0, A1, A2) +S = Spectrahedron(matrices = lmi) +objFunction = c(1,1) +write_sdpa_format_file(S, objFunction, "output.txt") +} +} diff --git a/man/zono_approx.Rd b/man/zono_approx.Rd new file mode 100644 index 00000000..9c27c369 --- /dev/null +++ b/man/zono_approx.Rd @@ -0,0 +1,24 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/RcppExports.R +\name{zono_approx} +\alias{zono_approx} +\title{An internal Rccp function for the over-approximation of a zonotope} +\usage{ +zono_approx(Z, fit_ratio = NULL, settings = NULL, seed = NULL) +} +\arguments{ +\item{Z}{A zonotope.} + +\item{fit_ratio}{Optional. A boolean parameter to request the computation of the ratio of fitness.} + +\item{settings}{Optional. A list that declares the values of the parameters of CB algorithm.} + +\item{seed}{Optional. A fixed seed for the number generator.} +} +\value{ +A List that contains a numerical matrix that describes the PCA approximation as a H-polytope and the ratio of fitness. +} +\description{ +An internal Rccp function for the over-approximation of a zonotope +} +\keyword{internal} diff --git a/man/zonotope_approximation.Rd b/man/zonotope_approximation.Rd new file mode 100644 index 00000000..25510a0c --- /dev/null +++ b/man/zonotope_approximation.Rd @@ -0,0 +1,42 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/zonotope_approximation.R +\name{zonotope_approximation} +\alias{zonotope_approximation} +\title{A function to over-approximate a zonotope with PCA method and to evaluate the approximation by computing a ratio of fitness.} +\usage{ +zonotope_approximation( + Z, + fit_ratio = FALSE, + settings = list(error = 0.1, walk_length = 1, win_len = 250, hpoly = FALSE) +) +} +\arguments{ +\item{Z}{A zonotope.} + +\item{fit_ratio}{Optional. A boolean parameter to request the computation of the ratio of fitness.} + +\item{settings}{Optional. A list that declares the values of the parameters of CB algorithm as follows: +\itemize{ +\item{\code{error} }{ A numeric value to set the upper bound for the approximation error. The default value is \eqn{0.1}.} +\item{\code{walk_length} }{ An integer to set the number of the steps for the random walk. The default value is \eqn{1}.} +\item{\code{win_len} }{ The length of the sliding window for CB algorithm. The default value is \eqn{250}.} +\item{\code{hpoly} }{ A boolean parameter to use H-polytopes in MMC of CB algorithm. The default value is \code{TRUE} when the order of the zonotope is \eqn{<5}, otherwise it is \code{FALSE}.} +\item{\code{seed} }{ Optional. A fixed seed for the number generator.} +}} +} +\value{ +A list that contains the approximation body in H-representation and the ratio of fitness +} +\description{ +For the evaluation of the PCA method the exact volume of the approximation body is computed and the volume of the input zonotope is computed by CoolingBodies algorithm. The ratio of fitness is \eqn{R=vol(P) / vol(P_{red})}, where \eqn{P_{red}} is the approximate polytope. +} +\examples{ +# over-approximate a 2-dimensional zonotope with 10 generators and compute the ratio of fitness +Z = gen_rand_zonotope(2, 8) +retList = zonotope_approximation(Z = Z) + +} +\references{ +\cite{A.K. Kopetzki and B. Schurmann and M. Althoff, +\dQuote{Methods for Order Reduction of Zonotopes,} \emph{IEEE Conference on Decision and Control,} 2017.} +} diff --git a/src/Makevars b/src/Makevars new file mode 100644 index 00000000..07c17c90 --- /dev/null +++ b/src/Makevars @@ -0,0 +1,11 @@ +PKG_CPPFLAGS=-Iexternal -Iexternal/lpsolve/headers/run_headers -Iexternal/minimum_ellipsoid -Iinclude -Iinclude/convex_bodies/spectrahedra +PKG_CXXFLAGS= -DBOOST_NO_AUTO_PTR + +PKG_LIBS=-Lexternal/lpsolve/build/lp_solve -llp_solve $(LAPACK_LIBS) $(BLAS_LIBS) $(FLIBS) + +$(SHLIB): external/lpsolve/build/lp_solve/liblp_solve.a + +external/lpsolve/build/lp_solve/liblp_solve.a: + @(cd external/lpsolve/build/lp_solve && $(MAKE) liblp_solve.a \ + CC="$(CC)" CPPFLAGS="$(CPPFLAGS)" CFLAGS="$(CFLAGS)" \ + CPICFLAGS="$(CPICFLAGS)" AR="$(AR)" RANLIB="$(RANLIB)") diff --git a/src/Makevars.win b/src/Makevars.win new file mode 100644 index 00000000..29935f2a --- /dev/null +++ b/src/Makevars.win @@ -0,0 +1,12 @@ +PKG_CPPFLAGS=-Iexternal -Iexternal/lpsolve/headers/run_headers -Iexternal/minimum_ellipsoid -Iinclude -Iinclude/convex_bodies/spectrahedra +PKG_CXXFLAGS= -lm -ldl -DBOOST_NO_AUTO_PTR + +PKG_LIBS=-Lexternal/lpsolve/build/lp_solve -llp_solve $(LAPACK_LIBS) $(BLAS_LIBS) $(FLIBS) + +$(SHLIB): external/lpsolve/build/lp_solve/liblp_solve.a + +external/lpsolve/build/lp_solve/liblp_solve.a: + @(cd external/lpsolve/build/lp_solve && $(MAKE) liblp_solve.a \ + CC="$(CC)" CPPFLAGS="$(CPPFLAGS) -DUSRDLL -DINLINE=static" \ + CFLAGS="$(CFLAGS)" CPICFLAGS="$(CPICFLAGS)" AR="$(AR)" \ + RANLIB="$(RANLIB)") diff --git a/src/RcppExports.cpp b/src/RcppExports.cpp new file mode 100644 index 00000000..8286fe5b --- /dev/null +++ b/src/RcppExports.cpp @@ -0,0 +1,203 @@ +// Generated by using Rcpp::compileAttributes() -> do not edit by hand +// Generator token: 10BE3573-1514-4C36-9D1C-5A225CD40393 + +#include +#include + +using namespace Rcpp; + +#ifdef RCPP_USE_GLOBAL_ROSTREAM +Rcpp::Rostream& Rcpp::Rcout = Rcpp::Rcpp_cout_get(); +Rcpp::Rostream& Rcpp::Rcerr = Rcpp::Rcpp_cerr_get(); +#endif + +// copula +Rcpp::NumericMatrix copula(Rcpp::Nullable r1, Rcpp::Nullable r2, Rcpp::Nullable sigma, Rcpp::Nullable m, Rcpp::Nullable n, Rcpp::Nullable seed); +RcppExport SEXP _volesti_copula(SEXP r1SEXP, SEXP r2SEXP, SEXP sigmaSEXP, SEXP mSEXP, SEXP nSEXP, SEXP seedSEXP) { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + Rcpp::traits::input_parameter< Rcpp::Nullable >::type r1(r1SEXP); + Rcpp::traits::input_parameter< Rcpp::Nullable >::type r2(r2SEXP); + Rcpp::traits::input_parameter< Rcpp::Nullable >::type sigma(sigmaSEXP); + Rcpp::traits::input_parameter< Rcpp::Nullable >::type m(mSEXP); + Rcpp::traits::input_parameter< Rcpp::Nullable >::type n(nSEXP); + Rcpp::traits::input_parameter< Rcpp::Nullable >::type seed(seedSEXP); + rcpp_result_gen = Rcpp::wrap(copula(r1, r2, sigma, m, n, seed)); + return rcpp_result_gen; +END_RCPP +} +// direct_sampling +Rcpp::NumericMatrix direct_sampling(Rcpp::List body, int n); +RcppExport SEXP _volesti_direct_sampling(SEXP bodySEXP, SEXP nSEXP) { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + Rcpp::traits::input_parameter< Rcpp::List >::type body(bodySEXP); + Rcpp::traits::input_parameter< int >::type n(nSEXP); + rcpp_result_gen = Rcpp::wrap(direct_sampling(body, n)); + return rcpp_result_gen; +END_RCPP +} +// exact_vol +double exact_vol(Rcpp::Reference P); +RcppExport SEXP _volesti_exact_vol(SEXP PSEXP) { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + Rcpp::traits::input_parameter< Rcpp::Reference >::type P(PSEXP); + rcpp_result_gen = Rcpp::wrap(exact_vol(P)); + return rcpp_result_gen; +END_RCPP +} +// frustum_of_simplex +double frustum_of_simplex(Rcpp::NumericVector a, double z0); +RcppExport SEXP _volesti_frustum_of_simplex(SEXP aSEXP, SEXP z0SEXP) { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + Rcpp::traits::input_parameter< Rcpp::NumericVector >::type a(aSEXP); + Rcpp::traits::input_parameter< double >::type z0(z0SEXP); + rcpp_result_gen = Rcpp::wrap(frustum_of_simplex(a, z0)); + return rcpp_result_gen; +END_RCPP +} +// inner_ball +Rcpp::NumericVector inner_ball(Rcpp::Reference P); +RcppExport SEXP _volesti_inner_ball(SEXP PSEXP) { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + Rcpp::traits::input_parameter< Rcpp::Reference >::type P(PSEXP); + rcpp_result_gen = Rcpp::wrap(inner_ball(P)); + return rcpp_result_gen; +END_RCPP +} +// load_sdpa_format_file +Rcpp::List load_sdpa_format_file(Rcpp::Nullable input_file); +RcppExport SEXP _volesti_load_sdpa_format_file(SEXP input_fileSEXP) { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + Rcpp::traits::input_parameter< Rcpp::Nullable >::type input_file(input_fileSEXP); + rcpp_result_gen = Rcpp::wrap(load_sdpa_format_file(input_file)); + return rcpp_result_gen; +END_RCPP +} +// poly_gen +Rcpp::NumericMatrix poly_gen(int kind_gen, bool Vpoly_gen, bool Zono_gen, int dim_gen, int m_gen, Rcpp::Nullable seed); +RcppExport SEXP _volesti_poly_gen(SEXP kind_genSEXP, SEXP Vpoly_genSEXP, SEXP Zono_genSEXP, SEXP dim_genSEXP, SEXP m_genSEXP, SEXP seedSEXP) { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + Rcpp::traits::input_parameter< int >::type kind_gen(kind_genSEXP); + Rcpp::traits::input_parameter< bool >::type Vpoly_gen(Vpoly_genSEXP); + Rcpp::traits::input_parameter< bool >::type Zono_gen(Zono_genSEXP); + Rcpp::traits::input_parameter< int >::type dim_gen(dim_genSEXP); + Rcpp::traits::input_parameter< int >::type m_gen(m_genSEXP); + Rcpp::traits::input_parameter< Rcpp::Nullable >::type seed(seedSEXP); + rcpp_result_gen = Rcpp::wrap(poly_gen(kind_gen, Vpoly_gen, Zono_gen, dim_gen, m_gen, seed)); + return rcpp_result_gen; +END_RCPP +} +// rotating +Rcpp::NumericMatrix rotating(Rcpp::Reference P, Rcpp::Nullable T, Rcpp::Nullable seed); +RcppExport SEXP _volesti_rotating(SEXP PSEXP, SEXP TSEXP, SEXP seedSEXP) { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + Rcpp::traits::input_parameter< Rcpp::Reference >::type P(PSEXP); + Rcpp::traits::input_parameter< Rcpp::Nullable >::type T(TSEXP); + Rcpp::traits::input_parameter< Rcpp::Nullable >::type seed(seedSEXP); + rcpp_result_gen = Rcpp::wrap(rotating(P, T, seed)); + return rcpp_result_gen; +END_RCPP +} +// rounding +Rcpp::List rounding(Rcpp::Reference P, Rcpp::Nullable settings, Rcpp::Nullable seed); +RcppExport SEXP _volesti_rounding(SEXP PSEXP, SEXP settingsSEXP, SEXP seedSEXP) { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + Rcpp::traits::input_parameter< Rcpp::Reference >::type P(PSEXP); + Rcpp::traits::input_parameter< Rcpp::Nullable >::type settings(settingsSEXP); + Rcpp::traits::input_parameter< Rcpp::Nullable >::type seed(seedSEXP); + rcpp_result_gen = Rcpp::wrap(rounding(P, settings, seed)); + return rcpp_result_gen; +END_RCPP +} +// sample_points +Rcpp::NumericMatrix sample_points(Rcpp::Reference P, int n, Rcpp::Nullable random_walk, Rcpp::Nullable distribution); +RcppExport SEXP _volesti_sample_points(SEXP PSEXP, SEXP nSEXP, SEXP random_walkSEXP, SEXP distributionSEXP) { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + Rcpp::traits::input_parameter< Rcpp::Reference >::type P(PSEXP); + Rcpp::traits::input_parameter< int >::type n(nSEXP); + Rcpp::traits::input_parameter< Rcpp::Nullable >::type random_walk(random_walkSEXP); + Rcpp::traits::input_parameter< Rcpp::Nullable >::type distribution(distributionSEXP); + rcpp_result_gen = Rcpp::wrap(sample_points(P, n, random_walk, distribution)); + return rcpp_result_gen; +END_RCPP +} +// volume +double volume(Rcpp::Reference P, Rcpp::Nullable settings, bool rounding); +RcppExport SEXP _volesti_volume(SEXP PSEXP, SEXP settingsSEXP, SEXP roundingSEXP) { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + Rcpp::traits::input_parameter< Rcpp::Reference >::type P(PSEXP); + Rcpp::traits::input_parameter< Rcpp::Nullable >::type settings(settingsSEXP); + Rcpp::traits::input_parameter< bool >::type rounding(roundingSEXP); + rcpp_result_gen = Rcpp::wrap(volume(P, settings, rounding)); + return rcpp_result_gen; +END_RCPP +} +// write_sdpa_format_file +void write_sdpa_format_file(Rcpp::Reference spectrahedron, Rcpp::NumericVector objective_function, std::string output_file); +RcppExport SEXP _volesti_write_sdpa_format_file(SEXP spectrahedronSEXP, SEXP objective_functionSEXP, SEXP output_fileSEXP) { +BEGIN_RCPP + Rcpp::RNGScope rcpp_rngScope_gen; + Rcpp::traits::input_parameter< Rcpp::Reference >::type spectrahedron(spectrahedronSEXP); + Rcpp::traits::input_parameter< Rcpp::NumericVector >::type objective_function(objective_functionSEXP); + Rcpp::traits::input_parameter< std::string >::type output_file(output_fileSEXP); + write_sdpa_format_file(spectrahedron, objective_function, output_file); + return R_NilValue; +END_RCPP +} +// zono_approx +Rcpp::List zono_approx(Rcpp::Reference Z, Rcpp::Nullable fit_ratio, Rcpp::Nullable settings, Rcpp::Nullable seed); +RcppExport SEXP _volesti_zono_approx(SEXP ZSEXP, SEXP fit_ratioSEXP, SEXP settingsSEXP, SEXP seedSEXP) { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + Rcpp::traits::input_parameter< Rcpp::Reference >::type Z(ZSEXP); + Rcpp::traits::input_parameter< Rcpp::Nullable >::type fit_ratio(fit_ratioSEXP); + Rcpp::traits::input_parameter< Rcpp::Nullable >::type settings(settingsSEXP); + Rcpp::traits::input_parameter< Rcpp::Nullable >::type seed(seedSEXP); + rcpp_result_gen = Rcpp::wrap(zono_approx(Z, fit_ratio, settings, seed)); + return rcpp_result_gen; +END_RCPP +} + +static const R_CallMethodDef CallEntries[] = { + {"_volesti_copula", (DL_FUNC) &_volesti_copula, 6}, + {"_volesti_direct_sampling", (DL_FUNC) &_volesti_direct_sampling, 2}, + {"_volesti_exact_vol", (DL_FUNC) &_volesti_exact_vol, 1}, + {"_volesti_frustum_of_simplex", (DL_FUNC) &_volesti_frustum_of_simplex, 2}, + {"_volesti_inner_ball", (DL_FUNC) &_volesti_inner_ball, 1}, + {"_volesti_load_sdpa_format_file", (DL_FUNC) &_volesti_load_sdpa_format_file, 1}, + {"_volesti_poly_gen", (DL_FUNC) &_volesti_poly_gen, 6}, + {"_volesti_rotating", (DL_FUNC) &_volesti_rotating, 3}, + {"_volesti_rounding", (DL_FUNC) &_volesti_rounding, 3}, + {"_volesti_sample_points", (DL_FUNC) &_volesti_sample_points, 4}, + {"_volesti_volume", (DL_FUNC) &_volesti_volume, 3}, + {"_volesti_write_sdpa_format_file", (DL_FUNC) &_volesti_write_sdpa_format_file, 3}, + {"_volesti_zono_approx", (DL_FUNC) &_volesti_zono_approx, 4}, + {NULL, NULL, 0} +}; + +RcppExport void R_init_volesti(DllInfo *dll) { + R_registerRoutines(dll, NULL, CallEntries, NULL, NULL); + R_useDynamicSymbols(dll, FALSE); +} diff --git a/src/RcppExports.o b/src/RcppExports.o new file mode 100644 index 0000000000000000000000000000000000000000..ff365922132abdabb5f1051b7645435c529aa7a1 GIT binary patch literal 164964 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 fjqZsB^Lr_04l$X|)P#z105$wL}6) literal 0 HcmV?d00001 diff --git a/src/copula.cpp b/src/copula.cpp new file mode 100644 index 00000000..065815c3 --- /dev/null +++ b/src/copula.cpp @@ -0,0 +1,113 @@ +// [[Rcpp::depends(BH)]] + +// VolEsti (volume computation and sampling library) + +// Copyright (c) 20012-2018 Vissarion Fisikopoulos +// Copyright (c) 2018 Apostolos Chalkis + +//Contributed and/or modified by Apostolos Chalkis, as part of Google Summer of Code 2018 program. + +#include +#include +#include +#include "convex_bodies/ellipsoids.h" +#include "cartesian_geom/cartesian_kernel.h" +#include +#include +#include "sampling/simplex.hpp" +#include "volume/copulas.h" + +//' Construct a copula using uniform sampling from the unit simplex +//' +//' Given two families of parallel hyperplanes or a family of parallel hyperplanes and a family of concentric ellispoids centered at the origin intersecting the canonical simplex, this function uniformly samples from the canonical simplex and construct an approximation of the bivariate probability distribution, called copula (see \url{https://en.wikipedia.org/wiki/Copula_(probability_theory)}). +//' At least two families of hyperplanes or one family of hyperplanes and one family of ellipsoids have to be given as input. +//' +//' @param r1 The \eqn{d}-dimensional normal vector of the first family of parallel hyperplanes. +//' @param r2 Optional. The \eqn{d}-dimensional normal vector of the second family of parallel hyperplanes. +//' @param sigma Optional. The \eqn{d\times d} symmetric positive semidefine matrix that describes the family of concentric ellipsoids centered at the origin. +//' @param m The number of the slices for the copula. The default value is 100. +//' @param n The number of points to sample. The default value is \eqn{5\cdot 10^5}. +//' @param seed Optional. A fixed seed for the number generator. +//' +//' @references \cite{L. Cales, A. Chalkis, I.Z. Emiris, V. Fisikopoulos, +//' \dQuote{Practical volume computation of structured convex bodies, and an application to modeling portfolio dependencies and financial crises,} \emph{Proc. of Symposium on Computational Geometry, Budapest, Hungary,} 2018.} +//' +//' @return A \eqn{m\times m} numerical matrix that corresponds to a copula. +//' @examples +//' # compute a copula for two random families of parallel hyperplanes +//' h1 = runif(n = 10, min = 1, max = 1000) +//' h1 = h1 / 1000 +//' h2=runif(n = 10, min = 1, max = 1000) +//' h2 = h2 / 1000 +//' cop = copula(r1 = h1, r2 = h2, m = 10, n = 100000) +//' +//' # compute a copula for a family of parallel hyperplanes and a family of conentric ellipsoids +//' h = runif(n = 10, min = 1, max = 1000) +//' h = h / 1000 +//' E = replicate(10, rnorm(20)) +//' E = cov(E) +//' cop = copula(r1 = h, sigma = E, m = 10, n = 100000) +//' +//' @export +// [[Rcpp::export]] +Rcpp::NumericMatrix copula (Rcpp::Nullable r1, + Rcpp::Nullable r2 = R_NilValue, + Rcpp::Nullable sigma = R_NilValue, + Rcpp::Nullable m = R_NilValue, + Rcpp::Nullable n = R_NilValue, + Rcpp::Nullable seed = R_NilValue){ + + typedef double NT; + typedef Cartesian Kernel; + typedef typename Kernel::Point Point; + typedef boost::mt19937 RNGType; + typedef Eigen::Matrix MT; + typedef Eigen::Matrix VT; + typedef copula_ellipsoid CopEll; + unsigned int num_slices = 100, numpoints = 500000; + + if (m.isNotNull()) { + num_slices = Rcpp::as(m); + } + + if (n.isNotNull()) { + numpoints = Rcpp::as(n); + } + + double seed3 = (!seed.isNotNull()) ? std::numeric_limits::signaling_NaN() : Rcpp::as(seed); + + Rcpp::NumericMatrix copula(num_slices, num_slices); + std::vector > StdCopula; + unsigned int dim = Rcpp::as >(r1).size(), i, j; + + std::vector hyp1 = Rcpp::as >(r1); + if (r2.isNotNull()) { + + std::vector hyp2 = Rcpp::as < std::vector < NT > > (r2); + StdCopula = twoParHypFam(dim, numpoints, num_slices, hyp1, hyp2, seed3); + + } else if (sigma.isNotNull()) { + + std::vector > Gin(dim, std::vector(dim)); + MT EE = Rcpp::as(sigma); + for (int i=0; i(dim, numpoints, num_slices, hyp1, Ell, seed3); + } else { + + throw Rcpp::exception("You have to give as input either two families of hyperplanes or one family of hyperplanes and one family of ellipsoids!"); + + } + + for(int i=0; i2mDg^6N| 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

WrI8s`zMw4SPxWAC`5U2uc%`)07 zJ_(!U=a}Sev+lL5cnjqosl{154u$H;(ieMe$7xYh>2vVa zRB1E2!l(R#+CM&1Ek;b^#uAO{tWL%UF-H3bOZb{Neh3yDV=AmdW@sSYn@Nt2q8U&l z8AGX4Lqp$?otL9&m?`a2!t1tX9~R;V~VPuIxTZbuu>(Vo}yLeYAv4j;ap#)&_Ccblj_{H4A-vH zKGc)$UD%Hn$ZczUZ`}Mvel6E0r0X6B*cb~UUxzPh)s=7T{{VFJ BU047B literal 0 HcmV?d00001 diff --git a/src/direct_sampling.cpp b/src/direct_sampling.cpp new file mode 100644 index 00000000..dee5c72d --- /dev/null +++ b/src/direct_sampling.cpp @@ -0,0 +1,120 @@ +// [[Rcpp::depends(BH)]] + +// VolEsti (volume computation and sampling library) + +// Copyright (c) 20012-2020 Vissarion Fisikopoulos +// Copyright (c) 2018-2020 Apostolos Chalkis + +//Contributed and/or modified by Apostolos Chalkis, as part of Google Summer of Code 2018 and 2019 program. + +#include +#include +#include +#include "cartesian_geom/cartesian_kernel.h" +#include +#include +#include +#include +#include "volume/volume_sequence_of_balls.hpp" +#include "sampling/simplex.hpp" + + +//' Sample perfect uniformly distributed points from well known convex bodies: (a) the unit simplex, (b) the canonical simplex, (c) the boundary of a hypersphere or (d) the interior of a hypersphere. +//' +//' The \eqn{d}-dimensional unit simplex is the set of points \eqn{\vec{x}\in \R^d}, s.t.: \eqn{\sum_i x_i\leq 1}, \eqn{x_i\geq 0}. The \eqn{d}-dimensional canonical simplex is the set of points \eqn{\vec{x}\in \R^d}, s.t.: \eqn{\sum_i x_i = 1}, \eqn{x_i\geq 0}. +//' +//' @param body A list to request exact uniform sampling from special well known convex bodies through the following input parameters: +//' \itemize{ +//' \item{\code{type} }{ A string that declares the type of the body for the exact sampling: a) \code{'unit_simplex'} for the unit simplex, b) \code{'canonical_simplex'} for the canonical simplex, c) \code{'hypersphere'} for the boundary of a hypersphere centered at the origin, d) \code{'ball'} for the interior of a hypersphere centered at the origin.} +//' \item{\code{dimension} }{ An integer that declares the dimension when exact sampling is enabled for a simplex or a hypersphere.} +//' \item{\code{radius} }{ The radius of the \eqn{d}-dimensional hypersphere. The default value is \eqn{1}.} +//' \item{\code{seed} }{ A fixed seed for the number generator.} +//' } +//' @param n The number of points that the function is going to sample. +//' +//' @references \cite{R.Y. Rubinstein and B. Melamed, +//' \dQuote{Modern simulation and modeling} \emph{ Wiley Series in Probability and Statistics,} 1998.} +//' @references \cite{A Smith, Noah and W Tromble, Roy, +//' \dQuote{Sampling Uniformly from the Unit Simplex,} \emph{ Center for Language and Speech Processing Johns Hopkins University,} 2004.} +//' +//' @return A \eqn{d\times n} matrix that contains, column-wise, the sampled points from the convex polytope P. +//' @examples +//' # 100 uniform points from the 2-d unit ball +//' points = direct_sampling(n = 100, body = list("type" = "ball", "dimension" = 2)) +//' @export +// [[Rcpp::export]] +Rcpp::NumericMatrix direct_sampling(Rcpp::List body, int n) { + + typedef double NT; + typedef Cartesian Kernel; + typedef boost::mt19937 RNGType2; + typedef typename Kernel::Point Point; + typedef Eigen::Matrix VT; + typedef Eigen::Matrix MT; + typedef BoostRandomNumberGenerator RNGType; + + int dim, numpoints; + NT radius = 1.0; + std::list randPoints; + + if (!body.containsElementNamed("dimension")) { + throw Rcpp::exception("Dimension has to be given as input!"); + } + dim = Rcpp::as(body["dimension"]); + if (dim <=1) throw Rcpp::exception("Dimension has to be larger than 1!"); + + RNGType rng(dim); + if (body.containsElementNamed("seed")) { + unsigned seed2 = Rcpp::as(body["seed"]); + rng.set_seed(seed2); + } + double seed3 = (!body.containsElementNamed("seed")) ? std::numeric_limits::signaling_NaN() : Rcpp::as(body["seed"]); + + numpoints = n; + if (numpoints <= 0) throw Rcpp::exception("The number of samples has to be a positice integer!"); + + if (body.containsElementNamed("radius")) { + + radius = Rcpp::as(body["radius"]); + if (radius <= NT(0)) throw Rcpp::exception("Radius has to be a positive number!"); + + } + if (!body.containsElementNamed("type")) { + + throw Rcpp::exception("The kind of body has to be given as input!"); + + } + if (Rcpp::as(body["type"]).compare(std::string("hypersphere"))==0) { + + for (unsigned int k = 0; k < numpoints; ++k) { + randPoints.push_back(GetPointOnDsphere::apply(dim, radius, rng)); + } + + } else if (Rcpp::as(body["type"]).compare(std::string("ball"))==0) { + + for (unsigned int k = 0; k < numpoints; ++k) { + randPoints.push_back(GetPointInDsphere::apply(dim, radius, rng)); + } + + } else if (Rcpp::as(body["type"]).compare(std::string("unit_simplex"))==0) { + + Sam_Unit(dim, numpoints, randPoints, seed3); + + } else if (Rcpp::as(body["type"]).compare(std::string("canonical_simplex"))==0) { + + Sam_Canon_Unit(dim, numpoints, randPoints, seed3); + + } else { + + throw Rcpp::exception("Wrong input!"); + + } + + MT RetMat(dim, numpoints); + unsigned int jj = 0; + + for (typename std::list::iterator rpit = randPoints.begin(); rpit!=randPoints.end(); rpit++, jj++) { + RetMat.col(jj) = rpit->getCoefficients(); + } + return Rcpp::wrap(RetMat); +} diff --git a/src/direct_sampling.o b/src/direct_sampling.o new file mode 100644 index 0000000000000000000000000000000000000000..412630bb9f5b569b891cbdcfe33b77e75d2303b9 GIT binary patch literal 145418 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 literal 0 HcmV?d00001 diff --git a/src/exact_vol.cpp b/src/exact_vol.cpp new file mode 100644 index 00000000..fdce37ac --- /dev/null +++ b/src/exact_vol.cpp @@ -0,0 +1,119 @@ +// [[Rcpp::depends(BH)]] + +// VolEsti (volume computation and sampling library) + +// Copyright (c) 20012-2019 Vissarion Fisikopoulos +// Copyright (c) 2018-2019 Apostolos Chalkis + +#include +#include +#include +#include +#include +#include +#include +#include "cartesian_geom/cartesian_kernel.h" +#include "convex_bodies/hpolytope.h" +#include "convex_bodies/vpolytope.h" +#include "convex_bodies/zpolytope.h" +#include "volume/exact_vols.h" + +template +FT factorial(FT n) +{ + return (n == 1 || n == 0) ? 1 : factorial(n - 1) * n; +} + +//' Compute the exact volume of (a) a zonotope (b) an arbitrary simplex in V-representation or (c) if the volume is known and declared by the input object. +//' +//' Given a zonotope (as an object of class Zonotope), this function computes the sum of the absolute values of the determinants of all the \eqn{d \times d} submatrices of the \eqn{m\times d} matrix \eqn{G} that contains row-wise the \eqn{m} \eqn{d}-dimensional segments that define the zonotope. +//' For an arbitrary simplex that is given in V-representation this function computes the absolute value of the determinant formed by the simplex's points assuming it is shifted to the origin. +//' +//' @param P A polytope +//' +//' @references \cite{E. Gover and N. Krikorian, +//' \dQuote{Determinants and the Volumes of Parallelotopes and Zonotopes,} \emph{Linear Algebra and its Applications, 433(1), 28 - 40,} 2010.} +//' +//' @return The exact volume of the input polytope, for zonotopes, simplices in V-representation and polytopes with known exact volume +//' @examples +//' +//' # compute the exact volume of a 5-dimensional zonotope defined by the Minkowski sum of 10 segments +//' Z = gen_rand_zonotope(2, 5) +//' vol = exact_vol(Z) +//' +//' \donttest{# compute the exact volume of a 2-d arbitrary simplex +//' V = matrix(c(2,3,-1,7,0,0),ncol = 2, nrow = 3, byrow = TRUE) +//' P = Vpolytope(V = V) +//' vol = exact_vol(P) +//' } +//' +//' # compute the exact volume the 10-dimensional cross polytope +//' P = gen_cross(10,'V') +//' vol = exact_vol(P) +//' @export +// [[Rcpp::export]] +double exact_vol(Rcpp::Reference P) { + + typedef double NT; + typedef Cartesian Kernel; + typedef typename Kernel::Point Point; + typedef Eigen::Matrix VT; + typedef Eigen::Matrix MT; + + if (NT(P.slot("volume")) > 0.0) { + return NT(P.slot("volume")); + } + + int type_num, dim; + std::string type = Rcpp::as(P.slot("type")); + + if (type.compare(std::string("Hpolytope")) == 0) { + dim = Rcpp::as(P.slot("A")).cols(); + type_num = 1; + } else if (type.compare(std::string("Vpolytope")) == 0) { + dim = Rcpp::as(P.slot("V")).cols(); + type_num = 2; + } else if (type.compare(std::string("Zonotope")) == 0) { + dim = Rcpp::as(P.slot("G")).cols(); + type_num = 3; + } else if (type.compare(std::string("VpolytopeIntersection")) == 0) { + dim = Rcpp::as(P.slot("V1")).cols(); + type_num = 4; + } else { + throw Rcpp::exception("Unknown polytope representation!"); + } + + NT vol; + + if (type_num == 2) { + + if (Rcpp::as(P.slot("V")).rows() == + Rcpp::as(P.slot("V")).cols() + 1) { + + MT V = Rcpp::as(P.slot("V")).transpose(), V2(dim,dim); + VT v0 = V.col(dim); + + for (int i = 0; i < dim; ++i) { + V2.col(i) = V.col(i) - v0; + } + vol = std::abs(V2.determinant()) / factorial(NT(dim)); + + } else { + throw Rcpp::exception("Volume unknown!"); + } + + } else if (type_num == 3) { + + typedef Zonotope zonotope; + zonotope ZP; + + ZP.init(dim, Rcpp::as(P.slot("G")), + VT::Ones(Rcpp::as(P.slot("G")).rows())); + vol = exact_zonotope_vol(ZP); + + } else { + throw Rcpp::exception("Volume unknown!"); + } + + return vol; +} diff --git a/src/exact_vol.o b/src/exact_vol.o new file mode 100644 index 0000000000000000000000000000000000000000..68ac07802eebaf93b755cce1e5ab1d90e9ce1485 GIT binary patch literal 365926 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

cFj0n4!Qy-o+R>7GA>p z4$LUv4ZJ_Y1c60NO#(9!xS98E%v9h`-Y;R~^v?m_zr}=r5Ayy569KkZ*!z?#gSNm^ zNDHPGcqs3)&LwZaCA?>0)&SS?UW;i3Zsz?4M#kC)c%Mr_%dH8y6VQZt2pAc(BG7Zu zYOXjhi3hpEynMxKM7RdIV7huW*ISYPS+lUIUfs=2EQsG+JRZrcgZ_-a8uzxk_J|j& zUZja~gL>IA*z!g~)$JFzK?oWy`aqbk;9O zENBSkgu*r1x)q2v4c4t#v3$j(Np;H>Nmg{6!KF)9B7fD={*;U0B$I$8%NohI>(Zow z8}^He$4lmO;t?6BgruK8O)qt8dl`3~U6M)8_45~`pZw}u*GMXDT1JFd9gmb#%-0Jj zD<<-fU>?PsHq5f_0rwruF246*t{qAh#hiwCofp{^x)bxkV9Q#98G`xuLfQo85Ub2< zF(PxEVzfl|>vQz7-^L6it~UweT*8k7Z|A)L{7(tQ=fWTetvOxT@Nj%2=ZV&2mIKR5g|BB{^0J!KDJsr7<)%B6ooBxuGAFTmHe~lJRnvTYoHDE;5lDxr>f- zu;Uh4D_1W|ELi0R>9(%ARf`wMm3XOB)n~zjPD5fg?>jO6(-{;^g3s_CiWz|!g&Bhh zVu~>Hi{T}_D|n~zvkdp!&a|vsF+V&5J~`2{^1w~N&Yn!U<8~UR7IRM#xCzh=xDgXL zoA{}vk7NEB(+X}q<}SrwDqFxxQgm|d7Xm}fAZ zm=`fExO-gOZy*3#gRJV7F!TO&{8)9k1bNX0jc@!1^T$PLI-e+-vM(6|UyZ-tfPTY=*Y_K_#yIsy{1yOVg5D z=H7IDc2b7cEZuQZV8`ThMvpstNB)r`M|PC#IO#~~+2_w3^|i}ydGpOThXmBm=r`ZQ z^36Acr=5PrPm6wf?dZw_Jkw*5BUjD#_q*o0LGuRub=(}pN<)|X_J?SO@k+I%FEjn+%#a*N#Y<>e6s6s)7hKyk9csg z0MorM^S)@)RBH}jCuq#HGqjso*KC?8$jdiviYl8g)NgFlrdgY2U9a7`N$BbC%NtNI zkg_;+#Kel~uhchcvjm(>Mb>3Cig-cJYJ> z6DLhPXL3nN>6CM)Or1LQyz|aK|AGt3$nS+0T{KOeOD+yw8V*-XuRv)1j2V|*X4}!| z%*$g{S6p%BmDSa5_(b*p@&mDjM+jRe9ISZ6@DU?VIFV8E(H~0IJja5K0|0T8?JnEy ze+H(;{15%*Q6WVprJvus`R&JFfBpulzaiETD*%*-Nde{2KG4FU{!RpH0UD~zP;5@Z zOy}=J@F!ZMu{qJY%R1RgVpD=Sk(rPDjkdmt8HJ6Q5^D^04pL@EBQ?Dk`JkhKPqyyl zJw};gluC~^JDN=tEkb^F8Gv-Y7SAopt2|yE-nTQ1OQcMLisY(2uhm6~a)*576 zUu=CHn@cfMkw7|C*@&&!h`AK`ua{!8iZ8)mhMQZg1T(Ld*j$W6>PxLgqzf;{W+~<- zY_7m8z~)NKRp72dHt{9kW?@r<5t}P8vw^CSG+T|$m6$oeH}LfpY_7%32X{UEW)6Sz zF>}@5eB`{wv8_VtX`O->@hc{dj8Y^xVURJTU@px73-(6db=G3_ccXPP(xDryuY$dq zzXk<20ewwDGm&@yRp2P^Cf;AOR`Z_0`&KIqyk7m?3UnJ7F?S$E^)_p*)rz?TsEv0S z&;?A0)*=UgJvQSoL2O21HuU=YmX-VWZR^|Ca3r)0pn-hb`VPO}F~9d(_o`-duk~I2 zEcGkUJ^zD$DgyIUKz$#CDd6uoQZ*POEnz5s!>r>;=?HRlLa)CQdwq-jC?=X?l?ht4 zP~&v#3}tjJmio@zjha7>)_1mQCnvi#T-wEY@Dnf-`I|yZIajrWDd5lLYZ5gx#rrPT z?mT4HOSn^Lap&S|3g%p8H;on-qb^H)C6rMW_1K}jrcjFK5{|U53;DW}`l(YUt?5$y ze*=?gUz31!8=FWwFTqUWSA3W7H;HyH?{z9piTN58{}g`Z%X?qP*F0M8m8#`jLwmWM zmU$iR@_O1r3H82_-&MG|1(yl1lJiCr>a~28(8lKTJB4<5F0Ez?twFG}fl7g<&^F}z zW@{PkW2uWRrA1WocO%~o*z49&ijPv-%mRK_DtHC0L1Xprt$f|6FgH<(p3PN2nGkAR zd=u}l88_PP4ScW0e1(=$O8XG(ZSXUJ=3+9Tl+uP;mHp-F_Zr%cxV{cE6B8x%rL@U= zpw3z3AOv;J;eAT4ztgPTKPkh>_>eYpCL!E|@qTB}(gi=mTEgEw>Q|rv3j06P%1qNz zz&-R{!V!cAWWxV;7VKe#3*4i4frdQ1ejm+;*odEdm9J4IO!2S(vcu4>G8oT|etSIT z5*3R6)ow4LrFefCj2DjB2z>0f*h(Do_F~b#nGa_D<4L4_YGFPY8AeTdY4qtJUDQO0nB%; z`-t#d-z49ezS-9ISTp=v>*v-++??uLOSla{r}=(rJ;tirFyH6aXRH8rSWmN7*lxXG zy=uK>eN4;yN9#@NDeGUY1J*CCm#kk{PvGn4*u8DNYyE+Bzdy20*XsK*!{PqEf5PrZ z*1uZ=d>>l>Wc|H0#5dIUUF-Ykg9`fA!6S-&=iv56R_$tqYx!)xW?2{bu7m@f4?i0X zpKkSC>s#Pk>|5?j_`ZJ3VVGDjjAzuNjSRi}Vfwq@-dk|lM*1hQ^WFlB-(wkBnmLwT zZ#+)TBkB87#!I{BM#A#o|L$AD_QLRJl1&58PG}(c8;D`aik?!-SR2fnr7mRzK9*q# zi~iK2N44lvSx?4D*b>(Wj2z3Cy8tI*WN^;XH9e&MX8Bp+#ZC-M!m=DpPn*HBOlt)( zr(sUVcy7-CF2an%NL*f=ULNK9|Eu^V?*HHXzfA+GK-P1*6{K|yVn#HK78c}h2(4f& zwS5e=eKdcA)UQA?lau+}K=@Mu_+hGT1*lQ|8NEuIJVmt-nSDun62IOfU;0nlzqHMO zYJGysJj3}qp4K5)X`f;@Sp63AD=k=TM*_fyb&o%D|rz7{x6@4fnj zJN*HU@HT0C5qK9IYYv<%0hJa()v0hepSnb3==tX~jfDvR3XGr8uLsGu#?3X*d;`S| zwAMhklM`{_x8#J;R}}OMARWp(2KpV)4a)Y2!S$z@HSP?c8fAMa&^!gnU1uH2RY0{0 zcRkPo1y#~*E>zG5K-VhhY`P%r<02qQt>5|@kWSUz2HI)dJq@H&u;1Vg7~C&m$2z=U z8|b$Ndfz}F8|ZTb^`~3be*4i$Y3OtVZJ}^=E}t>b@pNK~RGLQvX&-4Ioy$K0)hXMn zX)qdh6OhJXd6(%aR4Af5z8;>5$(yw*47I+^o`k8IX222S~fCH@Ia6mjcq|_T4d_ zk0%XeGXPnw!dnQWTSb$B9t8S|vi+68ePEzjr+T&IdIQA`^mhh&)Ij4H-sm)M2GSwF z1f+BHp@EJIdLiEiq5#87(AR+$TEYeX z)!-(a;khdTYEZV*4elpEOBHT#5j$uK;yRyOv)=*IaTJbYuT$CH0@SFWB+yqC^zT5r zEetr*^DzcU$96T)3gzzSKr0pWtFyd#D~n<33in+g9ovtAbja@+XyAA+eYHT^-97_- zVW5(;*+Em`T?3@u-3z4Y@)%H^vK=tNvppY3=j}cqows(NWy+nO9X5>%18Lj}1C5&G z;l2r^DftA@*OcF}lf5{`18Hi^1G+`oz73>PHSioSRW(4`Zwt^B%H0nQv<+yL!aWV7 zQ*{_V+~LNc(Lx(5*l^^?z@0KQ+*P z19cg9WmCL%xzs@0fNoW>bpYv{zXhaYJ7S>Y&h>cga3I~LzYC<@Z3Ozd3gua#H46H@ zu{~sL&zS1jUYPI2Hp@VNJ>1h}w~yAXTk@Mg^Hq2snikI|^IVy)`VCY7G*jUU4Q{A` zVA-xM%+d7=yKlOFMnef>D|Jfa))=VS*tQzndIQ~MY&RI(y#~6^*xqk& z8x8b;v3=0s9x~7)#`aNz+hU+?#J4qr^aRLQ98SW^i&+OS=mh+lay028tQmYJ;0&pn1l2zQNTRXpym9Y;X+*YBaV9 zgIi^wHO98t;93o|-q_w{a2pJCud%();O;ljMq~Sc!98f8hm7qb2KT6ewiw%O2G?$& zUB-5g!98Q3PGkF`!R1Zwc+Stw(#m<1 zZwc+Stw(#mIvJ~RLVFE0(_d<+)j;bFbeDlP80cOD-DjZt4Ybif4;bh{13hG*M-23+ zfwmZEn}OO5w97zy4D^hFIt}!qf%Y5dH3JREJGthhk)f#A#ffgI6!9a}$N*HLBfz}wP*+8uZT5q7c479;O_ZsLv1Kn?+jRtza zKo1(|Ap<>Pphpd~#X#E()NUY%%|5C(PSj8V-?J3%s5&7dDiBIWROElLAxAxLCVUCrWGT;<7BC z@pT_=LZnQk5ZJPQf)Ngs!R!DdJS2lT0H)T(@ZvcnKO{ulXv}eh+L(hm70dw_!;7Z` zOf59e_=5FWb#kxM?1koeNP(AkP2`IxA=u7&)__3Hcr{a&kX|`5~Af zD;XKge~7OfjPxJPtXO2+{0fYm=+9u%VA^vqpMjCn{TVj{AxdyeHfAK4k{rzGU_v<< zp?Y-=<`OWqIhZOijX9XFfZ3RXSqi2z2eTT?fgH>?z#PoMd>4#t2xW5d02sL?kiq;L zm|za39gN%<$hdh9jNBW@V15He7SS`9kHIv%7+r$Hc*#wIjGHlF4&-3QgOOVW88_#O zXVz^pm`lLaQsFao-Ubt-MrAOw!AKp;U~UjMtafUQs)sA4SQ~p`m>$CvGQMsSUwmdT zO<)e>VAg@DHNMozY^kx#mL<*kXdYXzsHUN@RBl4(T(}r@A0m^lZ%H`JjT*f)mK-l+@E+}(qo?gJzc3Xn#+B%wP8^l@XV>y3*lp#r?0NmMq0J3 zz~nwZBB%0DWP}6rJjx?u5P5{N=lhBk-1|qyAM(I(a8oG1@|p9<*h3zPAI|4J+Rca@3^hTHgS$?I(=N?MP=ByHY_Yq%xHQ9>g6*;~Hb8R0?T_22$Tl6C#%d@r*Mn)z2@!b4vAI!sjFpu}aJfDL> zgJjJLZVKgw{92Bim3_)f-wSX(nQ~9(_^Mytm?69_(|7~=5VL)Kj1R>HCO0i>SaNe+ z!)j~tDl}*=$odwIn%Un<6Ro7QU1EU-k8({*EYvM0SR?@~S>}3D_mFDTeW=MwJ0YsH z8z+~zwkx?e6JK1DSnl54anXzF8tTwJs_)}?0W~Q7mg18ZK@){QDFRe<`TtcHIDMw0kXdkS5O(;8InTtbi zv!6*g`$kLzBrWm_DCvjx!shppcQ9@sx)7!sH|WfV(i7SsDpcLhzHXHjtFDoc#VAW9sQ-E+t*Jo`YE2EQPgg+s z-R0b{J*1AB{ zhc0VsXsAh$9qnIuXU0~mvo-hI+$6ZlUsuD76g{m$OP4NLp3yM+=XH!;aNY&y1=S-u zMrAy~9W}-r6BX1~$7m>^@5H{y+)JKCn4nc%n>~_J7DxFBS=H^67p`2HZ51?JJ%eqw zYTGrV&fvBIHZTLsenM7X9i#W-pm-Q}+fLLj&*G)r_0lma>soS5Bl{tJeRPZlaqy^{ zSI@1uL+4d_Rnx@g)d(Hmd{tiJtme;WB`$3Kyt)Z7@>k_Ie{Q3Nrup;B1NZJ2*x7Q> zhdvr5!xk5bPsQz!EuNsbT^i^+ZmaPH*Usr!qXfuhbH+dAi>$D5*x9LVN>q6)g#dDqJCJ&)$O0crJy6sx4pIJvq=*JYKVZ`=n3Ou4 zqGTdeq3R42YTNn++Fk|-JbqVEGw;^DiBs$(Qyoxat)3U6Xp{@DuS7uD<5gHTeIO3o zwZn0)!;EYUalZ@q$h^lxVG$nQ7Y~v!LO#v&;K_#Qc|kPR5xg7v@5OOQJ3iSY1DU|M z>+r3=40i#-JZNtjH?C>{y~HZJoa`sg*)oJAA<%0E%bt^LXHd}-VMTtPkd|7{Wp1l<%(5T~XP>zJAf!3d6Z*N_> zdMN{x6-y*Cjek<%7uT&=ipt~#8GNU9e{4M1lnH2b^3jNGWDl!?N;A8y(kFimFT1!i`{c#6rLA)m;hLRB2a6t7^khCmlr(uk#`LD%TTm%oCSh zWayLS4qLc{+vs}||A1uRwFjuW2$Ri@AWIN5?ZlO}a>x56DtD6nOzw1cBxk{HWQL0F z)aErs!EsIF|73n7D4n038)B((-y+CNPMqJU6n2l%;b{vcaz2yv%`J!XntrR2o)wms zRg3I%Q*?h#$hk#VoGpn(%G;D5fbWtdI=-Tr~dKwCP$#@3dKouWc2cFs-`j zT9MVP+Dp=vZk>FnNR}WGIsG&Af=YI}M|<@ZiN0tGd(s~(e=E>>4^}Ee`<38nEkmEY zBwpDnY>MiJFr2KChMuSrLvxOfD3*LcMPw73z6D7ij0J}%I^+Mu<152C*XlqW4 zRg!9|oHs?8s^}B&BF#^{*zMGBD1E+9tj&Zc@xCqbZUnZszw4K{Hvm)9{!UPCo^9V7 z-6M6o**VmW*Ke19k@#mjg-Tk)CMJ}=oKbWvpazI;_%OoFoSoQ>fjU2vjCQqwLT3GO&1-$roBB0hQk6JgDR&5Y zwIh53B#?ZiMk=1}Hf#x$fd1)c#}P{RGxZx($-^SvlZdWFR+@_F-=p!uB76IrTI{)v zyylH6t-c(*NK1E{gvgu%d_-JnmKNANBTt%#bcqzuS<|XDY_f*}wpQtrBx2lH>5KT- z;6{+IP!h2OiHa}VK}Z|=W2By_s5XKZkyXg8N{gUF@WIMtVNoPGpzAW^%R!xcot^1- zRNp{5PWp>dg~;^Y+r3c*Ct)F`s)S&y?ti5)TLn_OLXf>AgStx?!1P-3w6Kj(nzz6lOYOBqf$foa23*!p>@X3K!=C>#^Zw ziAIKoiLW<*K07gkNI$om_99%X4hJGYFNo4%K-yG4)_+wNkt06x2?c9zrxkc0{>e)} z-mk~L`w6cfNcEGxwEJ$a{ipg#$JhP$neXNDeNV={bkFJQ-Tp4O{zg^3)fGzWZOnO2 z7nG`2f!5{pZn4y&qG?J-+HblpK|Y}fEBpp{IR7QH0&OyQ0i0G9X#0eS056^%XnPM3 zT}(wKF=U8S$mq_A6iw|C*|1?}mjp2eeRj(lUAAMjX zFwC%&A!mVZ?vsIc`&%aP+Ubv!qf7brXK|z~BXGBtUD++u)gJkn^!7b3hqsL9t)!`m z{C@Hob#=bSoHx5}M%0&bNDg{l7A~C{ITJTfScM+mMoIN_|BVhzjo-st%CZ7noE2a< zlF$ZsV(FIJulOv)UVU~yN`G#2SD@D5AkB!nCk%&3|3O6x0d%}(w3DmcCP(*!;?>)V zHc9~W6%X>3enOgbSkC*6p!rZ0h~%?h+ify1`irV$R+ zpwiy{+dN$rWS6Xd!$;EtLn99%G>y$G*$?DC+H-tsWImP-RDSeo@ly~y2=5v2bvSLX^lJv(iM)le|Y5a#w z8YLp#FR4T|WF_URSliI2JW5<$RK4C+Bsxor0RVnc^n*7sp0uhk5xK!#-in~ zHT@=iy7Emwvqk36>9hIN@gFtIYTBeabt9~f1Y5oUYQBB{ZWWXasO{g_uiD?9*J z?H2Zy0!PAmuG258miPPla?Xd{I^HJ$i~Etv+~bnXz=1_v?-EXj#(>9d%1+>-&z>ixgqPV<& z%bN`ADXp5tGEMcSsLZ%zF1lJxI>G9xrZ=_prjp)l(VHE{EpI-!%v$Nr0M)cHZXvHn z{SPvb2K2ANHryB-*Knifrs2jxEN3xg=HRuLaB@Iqc$O|z3tKf!%ZOg)rtu4d)0a0j zEJ9LLBFI8`yl&;npq}ybl8Jk8p_W)?DXCy0JLvjxE59P!S3I+quUN5qVlc6I$;#k@ z#>R#v@db$`h#Ok8yl$lm(v=q#wA{elm#o=cm=%y(%2bKcsj6Xl5jj-F<1Y-xGs#n; zsbuM334+v?+*&so5=iN&49nv1E%J>qq?uAOx%7Mp;!;w72FH15i>12DbWZf|pSwr& zRh+R|PyM``-_sN%9f8KZ4s^Q0ea0_a%eXt8rm3OX25L4?9(7v#MVKP83dF}sARY3L zjO|Z=bjY$JRHWQZr@m`!V-wm|WKra~R4+hF(s-Sc9Eg+rJ`wjGvf!+YpY0iTuX{wC{(zz@H(mB5hNV~fh z=xmj~CWE^TNSE{mAnoG^#`ecR+K0%*)1k;J$OIM24uk73xVH@MJp+9Lq~o{*j;TY5 z0qIh`9!ST#)Yv8rvhgB!yVr1pD0kfzJkKsp8218F)h1JWtD z+t~gGkoNmagZsqb#>4e>co0I}<94d8j>x!B z(AY|eYFmj(Llcc{iNQ(lrftiN?KFc687N|GZG(#$sM^@hF}QgKns01t4Q`Qv78~0J zgKIQU!q~1dxHSf9Hnyz>x86W^8QTp8cdvo&Gq!!t&Z+&FI1X|i8CuKZqrCHc8t(lo zwWAiJ+$c+F0W!wOU_xMm{%p)#aS7MVxDi^&s3U`s9Lm@ugZUm98G&Rl4}+2MNCqR* zPZ^D9jNUS46Pkx4DWgx<$S5V_>jUvsn2q@(7#Xo>H+@g($Vf)YH1lNdEy>jBXr~Rc z_mxz7d_L%s`(*DaiDkZTTdo7X`kvCcAFOb{%+vRj&f7;V!yzsf!V=fSFqyc&YE>hE2x!QfUn8k#PE+py+$vroPXaioT~c z>ie9N$vM!W(tI&_(o|DND;U%*Sy{st_Yy?!xC1;rXp>JBUd__PDkRb_s*z!nadb?i z8pay8nGkaEYS89|AqPMD1YEZ)!9KZ{CfBKa%lI$8d{Ld8vw)VyN#7x$Sm^{DBTLzo z(3{hV<%rX*TjA|n_u9=K#K3&%a!#-;bT@WOf|*Cd`uF^)QF8 z9BUcW@Cg4t+MaF*e5;!WK=p)&d=YVeQ5kp` zP2KHwY9b4xtlUKgGk<4qNERctdVuCHShi%102PFlqd(nuINb71UQ0W=4u2=w*`}hB zdTPrNROyT$Yi3UGd|_h|6fF{{3VQf;QC}N>)%JCZ_E5=s`XsK~L?jaM$=Mon3*4-%!D`!p!Olk?htnw6(8ZDk^fw0t*~^ zjq$RSzlea=*b(O~=X2bmt@|U}_d9TFAN746AtP)fe~A7<+xH%!Mbt7KK@!-#vaTMi zOw}TSXE*x^dQBnl@Viy8@0}`1&!I*n z8b@0V~cE`LcdSmA5_)2bNDPLY2qlsN*k+qKpL1+YhN=W9*-(ItN|1|CSIx zV0W(P<+k>?(V!w>RI+e5m!&Dz^568_5-!9o5ZB_gN}LuFmv(Cw z*mY)<(}=f6k&2B!n3{*GJ%7>1f#n0GW>e1S#ZW;g-BPkD?=AZ~R~4}ITQ)Q>KE`o_ z)S9AdZ;c8)rL=<2-Bhi*-i|+Qx1@dSFZk_zP1LCKi_D&9OtdE8{Esc&K9)RNem}IW z{r30JcTO`SF)Eee^4D)4OR_2@Lw@uvRMPb37O=%Mw9@%q_gz|V6q~2G8H8?+aX%*F zqOv@6iT+0A8XwfQ#o4uOr<6KDSU;1ZPmhxIyG(95gCJ-&liQwOJ3`V8R}mi5bjUpe zk~pN>&G!y{7KV8UKI5G=LuZe(4?CyRb?@oFM%nq^#OZ;@2Xe52vl8b?5+wYdms!d4 zt)I?WiR08+i55|dEuLG&iS^(0-$&o_BuNPBDF=~|Q*FJBNxE6qB^{!ucl``EE${E{ zk9rTSbJ?Wle=R&V;a`rhA<%{bB^l_F%s}fu3E=E&`F(%ITT7oW@3?)i+5`pJ`h7v9R#E8>+v5+~_u0PvyDh8v(uSt_&A0oOG+o_%d)~sP zYPH|$?c=y_eFDc$#q!zB*sa26zwTnSJCI3)t`F|stedP5sn&sX`12VgWcGME{O3+y zx!mgB>h1Z+R_~$o5^wD`qc4RG)fg+zs9|xQt`e#Yq-rYiFia;)aMh}|_Mc0AwF8lZ zf+(tL+Y7uO=c@~%hko^QLhX4%xoF$Fy1+j4$`gW#mOpj-1vWdb--{mlJnHNs(5A~e z`indEXFFu5PQ9P(Ob$GJ5%u{ZDuJgKenX6mf6qSjnd_~(Lk;{(Kj_}4=|BLoZ8TB# zjEcJ^6B{gVqBESX>P2Ut^ey9`3OxLhbAp7O9kSW;GM+!AZHnhg=Qq;(Mgk8%9~r;T zIZpP|tSyp}^g@1e+aL9FdTI=%O=a4Xn%xsF-xmqi|+~V zJ3J#f=I*Nao*BszcgNySRV1g~-95}rN2L6frrBZVDQ5?YaKhtZ0-yD}{k>Sc{fboK zH_AKLj7IAQ6bSD&Ow{5AU?^i}|{wKP%}zMb{%W<{<+w(uUh) z2PEoz8gagG_D9Aa<`~@VZ@B)6ufvWL!+T-TY(1D{1yWb@oA2&`$93{5og?;rQQwo@ zqjmVA<(l3(>iZ;8{&Ar7r^Fx|i9IheZkZT(_;6d#s@K|j5(5Kw{|#2*L%)tN@ar{l zQT&G*N>8j)npoiOM`i^RSpOpe2()hCR|bS`y6H}H@(m@&N^dVTQH1k#?mJACKPY5F z5jS*7_s}3>49VDceIxx5AG8CK6)8^?O*{0$Au8Gau=DHmEGc8J|B$3Pzs}BApsg4O z>52SA$SfzQzDWO2xu<56Gy_WrZK-qbL2Y_{&sA(i7O6 zSLWL)mVv)-=YVA(wj;ZT+>p#G{}a~qzv2}Yi32ft^?`G?-!ibYo%f!=U&~=l*={aw z`P{d*kgy?5ar#v>r|rxnp;vuI{ab6%9wGhxdgS1|DAg<&LF*SojZSRBEnoTqcb72; zRLnI5K-*-iyWPG|CKa6ASyvTrpP8DbCl>yIjJ_BmqhMb33GTe2guP`muShkjd4-x! zR8SjDc`$C50kIkymqgvTCfFUaVdt#oorW9sRoA_N}(#g(ZwKWCUGbBw*V z?=z+ax9P~7k5p#t_|8ab#L3ZAq|HhW4Lc`Rmj5Pj&vS$yi+|y~htKELjN=IS+y2J) zUWAddIs`-{dfM@MPiKTiQ6`blc%2m#sHCDeoVreC9_d9O3_YmMk*KrRWVj^e>{SWD zM~IvX1zS6)X3Rd&3znfBZR5GB_}-}RvzT<0Of=l|?J`H2 zzE{x)y6dPrV)3U5Bz>z&rkujXD{N58$kCG)Ns3ZSR>@JVUGuVslWOwP8@V&E`Biki zp%tzjy7jhAkN+?$|Gnxfvn9;~q}~c27Jj^ucZ5mEgS@NapP@MoO=`}|l@3||qDl@G zl33_L$NIV=$zE!cn)N)znJ;xJO4Ej%1(kc9FF?hwK2x?;ZEq*8rO-Z6Q@3dRb>I)w zNwm)t19-=de?Ucw`rcR0u~8@e^iWHmSYuW}Zq2DU*+*9dqTTk!)0Ugbj+K-DJKkRp zil%yymz>W!%$trZ!gNm}MT6$}PMP~jyOqPxcgxZ%loHEuY84vx(0b45kX59;ok`<< z<-fJ)0B<|KXM%Pq6CDYG!63bag7DWU=dt3h3n*IahI?qg9q)oyNLcyzs-VK#XnC;d z2&)h(ionC$R2t~;gl~tP-O|%Zs#qssZu~!q}H5~JkqoUbKu_cjG3B4MVRfeHVB~g{gtCJ;NJ|Qqm6D=Ki zj&4VMHTVuQbzg(00}yV4roS}xdsa&+L*X?H>^TR$9_wsQ?A_70Cg+sgV&R_>lJHMy zJMKzSYL+ijz9Vo?jCK``Z>JNBRFOkwqZ=E7gzj0wkPg$LAN#x5sx%2WMg-_TtF+ z-*;c7$9WPiUA8%8F5Lg5id5k_cKnw*&iG!Ui}~IZs;LM{WIRX^wr}S}`si$+^>x<{ zc5|=FMcDb2o|;wIQH(r$G}jbfsGIaFEFQJ#s9pCebcuWnW35lz+}^8l8;w7giJmoB zT7XCor^-tH1&}U63MJxeD4NIje2CJ{cOdm$din@0y!YzQhHTQ^^(3xxQsa%beXw6tB;p`jUl`U{oL zlMGE6;0ErNy*>Iq7PFZvsJh15MTag8Zbclxnn}^_#K1}_%smhAC9P1{6)R>8l}ewt z;rO;VgW1dR+>kKI%t>3Rkj0>bUAJ(wQ#sH+!*qmhPz1sPpcl@u{NG8_baqy?eVSm! zQx6EjsmLkP>E|xK)o-Ab-;c(hsfvFP%YR5^LggqccGZfaPKS=#O^1p(#tFibOscnY z?m9-hvvsP;4X5ul1(e@RmV0^J4@>Kn+$!dJq+O4Ms3Y@z`_q?D+#6U)XYg-t|BXMo z{ea*0Jr(n9k0pisJLT6akd_>j}?f4EG&oRgEGwXt! zPj-B)2gpi2fnzs}AyLTk*4N^{;#LEvdYNpmJs(cOxNiLZD66y)<|Z+!1q%=MAuuEg z6HU$W9gO<6lfap&!hyP$Y=4V|@@c113huHL>jUBP&b1d&t;Tn_ zx`Cir&4(M`2P8~(qrBN7xo59f#eZ9gzF-!vOWZ|#uRY4bd0`PFPg&Y7Dc83-ZmWzq zA5Xa74J%PJvC4VZ*DV)2)VhArD-!xlpJ>d3%Tgto<)$1 zKIEX(lwWY|2r|fo_SDpMJ(ZQNL&O~K${yKkU(!Z|K8M6*$@5yl&kvKJ2t@kp`oQmnOx&R<_O4+F>LWXF zb~^>k`G!zQU0K^#6=z?I1!8v}()rb6obu2|mBWns66&b*I6t_bZ~F0% zf80G-+G~_`uSof!H5HtU-kfz+E1arimG4PA@bHuN_O3Hh{?K+7^U9xWdX5NGz~Yl2 z6>A}c+a9l6@_~dK-u`S}_>Mo$ojZ5rEpp>dcnwuE{1vXfz~5ZoxfU)*5q^|AUMr&m z<)}Z$P2~2{Kwe~dBd@?_J^$5NmwDdAV`V-TUsNjim zd!;H+saN#FsmsWChrOh|{O-5Pbl%%l-a8U!!w8_(yK63-5!mcMGt~M);y*YMK0*hf zDAE0d4&TeC_#h81mEOH=cjb~E2{^p{7f`9E8Hv9Z@2Ajc_+VVIEiGlN|&}PWWt?BgjSv{juQQdf4;Pe^HWG>uV%jIp2S@^my@l zZ*lj7qohyp3y*>yF8bq#_0=CQ?vIwwW8uB{y?1sVJ)HPGS{@|dQ!+OtP&sPlmH29X z+4=Wy-W>|LCo!ehJ&9xGQSMt*^tx|xG~Cg`?3FgMV!bN`&2x}+#5&N_DY*K)cK@;<#lOK~sZJsZB? zikn*AKj0*@45c37y$kaoa3}A#Fb@GAH@xNx!(-jALDK>pf!-%bW)!L6D1k1-{{kMQ1%nJR90{~A*UeBl4E_wMmgR@eUU zGY~W)_+YCo^-{++ltcj&L`_6A12ZtAlZ&}1wrU7TAgLjV$%KnV3?|XU7>v~_tsW2O z*m~&Qo_Y|iKMl8l)(hedwJKhlF)Ui1D=52NAdSK@J{?*=Y>CT z4}SOK@1MZV$*?DhKiYuhM`-V)Gb)|AzHo8CDJd!qz@1e|ViQsJVrT56>6K?s%9_3y zZiA4DJYRLjVID%AgTEBqKjz@(LZaVWL|cuDc9liHwdk)F?S@9>NZg6gm$LVa|vEwkZP0dW&Xiqi$;6ZDYv{dZ`O;(kAnN-qWbV->2k z=p&1!K*yACi$y``nxf6OXpu!fv*>P%{sE0tF^)dgph}BcEqdLeQP5izqtT-Ou;^%P zCRgRS59nMe<(rmP0lihU28+&up3aeQ{m{6Xf+n4)+H#6B9Vj3)AJ7?sDuLz-`lR4O-F z--FiI<2B)q2cm|iII}H!6Iyq!(AJ>_720HLrrpZr1zXA^Y#!Sz`U%ntN-FqI&O)f& z|EI#GcK>Gyf?8?c2^OL9ala$Op*plLDnTPJkn&Blv~-K6Sl>)bn_*G5^`$l_UUDs> zJXOl%T=|AADzv^OmNws_ORet$ORKb~+WOX7T7yLq>$}|2R$A0zecLRp!=f9lZ;z$j zYSCKjd#9zXv*?%BcfF2|$GrktWgc{i@^~EYh^Id2i7rxRjS|Meq16T& zoaEe*6j;)%uaq=6gH#mk-;dP8kY{fqrM5oq;fymz$peM+&KTtqP&oUHQJ6O8po&u6&{Pkbj4~6A zr&KNHd^8rT0kJqMjZv;91)_~nZUBWdR7JUx3B%?T=c$TvVR2d0vhoI*t;S;g9I-fO zjZuCD3TLh{${(3m0_8zaIE#&i*$N8hvWmjISTN3LV_}|T$_bR+pd{L}eiIbVabvOm z!7vGwK~Ol~Rbe7EORDmrE{WEnWp^UfDwfVM&|J=dW0dcM!g;Ww$cdMwRTZ2K$HGiU zm>zFDh38=S3q)P&gcubq90#WyJa>;=>wt%;{E5})L=PkX@c@`OOiXP>eY z{EZ{XlH&QYvrjx@x;&o4t5NQ_6H}_OPs17W z2+rK;CSsgTJd#vdSH7gmSyWS38LF#982NJAls%GA>Ou4A0u_+?B0d{yRiD2irmKHVvYwDV+5EDpQA|;ANuUcMJ(G1fA zY~{08NbU-fCnAz&ub^uo3_@RVG3_uXx@H#?gyTFV4UsC&+Lz*bco>O|02W^uFGF+I zsu?VsvsS}SUa>zobA~e(woUU2i(_^)zv{%*>C>lY<#_qTPFyX;vArLQt|Xth%FS0N zu2RdCGWDXiz5idFxEf~llIJdK3t&Nlg9085L3mp&%#H6INaw6(<)uWiCwByEo2dx5 z=Q786L#Hi6a&xp3#E&gb&P#E|_K%&DnE1643v z_Q24~L)@G?6kLlhe(r{n!|{E!<)GKS?y1puxo$bn8}1x*+y4#+z6jvUWlOd<@-cSu z=4^5Ew_y8j#+L2?cD=lSFGB8hTaa+;=P7O*MzbdLoFf)sqX)zzS>!-OCGgAI74F<2Uj}SGJ9Pc*$k>wCJ>!Tr975oI5UrnM zPi8tQv-R`QZrcI?oWSVZAIRE;eAe(j6!|iYt-#z3bD;M%oHyYPKwWRxnUb@~&EJHD z{|VRu&%O1VJz>vge5f4dYZ(MPon*ChXG~tAFFKk;L2xYE-|1_81FW2h9IamZ4jcw; z$%i!ZI`^wDUYk9>1EXGRJ`l**@6UP0@8&;~SFxEQ@ql%Tgi~Z~DlN~m&!6#(4;i}c zqeP^=W+gu+f1@LiOF{RHRF&l{%s9iH`{L!l&nQ^9bBOuTFg)|)^cxy_u2izIIMMWZu3|e(1X>dqfwC7!8~!os@oEA7B)|S zZ@D*Xv}vfZ-DLgR;(JJuSc1-lz2 zWcB)5&?4GsZ!7va{=<%jXd4m>c4Gr$9xaZk&9gl6sSXIu?(@$mMD1-7;i)zO!Kua{ zZIu0UO4^73-jvWOwrxn?=pPx>I%ry{?1YKlh0GHrbiR~6&u#mTfMK$kC`8C+F;Z8u zxl9mc^C?~M# z<5-^DJU+un1se>YtJucWlI^(dJ>Z^lie7{gKqlOb7;Njs;R;l~<@2Aa-ra|H;52PV z3Nl0dFpj-)&n7s_^|bXizaG6*;+Tp7Pr|~;8Q&$9I6~8bsjjwnApxoN*8$9E5!aT4 zW9~VECSC9ew^_DOpx9^9`u3-8+s(tuvKnrCF3*p?l;!9+OiB^N&Qd9~F2$SCV%DV^ z7ty5Iv7joku{+~aW^0RNdK{>Ew!WAF+S0Eo1`5DT!72Cz2NarJ; z=q{-XhrW?_qQ8Z=$Wh!sk8+c&xWU1A1jpzWeHbyQASRpdL4}mfzvy2PMArj$bntLp z=hHZaWo+NkaNN&$9)@3-M>USl%Z2B6X;G^Y>2|3pE&`FjTlb{JD*Wi+B$gn z(xa5YNgfxK`Ve!3jL(x8ogb=zl1jpfQfozb^?Pd(*v+^vtp&f_e8N3H*p#%$P5;2X z_5{dMw*SBeK0MB#ZJ)nju8NP&k+kWsONTdq$G!GMv`LW@b}1s_tK2|}ro)kDIRYrR8ZPWQLh7J*V?M8F<@_W~Rc zI+};_xoP18e|PW`eDao@I=3LNRkuDEAe%aOh`#wqjAsLVx?k8(i2bQSSQDMvoa$~U z90do=g4TGr5u5F8!-STDr$)xK9L#LqfqfAumloxw)=$SZ?}<*At?r&{eur@V5b{pq8vWx4d=Dn@?XKAkeM;ipCGVSK{WVzr+Wc=FiT_6A0)EK@|kt)AcnKrM!=C}I%Y16Zi;XTN3 zpu1y&KclyG@Skq`Nk}Eyr1YX=LdK5P!H?Ybu^tnJUvQX2f^rB3866Az0qHNY zTOQcKWuEQWo(Q(Evz_Own~%q!2`kMdFapd?)I1%JjYulpKvu76L!e`7K5=yGFOdSI zI;C}RDAK2cF6xOq=2IEQtWpfT$oYMDzK8WU1rncztR*qL(BW1E;Xq}zh&!;E{<||< z*CYLF-iQu6ld4|>#xENm+}``e%TNmU?%t-FtlrS}&2$coGyUvfYUF%>M+&xYZQ{!X zBBt;KV*IkV^4z;OH@=EJvwbNZ2b)=s7&^Z@<%n>`V*}%RFg_^V*@-re_t3p&rybuD zoq@;tJPDgzhwtDH#_h%#{_CXI+P(Ot7f zqI??xKN0jTpuIpo>C@zh$~)oCH-%YjvjwN;VXnx}ud=Z$abA$ldEgU18o+2C@O7Mq z9dwu%pc$k~LTV;0BPybssX@BT_4ok;oJ|%1!Klh)cMYv_wOsQ9FvOMKmTM*f(NFiv*gK08JGSm*?wC}Nlaa?pyh%C(Wvcx`H{EMLB!d`QpbhOW z0ppzu8-g*nVNLdpLP?Y%3=Mlh4Qdnq@L?IX&(1iX)~bp=!f+JPfHG(!0*ypzzw?f&KGb(6Gj`FCt>978;yG=I30mk!fr{sBiaWO=wVY) zm|S)ss8kZ(QjWw@*1!X*zw5e<{bd*-)-o|YyFsV72M0hR&ns^@@s6gZUAb*TZrcio zuk~##rZoVlFc{!Z+>HSY;Q)`_11R}L^C;?`#2t>@rT$#7;%FRH%fs%{?n{4$c+Yno z+5YJAN*JYBvl+aEy3g4;Fxki(I}pR&%LXOMxZ|Zb;S#|?iI1`O7J8r3<@+qhv+@~V z*D+~1`&W&}Hp#A)?I}4c+nvaFG4lF4kC8V^3N3zfBb{U!;EJH$RP+GXZG}d79>_(S=(Mf|M|<@(JbidcLA^TsouGbi#}7Gb z;V&M6)1f>#X;@AOl4@cykGK>sNH}?NUs@(u=)A563}p3w82oLPdGCP^ zQyjjHLukQ#0}$g4ZC8SEcLP?K5CN}@q0YT{Q*48Amp@}5>cHB=z_+De47eNWaq?oj z2QQCq+ima!=0Za(#xc z^OFbJ+d{k1?HvblKg)u1S7ZP$zLg;HlBHhkme)fpj;djaNW$?tAb8~a@&az#YOKW{ zXp?Fk70C>4ESPL|qpjM8{?j1VY6W)V@6V|mLg z7F>9woOPz;uo8OW{%i{--76hjgmp56>$dZDF-Yr&h+u>#q1&L2PsN0QZe$wX0K2YZ zPXz5?M})d|ki?o};en=j2D=md&SDQEmU0HZulp|*zPr$)PyNi44$ZykWrQ?+R$Fi6 z1&nX;JzUI*=8a>H!WeQWNh`$bsdQhM?C*B(=*`*%!t-umGna&Zid5koLq6aKxLx}! z2Lg?xCzgMEungINIp{3Nrbwb1|vp=mm+zs`krofRcfiOL!L(Z0BDGt2w6`?^+wDItp zcW9@tb2BQS<5=t-fd8efy`x(PQ{C(DK^;NA?@Pr`Mas27&(5JeXa!rLPLA8oS0L2* z4ah8^#?kiW8&h;DO44;5Ujc&MYF6SCJMyS0KTOw1aby1M+Tf#tSpOi-DRMqTT`?UY zJ{T}f_%IH%_d+f{a*d{KTO&>LE@;QoP-02JA#YDMh0IGjMH!tI%!V zq+FZff@sOdw#77DxBwm9_g3QfH>a`hA^k9W52`5dS6+%_MiOF5WMAVB*}W7Z>GX`H6r>F!`l z)XNU-OE@|O>HR*f@}9DXJDSzK|I0iyj$3^rN2#At|W70}{#ZjUw!C5K(2QLrot z;?@qZVm!gwS~#Qs18*95Xu&TI{J8CpF-M$LZ-C(DF@jzegkRgAAt{gxhmr3D*+eNB z=J$V~J&1DIFfzNqc;yE>)eOQeKy2m=SO0;uIL-$lBvThknrh74f;vJO>t(*)up^}Hy)lv&Dbi_zqKwLCiz6`gk^i36NjnTx+L$?MWyT0*wy4 zezAJ+f%Kc|WnOohsK<`6=rL(fr2~=SUh^_8APRQfRtPdKvpS zE-+OEoqe2c_aXqM+hbnSW4)d5UCmi}d&fT!<>hD@#uhb?(LxEk?PX}4u{L!fTv$YZ zS+9Inb zz~I01ea(L~0DqI3ZpC`R6EnXyE_gzFmk(F&XjpkHhE&atKHps*oDrcr!qCdk( zk9jU{M9BAJp4)x^3?Rn7;T%SP10m{=^8yU{iVArQ3kjB(l`RYSaH0jU8fL!hvqKGX zc7{GlLb)5DQgC$OohmvBA@NpSo3=^@8>A$|A8s*{url7Z_jYbx&M{ey`OU{`9ZHQH zy~w@z*nQ|OF%BtDoq(FgGIk-F(qV4f0Ca<*M&X?3z56B8NK&Tz;xqMiZeLzz$Gi{S zRcAODUN9NPN_NSUSgv2Q7P50&UqRB)%tyl&{g?)C%I{8jADKAr4OgXdz7oOz!LI9i z&@LCvcBhT&cW>~C$4vY$%(ZXjG9h@ahAko^OFb|8HN5NqeP|x;z&N6Kz&04+;d8~q z`FuTW_v8O~9tN+1Nb-@iPgW-5W>L{>P-PzhXG1(A{{cr9zItii{9cR(- zRI^i=L20Xi@WJ(MYF4TS*h&A8>(Sckp>bQ_iM#&dm8#3-LK*HEnbof*JhR; zJ3ZjCimtvHPTP6aH=B1N=A`&Dw83TW7J@{G7IjO4bT z4%fdVvA3Zwv3FA?G~r=nG5(5*gzrDeomE48XVuW&i+;oH_!b10BkyEBw^5r zKErWXz20Hrhr7h%M>jN@bm*i^9HX06dyiWklj+Quvyo`hXd{~Z`g^ek%}IOqS9V)? z*E?iu{z+7|=54TlqqG9wARtvEa-*kwdF4E;0=Y+<&{OI8%StTyxosbzi0%d~|8dYk zNRD4`3gC5YE` zp7hg+VixzDa_QE}JE2Wi7CjFMA>a=7z&ZiKI6padg$Y}&UO)HA-KoqD{I(4(q%&X+B*9&G_ zF!W1p$vh=G4O)(+26*fQCnmH60BzrJ8ueqPktFnERrK2^rOJuL0u!PSi0g%nY(@>y zKcI+a=%#K;uVVcRqrU>ze$iU`T*@tAYDUCeVuivimI7DW{>ID=+>*ZivtfRwKU#ql z$O+cWB=dyjjOYgBkJ{)3lepZp4?nuX(LHlE0GF=t-@s)m+)UP@_h3A-*P8ABU;ZN#W88x!yE-U#+M-o8o>eh?sKod9IjZ2Rbf$YnXuvs z`Cw-d>I~H=b%G-8K*d2Q-Z+`@^+%U!uG@aBQrk^nA2+!ku3WlIpMV(GFrqg|FDR8z zEeYaM(>S8qwQSG}c191LZs2-I}+K{QSC{mF=^`D!4F zXMS@Nkcg(a26d+9;YvQ3EGzRl96lmQC3-npF1vob(3tiC0r03;!hoS(tnikymlD$N zFH}WTbF?ouIlw;5|At;@RY8DZA}Y z<9`t_GlJUhY$}Rx5c~qK8^r!)m2m}D?I8MKXxxux&<_?ItO~Wgi)I*Y!I+}D;087-)IS@6(I5$Hb?X*HFamUMco>?F z-V6UrQP&|R-t+p9y%Q~sE9?mUtrS~D`08T!M-P{p#(O%th>uLij*}i2u-_nYFh*=H z5n(X#xEf`1nuJy`@>KO8`i(=y+KaAYUe;Ja6OiK-hGbw<1-S5 zW-lk0z6ba}b`epNy2ni9!W(8EH-pHBn3F+1{YzeC=h-D6c1(nsh|pi6JostPrWB^f zOy%)A@xZ(0L1e*$vi;wKhq0K69bG3H4F6?hL6Y}jU;HP#B~LGi@Vnmn_3u$0X`lq! zA6@kg_}&@w-3;GYn&Y{Gq|$8bg%o6cxO>bWnW!7s(SIvKBR((bRiXN?jf;=!e1+1VCu_{PvYEN z!=4THsy;>Vyv{FR!0G@H7p!v!s`y^U4?)V7I~&J6U?dNREJQ~AyI+WnUlNYS)|4iq z5n!MFX58fjUdCW*p`wt{|3oasjz4GL%6fn2M>N5CTCl6ttmVwucU4F8b%^NLi2b#Q zHSmkrep2{;5G!Ine4{JS#o6|RbydyfboyP!PLTT$X&IH}4tC#~)`HT+zWteUD&B(K zC9o*m`J#UHmJ3VloCBF35o7IXv@UMgtmaIIRBvD_`{lB4z*Ylfq;T*{dnoD=G9@jYL8H`+rJIkbe}Xzn4hEu z1_u^^??C%d^HDUrd?~(+L{cyq!S3e={iVA&nxjRl60ql`9?)1Nw?58u? zpl-O9NaujGSF0ML%AJNBz%Y_P46+?2+m8y{FlPBd|6Nc2uh{M&+b=yE$98)N^7D5= zdbDfX{sX*8#<6mzVuf|xe>b9;3h#F1jgxu_mgZaC9kbZG{R}$06XCK`k+L?vi-k{NT5P=kU@<>Cdy?LPfkXp=rnX(*PgM_GyQy4@E;FeoBgh1<3g z739ZdQ~sHMS;v0prkfyzP{m%Y2oMd;+HQJ#^gx;IUn$IXegnmo5yM-1Y>4_$w2uQk zo8fx2GE@@{a->ov6I5%g z#UX&L&{f7~RMn9DouA}&?(HhXV&)UDI9adO^MYNunPdZ9qI4n+{l`hp^N_=fh>Wo! zH+^>3F`1ZCq$G&)P`Z8>cw2N7JxxM1{meCv|=PUjowL=gZY zkc?FTs(ULwKSb;J4FdCwxY25&O4o;R@c@;1A2yt#j!WXE4+%39xBa${G55q?&^7oS zmRMmdv0uk0hSvt9IY0U%MBzLW<$2DQr+*cKM*kCK(Cr^e+Y83WvE}b@Z{Wurw|xTs zk87oD)E}TmVx2;(?i9{pr?B0L zHzlRhwqxe}QYv`4{*^E935O3@=TTRG4uy}t2l=DydWL}3)qgF>KFrwI+eNG3tp;)x z;)DJQ@z!HpH0u*9Bau&H(RN7DxTvM&Xv%P(-`ybXhVOeA+pg-8qcZ-k%Ct*;k3dRT*1u-lK!s}m*fNVgrgabK zXsg+LZ#^g2n(ahjHr@^>7y%{+yKd2e&eof!QYAw!MP~S}|27jk z1_@zIj`m@w;k>v+b?~~`_J8y!^-E1Z-S(^T4JmpZ{!47FI}s@QIGABGvrU5EE8^<% ztGFp8H`g(x7ttleMPz$>6r@A8>+93OJ2ky+CO{%a%Qx7l#Z7!w<%^JiVe?feGLj;UL%UKhdbPvf%v0(el z5g$kC?qeUK4nPiQGP06&z9{4PUNjIKNrnl7i{6)37QcqYa~4|`^@O{wTMH3}yT|_& zp=D~O4`D=4Mx-9xXs|PmqaJfU`LCVN<33W}qM;_8;jUJl&iPD-*R&!X97T@4^d8C- zJO7fnUeuGX%TUi=V!umvgdeJr6`O52~{b zQI#;$d=Xi=8y=DbIUf&ozVGY&0%vcUCq{X^3^$%^Xog~K!?_0V_g#=+A?MZ37v)gg z8@Vk*IMTpf6~2})%#j9|*w~FDVp4s0LBl5^`QXSibBRY9SPHM(#=)BV=~_7M>sxEl z9kTG)7DcK$&#(m9XacsM`Y=yNr!B8K%mTupbdbduh+Sf5z0C2GuQFKQ%gzH%MPk@u znzc*K=`i2$wVZ=pv){g>3b45}l2e@6Sm{Z4qV>-Z;IEIah2V5<^1XU-_7sunNV;UdB7{r_i+ z>@Mi=fMJ%0B}6e+voeBfQOZ%VQl9OJ9>KTY?lHaSZ;S#-l36dy_SFvLk}$EiwHwnm zZpKh-bb}4(XDhPwmG~gF1t1{xcbU3Y2iZ%dg41`{4Ku6X%cdS-y`8VZ>_@PehD8K8 z;yOy{M`l48*nxCU{l&wm-8R|zjv8WE)X)s-3gkp*Vuy-5s?qMpNMG^+mpg$*$cuY>L>YP%j6?0o3`@TIr=*aeUXx?qfcID4RDN_beF>AFpt8cpWlaaQCb!R1>{^gnI*Wo`J0^@E7V@Lv_P-DM8PU0qixTzR0}?IN0{gH8|evME3E; z(3kU^d(-`-Va{UYbY(OmW<7DISkyH;EY}XsU%Xa1jVY%gA|%lvgjt&7Bi8Z zZt1GpG5vcU!El#^dL}hFlk_vlmP$FT;#x>{Io3nn*(Ph zdE^7*ey~?q4l{Xw$*)>L{c%OmC9it@(Fncj-}+U6y7-WlE{%}o*S!Yc2= z+VZ+9pdsq{n(>>wS*K6U8X=Ld9e?`iQ>TCJ_;t-o7FIQ)IGX(?@ANaKo_?lx?AI-C zllSzqrkn`#U6nVo zqM>TqSZ7ZCk|kAj5pR8+B2TJ3+Y7Y_GsvVfl|v3p@;~~RgO#kw;$<~3yjfGX*c++$ z8V_$%RYjzxzHTgoO4Q-OBq1(tW&(A zE>gbSTg5zvRjX-$lK&KM)$&MVxvF-g3)Pq0s2w`sp~Bg!R$=pe^Fw)|9|jx%Cohz* z9ie>P+`;e_b@j{YVk%Nu1C^wbcqdP4njFWa%J@t2jbpK>ewo+Hi!rFN_(#E1)YrlA zY&nVm(Ze4eHH+)&8>=8T+&9qN7^y}%msB-1l`pPp^42f%MyhL?yjRrJReG1z)Yh`E zYJ!E+MubptSO&v?V^wXra9vSfS(VKC9M$VhnqfHdPFgIiE!Oh9sJyYJd|_>sm&Rtj z>64l=yvV$~mP)e1+l(Af9_yHsXo)%oi>y_P!MbfW490_L+0*KCWU6GSUHxI zH(r6X(zR$ZyycPj)~~t6K(2dsEy*f~w;6mun(QSZ%0#txE^e%cs_T9UvW4NCz9ubF9P0N|&z5;d1-(bmLmODaBYvx9)^Qp(Ln@(vTAlDS1dB=?Pg) zu`ZCc!uCc@fI;1=N=J1LBl3u(zJkAmPQzgBz414$~f@XOqRU$%DSw(dd z>fEc`%?%6d2^YsD>!61_R4HTnaHtw)WUZj4n4(M4p3n9gbz(3wN1Z zgRCYj&BF&oX^wh8q&!bKXGs<3GH92P`o>w4Vb8d!z83xT(n*!mCRI*8cdQA5>S~%b zsWL`TGoM6S)s@YdAVq4b63HlWLR8&o69Y9>EG=(LB-J<8EN-fTjp$kIJel=aSv0T( zhFoRv6$1!kz37$E!Z4NeHK@rG+CmpOUaDB=qVI-X>z znqZ7|mO)R=ymGd$_-t>IR!ghVTAef>K@>e7NtjKLtXmuV;<3*BurnV`ej{Ez?e=Edh4>0Js!~7Q_&*3-vO_|_K!P?LFmmldIkBv9q^ck9FE2mYXn&N}=)gg+jL>BVm|4i@tTwFSQ^I2zpmJORJA;6OC5Dp-f#SMYZu@E-i0 zh*O9?z+U`*fxlaUonsv56a1|w#yb7|(~$>YFMeOa-`{}u;CI&Pj`J39E`EO+z>RId z>+qX4SKUgNiQh%|OY?va{Qlv5+z$eLFMiL$tT+h#RkyOS?5E-{#Yso#DT4lig{-N9 zzOd+>6yy8-F$PTqI!VIK1ezx3a!acKnkBT+hnX1P1maXO#o@hcrwRHC5V=Tk4q93U zmShwM=Ua3=kP7z%kmB@+RD+HMnk=al0jZQ}=tQM*A!;{Md{+S}o?C&kgvMPkN(K*G z-$$)4KiR7om_cfk52WHQ1X6i$SyzR-!=jBg+~Yu~Qk3!-tT3q-^i(az6Y2!_Ltw2yc@Ju5WGX#AG zbcUeQ&;k_l11VlYKuQm$qfMMD;jRLjBIrgS74Bvr6>jnb<9jBMs=*~dr%8;@W4=cl z+Vemvl|4XbO1J}-=6u7@js{ZUj<>WamUgD4&9k%%Ep4Ht)mmDMrQKj@?P$?w2?xIc z$`-T@h(ke&^EQy;V4p=F0i7+rLG%DK1r-CGBj_9G4Kf660#ed=0{8okA2&OdkILjyiYAH6`h}odmfNVZ=OXffYkkVHv*j}9Q+4RuAo2Ka8FqjwdgY- zRie|sV^YorQn@{4Y42Nf(E3isY}zMz%mc#E2dOOsQv9_6sZ{QX@9k}-In$R&{W~zl<%uqLyA)bq*AU1$`jvzx4sWq-?TInBNs@;xC1C( zVjMTgNb($@0-?PDq{8h5QZgv`fzkF_ph5|^0_Z}O3ObS^L92oMg6;y!5%gyu72^e< zu+S>g4SEYm<@N!P%I(|eq7*I1qPalIcQeo&NhR$RBbQPj72`4>RjW&Z0ut_jfQkiq zF=VK4Q-M@^jX;X4pIhJG04bS1VQIU7RE&2l?L$jDXlaLIFjC>p1X8)pw6q@qDcN5I zR3cpc*@o-2;f5@2F{)mLyADXDcN37x<4K@WNo5bvMS|Y5;XVS&6526n5-RS=Kq_ty zkdownptB|1u^1RtxbFd}aOYauDxixc+|PmX1w9I+_;WK&++%=L+Rt?o}WacNB!DXg>f_ z;c_gk%c9=_sg!qG+J_cRI?vSf1wbmj9|Iu(#?ZBvw#A|^tncZ$MlKfsRY;7>fmGZT zKqm?92B0!Qf3UPiEPCCdqo6ixc1!EC;oh}0caDjBI*^K6V9}Kp-DuIj0jbmoT_VU2Rj(3sJCKe6 zq+&b)q+^kV@rBOIvDbw^-V*EbTR*QzVsdU0_l<9!Qn)bfCrJ zn-BCOL1i}F5}<0K-D+uPgiV_%0#f`fv9xwey9G!|=#LgXXwf4;D&_Yq?E|11$t@+% zNGJlNTId=emD{g?RLb{S^Z<}b?|GmyN#$*eKDOv241y}|6d)x@u2FnPVsMwLLOeR9 zP_IQ>E!ttx;}-3-=vj-9sHCE98)tgzw(*k%jkCTJEII~A`A)R76D;yt-!w~0w`hv> zrH-oHFsNyiZGF$Nv|NkOjC8(1OG9<&xP{i2BcDo{`lAr*NAbMC(%2@IZ?*NUwX_C{ zBGz}grLDB6#rn2cT8Bk9THhW^yVat#*7r_JTW8TPt?znE`<+GiTHpIDZKFjGS>Iku z+iKAc>-)H+?X>7w>$}_1{$|l0>-(0a^;`6w_1$M_|Fme(`hI3psjmV|X3P2-m_ zgy8eV5L&-S-{Hy5IPP&Z_Bgnk6|qNpP6UxFy9_g00!+sLT;G*gLYaa8xyq|3>U$#A zRuf|7A`Dl2W9gu~k#*k~Wj-ie{Z$lxfWRfwvIeYDhPTs%KduBTN>c-FSp{j`Hw*>W z)MCd)ZRH+IVXSNM$F<>DIyaGgOg!b^NI5p1LcQT?aV*yTpm5DNMxj=4< zF%qUSffojizcKkR36qL2m{JUTj?^&^moTWN5uR_wr9Mjhx%zG%MVX#NIWK{dd}lEz zb<`;JK<6D$VgyGhO%>&JoD|5T!$kD8>7bFaXmQoBn~s|jt}!+#+iR93785MB97;M# zHzqSoSwa}xB+QG4^}|?vxS?D`4Dpn4KSC^JqB|49l-J@qW1BtG!3K%SGJGG8#bPOv)43-h zo#Y#?8UN1-VMy7OKv`0LMO9gC13mDVQaq6mhCX`|D8eB&3D8HyB8QFD${kDR-Go^5 zJ(xtnPIdj5+<8-wdPu>&(q;Hw97iEMJ|PS#laeT>B~iHJT0JJOc?pz7^|-g%1aTN< zQAKTilNmyUf_h(4zPx5hVmd_$>Co@;B+3;@lx0bjwj|2UNtAU-l;0##?oXgdd$;Oq z%DyEb40(PwiSkAQCHdC!MX~{farrRi4-g~nj&k-QW&HL&wY;O6sK9+Da~W=TVn+Op!5%T?rX zbJv#S&uwYA3f=57P@8eAQ)UeGvpZ{aSnHOc;u;ne+XrHPbi|24T{B+OB;&L*{L*pk zV7j6yaz)vaChb*LR$kGFo~wRg88=ZnOPlI+$I326WFYssvvH_`f=jkRIK*2V3%Rkf z$zhb*`eo>bq_0tTtFyhQajM&Pse^Fv$n#4@l?eSuFB&#EMHCr(zLuzzg%P`HOK8n?!YMYSfd%A+-FQM@SW{QtxI*!-8Dd#1 z-$m=vEj@?B%Ll$EN7+_&oQ=}aZrjtTb7{Ai^`j8 zBV`NAn`)FiBlVH;+A`==qr-dQ8_FBYmo(|C;lJu$_^j;A=_*X@Uic~5j&q%~q2znv zcVd<|1^woHzS`np*W(@GUie&0BtDzqIKP-C!JJzBt#5s-|_h_{upkgd*QQn zStX!^c_jw`GMg+kLzyL2m#c>X}c!-8nzFpwF0x$Q)F^9}B z{yQg(!&vGpCy!+<;K9rpG=-Cia}5%lrkZe}73?CY=sGQPa4G(tTp!|1Y#qdn1p@CgXaLu)v- z(+^HgMrg_2cL1#6!ttj;K=@n~2S;5(UB{%EvxYQ!kc-2ku!Z%Zy}xn?uSLckzH@Mf zY&4FlzE2~UULzNCQ!vc4;E^ZS(~kq4|G+^bo=}4Uja|*hz_i^0r+Hs!K+NL3Cj^-b{Qyy~|70!ekvg>@nv6B-P-v!BC>(msFZu9G+CY;J~4BHWIdwTpN2 zN-+bFZ3;2j- z%!BXV?J1+Yr+U@hBXUm1h}3QSF_;-itT>=AqTtz{=spCJc)Wcm{pl!#sLnCU`Cv<0 z)Pwtj>4(EWY_a+bk|FuAcFc=_(>tGsJvgOoG`0RBEYhe$vy2jV>~>N7xmyV@Cv0)B z>rmmX-8*RBET$$mkUmF~M^jqPb(+61FiFbcZU{nITL-HnQy-iv!OZb4o+NJG6KuVj z=i`1wuU2z8+m=N=?!y=08r_Of`UWx_VLU0i4uMR0eK?(%hJ&zMagxz(V{a=Ld-a1p zE-l>o4kAn(XpWr=b|21{dl%*0BW|gR;N0Vf;fy!CFW@o8V8x>%U@1Cos}9rFK>%gi zB$VhW)M+VCuzUPuWF}+@5@TBYk#*L~ayW3{_i+Noy`LL{XnV>1U8wU}c4M%{h0}ou z5k@BkLsA$*kjrgQ2OguO1NRE^_;rQ4ZX(=02loBIWuIa4L5>ur=Xmf^ zsPBrv-QCjt-4&N_5V!jAJYzmOO_YKo9h%6A_@8GFd1Wol45rhqJ&4V;> zvRs|alar;an}mK5=k`LKpNTMdS6r@)8c?3&b^1fkQ1^VWsWF5D*yGZmZ||8D-3_Us z&aJrO9^sFR3y+hN9RUW<P6z;Whme+-5kC_9SO)C_MR z_d2Lq4lly25qk7)=}DB`q}zeBc7-S;bIJ}~XD)7T>qX~0B^q}Qn&TzJimnV{QDu_o zz)d~s$b1*Zz)_J?TL;Ix?Q-X+PA@^AxZh+wGSuzGUM*sI)@s8{P2rRl$Ymy*Rki(% zmL+uRQ6A|QX({dpI(SZZ<66{Na(j{+$l(JUTxd~yfMAo8mrX)44b(d+5$Z?uvgBYXW_KS_nPuT}5hRCX%t zc@0dIexzlE$7!DE<4v)x+b0BaK8|b)cDe2bPwQZ2tSA$mE5bRSf{+O6AGh{jJnDVBB%2C^Sf{Q%mL zgu+Oqe^rGV)lk>Cqsm|i2p72nB(zBxr(xvU)4UpHZ5~Q%0XG3&OIpv#jVc)?3VEF$ z4IGVD77#lLG*eQ*$;ZPxhA{p&zvF9>5oac7VHGFb`C$*jKgEfa4-%NeD_UkE<>u&v zvyg{rHKH+3q9}draXx~A42(155lu2+?8$Q^6WHSV3C;(@#0bnd=H={lucZWNA1@f{ zz6=(7KhNv@IIr``0dx;){0_CgkN&(iZFwl?6}RnXgpQ^5CXF=ChZ#`V>k4DC#J;F7 zFXwZ&wT9vP=6Rr|7(!^Y2JE62fj?~-C_5FeLo34-)v25X1Lk$F@ZkRH_Zc#r(I4Ej zXLQiBnQ1Nvcb)Ieqv^XGq}%nwiLIZG#zjl4P23aReuT6_oH~aEPRU1%RANrD1HyyG zxNS7##5*@Z+c$8m6rNrr(VNyZOf|g0rq9-Cu2P_)joAsFsIh7mAAJl{BHe$YqvKrp z52WBiofa~0YVRYc@d-Md=rO7S)fhm?fCEh)pmcIgEuyczwHFrBQQ*wz8AxwLPBIfY z$vsrK<&aby#}g5bS1MNfk$jL9ii-nLc@LgShV_VpkpZgIJRv#)ymAZWxTfC2cTDV}b;`Poydu$@_8EKcj!B zWXpu;FA<9EoHjII*c#oi))Qz4&&(@R95EI7FPgg1#mwuTa(MK9Xz56ioe?7c7?Eia z_B8y8TKl-^+SU`*W;y1-?uJoR--F^6L20|M^5pSVpwYmA88LZ96XZ1?xeS-rGKrP`WGpA?6s(k44Vx!K zPed?Z=Wc)J06IF>ZV=V!ww(jvvQub39Uz(yRWRrDk(GKVKs=DPJhUjm2c3vKM{74~ zUmos|=aZs-obPG(813f1c|M1!A7{FDYp4A&;m;ZtK2N)k&>_pU+a%L$fcC#$yAA(8 z)o#Q8I_)<6|4zFN|MzP*Mt^y>Yj>)4@78YgeDd^bH^1%kIjG%UaXHSBM=Fr3-4nID zMY~VYZX@s<cAN6k%GsAa&BNli4vT-Yb{l#9yLKD- z{877&d^T&hS7-W+cIRsM9_?hzbG-&$o!>9CJ6F5^sNF5vy~#w> z3_NSxnt`Zs>+t3$c77YjO=)#Pj&XbO@g;)e_c-N>gXfbLJAU=?0_Vr^;Y)w1INO_F z@0A1GUO74+GZKKYBq5wJ5+PqWs_?xd&dS5WDxB@F`g-Y@Q}V`!gF5|x=zL9hFjMOt zAuxoHz^4g65}ygVB*nwmFMLLX35!UT_iMx+79VmP7U|2S;>#}ymH7kn0{IR;5r&HA z6#0sSPAIRisNf*IcAgG&fXKTtdI1(s00;jn9J@ zl=(`^G}$;W@`X#mU#PHbp0BXXHyfWiH7*K-oj_qRw=m#mHvjYUKSeGK6qS@>2QCPz zWTE`Iu%%KGaQuPUrSpVAIopnMAqjkh3_B&Eyg)%|iBnSKn-g#@3KY#QC=M8{kNy6S zX|OSpAVY4^9V~};Ogo1Rz1M(4#LLz3*nh;wqk+JY9z)L69R&ON_;}Bl0K+05f^52J z=WmAyVEUn9$=P^sA0nP1FVGz$hY>?Zm&+2!vM!rL!bB+@mh2|<{w|av_r(x;?c2^f3gk{&+s!mhM}ML zRq+m?pLt&qZ=Dt_KWxU!rSuT-zN&nchlqEm`ZMKi((wv)2ATTzQ1OghuF>&wb$IXB zjMw$QtiMUrYkL zWq72=)Nii_%%APugnjW4@eV;Y(VW*05#X!J_xD4@Gkls1*kYFI8ac5_5mn1;azd zcAi!i4&`Io6?6OM%_|DbW5zZ@aiOmWrHLb8$D{Qv3iwOs1Tf!nm5NE3x}EK>;U%R4Wp<`V?>nDUjQ?B34EiV$;7-s5yVXU zhc;WyOK~`kVZ=qQqCz&DvT_uQN8h+)X!^;JLURH|YLZIvl6#@}q4z%wak{LWXcE@1 zxFirL4B&tNJjxycwD!;Sg~PLzG)c@W4VQ#4g*IV)P)(@5isAG73QIyV4`*1YHzfcw zf!Z6Ig364GzcYh>{>$KIZF|FnhLc{pcF}0VO_6)B|(aSAc-9@lIut zD$ai{X5`E=J`iG*`U~b16qh7Z(JP?UCDYlkF{h7Z%(fiwR_(fo9a?c953DKv(46z< z1e3^UPXYfWv0yQlVl;X4k(Zhn%~oEFG_Q1a%z-Y#hyEr;z<8DmO;p>yp1DI4oUu z7X?LrG-#1(5rqR?=gXN8ic5+L^5;p-suGpW381rrw|2^lnQ_EAA9-0+N}ymK6Gn}P zW#H;$Ei|=hr|vg8l-e^6dpWTWF*3BCcdG4M^p74$wK`n-8So z{s@TQ>{Fa8EcykII={Rg=sfX#1SnU~GeAB;{{T8g(D8UHn=R-JpgDqSEV>fNFSHdv z0YTSU^j|=V=iL^K#dL43gqsbdVw6~P6_AqnuYpvp{x{I665}x&?gfkfVbKAgTnU#B zjZ&Ou1F2Hdp4DXW{RxmN<~KuSW-04WK5 z0;Edh!FppzQsFI}3h{fN;;IBFLwq}cP7!o3kkSZ#mpWf)OM!Il16?3Aezj3FFHl%$ zbAePUOM#Sh*8!<;zX1wMxE+>8i&cs?2&D3@!S@A~? zkV>x*Na^I2)|Xb^lzj(UuY6AiQYlwj)MS0TENwDc4>xb8IA>cl2MEXX zK)cAIYkCc#(N7|%9Y<~)|mKEZ+V}+_M>ab|7Me8lvXweRfc3aeM z(V#^YKxXz)M3$Di`HAT(V`s|?Y5}jqCtyNQI{&Wi58_>lxlx@T1 z0u>4^2y~&K`8HgG4YwSqNPJs>cp}gv^Cp#EOcU>gFHduNoQ*)Gg7yIE5&>N#w0%Gq z3z}$a-wQNfXz4(g2+9UhdGN+>mCAe|&ec550-)~*YOvutY`7jE&S^Z(S{ts{`cfx3 z7xOqffqo=t(E2*4eeTKjIH^FF37QC`c*(T7kqvaY_~rtY2`aSVs%^LipatT)9H?B- zI_tY0Xra*V1*#Af)5JZXRSJzdStV!?Nbxek>c&K%MdIrPS}Z6NNQDamDftxwRg3R@ zpc+B^UZZ?FfPO5r9-u1(ZM4307&Iq z4OAzz2B3ODYpw4(pa!9>2f9+wPV2iHs8MKpfOy~v^_FT}b(5g{Ul&9iZ$3Gt3K&3o=5PPYbiBL@F9O`m6MBfRG5aErS;qkL4IPf9%EEE6@`aG5ya_LM4j?; zaJ3{*UWd!Ec`aO6*4PZ&BI|5k^xliVUPxS}ytJxup*cLRD9P3=_&(2GDE1^%YnB+5xil&MJ+9`G@bN+)P3UXeaV@dQe;T?)qMUU>B|77qJXl(V_XW70{q zCqb`{gjl59nnYQbMEQLZMUIa#x?^%rw37kFglPx~pu;SwS~A>9N2IZ`nS+u%IvtpP ziKi?{N(Uuvtgx9e7E)fqwi8RIu}V&W$599$PbdXWb(h6VCK!pmkPwEk-b$b}R>fr{ zWly$U!Md;p3nUEFiS1BeUO1m!UEWkp4?HG!UHzIuOBJy|41<)1SushrEFxjp8Ovi* zj_o@zl#`V5A(Wv^OQIy(oCqg{nV&?7eOosvUzrq!cO|RGgo%CWHk7qVVSbfF`R^pk zrXOudMEPkF<*oz@_`yY4 z6}lrc{QM>%4Eeb)iPD=uc^s}d^Bu}4iJEI=Ip$uoCb3enq^6;4ad`u-4y;XZmoHSN zBI5m7#l}s4Dgkfh;x#?c_fV9BG#78_ff=iH_ zgfc!TU_+CnD3>0=_y^eGwoyr&4rSg)`Id2@D2wnaGlwHmyqgslCttD^=cI3($mtvB zq_3Hq(#v2`hVtbyNmZI-9Q3KHTHMI{v&6?b=woKJs@!^tE9DkLC$%+8YLxwyI49$o znJ#%SSm<$TA%1agw5R%oKZea7ZTp1&2?QnpU8<~Vh*ZaNPNe8Car(w&5;ahVkx8}o z6$}OzqQUpvh@1<;;M{2L32`|!8*G_2k5^9>$; z|C4ZW_WnrcH2S_wqSyoeMzl|prpszVGTeT5!s@kSdD=Ps=|yhIvGiNyp0;`Ew3Y|< zVa0jVik$;fJJ^cy>H+sku%S9 zhjRWFIeWhkWqJ)&xqXq(J*{`?JN*ow+jbyw6lCx2cjt#+L9JZ62?d7LlPw-l_913- zpE*{I1H^e3Em7tcaFKmuaIMKb>*YlOcW-aFdj^-roPlq~&g&w@6du*} z3m;`8@i8$}am)#!3jc{$kDcVj#3myuQoq~`sj1hAuBf>QbTDWFj!BSpKw}U zo$IHZqGw~LVO-r)PZH$6`n`z|DJ>`Tf^9eBp|qX&MMbow?NQ*yw0#QPn&u!Vlt$Id zQ|^XcJUR|52T$>8^agnLd(}a4aH(!A2M@ipOMw(no>O`u;W4?uXcv7;=hEPWo367? zH(95ftkX@_={oDxTghxfQK66K3~-?9ekx9|`_{A`WC3#L7GKx()NN&C!jEIseqZ-e zkH0%t*(}iBjB>AvqC<`lVExDeI`=UnSTJHDYY|4JASy=EMv^4ZFpqU3d1!`UVgac# zdJ95Xc4>J*lA=!sd?c4Z`vG^&J>w7#1_Gw!b=}XF@i3>skp2)9^b9~JwCU|pN-snW zmqHEuPz&3a&Q+{-wF&pZ?vw`TU@8=D2dR&Fg$G*!fXjcM7uKiv!$S$j@Px zol;>ZRFRSvtjI%lN~po^V>W}Wv6?MdJyDem`eUGt0&B1rq@>-Na;;@7SW)VCOz;FIm?A3lqCf{ITv54@LA1OClK{u#V7ygJ?TfUx&%L&_ zx8A3%^{tv0AORHvz5r4YU#c0SHDU|VQu%$?+UJ~^1bTb#AHQclgtO0n-)pVC_S$Rj zwa)hRkPewFQZ{1aajHiKxn6YqjN)vY6sCwU$1VoGbAdH_-|{aVvaL}qz+}5*iE5TB zdx<<>^6ffgwRH)Uo`X^Ckcb7=RWFkJ4c-CG?7^j!@W_Xm_Bu1OlG%2!sb$5?qz|oN zkkavb3M5lxOS(VM+3Wcu&@Kqe#4`jnpI@|AmNW)1EF!oX7HJiTRL8o~FM#TVu;nka zTna60ph_V^@H{H6dNJ{61K+$)Xi|J4lvDeD!PI853j4r;z;BfDYTP;FYMhso&f{fs z0G;$u2+v1MGBcsD+Ua1vPwt59At5xydmfrdUtg4-g%(V-M$dX7bW1_qr)X!l0DUMU z7{&k~6BxW?nvzP~b@VcK#9iW3DHBV}rWWb6g2=~@^r#5GF1b(B9WG(aUdYRipE2uAoY zXpXdzxSg5+vH(>UAO*HHquY*cP5*%z`i`~k(=3Dn-g-(Vu*erjO3G3x-I65XeiD3w zqS`MD^{A^5Z2kWNXHV$&EjgJXmXPkyG znuVAYw7Sl-sE;mb1Lx=J60Bf7RArqXSqosVZQ(yymmpps9FKLZ+S#;!bs~YMi1G>= zM(|nL6f&!Ks$`v_;WA1;qN318muE`4f_e(1o`P8Wnx_)D)G7A|v3szAFmg%@qrcXd z^NP)Q;)+#oK-r2GZ7U}qP-k&OBez#G;S&9bff2M4HKU~__G0=4foNxgKvWRAOCbFe zp)p&)WV^Kd41qsU;jFB+?k>R0>&w6=x?TS3&dz0dZce&5^HA_9Y=_W!BbO%VM+cA_ z#?03l-k$D(HMLo{4U;@gr|`dU_i^4jVtM29@g)@d_KDEs$s<0V&M|mm*g`AkhYfhG z84>1HUfa)trl|p%D&bY**J;U`)bu7r=AlW7Cz=0!Q!^zp-wnP8;7P}MAuFOltwV<( zz-k{bjsQ#t%Q1$1m!WRT1QT{i^&GOr}#j9Z3Sjn5uMpo0u{381Aq8A+E4 zVo;BaZADFHdI1YJjF+?-FY=#WRr3ZvqhpH5dc_efo{jhXjrpt`%>C*RR!?c9GcubKo?vBk;%ctzj^x-0~u#TGj)p2y$C3I<^FVtVF z^WI~<46oXO;pjRy^C@M&kY-UE)HIW|_*$Z5YmiT#HL;!P7Ai{M$a3Sa=-3AdYqf6i z;Q9&Oi3qbDX9iS!YB_#-40&>riLddq})HRrd1CaxOl>W2nL2USEOxk<+nu) z2zpEv(&1oCI45l{?D>rEuZp(uSk?~2wf9?SYGR)q`=IXg)G%m3cg2@whskYnrC*X2 zT~~G-Mh@0NNX#Z$6c>`Ym&O#xlC3fbrLY)LtGtUP(T& z7NmVavt$?k1%G0Ti90&BO0q8WgNt;A9$&%Q(`()K2-&TsUuz*Vnw}p}sF4WDAxA+% zK_|cFb$`YY0Q=<`Bxc8omc`F6RU(c4R{CMEb*=V8bHNuLMG(oa?_8}HHOjdq@>JNZCOSSnBUJnDkbtkn!R;E zOlQvyzyIju#wqbqjbc_RzXd{xcGgWH?$kN-A6#@Uzmm#T!>6d?W$;3hSS|+(R5a3? zFQdrzUdwX_S!NmKwSvH%O1T8sPHq|3o|{9`tds{Dh6eH~HW6AW6>irm4q2l*wPx*# zsVrC9f@Y&ntaf(GPW28dwpC^OJ#qL(TW1K4U`nU*z}H^M?wr5Qw+kD(!*#RCRKTFv zt4(iZ-0jQ%m`th4)V)*g62>#}a22%lwOH4h3#yOovt6fKHf)Q46*N6-Qwehh?B-UWfT=HlQTtP8G^gbmbx;(KO$hyjIduF z7AY{YYHRu}GoWUYiU%aU)AM=`BaAnXV=ibm{Ic9rD~q#M!3ZK0WQtn4|M0e{ZgrJ`lk97waUC2vlg>-sw=sFdE#Ob+T7%mHbWXA} z?kwo((KCta=1;n8H7$lOsIPIP7OU}E-ZZUWH=)mmwSNk4dKh%ibQ}fFg|_=0C8-oT zIWx6w)FF1JsIzBqv%nuj;3B%s#zT4Uwgx$+2xmL!rQpjOTQCA>yuJG^mP&@ubSZtx zevSWf_%Zk>1^$QEwlX%H-p^;BVW*VN)M;pDY=MpF+c;Nt^$n_ZbsrP8FiLS$Y2T3z zdd3bb%!D7y&TeL8n~;lcEv28`_*piP@?FBZSF_Ezyfm3=nVN~TQPpRaZ`tQazD zLxtDM!ewfj(3eE9_L`mgj!=bxRjkd*{21UTU03h0cH@s!)J<-bzK!f+mVZuVfY#Rr zB{Pw&60Q#K617~&9`v1NGMV}6%K49>V;B_c$JNg>@!OW44l9ZbAz_#hc(KXG@Q^fM zhiE4yRpx|@nYKr_vk>H>nQx*cYDxcKTf_T;qvNQ?P?>Qo4guHGF?yy4O?VQ{HiOdU z_*Di&QJo<#8YJPQH7!UItbALr@|}FF>|PCIUBODj+cX-7bf)jZ`MuUpUxn8W@#v@$ zS-y?^Qh%&OK}VUr38=OG_xMPrT%%NF%eGs3?>;65UP-rM2_r`Nfy$D;2&|LtcLYmG zclK~FbGD4NXYhh%+YyBe+cG-#9q%9x);=B4gTu5_4E_ZLEu5M(H0`cCBkA76_X0{@ zqyUgNJyLF7yVf{_f;r0rW0KfCTa5DI2-lq&gjMh|LqBR^NCekb|O`a`>PHz~Rs z=+X3<;~@I-LDG4-5T1 zvi}zai9gTP&G`1Z(-h|d&l&WT37usAqsqy}&oS}fJfH#_Qkn1<`2@^;Le6|mVTxk8 z9D21gAcKjX^mPUC-vcYqf|g2^Yjy^A={^tW;T%KucX`~U($jS*-7<8(G85iwZ(`J= z+PntkazMk@NIbURy8Rm{5uBIu%Kye^R{;g;5Cz#N*@gzZYf2_@Ay^emOPbNby6c4< zDJxnCruV{%Vm{xlJJ;)(hZfT-BOl4qrHrW3cHWlG{Q5n^gKT#a^LuJ^YASL5(FtzJ z`BO7vTQ1L(2@|q1n}CcQ;`H)_A*rMI2lUNm85rjrkhxY_of(f#s-8ToA-`9)$m&@p zBRQw;vvD_L7*vx`Q}}(KKgl82%t)7Xj8CIzx3Y4S+C7}EnX}Z7)4xhOrak8ayxZHH zPr)@!fBJI;`3yn1(0|2tXv}~~7%xjzFSS zO7r7ey04}K0RE)xg{-mzISi-5AHY<)3l14>lAcFB(7RGS?LhlFGtY#!)5Dm9d=JHJ z@3S*Sg#;?Ibp$A-lSWHK6YTS3<>OfFLnfS3gg4o;cca*%*x_t5(<5)@)IILkk+&vi zzvt(ELMKyB)zL|A9H0~gYmUXkw)DqQh@uhPl60M}}A7Ivq*ZEcd5zq9cdWXtxPBHPRsoxC7bRA=oRaP-toqp3m6l5NbAx4?McO`C=0 z*u=Ga>|9S*IMFgXa21eEl{tNaYL%P%8n!GH zp346FQJ?_$0!THrLQ?LJWLsyd>R2aX5kk7lS)UwD%6?zPJMiPRw-sUo_;VC* z)p(G=;Vpa}VFKNAoi~uDVElKC<*nhddg--w$6}!dGe%#BWi`o1DFFRrviAWy9oV2PM`JtHmhn^BVRPT+>14eoLPOMQ)!mEgi@qm6^G^AK$R(? z*J@GaRu75;)&+LpOf)`h(%lVmXjb@(+%uW^e(d8_r;t?@EFCvJPyDRjo>P^t(?rt- zYG&6UB8K*~{xM}?a?BrvQ5ZEZNzME0D9ZtkZIqZebhB2Z;}hx~h|tXzBna=Q=efGYV@oIS47Yl#MUk!+@D82fW}~0v41mw>nYraN*`%&#*PAPLn`~`#5gNN!6*ML6Agoq_VQ{-MSHM9JS>`BE}P4B>&GW;);iN zPo)xBhI>A(>Gp*Cec^J6%vA`^FIjhN6bQHtQCg}=?Y57wI{rd7p=?u|CC=GpXU6s_ zd}ResJ`>U}5bo=~>P6Or2`u%`=+a*FY@&j?(hDwR<3@G7u<<-~Zs3cM~?yo$qI z!K=>IWa|5hSNGopAUX7+pDh^zenq3G_&rv4W+MEOk6GaaGmDR`C_L zcr3eSFIo54H{1zV0rGrAW}-CyC(dne2Rr zMRwN2_NAL^n%<~8-T$sq9@EPwv>XHUh$}uTeog$^`0T8ZoX1}VB>D8$ACuWSn2i4^ z5Pb^!>i1V_g-UUy@F^TWoUyPVRQ!{o@>AxVykux?Vat%N$iV_6*YHqsIW%-8?G+P$ z3h_gJQcxbALmNW}g@*DT`DR}KPKtz1n&y?0@E5)C(7~ah69$(@<_ua=aFG0;l|Bun zPlfd9jN|)s&Z(huHVqC9r`=D`?y0m>*cK@tG^b!mxR&x~7lqE=G$eG^hQahVLVpK^ zPTK9YRX8|QI3X`@@z7B5gn^?5sQl)eM`#I8Q7%OIJILQB0645WRLXN2f7}KQ&EdI= z`Cm-{k~6eD~sS}p2-p1)hArb(=FqR)P$RPraq6A8{s89cSb{@ z68hN1^MUj6C`R}}o?p64H zZ?&6zuM_$l@sW@P{24N#&l38AhAIe|eDXzclg}RHr_Lc{QhyV~y+sIMQA=UO_oyYd zekN{G5SksNLTX;>JwfP!Ahes1Y2$rDrU&(d{m?gu_^C}n=yyS=z0gm6IS9p0^W!E5 zp(}#WGD4u2-rr5=0uB8vi2E%eIns}WS_zq69SuSe?CVY3sX-_~$kZZVwt#3TTOWk} zH3-RfEKKS{K}hWNP25XCs5c0um?5UMok8d|LZh{f_XrtS4P)k*xOs$3i6ueYDncgT zMnYq>?2m$c+k<=;Fz-w)Um|2`NfI(8>VnkzAk`scMt*k?wi2@swjlKngvzz|e+ojU!V^r*=LMm$gv@xy2XToYR86QtYiSJPVp56cJ~IMH{nBO226k(eNo%EmXN`36CsoOV?w6vVz`x=jdg^~ zY&<~7q^^K}nOaW%w4b_ykV(A|j%HGCCuCsy1R<09X-+XrYvn=cT0$n@*Ut5QwmnA3 zjQn*%2A7{I_2a%u$izKH$kexwkZI#fJj~dp1fe?!nbgO5n0a)RkeP31e#Y;?m7g_h zKqS;h$kcLLnO`U9_Ls!oRp^t)mCovq;gW@3c$slwgA^tH#zZ}F} z8iXbgGPH3UA^wr?dqLcXgbe&%25BaAn9!Fs-^HNMv|AN~HWT`arv5gFd!CRP?~x!h zo57m#UOCdIh-(OufgW59@J!7Yf(%11UnXQyw*zETpG!VN5g!w0LR1ifEJMa0jtLd= z4k-{<6r{?UVp5q}UMghj#X(kHs5D3g;9i{c+>{l3o02$Mx*~{M8HDPC)W#rgLlC+>NNo<{ z?g~Pig47=bahrqCPlMF^gSZER(1SthZ-TgogV5taYD*BeB?xr}sZR%ST|wyiAa!pL z_lF>KFi3qPi0ckQ?*yqQ^c`fZLQ`Z4ewG&shp?Rw2hsfkBX|>hXdX=wo^!BYjLf1^ z%IES-BxX*(m@A19`7)Ph0WmGClDU{$h!I&c7jp+OB5~$o?vofeeJ8O*pvTFu3r zL5#?(CMMsamIVCgh%761w7K8$et~jnekk9Pb`X&#^b3?{MH|sPGo;CWzkCbY!K4fd z_wxVv{(17OXNPDWp^4*vzCWLnNIH>Upv5lc_ilgelg4bWogh-C?qwf<}X?-`OMF6 z>v(TMP5tVT+~4UJvp~Ewc(s_C<>kly@;t~}p0^4m?|HM0)qDDeey`rk^*A~TQsiY~ zdTHIFWz*&_npZP_?y~gK`FSx{q_7@e7Q(T{4a@lA*Y&gc&zO{l=B85V>(h(*c2-{G z^^0z}e(s9dbvJsMmfo1YVP35`j=;x-)HOT31XJ$$sT&ukufG8=712F2BOJ$1nZI7Wo&If5lksi$#8+Qo~0vIFW{qx5!^I3J;jjM2iR&{HF0&`v1Tp ze=L)CiwHM)zsk_@7Wtd#TOR`1pG6eoCwyP?O+;qwUy@P_oL;!avb)EM9U%?dPD$hJLQ_^+q#6p{6 zP1SRWX8#JVzLvW2Vvbf~@she?QcC|R?`EnThnRzpnS=YNh4Ydw=j+9`TV060(&ko~ zHmCKPqPcS((bSs$CER!k-Q!Za6ii$)skm-+b*iOG)Ulb8R(Hy9+xe8!nQ*3-9NBBx zt+7eNR}FF|4R7cRry~uMMuZd26uukZvgYibn5U_W?X!kW?yIsAopPfyF1J?C`M|ny zLZ9uPyuiA#Q?GKkm1PU8ZJps*ylmw&35TqDd!2FXxVRv};DUj*IFpL)O>}5012tew zxRdDkBw*H>oq}ejd4T4b1B9@CoH?yZn!zhm5$lr%QA_t@{Qre&>c$U_#?7-C@ABZ$T`(+O*FQ5^?7#6)I_h2 zyo9Ry&gQsVQtydjPzZNA?y}<}_b*3Ni2(!KCXR5hx z=#0>6&jyYPOJx$6Yg|=MpTd+Qmpg7HR?g$b8OV_2*DJA=<~ zJFW{S?if}hLS1r<^aH5^L#Cu+C|eDM`Zpew7385mdz2d=a?=o63%G<}A^Wf-`1lmO z`NKILhF_(D{|yX%_+?*0V{YJgWqi7SI+t)CD65wdIL~4)qP=?5=Do_mt|+JD9*nFWV=&fVu!Sp&_>6^LaGXNOe~d$b6puGTT%YTRW-f4 z`qRFtwOA5wAU)ye?ay<#0THmr+1JPkfp_EFhKou?J^z+>knQtNm?wO#SPoTBHQnx* zsJY#VoC>WTN8j>JTzMc3-Aw91@#RvgR$@wF{-iYfZ=9)9jA8 zLe6&MrPNw?I<@Del}cYoV?f8HMJ3JT?GVA*JJpkQhDv&V$uqz{Jd-=QsY3!g=ZM|< z<{%EH%lnd<1%2+dtFKFy;bKr-N3AHWS?B-&y-Xo!>_^_ zw@RP2=}gtJj)}vib!TD;fS6#r6ALp}eq4nSYQ`?)7;aY&7hpX8m2f8x=ZZD33Awd? zvx!*C>Ol?(PG>T;J(f0{svxJz}JU(f<6)AOAlxF4fzgeHFD&Eiq^Z51hXSJ*sa>=X` z5Xjt@I~K3$qH`q_Yi)c-!fsVz#eQ!4cX|BGb`ecl3I~0oR4&rL@7!lo3)a&3B)VgU zRG4??VZB6X<(c0}P)EC$yZ1hSkSk4g5UW($8u(p6B}spsNO5k~aX!II}w)0P@Iz_6sx9ej+&6g6uuRw=Xp;wN?|+3xMaWK#<7 zJ4%?=9qR>`@~haNttKK*bYX@ViwT499w249BtWRxU9sN>je(ZTaRA26e}$(4uOHB? zCNUBD$DqoVLdk+}Z>{p?g6+oqvR@Zl1c9&66}^bc0JJSXhhA0r(BL9KgnNb3c#YE8 z6|fyH<3Nc4KBl;l9d2!D(yffbz0bpTp*m9;smUao3(dSt$vlWOMDAopx1@W`0sWMc zHQSQz714Nyh>=)BDJ`%JSR3EvUC9z?akCe`u$J~nid*-!CcIzaTad-WiXz ztlB%#9d&Ec!4pVpgxj*htvu=zA3ax;8WbgvAI*>_mdH&g<#(DnJq36 zxHf!?F>PP{rG{)c>HbqG1_qI2X8HzyTw?7KVaBh=*h0XSaKcqiQA2fXHx@4qTMH90 zM){z~lStzpQ6NqmrildtfXw!R+=|0$+~dnZzO+%wn(4g2ys;W@XE1De1UhRaIJ2Z9 zt_y~k5r3Z;W;XoG&WztGe7ENdtXr-<-09T4NyA44Ya+3(y3bxRX*jFIB$ki&3LARD zbtAd73PK}r@rEtTnfJKchZ!{)(|f9#-oR*!dp+slaQ+h7N;n7e z))!qb-|wzRFzcTnmUHCp!TE(Ze+Tl{Br;VCLrAzkDC?A=IM2kL=My4BJxh<~B;2_r z@rI+UO$Cq&9a;V5D(j)wb&*Oq^RW7IK16C1i~Gf8z%1K+FCf4U?sQqX(j}{2GW^|N zHu_I+V`>7klb=d%goaYPhK0I9pc+TqFtq_9hk{9mXfv(u^~=q?w5}!}e|f z1=G%7!4k3o5S#JwT>5LPyCC80;a*^gGi}T8~-5Tnzn@R4;QCi<5?ocY1KL!9aj~X zbYpw0%smuiHjbtGg!5Hr<+?~!<9@4ASS$SzoK8BzwYnJZ&{K9g&w!qEbmtP|?5)cD zb65>=gt#EQU~7?L3`uIC3yoDyG78f41Qze^XZ(AF;fXHO(FV(GY z7F0t5r7GUMnq*TP<=T09_Yde^+}R4R*l>wt6*d#zCRwAb-dqfiOiq;)#@=4js@2AE z^JSRt1UFL8+BmX{qIZ0rqOoVKJ4Az`Whc1P3y%ssosvyv8>uD%t9r99kVWBvbnGtf zWza}_=Ll!oMT(u78j0)N>p4@`gE%}}m~FiR%@QkGt7uo*48klYfDzWnSF~FZynxE zmpr*#**-cke5$2Rau=_UV7Mri{Yg82W5k$qAxj=ce}iF-G1YY1j=W^qU9Ot=hP%X8 z1FLB+#co@Ert6j=6R}#-S^oxe-KnyYhy_O?_U5XG65&6_{JtnXI&niW4iNyZ2>S5f)a35Io7x^25$`DPyVW-}8OMc~%S(>*yJ>x^4JXc57KMX)6iZb`;=q~D;?QgiXSQal%VZ)QBYl~29sM((^IaVHxq zlQY-9t3;nF+gkd@-eeeBPTT$0LXc@a6e(ypSV9L+XVJgRR4jh8>SgFG5bw%VqE2=^SL{rQwf z|01x)ofi_$R_WXgN!i1v+8`XAWE0($rAOnJjIUoc-A>7Vyui>oDhxYSghY+v*iCez zG~2^ve1s)k2nE`Wf_Y-0fp4c#X1UoFGg}Sdu6dT1{RNA-> z@bx$-tuazG`)Pq|q#&`Oa)fq6^b{2>J#XcaTQiN1743DL{e0awgrsUjg>Aa+PH*kA z9-20yad&!*2+txpzwLCXzT^0ItcPkxkZ9;g7gpXXcK6_#M(9i?Qn23uSI;7}fheo- zXOM^Oav{9acI!P#Duj~iSgX^Q+wNsiclw5-Ze#s!dm6HBX{SK~UH+>&uBe~5k48;VyZ)ix$oM`S{5Y;?`;+&FboDgSp` zP=YSUYyxihiq6^;-BMgGjI#L1kxOb5$M@P;90@QrM5s&XTZu$}b3#~c0@UR`UuO)U&8VXPNX7_sXMRA$Bhpfh#j7>yFo161p-0NRmb$KQ^{-_Q_ z^j$rpfV1spq@6)cV!({Y+rf0JAJLp;kV+M#NcE0CNyXaA8)_n zfTSjqEc3Pgw=a+e-J#w_9dE6#YV_q2E&Tg5C?g)LYdmT-jwMbK zH%^gyQ!NvTjtDJY%6r}d(9dsosf~u$Z4%0=NgY(ut8$)6I&V%m94Rfa8sCEi==-v& z#_d*<+)o$s!E*Kg2yIMo7ndKMaLK66t1e2W{>X%Xx4QKWZ^CB{<+0-^?Y<54jK@j^ z!h7YICy`BvjVfRBeC*pL^w5(zR8NfSg+R|D+VtI0k4$#wBX-=;xI09-Xq8*GjzvJp zs{5Z0t8{U#y$Syj>)Zk+`m`f^oq{UNjH*Q;kf_ciMo08Grbm=jjhpB_;yftAcKGR) zW$e)prQbC0S9%v|X+VGcdE7sVeX-eq3P6Od?HANM%!tj-bYFLpohb>8Z6tW0Hv1h@ zFd05rUudi(v-gpu*(qlSdo$&IeNTT+>%t#wDB?x%m2^1lxKogq48LYQRB%5S`#t@D zF)zBm&}x!>fI-+OA7N30Fx(;h(MJ{=M0kW^syTqhs$dH~E$CWtx|v0rJ-Gp| z1C^m8drg&20qlQ0;tc}jUYz)?J}@OS{c{mh;{Mqw zbM>*2ZQ%a2aCLYm&n7lrk-KG+$khEUnxrgRf&R1Uxc&MH*^|vd)ge`jbA(==?1O$&c2FbEtK6`-?4Lj)EWXBhMpmhxkYIN7 zUC4fBC%Urm=q2Nut&DtEDw%rAb`DfBzff8v@Y3Ez0mYt>!lcp~+&8Ghiv(wXk|wwm zSA4QL7n9|3vGPXy1??ot#-W;FAJm;-l<_c*R3}AaN$6(XVZ|9Me&tS%H-vF5r1EKIV%U!T6^}o{Ae{Et%WDS5V+U5f#X9su zj@ecph!1Kk(?u)Q3xmV$+UPG*#edYVEc>UB)ifSF${55#4&&P~V?VIgRT3xjrz87$ zAy;h&w0|*s9SI&jT?0o&&7T4Cjrt_4l!?(IP-LPAQf;>)u_0N;-u+oNbeV4`nLj8A?4-x>3_$^9 zO}p0&W#>|{A2Kd;*XikyA~W9l?z!F(5sFk?8^3orP?VzBD&vd@{_~8~!hC77;qEu{x%aOqcRFPYjg!HGDzJgffT3}Xv3URXk<=s5=7`4IjL z%Ryj#n6~s*i_Qbt-;e8H=6Um?VtdbH=C$WNAHDu3Os2@riiy)hj zgRm90@G@DYTDW8sge5%=xfQMhU!+*Hdj?PrZANtKmLjoekvSo z#iaP1mA6lFBme1qM3=j7!7Ln#`y(CxPn>ZGvx*PWuO6W72vlr0og(rM>h3qjOczm7zJ8~fX;mlJwW8VCycdWwAg;^?GXQe5LsW+e$%@eP>j z)Rwp_d;21@k{}{4rFEo)q25Y@voq*U))7SGQ8Wnizcu1?Ao8cXGb@f&RqT&_9JlUn zk004DbRrkK^=N40WmIG~7&>99GmFH{X$#jTn(+$8VI1;93(%|^?yd?sABh@s5BtOv zo{vXIo`c)&t9ZBR@QNw%*p}6kv?R_D8U?-~a7Nim>%NZIpR6CYN%txnae4StY23xh zl(Xgd3U{PC(K}v_?pZ3U&WycNZfK0i-bW!1Un5d-df5C+^k_Wz)l<*~S%=^Bl)y<{GI=$H(O`Grn9~)@_>^uhn!f z{{uAw%7It8AIA#-pq-ZklT&0`M1e zEdlVo`NdCX|CV2F%ik;aQhIOvF>nog-}K{uMGB)k+Q=_QFFzm=Ry|=jdqL-J$=UGNV-NE@mar0gvkipwybzW3TBr5M zKFjWOx?(%6CgI-($k{i^1S+yuNpUwG@$wmQ_BqCx(=V|Plezd+_vRAe{f%D%&XD!S zOL^+?ro*uiw?ML}P`bC$1QK#2c4U>DO85#e=8Nd<{CQU;`oZF)I|K22P-aP3n-y)1 zTk=?(bKuoml8EiPaW+>)m>-cdWz!mIfCXI@kL_N$Ku$!%ebt$whMu!oUk25i9kooA z_FK+MpCMau$#|*DQno8Ijg>6DuPU}<v|n^_C+v&t$RO9 z^uYz8!CwrQ_lpxt?h{$N7o8L;nowAN(wren2G>Sf3c9$%e4_Fv4+)+8#UbT`=R}qa zsx4>$Ir{AQk2`M|pVUO8q!Skk_EyahVM6ABL-8XAUm`*Hn{{!e54 z`BwC1Omno~1IH_M$)EHy-}-&v`-xyB{X2n$eE77&&}m;hxqRrH!X+ow4rz&W6&%#D zoG9-Zr{IlXNT~R=6O2>S@F4J$zn3;RRNQugv=jApz<3yP=u-KQUnPHX53Y#6&HUX6 zKuUNn;rR>pnx%vvJ3yo!$JZGJP za)J0cJU@AAC?vNeOL-pQ?*YQ0)3Dwu4uu{kD9;c0dtTy);W+^NED@aKS;}88VR_z5 zC;v=%GtWQrS44k%d9FLdSoAmZJQFLeQsPT_?&eRv+;))XbZoW86Q0BKY5pn+ck%rG za5yjF%{*6Qy(M-J^*mq0ZfhRlUY=K;9SX^!Gl%EUbFnEPT+H*|O7TuW_(7iAKFe4L zck$f&IsOPA{X^qKGyo`1t)t5{h51=#Z zZkoU7TMO%sD;|=DQ*&=nE0pC}wMY-@<}bxg#%qQTvC`z+I<3yMNwZo`3}7fbPt9SL z<@%0M%!OhVQ>tHkE!9s|mSXBshcS%wIrl5B{72poa(PV%bbB_o05NnCe-ZT}QK6v* z{uhdkgk&>q;{J({iQ7p?OgAE-&jb03HFPZ@ldqf5B^vjcLB?7w5~?I*N?a9$?jj^J zDH3{!kSW_v$dug|Wy6y~fc@vR`#5QM%Hgid2VPtck#Wj34fE+S-l zx;hA*CZfIOs~}`j6NJoow-frZrv8c0L=F9okSXz5h#{eIO@vIGxV191d=k!K%6^uR zDLa*rDRBoOlkb5bv>1j~rS;uP$fSNq$ZO5=<1QdHN%MV!&}AC>H$t|CJ|<*J?13kl zP~sClGl|K9$@?$WY1e&N19H5;{z%M)TcJ z>bG$(ArtrDXF{Q=nwl*0d;g!G^Xq$k2~82dR65 zxIYA;gF)&WL0oqbdM8Nj4dVVBg!+Qiqd{CK?Bg;*$l$jyh?7;^V7fR+75_XYZg>zH z5v0ocZc@vFkgW5jX4z$%)bb!SHb@;8#ECRu@`)^9$|iz1I|wC%)Y>3Uqy$rTMvyuy zh?^6H<^`z>gSf>(Xi1P-7sRayLMwyR`XH_`2yF;bZx7;{gV0?;Do6-j&R;lmLK}Xu zBTY%3-0yrZ7!F}|Og$(133spLPxEL7;d-0<#e9P|8DTEZLSjU&%*8AxrXD_(i@B8; zkuh^IGOI+=%*BXhd;LlIG5?nskvemET8NP!k)c6h`9C+50!iSvpFfdLbESl$MM}-Z z9FvU5s=1g`sYoQ&T+BIA^|1Vya$-b!&E=6Du*k5v7@;eXWOFgs5F_$zF6Me-M5@ij zd|T>4p3TMFNsLIixtJdkBXVvo=6+&C+Rep0M2yJ1xtJ})h~%4#=^{qt-(1YA#E2A} zi|HjsWZ_)QUx|6JG(V;YfQww5%X2O zj9xl_!IHYAqf<9tzhv&x`RZXH1#0n_0Pp@5z7dvyvt{DcAb8L12~B$Loh@c4S6bc# z2U0RWY)Z|Wzj(fBMbgMJ8#sS+KCT-;$l^uI>Y%ynv}|hO+(kF|ZW2z^;k?4eb;I>@ zmxNM_=dqpX5YAAc2K9F^0F%@_&M@|*Uw#g-TZlef;e%2ZnYcBW-mxDHbcnY zS!<%ymsc{4r;DZ6Y082{D`uNluh#y%>mZLp-fL&sT%2w!Sd{BV0DwGq9w$PGass6# zLFR;;^Mb-3G!_yfpE0G5`8S zsT)DvviWnDrWQ`Z4T*Hypc7XZix%8`B|bKibLY*QzciFj-}tv!0!`nzc=>#Fa$$T| zlnEGuiXANOfBKDe`@m zF`d?TTaN5)*H-c`r;DC_!2P47`^bY-CMUHbOk$2z?Ox8Q_wE{JtDM+wAd(w&N8Ryv z#`>&GM)IV(Ms|q(S$L0~8F4o;A-NiA?j=-n-8cR)NTRB&ofi9)CZAvxf+e%4)w9m^VEll>XzP; zhc6<{>T29y_j%6cFsmH1>y}8}r*68Clx@C6gIE;!=UI}A@67MwddYO|NnXkK<*#bX z%c$*VCVcEX$GPoI6Kb0HmIzw}!0%Su368%@lUAaWvmoQnAu|{`n|o7(OXXpVSWac? zg_2fPr*=_K+US9I&S>oU8!j%yH%i?n{M)0s{@L!o*tWY-Xh@5538AQC5W;h)XSba1 zDx~FrnHVu5ILlqvg)G<5SLh7l3R=&v{PWRE3gvZka9-wqPu)0U6uF0sxMQ)}9IjTG zsT~z9VoK_j_JzQI-KoAZl!3uU$mMV7Wx65!CaF}TS^GQ5nMB8UMD%qnKMnnXoz*Xn)+KOi_VTOZm#8gku-iKcW?+i-Tso^D-*z?&V0U zC;uK}w0)pG8Fl|m>c)wS^Bh+du!E?=K?BFQvK7OY1*Z?Z2)n|h8ME;p_W^ypS@7|Z z=X*wTzUfwBtWB1e1#*7=E_orp?LH!mnf%;K28JstYf@+F?G!mBmb)@s;~XdE;KM0f z&bMLC5GQkDCIZ1E%8Hw(q^93aOE6DSRTTI1=Yt%K_%n}|Ro=1J!^>2deT{!BW8QG&5zNh!0Vux10GxAW+qq+GP z#pH>p$6c(Z2SN7oA>!A&=#^?rp9Kp^lK%=3p4P%~d2 zvKoIUgK?+ez9P>dN2v}`s5L)UW|HK^okd>Ws28h#Is%s-@Y?Qx;Hp>}49F~77M zzFleFD|HU?Zku=8yt^9>apu0suudZ67Z4?1)b-|@4@Li7{WIAOk7yC@LGrQap#bF3 z85Ga?aj~5SZNxErmFa{NCv*R-|9UjecK^%d#4Pwl?g`;m#n{!lznAYTCEOoA&Lf#w zJ>30a3n8a3k-0IP7}+Z~eK6B46|yVkE|k@{k1kZnb-WDz@5R)0R@taLzYtgiC1uWL z^WwyJ3|EV~`^UQdMDeVbrw5%j$hV^T`z3 zz1c>b!1&F1QLec@NI$*a)Nu9GL@-r)#a;@dldYsf>3pODKB?vxYd#|jUAcb!1Cr@) z%I(pkTgz?y6|kl!WeKX-UsZ9qXEF288-Qs={5pI{Q^wg6A1?SMQnM|FSKRd5#qg^!jV$e{}rrdflKtAIRrb1D^JtgpQ+LS8f*85-J zz}Ch^pr6Z><8hjCEUwo`d^zm9wEzT@JQ#0DLDKzaE@sUagL-S@0Rc2vF3-y!cW3=p z{FMylQ*v@0an+~dd{{Lzcp-UdoV#H8_X4X5u|ajsJ$IRE|4v`H%O)*itCa9$zF2Ra zS4-asYN_FCQ_{oKQ`O>+AaUDKx9GN5rHw$`(VQ(fv>Vdi`xq_JK zbh{)DqE6N8-5FOk}HY~Q5sa@mkn7q3BRl!GOwTkKTP1)y`$|sDZIL5$y z^^UTL9^M@+VxR7LBR605{qEd*zxliNoecn5uf)n%q~_>Xq?Xw3Oc*0Kqo1!5E4*#2 zbIhTpY0P9@?0Cxeng**R<(`yGeN68f%=l|-0h=uw!|{D|@>%&l6Wfe2oy*Ra$fA#k z+$E8KXiS&Y@LMoR7e7>2PD=2KPjbQWW;N_Zpdn+2wO&r(FyhQ>sgjn){m)yHs{}zy zd5sinBcyDjp+0N9$a%sSn=Yn+@b_Bb?{l1P{j}2(zO5)QJC44MFDg=uS1Kk>2gd<{mgAfN-wiz)`;QBK8sG`hj=l@7~fDdox{xNxsM`y8fy84%b4p7U6r8 z_P+{GEgGE_Yanmk8PFfDg=!X4%?WyQ|9{sTOq3selYZ5cG7_N&AE4QMHf64 ztk(REzakZ%Ew~Wkf@Ai_nirhHXAGkz7hwM}iAo6BHRRB0D&F<8WUnKx-+b;z&kgU) zu-!$hNxythIJY>=++(LQ!V|=ko;%_;+{cK`$SL49{&*qSGHVjkkY%Wrzrv~R_|NzY zgxHzaz|$JHk+Vu~p!W&f`3poE`8eL)Eiyq`h*j~kzaU`NJFVtDa>U(}YBE;~M@_Q* zTVgKJ)}+K3)Y|a2WWYA%j#mlT?htw%h0F`_k#QT|=eiQyU8dA|y2u*3FxTr>d@B)q zYUMXYQsa{Bs%#tyfX_vtWtdf#T(voG{4H#s$ zEJug4#IeNS2lKLsKNW9zP+(;Lq`0kT3?9_V^Ku(f{R>%OUP+O9k>RpbIfqPImBLrn zf6ZzDoV{1;?5`hM`_3ks5dKvu{7b%n$9IJFD|k!z|E{unl0`zPHsV+PlN*Qtb=dJg zZ#70E-WCE6YK?Euy8k8I!^YzVtH?&V=$zOvuPj>a{Gn(30=^t9{vp&CV7F{}&d@#v zu^kc9XXj6e%=O%?|CL-;wQd*1q2x(s#{O1&fVnEVsdqJu-#qAULPz3@^heNMTbln8 z4PL|^L~@8kQwKuS>7rQxtKE_^BWklGiZO~k=o^Ldy;R8`^v;cR>-Gav(2+Pl zfPY>%>WA~8zuZ9I7e7cMDBbN;fal&@JcQMqvY<-zp6ibaJ&ChSgEui}?1#7Hpl=o? zJ*P+hsFH3Gn~=-KxznSOggYvl5XU?6rL>w9I?%c@Ok~Sc=0mC%T?asCNvUz(V)2I1 zlg>`jRW!<2QCy1Goeu1M-?18>)X`rSotzpq&USGiSr|}Q9qx#bQ3bos+tsOU31`$g z`cSS5?h1cY7!i;DShvyEy)9N%tFS@gVJxK|TkCqX`qQNnxY&f@4Uzk)5&R9Zhl@cP zDvMrgoj5Q8bYpf}x6URgPCB%N-&1l&8zMgsQ$jl3ByNOr{Hz+TjIX9r`G#zHmD5}0 z;QTCy{LCO_8${IIRD{20G0pD6 zLx9Nr((^sm`ZKiW!B9){hFVI;v&Ezz^&muw0a$N%tXL1XC{|%Zc@rv(?QGGVQp-Y_|!BuwAO~-5N>Rd*=pU5=@({u zJ*Ye@DR)*pb2(<&(=b;nIX`x?b-P2>$*Jj&$~Vf{mabS??M}6g@*q`$W_@a@J3=1i z2zL?W@rEq}w0?uh=i7=;}FGi`AX3e37qLt~PyU$a`(Kp;=@#;z0ih zHVtDwSl%Y)lBM#g@qIOz2s`_9ta9cebyBrAWUYJ6Pj&zOm@xbB>Sd}kurrr#lD-r* z!^C30mZa4)ZH{$L6S>&vqG-%34wTV$kIL~RF{@XS~oQM`hfUFQ}oY>7H(x`Nd zr=++hdkZ`MiekM6&*CRQ=v(D!oApfe6T96=^PtF``A2L<--~Nl@p`<|Crk0uS9iXd zze7+ZU~x?qcIgD9%ZY=E)`qeC_JnkDreE^SosQG@&(QYe$VHau{}c|COhMz%PIilM zgZo!n&3ru~^GHPSq&vHiy(JD~&5|XozD1(z)4Jb09QDJ2|wdA4!=rDtXGHDr-i);HMP?SzZA7jklnB9OaC6Kfd`OM zi1FcE>-Ir95Ch@tV=P|P8P%<7%{>q1i6_k-zcXx0Rqi5?urdEIN3d6*0rN@OoXrcp z`vUSLQK_vL^^&i8Lr)UfEBZG-!9;i*(yV7x=~H#j=DZFC{-*v%dq+`)(a6oU;yFNe z7UCXOl*Oz`c+@bRRT2AH9XmKUll&*4=u`C=s~IXK8*)?stH;=hh~tMUQT2UChJ*(3 zY|$q2ZlO{^VR-fH6nffP|GLhy_gG-Z9JJPFq@-0`BT~;UYyBThBIg4r(bnHVBI~f6 z*0aO7jklckNA`*`V>Lz=YwagFw^{2pXt^;LEk79mUS!}#BVr-T`238$*7`jRfCTL} z`Jy|~%{@yUt=6q_lUw7SZ?p=t&O)~f>#G@SC4`cu0FMFh?` zNI=w=Eue8mD^W8!oV~VJqIzX3@S?T8O-I!aiv6q3D?gy`u~{&YyaEmp%l z%rm3D(++B#EQIogm>b9&gCy@t2r^q=&S5^V5Vq`vIG>i`FgujhWB9`$@6 zrx!n7uOtdaD!RE=;9(r#@Kqk+Xq@17&<%5>DI6?I(>~xeh^vrjhfq!ngX~?-WvHHO z{q+pH@Nvlu4lD6PMBxtP2%&AZ2dc8^p2&t1_VTneOD+h5{fExHLsi@#pw`*%Q#}-O zExi~sSSa_ei1y?MtN?#<_~ z`TM7}@7zz-dizN9bLFa^t5p3QyYG?HRaZAlcHbj^T2@b10uPvbUaH3ZX<4y1BfehC zD2qRtbRRDpPL#0WQb{7R2tNRv{i4!)QE`Cp9K(!-q_Tj-oT@4Xs2284*q#)`W!<3a z)L~fgm*pq}q&9hn7=qxULlk8hxhaYMDMk39YHTR(-ncb zR@S2d#n@g~R!TAa=;VqmoeMd9jXn&El*wf?KD~2|?o3NXF~L`edQ~?8q|i+Osi;CK zs*sBMkcxVcTDwJnJV0T=XlCqy(d3Qb_Wbc!4Yx3lMFX*46jOh&*2}(@VI2|5v>Ikf zD#f>O|D*$2>y#H^db8Rfz**br`?XIK#}cr9ra{DvE@y8;XMt3=%eriD_LEXYv)_;B zd`Mai&nSP$^~`Dz5kmU%uC(&J)bK}Z-B0Kc4bJSM`5n^eK1tm{h0jXse-O5~&sr}= z6^!gz>Dvwy_g%ctA2vq?&6I&N>zFo3D>^1>g&8m?Z#w3WiCS4iUr=a7JDj~bX8grU z)txe~xKtDPhXp=zJtx;enTfn=4}s59*7|Dcp>~~_FMuRcyBOY|-KHE1`AYd>us0QA zJ(!(kc%a_cqn*sdA_GxTYrJ7+0TFrk_Q>C&Nz%IDsjXdlJY6EMY$bG6OLha*fe&*7 zuwQ-s>te>3s$}h)#7%=G{zF<1XD`u?SIVq8u77g3Ft2Z3eZ*>gqqp8N z#C$`*lUZ7=@3t`&sY&Obe9mOGfSkzDOLBnMxJ;-0ey9Zxux&R9BT37X{rwv^f-)rGM zom{bH|1C}`x>V>^{b<{O{qov(9;Orj;QRufh`TNFDVN+#KxGq^8d(cwBAd>%1z1ld z-N$6ZP55ddZEosC<-GL+ytxDWHawcij+n{Nxm3=iU5}n5v&>_MLjc?!NgiMP%e@Ln zyL3rlWh$o=963L(JXqJ(&bre?^Cmpm4LRhXemxR?5^&0_<7V-h^rf>xUT6`N?5ecB z+i~O-8pk!&DD7EPrib?DLu>sfiAts(FdcFm1f)ta6Rgoi-PUbl-)1$5r6QMe$8q)H zm(nY42S;V&I4+q=;4adQ+>igrwQ?pF$8|fdZ`K((SI$J@?r65!IhFTmdQifr+qfzi z9^Wj^>8m-&kPi;%Sfr=R&k#tw$^4%2x-cpvbyJ>X*mpqWb)E%=}pLjv0 zN~3-z;3FGGznKBCRtu2~CE%dK<7*ZY@ibTGx-cz2z6WQV=xp0H5u4WYh5=iQt1MnP`S_s z9&oI6Ps;KkNXkdh&%MZ<*((W2zoZkg>!9OC5~BmUrSy3ZQ$<&{E7^!$C6XT($fg5b zSkXnoqW-}knCmi#quIaGOSyk$_Iq;sMQ56v^F+Gqh8Z5MS6_tt3z6$a6WQCQ4k169 za*g0rIZm>45>d=}cUkK`C(ZbaGpho(9cJJ|Y?w}2QGSh+>uELa)qLC}IZmf*O=j$l zn#`yTT%O9TqHiNRMKXA!IP}k z8nVtmeaP1DowjuiVXARmYz77oSBY?itoAFJb9qI{?G@EhwAUpw_j#}Ato)+v?7Ugk zX{~#WiU#!EkdoJVX4R8qIU!iH|3_0iP0%{|IGDF>(FsZopMW%WSnEC#)^vh-S)jf* z$)}7h`z3moW03!d39mQ-6Gq=~GH$z-<-Xo0{>=LC4@H+|jWo7B*2u@pHuH|0W6tmh z++NmVV(wChjVcQrB!=Tswd}~9ZZ?+HLOsq);@I;l+j*JO{g=t8E7gp)JNz=-y&96b+ zw43`CcB)biJ~k|cC)#ZESBRK0qv>6d=2QnL8gM30vg}*Q%;WzbYi|Q*RaNi*&w-;3 ziteE>sj%kO+}qG47>sHrspjArJO|I{m?-1DWYi&}F1ILW2n}ImW`OPH0A5S|mEGvx z9_(Ik*{#${Z3cuH@oB&(z$Y}#*^UNk37E?N{rRrF&p9(-*8lhO^^)0V?X}m#cYW7) zeV>=b9%<7-nsexh3u|jS7`rs#bD2CzNw2SwUNPgpmh<;#eJ(-Jdq~0Dj2YxJ7&`b- z9Zc6B@ncB^2~61(Tk1(0xvXYxg`;Pf9=V)Oig>b=lEgifUqQ7JtY*v;7c5Y3pg@<6 z3>E;@#!~%p0~;JoqEcl6{rq)_wtvuv3se3}+>xY_yiby$4v;Xv&g&9AfwTgxzZ{4{96;oWu!od{Q>z?8LkLg0;GGDI;0myk3 zZ5~DO`a)@bS@x4+elaf1UH>*l>&7f(M~Bz-&u=QJD0{|YdE*>a0*8JcZ9g}7wQhs^JH6U?i`T|myf)tAaKHn!#rC_lW{(=Z z>~>LyVT>=aW3NDEFic57R(&$eXs%%KVH$m{#gP3*f*m|zHGi!C@KZWq9}XXf=wbg( zH6oY+nehWW*YhxuJ4K4?Q+!{QboY=@$LdGFN6@c&K=}WMewi${j}h{4eN6?e@bC*$ zck$o^tDHjD2yyJ-Eh$??n7BvnUc|UHlyE(U%`V5*REq_1|MaVQx52<-n+b=PrU9g^DkTb?+=*3Fm6FjrhGr} z<^y)XLh4{z$6*e`veQBo12?iu2smIzW7@x^W-WC>S$<=EuW)?=96e;Ft~0s8oRV-|ItC;H)&JmJ z8-U39e-Iqd4E>|MQ4p0(C?|uBhy@3neGAf>@|t?oW|9{qw-np)fX0Fk(I93A(s?~d~HXgGJY0WMdUPOypKKidBDPCo=85C>grc ztA6}m=<@_!aUZWk2FAj*_C4O}2eq|FH)S+4jqpHm>6NJtw`;HaUl@-q{bzZImtJeY z7*O8Q5_!Ev2ZMjD&nC90C9@Lt)0D&5F<=pqqGQxbx7^35gGt1o^Z-A>qi$U#7_TI* za$i_%ecxoI&4>r*Hmc!O0zRud1Hd`o{<|4K|3woi8#{_Jsc7dsO4&{ihX>VdJ;*|W zcjubDBq;TWT*sOu`Q$C;z+8c-&s({J`Q(D;+U5kx z=t+ri6Th9`#OP++fhqZ(m6(!YPk2bvxA(4ntS@D~zxqn4eI~~dP!5^-f(*deTftS zQ+qT1D_-Z7ykPIvzK$C4QwPIkG_Rir!>{rb8;?bi9!DlYY5|mvAVv(4*k_t>9CExU z;T%2|E*-@*jbcbq56Q4CaVPjMUeb-{6^0ZZMg5oq3#aMCb>!i*I<4XC#PdZ?8jNo5 zp-i9p1YO1Fg>TiMfoD(nik=wkp!V67`VrHcRDAz5W{xj_x41Hgir3wYE3-ilh(Ud) zNU@c!$tWTC&6RY4D^rVGOf1~2Q<;5RmU;WMtgL8xGo!J!Rd01N1zN=`OXWxy`q?Nm zeLW6JDyg=*jf3BR*v#_~fdwk7npe}P<`4476(NI1{ocf?Ze8p-LWtQrLWqe(7n5ad z2sd-^A2y#6jXe8ijST(D(ccmBOD#Ar!J~sNBzJ7!F9Hbr&OJEaa7w;W)8k66jTJH9 zui4{DoM)8DFOeW~i|sAvh2D?}Zj)6?lFVXyLxk3vKZ%nb%=uDEY?AB^Jx6bMTAAt% z5HZ&FRZ#+cEF3YLo_Nd*R8m69f6_YGHTB6Q$LP-^m?(RMTucuQBDl<9=?NTTJE@j*r2x^e7TV@R@r2Nkb6I;f8X9?j%eY%T$D zN{{z#q9K?{`)>g9Or}9BYUJkM^+>S8yMD z7SQ3vjJN{#pr}8wB*_|~MAwh`DRE^3e`9R#Sh|=!yq*#nQJkz`Pez#?u8OQ=yyebW zP8vwz>u7= zf}8OH0-FH%BCun1&)??&X!bt<2=C+o=&kyS7SQ&{DtXAM@}GF?5;cjjGzOU2NF@sM zyN`dyodP3gY_EWe`K645R0;0Zu)DT37e-QnzQzJ^uM-BaXEoUF7(w<~TpEaROeBR`(?qcNHZP)Twn|WsE2*{P;DjOyAml;<}tZ@O^jci__JrksXR=KHd8yhW(~M6K^joWM&ZApr})mlS{7wlEKSdaY}h#_lQEJrAQ7=}9+WR`Hsy*f9QuSjdl1h;X}h_?3`hmP2B8xO)W z`gt_Qn>Fd06*O+PqUG9M>=D~tUMpwgxObFwT=Zq4d|q_&(F~8;VSERBhyNl+;BuDf zPFX-`+Wax&t>&G}^=mNE+G(-es~zyH&0osZt9wGl28eEm-N7-@A(waKvYJa9E0>y3 zv_Vwc2}OF8P;`rmBouY<*J2xE4i5GDMwNM}*KcqSF$afwJ<_ws92`QCQ$^E~ZZ7uz;Qg5eMv@K#-|deFfg;qHjP$FLenMn%Es zTwX~!5%W|c;55(b#UiD%=o*>237mH=PrXm%<9FWbDqe+0^Unt3n8G!f8j)kR zi6xoCwm;Y8m}pP`FLI2?*=BFmOf?CRc82vl#bQ%D9O29(V71vA=&{1MFWVU5U4ODK zb=F?Q(lOSDOH86BjUu(yMRtjt8EYB-(tT9hA705dt!jR|HbOl=itKsx)$St z)h^*bvx6D+gbLTDgKC%G%#!-#X!$qr2o+A0A9`mbk6^Hpnp&Z~Yai#e`*QjOjWF^6 zU|Vlpg3MQDmE*oIwqGXDE$99y?#=cmuMAF~&@gKGPcmp0deo4!70FfD228OAEZdQZ za*}|>rbPxMJN<8kmQrw3HGc;ApL|{mYSPjnk%TTbZ#5;zQ1^gI#Km?ltVQNclI4TtZzZ3+_EDF3xuDt?Yb0;dLuX2I;(JF#VAux3So$ z{66lLT(5*Ix^H-Fv;g)B>~M=grq6tz;yvf|9`I)pKWJAx?lUY3-)|@@xuQA$$6R4i zP1<6xvg8bE_V+jYf5`f;$t7fnwi$0KXx4y(4rU*R*s%cW{D?OoS6-pYNOu$ zXJ-Zzv8y`KtuX%G%)mwjFZT~-O?GkaqSHvmSPgmr$KWC^0Tlwu)CUl_ChoaJ`{fFW zs|%k27R0+PKQH*Fr2BYi40lx%U)#TIrtT0XpGR+^;m)>a|CTj>hBXh5p=o~+LGpQ$ z^1$B`%*!%gZ)3`GrFn7vgpSOFzG|a@C9tt?$q5qf5Eu&Aeg~BX!7Hns0cW>r#=zojafM(*p9li^_U(jxr+CqNw zLjKUBIs=F5#E7(W**oE=*WbmGtg;fsR$u6A;9vuX;Hr2{819mU}B6$+I)bp1b zSZ30LmNx6uGIsrEoQlnY_p)>Q-p?=IX zm)O_r|FNUKqJ5|3z!OfS8}_%40TvIMi^dw#Y(9yfnK2*rgHLQWr5WlXux7P*fIW=K z!PZsO7lGSb7-)EmUag49RpbsC}5ML5=jFYDyToyk*!96-3p z7)-@?L|{|!3A-sp8l36X)|}1{Y3)*-%O?Qhc?RNHwW;5Nh%SCskX&(6_#gZxKW(Mb zM);eQW1``OWz)%A12`CH#|*4~{y_UTF>C7Gn5>78&PaUi z8E5g;nY2rF24CWaQYyA{kF0ByJU#Ep2H!Mfye30}U&HH>^w?x^r#iLwMd)atHUm2r zKE(=$%?vquZ*N@qehF8#j;ZsC5ssbDL2ObS$=BUr$1}!gQjhv~HTzqGi5t?vq7AQ- z4k^VA&?_?emkjZb-#|&G^A99&d341Wz-Z-up_QiU0Dov8z&5M|NVTiSc*e(_7oo0#=6jN)NG^@CD$4!tr%8ublH|Drz1B=XDpz# zS=ZTinGd`zk4y8yZg&xdJRAT%XjU*DuGWnmlt^8+UTIs+r{8%U;~9+=RrUIpv`l;0 zh@|3z7L&QqgR$?h;lS8$a1ZeSVeD_91g2fHDuI$jvLzge(hQ_-2A5VaLK~^S8G7jIE5c+QvMJ?-CU^Ypt!ENFrz0&w!liHR4HyG$zrOgWG-HpvgeTBhOU22 z+lSH(4|s)9M@cTZzGi}E3sd|sz)B-;)vuXX^NF1QiyDa+;d;I)@kitzc*#`fk;fNl zetO!*m{x5+wQazHnkg(IKoN-gR^Dk)$25`pqWe*rloYblaholtShxr{E9u_Ds|u$A(h7JaYQn7yichZa)~NR~aGR-#4XqHTZBdKVG?qfY4O z`Nzr8nw$;B=H{KgDcvwgDu|Td8@`90%it*&P+)0U`I7rUx&aNvX(22tUlh|uVWft* z+Qx;awmgAsEhHql@DIL40$aI2j6`sByb$!!NFSDu@2~4)sMJU6VSSkV*!clL_0OnP zfU{e6tuKe;5fd`nI5|q;53F+OcZ>bb6nLXT3#c?pPOB_AEfV*Hpmw@i1FeG(7}fH+ zz5^aH$64mR;LN4{C@Q4bR;cS%p_%+>Aqbp7rd9$zc-Y<#eE2Yqjao0mJ)j$@l``X% zi?>2wH4k#IsaFa*bFD(bgE#->v{c%^^tLHn0AON&&)6gGOe2pkj3kfb&DS0?>84z; zN%b9#_)rmEYwD3kP4cfBt74rs3#b%Uw@WT+$HN<(zPiW2q-`?9=v3*&@QKnmZQNC* z-_ziQ*d&iz_sAhJWn7Y^=DrubPwkI4$Zr_FfJ~OjadqK#QwByM2v_$E`Hsrk3WFJ! zFp4NN<^0tKbNjIBcm;AWXecn|Sw}Ud^e_1k&e@YO*NQ5$iUfF@$tUfd+ZQ`~_se4& zONrEHwovCC7&bCSRUe+psNzx$)y8b&{X5>!ZcGJA2{FCSSD1U*=rsys3xO++CQj$y zb|sTqKXOtUsGCr$B90X_CDJlwyPFV`0YFSbYhv!}nhX`>j!^VoCt5P)ou|^?vY{V{ zhh7n0=*H*W2(3;dRcMcxVt*kD6ug?d6zCn#t@9O_!xQ-;d>hoKgs&syg;vLrbQo78 z<%P>bllAZCa8FmV(z@3nSX`xiLGx3=$B|9e>9Thl*0kq`-V) zP{%0nbSfDC@1(2HMyC>FesJ!u4jpQE{L=fHyPqP~HZi#d?58Ve@T|&TtJ6%du!{6R zUe`7JNC#0K;x2wzzq!IPBxGd7%+UC<{!+D2$p?^CdwG2C&(Go?C*1GRv+~a zt9Wh>fwLNTAyC^3cN7hN@kx9AMTTs}8uZ`~pz1V#>GveR^ffUMOxOd6N+WVhZV+!> zKTUp8Hh&!ypJ4$=e}VLKFy8h%nXbJL(|S3aW>|7Y&b&xebpEvEw8C;9g_3cw&g%m5 zH|M7s#ZM8rJjpVwO|lGY*pNHu#W*R)x=eB*Zj@Xf@m60k-YNxe^+RJ?^Sg0vXC*Cr zS+v6K=lsn6dgH9+!byFPGgtA-BIeIvyKQ7)T5x!oL3G}3I<7rSAebZv33%av35aZFG6J$i7 zvoaN97rK^Cqbz3vZ9I2I#>^~;e)mO0VaAPoPBq}h_;;+DdQL~G*pRzu?r!3(XwIP4 zSciKsnzK(^&x{y->r|{$kI+f<>#ij;dAY#AV@{( zeO?fHO6@-9t$dxzrODMOfW1|~dCpt)J6_SiQ99%zKL@wgMCX1|Pc~ZPD#L3W-xa;z zvt&Td_G3!C zZ)J0ElcOgHz<0B^2MA?*KnUsf_=n+z;`p5R^DN&631f1?P=bWL4;Qy~ar=i#(1kx+ z%Di`zn6$)1z*f(}$cKUN?{h)61>jeW7v~@&-{X{H>V6_b)kHh?^b#C2h-5mWq(?rrc@F!$ZV{ z9H$oW4}OM`@}WiCa*Mz`*`k^d)@-v-Wv6?TcS6uqnPRsa!ULx|T`TYo229A!MnZ0G zH-wiGN%|KhZOlYBBY^b`e0nd5r6MneEFRpNze#E-zXyGErZ9espia^+ud5eq1bpUg znj8+hiIg`Q>{MQa-9=v!+%(6{5|w&1EqSOq-9mVSp?9l-VX=tIjnU1m2DD-^s&P*r zl}+?!MyDpEf^m$YZ5+zKls`_%A`kH~`>%7870CCS0*iOqG*l?@Gqk-aJl*Pc&^;Lh zbQrn39VVYE(BQDN9mwRu+~G30t$#H1KiTew4<5!ZUG`i*U%k117EDww_zV_f4ml7> zM`looStu8!2ZFa+q`^Y0)_ss8EE}94Kea{~cO-+x=q}@qxV#i89*g#hF-0vwpSTNM zpa=zS&OeQE?rF8kS%l`UO)ACSGlS%l&8pT#wNy|?ai;V2gtxAZ-{R%I&tGMCobUgc zoT0><I(>lhf^*Rl0UDX+{5Cw)tGTkL>a6_O zHNp5RW;TrXy>40ca#(*F)BX;uX39#}>K03hY0+Z20lvaJS4@!s70gT5EVj37h_;%= z4A{z+DpQmJ3q=}?Z*mmHyiYgOdTYN91D4I-9n4shD~z{D7NE7}bChyGzwBKu1Dz6j zGmHh!?wi3(#Nd|Uc+9+8Et)XrzufFUIP|$;_=>FLThpWXXcZml)@Zs62R?fzXYK9+Z@>9IO`%D#RN+w9s`lye{Q-Sn4=huRlEe6 z&gpZpce!K^uUkoW*`NEucj>2#hwMJIe0s`%Eu3x}tdYI(GH_dv24o8@YEYAW-S))M z;R>tNA$*b<#gqbAPP9c#MM;$5qEw>2BJq*f=q~r+NDVi_;(jDG9Q1|$(Y)5or~jM= zA{66L3HSrllrp{trXEa|8t z{3Jc#6aH4iMs;w!JoXyvx4Nj$7c2*%$)L`b1;RQ3uYthUf}931xvIm@XJ6~vwA!0Tf{6{irz{-HjN!w zh9rVg8K(w4DS>eW=|8X`VT~;;5g1gT4*e~+C}$9Il`p@Vd5pvMaUgnu`{+JN6MIMVCH7L@*&a1*LfjhyN6xBT*@tLcMNrng)rOl3VF^O4I%y zY#!XYVm>`m=QG$UX_2B0ApEhO+&-}GM=*BpV$RV#EfzDDIyL8E!wr@F)Y<)GOu&7Y zap)B94gU{M*}fjwKGI-6h0KmN;YL#sH5v+rcTqtJFJBn^!T-n=;RQ!RG_AHDV}9Y7 zgM&FCJdP%YExpAc3t28`2`6xPm%j`j5+LF|Y5Or;tOoiN)WS%f|E-PWUbG$(gqBJW za`Zi1%%|GP>hvl`I^w>mQhpzI<&??8l8W&J=3h{af3L0S08Tu7KejkrU$c=CnN!7e zp5KxUe(8>Nh$&o*?yc#I-QU5v8Y;u7?(nzh;9V1osN!FxYv+S&qdY3kt4C7GHvL1U zwC@{{BcXZeyr0#Q%|9po0SD3lsA+O{S78a5ejTa~(zN2tJmZ@x$24@si{9k%11bML z;=2i^-YpI?Pu_^fy!DEc%t$M=?h8A-R4F;xa7l91H!eV z1_UfmKu?N#z-KgK6tSWgo9>NtfrK^^7O{su##Or7%v@VIzY3)Q~rWSO(T?8|K0XkJzF7@4%a7n!e)}y_`SASWPSGyfIC!~+_ zCaN`7?|Wc6@N> zpFx$g*lEfLk^^rsroZApp7ZZhM)3%hrs}=05cJIC$G#n=0kI2iQ7%M)C~2zD9zm_& zQL6kvs^Rq&y*Z{^8!lqIHu>8fee%iI2n-;1{V`cJpoGWJN!ov!7aMrtd>y%k4^M_S z0GIV7P}%o_7t-rJ0NF{>xARo=CmF`yNB$G#$}-Dp5qzO4=aOee zx4JoKu2YO+{j{Fhh4J4S`iF==V^5yXmQb+p9ObP%z2$2cc5*)|tZqYpTSG4Y4&_2f z?m8-4gKxJmCCQF6ThL8it;N3oif zs+#PvnK)B@v@fa+yMRPcD_!sl?1*&mL-_;bg0m`T7UujtGacitdy*H3Fx+Z#F4ya| zx8w?qEKgfa^_hib8#s^`)J!g}cQ#+q6ino1vbI&PrW#&a{*he%_gT`LrzX8*U`hOL zb|L)(Zf$G(4mQw6=p7fX^&~aj*?q}}0b_;oj1OihY;Ndl|EW9j#Aa14Cw;5cq!HeHEs^af@R_x+ih+BD84ByM&&%NE)DVi%;!>wg-EgtnKThI{qY+Ob@2#YQwFGDF{5I1%20-&Joq2~ zE)&onFC`tJ%a!6-c$`nuiT9-wb~*1+hB}8~zH?Xgx@0G|8Y35|q#sbgrTi>o{%_d% zL>^?IEdA3S2Cw+Qef))0?TS;DtTn!Yl5d!lZ0u~E=%(1&M)z>NC7Pk+7d7);$t^XD zd2sQ8_@3MIDzUif;5O&m3`c{eI#L0aRWkw4mzPl;a##6$tMywE2BAyb=jGGe7jGGe7OpB`%PlXiS~cN4TT+*R^;d=p-8J+J|doNlx^>6DtwLDKU}n(vpy)rl}1)chV=~$ zoBcPRKjGBzC44Zx)SK&}XO&I38`+C+##XQL3I5Zy8E$DBF@a$W0qg>qHhG zgDkf1l7FyZ0*6+*M{#JA{F&X0bdXAN@rKtWZv*R-AL}0DM-#c2(PQpp9sDgZ>mp63 z%yBu+&6c$PxGubJGN$+sk%gIOqN&m`&Inbojy*U%~Y#tj^XW4B|iz9K4v)N@p>HB+d! zZn{UKd2Z1FS5T*=sdTM+2f9>#DR|6Ecqxm|M2xh&grW*N>rnP z0hJ^-dENh2sYP~_C>m3apFJ8ft9=58Pmo*#I&@!xI0rISgEpL?sE*yHAW&YOZk!y& zMl@eF(tmg(^N!pIl?A$p2eP<+HNqg#2Ua6Z*6x+o`Ip4%#8K6Rgq_Zkid;teZiK9%O`64A{quM?^<$P#@#a}7Eqjdl_nt< zH6<{{8ir}Jhc?K%Ch-^{fzj?+QbYNs`;UUgEf~Gl;Z0sbGwFo@1#%#QJQ{`La-85O zG9J*Bq|)lKzn|e!^epNEf+T{m+o5@0*UwqrAOY+aawU4siCqk-=fcy-;r!N1#&}Ic zV!~`MRF}G|^MlN_*}oTZW9&*>&0=}OF3tJBpT;$skEGGMtWjq^Du=x824enTGTibOLn7k!b&P*<__bN?j!c7`bN#X^h3K8^YJtiMRlJel4qEUG+Os$-(8 z57bvwd2aM#obQsiYQ%Kc`eFVV_hG)QO21~{xg^EOV4T8zd+6Jd zJeuJFF|gx-YnJqZd`_mjzMVC%m>)GBAOpGPDm%l;*6kMyyW$lcqw z3S7-#z#+4NNDleAM7}EgoISo9))y(#GPrnCbBbm zIqI$PHJQ;fYh}W{rBq+;mxtG%9MunI*OG5d;k?&V&-n4;m}3T}{Yb~#YUzMoxZ7dJ zTl-%)-p=B?!+P+#9s;AIqon-Q>!Fz4WapY#K|x=vod~_Hj0$gv3a^U`;{y>2aKwW! zd=Ut5fPy{_4Z3rQmv!Pk9sM1J&j`>@d8<~u!VDcj4lm-F*Rk|r{xWQTi)){HP9vj>)Si98TNSFjY{%@>BpCePvSY|(P~0}LGcr4-luBDW#z;nV&W+eHpL1i2`B9@A zY(JbD?T#Aq?yvr5o!Jqe>R8mUm9LySi8EvYbLj3tuQWRCWqVS+2S&MNf&|T4Y`h$H z@ulb?@L^YY0`J_8D)- z4mVMOG70S>kUzX|1kIFLi%}m=Gb6HRLsk#N$tT$?%E+fAg*POh(K^B+)~T__;$gFS zBz%O+$ydx)^}5g2_%6_{b{6Cmd|6K|8GpZiELF6l3R>ZZ8*odzicgIXv_RB}by&0@przoi zwttr2f%DU_Cp$5n7l5?3Eh-GfKiAR{Q;`am_UrVrRoh8}vyYalyn66H4(-Nc7u9@u z%oY>xwkFAnHM(t#hO=J2_WDUcSL|toYEi%%rdpJq-Ay|lo9X;Vz-Z+oKz`^Z$7hVt z?^c4`G5r7U^1ta8qFnIbT0y(<_io@p8f)+@w`s%69~|VHMPtNrr%7V zNoa!JVnI)D8@Y#MF>R@EsS0I^n&E;RcqOB##oj_Y&^iKW!x9A43#Ju8_QuXxrrqtK zRUWQ2X^97yr+U#VvB z<~Uazja#W#BAM0Iu>{&n^7>gF$=JR^REJGyY@Q z#Dlm%nm>lJH{|@6n*GOyxN0f#-;^I;uHhwTFQG}KcBAl^8-(PT4wD;-RK9I{c$>+_ zjUazBZUc@36xXS16Mx;o1mj_<@Cpj?@1wG`p5qUs16_vft=ms|GmSR~pUM=oKHPyn za9u`jl&}-EyA%yGKa-!C%=*vg{LN`}CkxT_r~H?TAe1F_QBFPp_ZT_2r6xKhoqNX6 z2Th-1XGbgE4|3%?1VbtEz_n}2^W4y0;jL9}FZ}g?iKd*;^n7wPq`RuwT(gt6Yh8NM zr%vx||0T;MGHP*A_jljPm=-o685+khT%$UBR@jC%GI0HZd32`R({T; zvvWZfb|Ni5Of}pNMw`Ni=Sq4aqc_KnG6;I{%ODZfzqn}2P@}wD=H-u%#^DBKu`(WzfStLI07JJtGhrqbK~T~jb-wC zP%frV49!lX0<1Odj@^^tayL{9L`D=e?vzsE%&aV&HHzk|8!ElE`?YV%BSwBt0owr| zmgHspWfzXUEZuNVn|OjL_dp@)nA~{9YQkt*_~Svwo@AGwQdGVCKbACjn<@VKA|nFdD8_t0Y!gYz^#^3c6yihQQ7P6 zcB)O$b3j zwT8-;n$+)1|o=zFfrC*YKu(2+OcSO2?I5hp+#oiYXX&hSsdmDVR9 zGoHxq(ZS1_os?;jredNcE5DPL%(b-tqIa2Bi?ry`4wRQ^=Lvvbj5UU^D6l&1ed=*{ z22!;YMtYG&aF2au#P>T*h15zYMoh0?^gew+i_ALW*1KxF)*XrUK6;t=5Kp9&wMWDSaqVjMwG_Exyfja9)=M+%Ipa4d=|mnZMeZdb7e~4`aY-&6a!@9*G>s=6J6Ja zTT1feb?@TeXgJ!Ix|@SSQwM;!^8upU(jVZ-2!Sd22+Nol!&f}Q=*|uB2%tqJ|GUfB zhQsj&Ib||Ai>29lk;HjuCHQ0X!>+@s2m|vm?P5d@86VaJ5K1q2ENs%jJbGreE(2Ie zwVeNa+J9ND_pP}=ZrtunN<%0X$_r;vn1qv$Q5_NyZ^|OJ8@g!sg|C6Fj)qosntDJu z0ZQY%SJmvcmIkuZ#=JOO#2&KNv<#0p>JxV~ymjq;>mkXAV_Ic%0vX=qlkK*38(DRI zu-Cp~{TYKHgWI7++#i7q)SfG4L4*fd`N;?P6vF}+LNhmPR1w)O{*LyK+%vT{i%TaU z{mV(S_O);>Vy8y3D}3G%gEZIg1y!7IQbKVp^k(WgEWYS?_(VewLqHgs3DLR3V^#DR zu2<6~b9Q`RJ?bRiCF%L~e6Yf%Eq(P1Vj=v^*zX-Ag5x5HoFj)8Ta<&*o71W?g>&S} z;!4Y$t0-?NmdD@AC9nMZ!a0q@OQK(eb6}#PKJxci^m5$91owT$Kdmx~Efz-8TeW*J zys-B0LegAc)SBtMy&9$$gm&@cYZdLS<^2=v>pBYWmRWUwkJVV;ihB9D#1o#sa z{+H=Xx?y#0uFNz%-u@8nc-=qI_qx&N@DA&v4jYf~t}%K?61c+#nu*@E9N}F{^p4o_ z!@jH1yW)uPx)|$zM3L#yB5W8A=}LVRe$)r*)nSuGG&|FnfZ(ZPKR8Ua5LtMaA+H3giEcV5x>}-g>zh{(32Wn03&;vF(@f zTM>7+4&KK0G@DMwKYH+I{Mb5cv2$p#i)P}?44qOwWc*o`VgrJsDhZuV2mig10a4hR zD*P)kc!Rk-DM82Kjo$nF(GE0~zgYhwkXK*c*wC{&kYAmbd zJ|kIO@iRpMrI?)53_9J&G!W%$^0zn^)|sjVe;r#0nq#3?(UCKk=$KiJj5ayQ11yPq z;R*^(iH5#QZz9?%)$qI$7M$0pN}2rg=5N-Qd{&JP|Hf6m^hqWMUFq=;-pX+uVN2n> z30CA_QaG==^oyKT>7mcrz9qz?oeLDstcp|o6hnf7E337}ejoYIJbZ9et2(MhzYTkr z{Yz=Cod*)_zo5c|sKU@q5kD23YcCA`3wJJZ!&mHLnThT$pAWf)*z@l_<1G* zJukKH;@3FqaoC^wqPOb9EH4~upBw^+cs!uZ00^1;NmiCSkXwE9MeSnYO zkI$_`iQvk`EHJNKDgqQFxx|Y)R^KB1Lp4vNP3K&Vk1)zKN<6SFjO_i4rAfqA(!Bvx z#_f7Ul*)8Nu4el3T$)KtZdwP;{Sq@)cZ7pW@8W}NjBa zVa^5VUoDkKCit#SpW>#>C{o|K=*HS#f2&UMEBH7(2Q)?h1LCye#azm8HDeDLM5wD} z(a_aY3Y(OJ5*ng87#<{DDPJ_3@1UeV$4c3gSWLH9CB5kv9z-qDY&|I!V~ip!*6X%8 zX@*}k@YsM{encl=7h9AEeN#odu3+G1UFlgY2M}^#qvSw_#1=#(b>s9p>!D^g)+dII zb>%xL*HG@T#5&mTVSbgwr6|`!(M;FmCL#*4krJ`Nk9#Xc$LQMNTbiv##;@41*?>C3 z+Jsw#BnIonB5j1syG zZ5H3Gao3x_zPC=&H2y-Mfnw%=z%R%nx6_mAh&xKV^?T?8@pyvM;9sD(3Vq-*=K5la zOs%ZU6ly8mFu88U{SLBn#F&CpwgbvT2PgVz>FA6tXL zvbtAiojPOVrKdFKpHag9!^hL7@lgDIozK;FT)eoV{axtMtjgdd@)Cj^-|V4sZ82}A zPQpQH^KE6erWRKW-OV`8bpWlmBq}V$%a%4o#v7z%>Dab5wtx``P?ki(CZqs~_Gw`P zO2d9P+Y1cTg)_Y=)BEiTn!Yt;Y>EPBRN3o#fQ^v}0(XndtjdmyTaYy>+IovqL`7PH z65L-U9LM^f@|7-jCM%Mo`_iNqf5f#Ks1?jwL^tbiw5lxyK2SFZQA-Gb+59W9_6Of&W93h-P#+hac0H!c!dsT5gSXZs>m63mk zn5cmzMUThM9)!>_~0e`2V{0Vrd7EkfA$hp~VRG0v(}Z$E(4H zdQrSko1-{h!Baw4eCk_$W9Fj<9QfdMTPo8*qdWIQS$|@>HmfrHFh7g*!K652)=RBM zYhaBJYpB}3H2P>Sty8<&?7lZ0Q2a`Z|2ey0hWhfdTyEJ@o!5V4EPG>`fi ztCK05_zC^N`sy_exJme%A?2jA?>dE=!L0ez$yl9T;?2{+ndE<%wb0cKW}&A!aj|=y z4l?8n0ppNI2`e!aRe%YfL6v7saF6Z)%KE!fHzT=5zSxE1`S!ug`7cFm9%K_Nm zSQS*L`>4v%#Ts|NL5*3$OD$I6#QUjoSPQd|1Ecr54}WjNlaj$nYK7zXP-oC!7?k>c z!F@Qv(aj?c?-f_2`Y%)&4bCyV+7VT32tz^06s-WmQB7QgI(I?SJ8C$p73eWU%o z#k@3OcwLylueBUX)RV!4*a*c+;TIsn(9Cb`+pK?YAwzDNwKes;#VV>W6|u_tFO$E6 zUu)eDxMb&0tDiP<@oA!H+-AjiiTZXs9EN6&>ga_oVNo&wMKk%EhE5V6R;=jg_V1{w zj1PqES*r+nqzzwjd=q{KHH?tR@a1=LUls8tWXrR2msCxaIF|RMgUTjZ(z?`3lrL|o zP2(jscPpb(_7gjAhGxX)nO{tQfuH&rv@B-`TEui#+feVVoouZoYcri&P!f1+ChB)^ z4$cE>Yee=)La-7BhHLIIW5ambs5x_gq>*cKq{PYkk6E!zvHN7WN^&;LQ8c$8(RnDb zyitdwbhWrNev2d(k#<Toa zcao!yDwb$jOC@lN3lgI<^rw|i)Ta|u_JZzkwPW}T#Y#738V+y?^ih0)?S-L&`Z#f*t;*y}LEDk~*xFuYWvB2bJGET@dUaJ%Jo6RRX zrH8;9G@tI4g>_uAH`Oq(?07=b@g7KD@oIO^#k({lSWFVf&+*n>s#C^*jlnyEzwKhV z8407rV08|Tnlz9}+?h!XXd!ZiMG25{5tnQH9rOiz>sIA5tDy~(8OUT%mEn4iuJ=%q zCgzn*we;yM@Lntmkw-Jmz$~+P!1x8SJ#H za`{EytgwLmp?Kh@OK4*t%>ilX09@{Y3dVFZ`W~gOgCD|m71QwPBq*9lRocDuI^nrc zrjP$M?PP;9!mmWVkjpP5u1GoNLRO&#iuEAoC!|LK;=>A(Y?_N|Jf3~SaDNKi?dL=jX*lF zk6Q;VnO@zmfu`;T*fogh7blB=iwtlB&*acA+buQJIRT#LLsUPwY6;B_G zNKx7!+`qGHM@H>vN?y}oFp5pteL27SM$ub^|5XC(7uB?eC-HHFpAy}|lgjxo&<&?G zvRLPC#_cV6a})U&3b&$zLOBP5XVA^zL|u(;E+#}$)tyxs8|mp#=a63|pIkY+FWF14 z6*;mf42EB)1>g%7x278IcGvoW4nCLd_|sR0T{eWqA{+qKSY_suZTSK1{Ah`xz1p!$ z`zi#1P;xQ|8J{0c2D0=k z2PHBO{!8BVAf(oz!L0UZR&lSEa5KKhbNtLqmatT!J-!G;)I!pAb z`XmA}-{|Ur_%Ml2cDqQ(RvHVj&TQzzf^=c>G2v4f9GNzF5`!k~Z}b1;>dw&>;Jn!4 zkVHCrnN>7?k&MV^Uxkd@<%DVk39Ujr!3fen#r9j)cXTGXBQG8$1F8?tVL(l~Z3y^U zAQIzoPz5M*cWE6w2?-PYs%eENFG!^J?@Ie;RE5p-z#RHUX=QDZ!;eyw>FZ@34~73t zyVh%X3QxuLD!$I({kR-Bk zlt?g0Vx1PUwlGK6(}4aHqjZCNwC9`4o_ork`=e(EOQa8ROy7Yy%N1_1_)NQ3KsJJD z58qbFAD|P}b>0!$U242^sH;R>4=?E%QPO22PP{uYK_|Wef)jrawM?z$JV()B9p;Q^ z@}gD+;Wmf8p0mac2$gaqKWh%B01vsW%V({02=Di|LXBK1*bJ!EIP`XFFB2R)OttwG z;}EZ!>Ar;zh>hoG>0D2Kn+h^D;IY=j=(uug7O ziXjTp*O4G#Bu_rwg zGqg?qV5F(=(UzQ6*?mX*Z;^c}xtW8|+y~SjF>eFu;2nxX{JwHpaynm|`fa5~VhJYL zvz$W*n*9BolF*N#50(rNYEo7vDYlgzGu`k}Z|x5O9LM`93NRIya23Dh2pt2V1je@C z%F()muGA2WrnnqZX~JJVoA%$I8NC$N;}|YhjhT<907^5`K#p{=r*nZ=+MfwunJ6-q z4vGnXc4eqzgKKGi5jF4DLAfm(QST*z%e$~Lfp zZ*W)d5?~5VRf-*1qvs+zxM=mEcRG$1I-04<7G@=~x;^S@ft#z0m`5h4k1(d_BiVKr zITI>#d7P&wN35-`XG$JuGJ$J(W7dSNrKA!6QZ1>}>WsD3mF}WO#>;Nb7J1oCsfO*2 zm!)ijc-cpFaA?kb6<}ornS8`-O7SIgMDl=M_oyXrTq71hw>%_4f<5Dn%~(Q)Fy2K# zrzh2q=raKfNp%!c(Ec%zR0QNHK1taxowhAm|Iv*9lCp%&OZ%^B9b1b%sV*J7z2TH)pM|300=lxP;m_XM zw=lA7{vr0^6%tecM{OoQ08`F@VZ;p|Zmx$tcq!X^6Z zKc=i?^Xzj*Z*7R_)QXp7#Trk}a<}T4{9A0{`^y$SIS`&fx26wq$fAAe;+BIdW%*mb zjP_8G)z1_kilN|UBIXJw!0zSp+jBT&Od`!+m)oL=9cL7hS7f;p9r~EB691X)OAgQg zxvu)#p9>#iyG3*v<2s2L#bJcMX9Q53@PDwo##`S`;&8K!r?e7ZqzAWF&z|D$G_aUW zhzSWd6SdD#DOOI8nZjA9eNgNfw#A!3sN_x@41_q_P97+HF>z|Gx4xPoWb&Xeo(>BA z6Muo%AB+bXMes=)C2^!NvTGS}+9h`Mkybuq;sUoa+bP$tSX1&TqMjg(T5OFeIA<1; zAJ%u0I>wVmdy%;u44%)SuP66H{n{u2_)Lz`mi$r~9JNplXC$TbR+A)L2 zaDGqP4e7_U*oX0ZFn(*}#6sVQ6AN8iQ_VNV3OXau>Knw0uyCze-DTECbU?7$v@{&a zJ+!O;c)Z0u8PnGvJ)>QNOLPlP3r=4)6U>mG13FtgJ1Zk}SX9&MW4vj9UpRsH#rIu{PjUf15+bI9z7WTeVV z#3$zxzSqgAT*|rNT%DdIfk~B}o>l(Y5ERRoz18VmG-9v&E5_D{GJ{)obh=P%j%s&) z-qc{{rwz>MRCRpzQyru2;m2pU;{JsRs=@YIRB69y&RRexF9m9e3+~bDqOvOmYx^$d zy=WwRYwE0h)a4;wcf5tFSZ+$(y2JMhWkzVa(ri7qEuROiPcZ>Sfz$i%Gqpw ztM04aKufVFL7WG?tEPkRZC#rEXNr>pIU3XGq`sk-e0rVz<&2?;p?8T6NuWlA?R5zWk=^WQ3(&YO-JK0qaB}aNT}VDn4a3@{%57&#qS?XNJ&}6qv`9U5s@Q|p z=m4L~X?|9m7v0WrQvD=Xat^1rR2-&~Ld=eogAwoHlq+dQr%8D0j%9RIu^B9>Yz>E3Ol2WM;rN_o&*bYON|cQY$1KrA=4rj<{Zrd&D7;eRG&dZjUt&ld4Px1 zRwN4cx+d{OaN2~1nH3|wpoK<@8Wklnd_GUUK&J6sF z{vjPqwJU=^#|N4GEK>)qn_;@jv$zPBQmM1o%;F&zSXNYxrX^MdxQyJWK5B_f{}RFp z3@cSrc9qXilhbqQh|9eOQ**)C-V}O`6gSB>HQes4{T;1m^F18PtC|`@Z~bw6n$6!q zw$b&3?yBEjYBc9(aB9!EyuDU=otnBHZvTmqZ8b~25wu_E>68P9Xhm=8%$6nJRy0gY z2}<3&-Fe!%48cs9M%)rO&|B6H`t{cToW4YoTce|OqmI^%I$FPON9!Fq*mRE8#5Ru9 zH5{oMVtK}$tE}<^G(jT`z3oHcEIxAcPea4q8Nskvi}}(Ctf8WGJV)z7xAQUisWH6jAk2!(8;g1Gkzb6WUlu- zMQTU4r#9WpL`(EF6^!l3`R|bC5ru1&Kl=b*H1uBj3>}jxxNy`zevsxP(Hr0`0?8Cj zQ^Njb%5M6y-6{}^y8*AGpnZSGIyivL}&!RttkX(QGCv=3Cb+Y&ONvR$0 z$RuFQ&E}oSpI52xk^@=)L7SKMy4!RZ3>yZQpDli7`Gm-BtSx(1i@3pqSzocW^Lk7h zijHi_8p}Sq%UWryA8gCS4O!ovTd@_=;EJDVd%)N)sA;iqgP5?9&ByC{O1iWN5|+eT z=PhHNg4}2W)?gc`VPzT&Hy;6gg_1m~*W)Y!k{m4x^%b^toy^U1QlS0NQs zANE!r4+~-;4(Qd@h1yZtR~L7(()_z!GIeY>#^`*8MS{_JtDz6vTEyW9EOA!#7&->c zlrozN8DZ`#Ea=#iKTa9EWwU7q>4Hu{K^l#8Vvkgpn={vVt3@SPK%1!;vBL*>hlVnI zklDX+kl{ZAG#gi@;5e1&)YVPHWCxU)_>%+yYpBm2-d)~xSNS)?L=0eflOqC-KX~K* zcMv_M{-uu|G2Ju%#{P#oi~N(o4M+#V>mB`bHiFvw!)F;4=SWP%1&6`!lJ3>kGknw} z0@iWZ`xU$om8HF09*U8=v~;2TK+6c%Z_!7J#EKsf+0&s8eGtPK{yiBqq8#+$D)`zF z{*4o;D*p8b>WY8u;jif{#n2l6y2m}Zuxv`MHI6n%p4F^N>5P#Vw}xzfov_cTI61Kw zYbG?YM=velwf4iw9*RWO1$b)-EmZOoBCGA#pdQ}=ln}po11r*q3nD($U z>z-jX%xa5mRn}VCYCAt2)TTOLODyN;)NUbB9p`9WCco5qcyVIY`Mv%Cc8WW^^d|IC z`ORc_H!D_Rj}Pz3b>sQuuM{gRlVRFlSc%zC=HW<&H?DV;rS|TJbog?9V%zSYB1z8a zzEtAB(Cl+<->TTwx={cqIIgS6)TIK07xnn*ycaxZyv(lv!$xxv9|Yc zU3~@P?7rh-e2HB47k{^2+E)#awZkh##n-w+P|81AviEF0-IU!m0hq-Hh=e>?9w$bL zg;b0HE3_tBA*fqzAHSvP*MB^U&(eRgY)U1a^Iy;Udqu$YtGFLzrG>z&d5nWFTFHGu zRnVG*Bl5Rn`2 zZs`3+uXrSm>w-Ij`gCD#BJEc-=XcEVlN)3mO*M@3*8T};sX3p#LWsCV^qemg(RLmu z;k?@;a?d>)N-y8cXwQPBAQ-tBPN6-!QthTCs(%`m=}z%HFw8*$N!L~X66YISivVM*%A!~VbQCk~+* zfD`U{Sq&E71>E@nYb~-XjiIn0IDMbLY5#67i?MlUrjWE{#X+OP>X_CdxeE;B~);cQQgZMpuCltEB{p z8)@6H07(?8RGI2)qD1I0nL9SOQasGrJW?`k%L<_Bboo2Z_qJZO@x5mY0>*iS9*a9=uOC#=nt;>)|(pyx#w$C+x50Ln}bhRBfd8W<3G;L%vYv@k2c)vt(B2DlUEYef5YEv-G`Eh z259y^z~9auOqG(=Iy61>Ys{&k&s#fFpNQiR=B#{`q@AQsU6VR>V$lAG_?Ph@yY3R4 za=)zdkFiJ~6P9+$2+h9hl4IJH*Q9n^D)^L56oIL52H{H04C9WJ&t!psW?zt5tVzxm zx z;##wX6g#)6V%dBQif8201-9?Rj@fzHh$k9MMrZrz#e!T6R)@)*o83k@l-;zj{Rbmu}QfM35=liEyarbBqYnU2Xxl9bFvj)qL z_%wp4Mvs$5+uv>NUc)1l!KqP<^oj)k(0AbM5hNP}t+wq}njiMf_q$F-n+5yLY=`_e&OQm>n! zx52PETnB>{ROx<)I-Mf>0T)D+tz_xewtK6d762JkBX}cAL7hWJ%oT>SE+26&xJksm z(felK(BDV(T(O%Zyj;qBQE~S4^JNKAu9}HCyOZ%F< zrdP;~&^D%#e}tu5b>*8O(tpt^C`w$cYjx;4zdxLb+FWTo#-qH$#VAT#QTXyc=?`dE z@7@*r31XZ$14_oFHc-N1G(RaQe(h>ra39s#*hC~-dffqUwIbf(GCTMa<5)zQhdypi zF$tF*kvteO+7>I9XgK&iPYH?Vo!3IsWa?P0s~EX3?`HmhJTD9`!Zapyw=0H2nvjr> z60&nBk($)gobN%M=(xK$(V(_GM>89{8pucz@}IJ5oB|=EPbVdYc9~*?=Z5s* zMmTrf53Q5Uh*i!fCGAnyaGENcX$Qr2i3+>LcAI=!s^LrGt z$7kS{#U|pKD1Dwj9r{@Dyv_!1YtG+}0UwXcvD`~>N81UV4WpNj={&%F-uGIs$09r1 zoM;@q-0~S^vb1}YO0s65)#2nM6#}RB4|PYG|75ICci*m{CpW5i7Pt(woz#RsOyQ_T z7;Y!sN6xs@cJTHzg*U>|40m&nvh^pXrW3W6$v;)PlMkvTunnVH#rbmlw4jddrh;J= zL}?T{waF_R_FnqcT)r<3$cg<`(7R=zG8_xDsxgCO73aLFL`+&>(}fO9#a{P3{>A*RsGf$`+P@cnmnje|i=+34fk9eU3V5rQCcj_) zH}k9~xXEf8wDgG4ey6NXW%A9LM^jRm)T+R~&{Rcp?ShYmDh}p+^wow3ymjB>Ide_Q z$7C4z(|Mm777Xdh-g=~E)ORR0CINDBpm z>Qu;ZAG#fBAS0L}eXq=GSVQZ}a3@P>QLf?X_Wx8SjTVPLrVopZGN6;2xP+Q5gO{Dk zaQ)}Ph2{E;hS$9HD=DyS&*&4Ty$lu+lzFSE7aA+d?mt0p`U<1!8iv9#A>UoC6uqt(VftS=IW%#!r|=rmIKG7c^JmT^l=L zX9AgmaJs3|`MX*boL9gKLaN>^{XCPxPtx3~tCoEMvGWG}X13xtvvi)Km}`UaD;w@> z+sT!ve7dQb$;WDf+co;%+RD}OFFchc@F6FNC5_#N0+4O+IgQ9XF(c>gs!P8`zqUCE zMajh5F^U^4nlqbC%XbL!`bOqVLuPYU9lCMEX9wTxv!TAfY>#yGmAu@#uU@zDb=7nL zykA#T3dCi^R!W;)1nkB4?s3kKf`IH&o)sG)TQA3#O1uK!b$TVgTl5=h!Q&j-bGy<- zjBYuK`6301KwIogG3lAiF$X9u(&~RPyn~4B^Dh4hblvN|PShQgX>m-H9ATW!5SjPE z!FPPtVaX`E@L!BMgM)*g{HPAd1vPX0t*OpeD^uP#wsyblbp_xre7x7Sl81=M;ujnF zAi49T`$2nmI<~AoIR6MCIJh(@>^?RfRC6xSAkkW;c-Dw^$rLhU&|qV~8QeZYnN}+c zIu%cVYxX-4T6)AbNtE9g=d4HXNS}IjvtGFXDk>aEdEefO0J5*C`gJt_@SQ5OD6}mi zzVf5Cj9BmFAsP;mYEzTs&fQ26qi{*rV(Bx|JWKAfad8mI-z+|ekcq6ghK6SQpN0O`(s|DkbYE(!P_a*p-T%F$bm4`pLWT*^ zfsZM-lJ%k`C~AwpiGOn`ZfHp*#@8eUQi)>}_JxjNpRx8Gw4h6`79a6AEb<#}obkv; z;79ndBdyRqTS9|`psb69(884p!%x~A8XXK-X8cpjKnP^^095;4YpRu&eEnhCk8n<= z@_kl8%D0pCLMSd;m=j*BFK8pE{zmYDYi}8xM{-h)@W-sRvNFxVCfVYx>tT2@4A|{8 zvXdl)qQ&|AP>_eUIhis1np4p1D%(*L)8(Ab1K5~;NPDH}9%+Kr1W#In;X7y`<{wJm z0E4ARK&A?Tk6$&aeG>#7Rf6@Zt%1aLlr9d1^N%)0L%cD7SB&M_AaAfS zzWinz!;-QcX}(&uIv`gz$nSpLE#})PE*q%L4RBrq#LJM(Es9%$t8LoiQ=FkD6IqkK z#qgp}+~%zWg3-QxBfLtL`OUz4nf9Q>PZqeLNJDNBR8P1V=}Y_>kpC2Xy$$9_$fCel zH&SJ^8ZpQ#|H2^42V+!#P?5rmh^~g+&+tIs@k~S~MpBV*Gj&SvA0cn-1RM$tUM%BA z2S4mc+~6LZGJ_K5J!Zy@9$x*LqYyN_7-s5vi{er2ux_&`KP?l`%Y$T{u~|bG7x5t^ z&b)d2O=5gYh=a9oxEdD&p+VwSd;e(p+@#k&!nyBs3QrT}eD7G#5RT zK=d?~nCVDekoq*ye8LA9cqzB**T~WlF_v2qukYctQiA(ktGt5$Zj?Ic%3`+em;L0fCCmp?uQibtHhpk3oBwbrx55ej&!N+A9{HkU5?!Ty~scT2u zZ``;6y!L=i86UA9XnBF&lvijYN`PWa)qzOc@ARTUqnPgG03!9<1o~|kdHS>4>%5#@ zhn8(W2dYwAl6+Hm88NGS~+!Y@pwpema#>Gb$P2gKxQfOe4xAJS&z_=C$1l zh`J967hbTV)^V4E+vXZg(~A97t2KXYMB2*N<^iqMX45eZ0|wmkr)6VscxbBfM*f{s z^J(pddB9!Ou@Ocn^syhn#7d!FR!h<7s`b|nuqqy)<{kc;bu8`5zkMfs^>~O`qfo<= z6BhA}3%Tv^jndJF%~JEQUu1mB5l5wH59R+)y;dIFD~v-z@fP?>Jska!h!VhQ9@dF%~X4X9Nb?EaCXTxX!Dn z82bDZ4N-X3h$aA&;y5${(J(U%Q;qOuTt)af zWyZg2YdUygCs%ZqU0bt}67wikcIk&e9y`Wz*y5|$MmB3mL(&~vx7%-4+GIRNy1Yfs zKS$?+pWa|g1O1x0HWw-#Hg)UAl90g<4h2HZewi%M-qTmUVCTYjH&&bw!3lGtzi|BsUQnRCxQ z_uO;OJ$HF;?xSw7j5X~6-;5it?B!7&b$jIT$kQJ|-c6^ekLo^nJw5cf@Z^StHI{!7 z&ZG9@?xWmRfV9vDkcJZ%{3~Nbf0%Owc<@7K;~3C(B^LJ3ba1phem<+3p+yhdOG=O? z?8oA!KJL0?x}y1U{Ip7-h|(4~nMb%#B@%VMGnNY;{h}Jpv-{ zbiWNE&V@P+a^Q{FnRd>T!noS^FnTFA#WBoDRynX&58QRKz5{)*Nj_ye)iy3rqPJ#j zW#tJqldMhXR#&5UPN4^%@G7J=C>4s(@n|z}&ucpWUKT$orN>i9BpvpP*RL$SRf<45 zw*EKSOMb;&U0-dng1WfKx2N`A2S1ZyQ6e4qgGPmHi~Zy}75(b#y_oq#m!9lP*);A-)6-t(VB;vp1AGzbwJDQoa$LXiy6|Rt!~k!2 zE3JSL1~NDdV7AzRlJV92<`%QX)u3RuNP#0^wg?NomJAEY8!YTe2clOyu8sw$Y@@S% zDR7{_(;{Lm29{3CB60D_#>Jy<7#CAZEO$9VL_Lriw@1|>o^6F>if0}6r#PfJkqkdq z1`{av%8v}_RJGsu&@R_u?!N*3k;2?#xE)B-ZQkt6<%88I($S;!c%3dH6s9`-#DdSc za-8D|N=&;mMFLoFdh&&wqJ{1+WN>~dgdU5L=q821ODAuP{s?)r-iEv5mpD$hqH}$z-oCqwDJpMeC2EWkI1(aK-(GaD@65BbOQ z^X|d3I2T?uo)4nE;#_>Co`EMlrsHV13%1)g?S)>{1yLkKg0|7Vsg-HCYbOWAeP=Jd z4=u|xe%_<=ya*#muL`%A*$tv-`1`hh!cpM-I3>Jqar_FGmZUegzTylS>M4n8OF;XFPY(?8GUV52!mb_gt!hH`4cy zbi2AYzMv|-@a5Hd9HEq-;f*BW3kECN4@XXzJ{mR((IJRVyx{SGMxMHUvf_CJ+mvLZ z==a3kob+?#g5maLW@hIlNTzVI;?% zJ#9-Kjcsdt#Rd!%u`yM)-)R(l$G8OQJsHzyJfnmsG3aqrdSLr7Kl+2Xb-`Qq(h!`0 zx1o54o^+pe1uwJFhTZJoH_#9$CELE^6>86Jc4!=gQ=Q*{Gc`v*f z^8j{VEC)_B4$AH*Mz@z-ibVtMF8KKUGHs_8a>2AC72Jd*Q;5?OJ9KwbI5x&;WT)SO zVNLin_j*?kSF7s;*G~F%2E7!!tDQsiu3PxtFh|VQ@FoB!$}HZz72gvgrW_Q1^6Ap9 z$G~cc`_1U1gIZ~?Zz}Yq+gv`frI%{EgU$}dd46Qlho?!l%aP5qC8x#}*W>tiM09tA z7|%Thcm5M?+Y+tj$u+Il*fnUpG47E`UUNz-Uex5wxbfl&Q1B{1ys8a1(0lMA2zR9@ zAT1~Ff-_*4^`#BTu>3%0i$qsGf zOmUp8C!XoVZ|$JPqPgf0O`dQoYK<+2k^j`D4+Y>#(aYGM(D&f@eLst&(sNIbqD}Dn zd3xUJK0r1%J)wmoVg42W3t=3sY357CxU-692C?SjlXOO-TcvE~B`~{LAix6Ice1*2BwxLzR5QIbA#}xHaz4*0bFZ^_27~S{`?YM3ko`{cY z;eDgcd?U_|V8LN&`jjodQpR@d2XS@qPr@9`WKDy!2S7YjiFx z=fP-#_ZK_7b@XyI;=^nY3pYFmvV+=<2BYW_?8J#Hvnfn>4Yx$^hdMN8BgcDvE}g3} zdE>t4omclD44Geuzk-MxqNkZcUyw+2D6|wiAk2krk2^Nz*w4P&b`;((gx`+(DDXYa zev$kghutxV2jZV(&sUApcAPgv$3o}0mWj`F>(6GQvp#ZLwm`e~s0U4fl>i>y#nZk~ zYE(BX+*XP6W8_vwaEBel*&Xe8G!Mynao!Pq1i8h{xPtV%%HV0phbrxRAFq2y!+AMM zLU!BD5JLN}sjzOG&Q!t8(ADuJ$FGvzFb6x7sZ+AWnhNJ|AT=B z3_COnT+z!==bzn=?T?X!p8wbnHEB!M!gpU}F@>^*=MLg8zTHhLPq9y5v1VW1Y;L)Icp&d4*{P@%=2wznUJX%hb) zEbzi%dd$lX=3pX@FU`bM)u@4t4@U2kVDJ zKGdE0x@vSfEXiI@)8G!ZjS0mgHYdYxOe=NZV+*j{=mcXB za_kS#W`P$PAm6p{gh*&FzS5z1he8{PWQV5UWFW_(?cgO?1+pM9Q1mo5XcQKMx59{R zx%ct;;Dv0iMt}N(yheGJ(-_wmez}ubu~=J!40ySnJkN|MN$%zI;>Qmo%l|)icl3|I z$P$;=^%b;>>-*Gi$!t z{)*0riRJ=t_lG&Ubl@xiNg=*l!&2L|yT9+_d2?K_VIuPUL)&m2$LiN@PT@b3IA$&Sg|F zK6wc5J`)lRJ9Mn?K?H2<+D)ft9RexThSTW@_}zABH@?wNeM766j9b+7V0`Et=Np3O ztM-Z@vePRE3Tb^A`T*b1{@v~1V~ChQSb~i~mlL%t9NLc4Fn4%rzFRP#CU&S{wRO~=|V<0DMs_FxV8p}q7GXoREz^pjDf{Dc(T z6`S%e{5XJ~a;BZFUG~yN;1b_F4u%39>&Xj3yl)N%U5ldZo8E$E2s`(uLBYm;57WhY zDh#|Y5HC4#EAuW9-Y10jDO_lRgCtz(G%#mC#gyh!mV<{bAi5ctnWBx*$ISDkAH0E6 zx#6R!(qI2TOEO7#niK3$-x%ouhjceOfy1?2viA4+o8K45N;;jfF9UEAP7Q5Jpa9nF7jIg zdY5YhzIq$`raAG=i=-xyJg(QgE{ua7*S67ka1wBei_VU5;m6QegdtYTZ}Cy*g#&T4 zW4RZ-j(*14jF^XoFn-AvMW2&)rHKf)qEqeTM9bh*_&-JB`rgphNACq~9K{`^uH1wR zCT4-i{V~n-jO?WDBj^m(<;No_GP0a)9eoN*4H^e-D8WGXYnrxp5h3ox42&W~^b9cY zeNo&jp*#9|TOoJ~4RcOVLF_~P;4nwh$Xpa}$e3-Be~2i=nCKT+AvpfYlZkkF&+(Gu z4kxV3FRsS$iv!!%JdbJf-JDldpn6RPX}ueT#LF4MawH1J^vWPrsm+XjtgI?IcZXBo zBre5E&p1GEyj(h?=D(@$Zp6>%AHgj9=j*NPL^<@zBvOKmlh>F~&(^ibdLPoIeY)8z z#^K9)t07UsumlNayxGj&O zFA_}^#AWirueH@qbj&e;1SWM5ct5We#r&q)vN;7?Q1^#Jt9$$v?>vgmK@K^VCaxER z{}(Zcr3G(AEn&{atfXT;NK1EJP8x3Hi*P`j47f0 zF-R+NqH-y42cC|Y3Pax-Gb1sTqiDT5E+9b{InJCWnRMTi=1tj{{mjKv0eu*OB{T#S zs_FtHZ{eh8h=da2_ZMP5f|0L31-Lb+bEF2xgJF8`JF*W=1KNIbXM6j=ui13of%~E( z4#-5;SzUY&kCzAAIxR}6*L_GG0vjSfKnRO~GnYiS{O3%UN|oajbQ%^z`E=B43QO`d zCV5@0_*&p4Mzx@nYA;VBwP`l!2_G;f$M1BhQ|>Wl?_i)fzutmH zNF=llCh;|{q-Kb`RFVdX@7(ADMq3`rHIpCX% zhc{uXr|l3XQ=A=MB}cmhJk2tqU!sp0RZ}38A7{Xv|2>>0v=9rre$PQkGY^l}p~Weo z6$y`W`^Y_}=pZCu+@3@){PNK)+|0mp@4&$L$^Pr%_xz=Kk;T-50^c2N2kHILI7DyW z_0VGRPAmZ;w^HAQvIvye?puvcD|Ly4n}E3iVc5`@l<_A_-1@<@!cVm#lVhS?ZMFM< zVh;riouzoxmH_V;(yg9Md2T2`zshiakAYq4v`m&u`_7Id?K8vZJhD z%%uiD*1%OqK}HYANQR6g$T+UEjD9^u*RFK>IbHu# zo}-eiqb}^8*{#r3!)+07JCfIxzCTBgmo?~EYY^%*0ChSIbvhAs>Wezrs8dSjQH4Ef zlJk?AyS2JbKgK#8JST&vA9&Kh(-XEct?e3pk~Mng(bi>KQ>=^E9c5jxrU&el3_B&k zPTgUrZm?6o&UPZd^7gm9TT`t|)*byb_C297L)M zS>*MByfnzOA@3N->kZv{LARdJEfu;Q4c$_p+knpU*tcO<_+#3~9la6yvS0M*I_;Pg z>zMJWnMW6<)Et%HqdBRy+a8zacx);6w1%unwJun7v~||96tuxnXoDUo|HRJa|D2zU zImsHcv*-WOHeJZO`1t?e16}mDi;wNXPF={o{3Ppg3=5vEM_WViO#B5H90soH0Ut|7 z{gP0>?xdm#pb&U5MSyfy<7z-1Af5vqyDphs%z)E?bvsUA*RK>%3Jd9mcFKeEfgy^Jg9d z8>GPocGouOnQZk$f9i3QjO_@U)`Rp1pSAcG!XQL@2ee3e6aP*DZpHNw{<(qaHf96< zr32EHZjfdI@4+=6dx}GV>3Tebc!AxxR^wj*a1E{};h0Oh!{)~I2>$tjEzDpp!M_H; zY+S!i!Ou*Ij;Y`%OutqG=HuEO>&0f^G+cXNiMW$6u5YKwl#$j0Z{QcR^!AHZT;Dwb zdIImk_1qI712_}c3r@1EO2W77CmRxfNS#UmPNmnNy9Z`fMp#9&cwC!EYuaYslj#5xu_puTvy=VeBdU+ zgDs1;E1Gb%hoUUtG+fWZzdgX2xL%5Xdx5iY9fN;u!1=iT)r)e0n{iDYWm)IJ_G!4T zxze(R1Fyw3e-h*a)AggNmUS=ieq58MSr$F6m4@rwnU=K;xB=IRC6@IAa3QWQm0MQd zB*@40PqVQw0A7o0RUKpk*WkKzo@G4@+=T128!YQX;6hxxEkFY$Lq4t<3$Zi+&ct>3 zZSX7LCR|hRfIkoquIcx~Cd7m5u+=CBI2+fU55VTYdvFc@!LqgjH{p8K8q1=m(+Y8Y z@-gTP+>C3>pJ9g{@Bv(VKMtP+PQ&#HICwVjT3jbQ1)l^i#C6#Q%PIkG!u2;>@Ey1T z*X-@^0bsiR{%@!k@LF7ZeT0AT(==RNpP+7paXtPs*c{l6>-+m58+Z?{kNg|5f!E^t z`*!F^7}p!|&Yk_h4Y>Bj3MVZEwy&C9RXwlD${jl@$1@>!L|%?HaqNh36UTaUys)NK zQ(IbBT{*XOMqR1D&R^uOuN&r`z*jdYZhy7=>;ZLWyQ{0*#nmOH?#ha)Qulz8^W0?> zm8G17ev}|*!ng^=<)y{5hq*oO^W7t>E9>V}xhtwlO6Mb=yQ0orUGJ}}fT-#+_uQh& ziV}BiQPr$cM@&qgn4A$^$SE(XbI&X-t#Z#Ps-0b0;x4PMb(fS@mijBIt5}rQD<)@T z7jmkq{m5Hi1s zOo(H1m%tb#1lFo3F7lVcAnx$~;Q?w;uwMCcWj75?kUJOk?7V5UpPfLZS0!`%aB4ODq< z=QC)~AOmsDt*WW_bFP_1utt5I(^US_I)6pgEH{~L04t?-PS9s!P0fF+&t;b-=%eyV zN@v#3np0FW49XN0`zz+ES;ZZzs;kZ~om1nd#>S_Me4Z|HX^t-V$6gilck)Z86;T{q zpIVL`-ko7O#qdi9l&B&9Cwb_d+#-pRQ!O+?aZzO@Oh*Q$4y^5zC?C1~V5}%bulJVv zON;$zpo*&E>Z-bmI)7=EAIjI`FI7WIGJ+E2I6YoPRF%#uVpB_1;VvB|{O9}=N4ST( z^G0wkH6ItP`Rd?5=>ia8ZmBX0B+@rW-nF`gp=T-R2shY6QWp31Yz$|0lm>Z`MmKfstRbdGhOGG~#Whl_F*@twv|fxwOr-Ma z%4;jCFxuo$A6CtIq>07KB8rxY{xhevc2+5b!*g=u9lrE8^%#}>=n@n)i!d_a!b3zt ze%O(Qtq%H{p=2(GRElpTpS+O8bcl1MCH2LnqeptFd=r7)PU%#UsycsdQ3X052YIb; zZ7iP`;{}w9V=b;OEi0=iuArXFj5HqB4NA4R(Jv}-!%meIbI9SK)%h$s7Ot--Ev-pN zDzY#GlTT{?_?!vj@+R@1CG&$Kzq_)!8aYaa@&9a}F_Dbi>e0lS8+NRDRqn|KR;*ugw*rplbUKF4I$iuB)a5WNq_SS=x^#s%w-A; zFIa0T>p5mwh(Q8C0k%>nOdKP8!c|XW3vmemS0#;pL=nIhkJ-I?UP(2)9OLpZGp&IQ zF`+Sm1>L`-zLfeQTBNM9qL@bVE?gi{u1pkaV_qQREe#W;l^jGXuM^9~HFTVBN_Wuy zJ>!3nH{LgareO7@bsT8XB;xL=7JAE!0VSlU)*qxSs(97h(pnlN23#EPc^rO-1-_P8 zKc`v6@z{JN?)oa83B<)|Cs$l~ns1^+cog~H@soo)<@jqW=2jF{#%ILDbv{JFcO}?r z{j|Ke{BZ^TPx(p^Le9S)(dFk$?p*FDR%|9zue~lIpX!>>9%Z$qrD(1?3<$Fk!{W52 zltcjtV(2@$>RZ>LHKkv;T!e)eiu3V<$rE zU?Ee}3*x#06odzBC)C-hRM@zq>N(8qD=MKrO5!Up*R8Fdjb#L;rxg?@CrlhMCbysf zYa_R~q|wI=-tcjXT^auCYG_(LkVMTal_}l%aghKErkM9&mL8KcqPDbXw!5edgQhdn zcIF2(U{rvLPLJFJN?7-NXMN@#hal@d|1$S@j{g!>hoKXm2U}Fu5ppA3x{DD{XQAGn1~y5HUR_R`DE3!WG7vdX85pzY0C3q{xq^E+uY^C9ILyLx+Lbu;EtcBfV)z zsB5U2o?kFS!M`N!oK%M--ucuQ5dtyU z_*IEJFXy~iTM%J%Ji%egxe|Ufa@^Pn1>-%rV+-6P^E?wKB`i5R6fE^~J@Q zqLkHFI=ywkpv*Gvp*&6&xhrYEU?!HbP7K1BtuuI)Q#!we1A!W*D9MgxIL8TG-Ao8%aYy|FT;O;uE_D5U6jK(mJ&JC|o|&XR03@k@RkRbRoO4`&y<}`#Lf+j#m5iQH+S@>L zm_{paNgWPU#kAQ#)r{znH>oc@79e){38;os`}f5DA)~W^gzuL?!uPV$a2vv^Wxgwb zBy~BElsx6&1JLz zh?WmYRs?81qkDiP?^8gc>2~GAEm0@6O;djY5_vt-jJy+pL|z7v$nyY+yv0D*acO@5 zx}MQ%N*mh8ST`R?@?H%jd2xf$p^X3%+7zW-tF$FbyIpC2Qre43n|Yk^;#Qy<*5wnR z8yH!AjfYJElGKlZ$~bjwKSL`5qOI>F>o-6*GFl9Tt#8nN3q;`|$yx_=Eu#yMH+d%m zNn7TfVEWrh{SECsAd&YekdzTQ(d2Cf5)17G5^K!CJr1F*0ur6y2a?nyntJ@nCiO}n zNqq#Uf%V%3w3yKury?;i1fkKQ<0jg$H1+;|G?|>x!JqEOtX&Zo+F=_>x#;6@gG`RM3 zljC|INqtDs4?xmx$DUzqe+iJ-{+~dS`n{&wXBxhFFytfbLs&gkfAK*gNnTOcVT`D~-#SwO<~^!6CSRk?Ffb)%a_8nwAaVn5#S`8!` zgcZF36lR@2RlY+&Vh#HOJp0C}=K=*7{R&9r{aVomMXvze!hCNi?FU6knI`YKKoU1D z$TB)#3M8~YD|+!lle!H^Qb%57q%2f4ez2*>Y#`C^1|X?N-;0fJoCzepF%77KHT@0H zwT%7%BzXt?%CZ`nb_tNw{Bj`ijUphic+C(K1r{mV4kS|cD*8@QJCJDgx1pv+HxDy8 z9#+((UE;F9^HITGm@~@4L_XQFS1_McHtCjY?q7Q+@Bi3h|9A7H>8c0%u z9+SF8(Vu}N^}G=#b+n>9AW6M$q)ELWXgS;Tbg!AeECdow{{|#I{+JwN=l(!q=QDsL za-9bx{d_o(wB?;ZBIQv<&nS8cNNliMXZHl%7iB^5a znH)Ka@_{7v_I#826wqugZNintHx>a!n6?Z^%KaXwnrWwvH@&tQNZM#SkhH>&K$2s? z1cQF5=n^2&ejHF4%i9hll0OG(Vp?5+8O0X@-O98BKq7hUL{siHKvM2+fo@~ICxC=6 zs_3Liri`ILQpRXSD}iq3yc?9S_hd7-xB^J5@g0mki7u0_GT!+zkZAwDqE8fk0VMXD2PU!o5+La_e+H7gr%yNYupK~muvXry zO&ObjMCUQr7*G5Qke~Tp1*&88DUirJq^Uh-m>dm2lDbmSJwW1NpD68+BD>J!=nEwE zI8SLFMWcX3N*hqXqB-z4nwnB%q+}}kJ&^Fds<}ofk2|^ zrAjMRTF?0=j-LSp2Y}>@fkYP{kVu&fw475KX>)+U08JkO5?yvFx)os%?u*pN6m3!T z7LerahQKL#PXiL#D5dQI5)Hmm)NP@m-M`4P?&mT#1BulR0nK8X)gVtHVpk1Fq@*kQ zrJ`CO$r}I?4ORk)R-1vu8lP%v_r=D}(}0BU*qaRP0!0NtP!=|rr6>dhX9VqjMb82S znD&OEy+G5LwiHPZFxsZ*Fc3O8r1TCNz7v<2D0(pv+!v{JOXW$?BvPknsHk1O`Ys;}%0Z zAE=mVmjOxY3{9=j)BuoJ@=irh1Bs@1J)l#@BB0;1y!(}w0;d=IU7)A{Nc5WnB>J6& zZt@4tI~_=TcY&hSK$2rKkmT?*84V@@NoqBaq^8_z&@U972Q-t*xE)9|eL_<=D|%b` zHs5CE7TbWFa&I>+Jq}3X^9&$~&-;MTy6G$W%1BtIC-)n4e8IY9b1NxKbthC#HXXLF1l2+KSv@_Ak zrL-%6L`pu8NSUd$hk&HqHXw8*Xqtu~gzg1&G7vg0&}bkG^FUVt;eVi+xID(l4V$k4pOm!h+e03lK3LZEt%~dOwgzei%q{>;rm=Q+vUg1)Z;GtfFc~ zHvoyIYk{PUY`FE)EM*SRGmLHrdX~`xK!0VlUTG~#>kStXKNzIwav;(4K1Ck@RkM`O zfSMScgpBJLoeT6FBM;DeMm0dsGrAdQ1EbYIFEDx?sF2a$fTXm&iuMD&$f+r4dPzM6 z=q09|t+Yu>o2|4Opl0S2Q`;n07nR7Dm5*-lUFKbd91Lfr^>$QJ{H@)+u@gD9p5vfTl6}6i9Mh2$z$Z zUjww7Q_Fxv=lP0mR&=kTuYe?4dQ-6V? zq(+wlNj+u&iB^@07AiUbB(?1Os?qP`*9O9o_W*c*sAF7ioO668`y7|dl**%iPh#P3Mje_NOHWYv=0>>ROD(ke7Qg(Z@Qvd zMT?d1mF=d!-vLQ04B27Eyz7CaJ$?ry*4P3hmfQ(+KilA#x6ODt2uP%i01^!*D@u9C zto?etXV6hQ4d1X`rnKJxi6yTCTFqrdl=c)5x)Mgy3A>G^tAS+Xd=2OhPCfoZGhdqu zB=W8Y60M#95}Q7&v^N#~L(yL4v;JoCUJN98hb!$WASq)ekm&4J+CHE=S*sp@H&T2+ zSc0G)(}0#Ussx(LD5$A_0ur6q0ZF;rfkKk^AEt-S29hZ75KuLzJ^>_oUjc&aqqJ{< z;QByydraOnK(8}xE0Ab)>qlmO^#G8cQ-Axhk@vWw^@=tFiGDkj_D@9z6n(FJ1)rEz zTdAT(An~C;1Bv#R>@`tfG0=^y%Sxa|M(6+2MDM{slEVvB%&Au>tyodDBERxA0bR#A z&iT}!u|Nx%Rt$uY0IU55D9k7fB&96}lG2_4s^!#E|Ak+VG8zvgIj#kg9MwRQV~M6V zYU=Ma^;w_=EaeE0=yy?@kunNMBu`Y@)j%S-L}?2YEmPE}e7^@0&v_R})HbtlJGrlniNURY63UFyF zfuyxg|J+#Z0wD31AwXjL)j%=>_%l$L^KRDESAnD+w|`;c%h)eXj%h%WqZUZy%>$Ag zj{+63ysv6Xg}|36B(8O)w5Qg07>4% zihcx|$*JdjWA?a9fP`N8(LpQZbd#IDPx@Fa-PC0 z0jg$sbwHwD1JIjHTdK4>fF$peKyPvCdLT?H5FMk+w_nk>ic(!JYdiCu0knhBr9dKY zGLV#8q%=Q}Xmu~p+nnP=pe9D20W~l>03>;naL}gc+!IJ>{eh$m95ZUY!#TV_?=pH8 zNXmE*=sl(#0g}8uyPLen0txLTp!b>YbfpbazDt2b-aH`D`7cQ(@3TOn%j{&AvuC+c z(RoK1zHy3HDY{?LAAnwE4K^$7bwzJ$>c5oswW7m7qQN6ao6=qc654(sOv=!fMX5%= zzbM)Zv`Z|cv@3fWzPlCeR@4W_C;X9fyrsz9+t6kydQwpoNbLNBqLgC{?N}hu^jskE zgAqW|Zex{imZC}^$#IL)9#GnoN_$<=yPEo`(%KarZ5w$f0g0v;DY{fsuTfg5qH0ZT zP}<#!9@5ljfIeWWZP3(LHT7MkeXO+O(_GHov|j^>R&y1F6x|FY*0>Ew+VVl56zLq-n*iKg3tq}+Faq!0d}G}p1F+!P?;>!-BKfGSwtjX-~6 zbi4B1ujp|_PXS3iUI7wa-Us?S=RKl)m*F%7DQ$wHX+Y9@DwXC}+Iv9%U@6`Dx~x5n z1_5Cjj9!rkB=W8T5)CSWFsVgqP*ZQy)U7}wZ^Ef&opPDmpzdqUNDKkimH5{katulV zn#{CbN=sAJS5x~d?G#0BO-)x?hNAN{HB)JW6%EnU;Y!O^I)z9g0?I>b*)^t>|G*U8A(e6s^_N zrKX_<-!Yw8fC4Of({sa~b| z6y<4ZzS0U5P0`fpN-I=UqN(Ldt5j5@seYx+SF}J=8~J*{Y+rfyJLv!czKx>af06t!yVJ4)NB=tE82qqMz>+BEfZrR`Vr zjiw$}+7F7XZpJr~fW%)?6!p^7G^O=b)L&CiQJPy(x~66*?L0-9nmSl%Llh0y)NG}B z75OwZPigsz3N&?!(xxja)YKBCl`E>$)EcGv70uVw1xjmB6x7sZO1ni-lcwIGv{j1k z)zsBWdsxvLO?^yhYZX1Msq2)sK~b}&ZdTe>McXvBRcY@i+Nr4@Ds7LVy_(vlw9ggo z*VJ#6c39C5nu>wf@wy~MDL~HntF$yl^!5iy?XR>`6uC7uU1=GL&ePOPr43dzL{o<= zEnAUSQ+-OyQ$**biB<(lo1$pCrWPu#L{Yh>Rw}JVkzZ5iD{XQImX~G#o8Fg>oog4P z+)6wr#8Vyth0eH(@w`Zslj12mK%w*QVmveo(5ZJZ%8#JX*>^Dty(p4Sz>85bh=Lh% zjB*Jm4eof#<)EaU9#1I-g-*tcy_Plp>OY#Yl`&4@$$#cuEMA!jgE(-JmqX@ngCE0t%hN7o%(jh0fxOQQilIPUMSG zqM*>Zd@;(8pwQ`jF$$gaM`!fKC<8#Dllo$mVW7}?eKE?Flp#8Z9&3Vl-Wue*!>q7yhDI0=7-fTv+ge6A}%$=)7MDFlVi35=Ch1qz=QXdxc5 zoDfkyiRZZ!6gPIxW4Zne3Y{Mqqih0&P7xG}IU9n`5{&V*f`?8N6v`lf>3qMVJJqJU zi%uGR5!Q%(2GQve&R5b7n_!(jgJ#yjyW|6>>6&MLOb`{&-Q^}DCVU3f#CV`6c$y$? zZz4}^j0fQtJZXq}oj)It0DO+ZzwWLsS*(9LJfw(N{)j`NoIWTb2X}K zjS;m42PW`P_FpDY=ztZGN`H;y>;xV<^{u+ta2cL)2|Ub#Ll1wJtH9KqdzvOIxOQ8xqUf_3D%JAsE% z|I~@HK7oP*KJ##PT8FZ>Ch$<=&IC%`yrP=%Ii5VpW_12%0#DhT>JmpRE{2EBCY29S z$cDA$@f6f+PSN~|IWZnWKPKcN%CQ;+jO0^0QO@f`8PbW8(}^;!6XlvtlsTO!*C$YB z6~|Rw>%KIBhiY+a0tIc+!5YMKUjh$N9!;Q7Oo%n1vBuL0Je2E|PLy{#QQ8tH)XEwp zxE5&AGLj`9Qx=`AoJdK+Ts4t`W8*tePVPiGJAr~_L1pK9U6jCs)BTETu8WskQ;q3~ zevF3M3ArfwicXX%2^2_1a~MHJPFVsErOxj}33sC0(~0s}C&~+*DBC(wc6Xw*b)tNm zKq;%PDXlV<;1(>a!BL5R(}+~BvU#;Qamp~6njVF_l`SBeEc{1d(n;#pey_19l-;Go*lvKoKwpyKK|bQBy9I)pv5 zX4TRGv!!~f+6)XPa)4jXl@_t^xym@Vn7`1GX?zq|jK7vnVy!K&8&pwOTZBW9%+xn_ z3^u$lM&tu8`Hs$1wmt6ZN;n@p%!NkS5%fHa#74qq!i;sIKR+v_O71V zN=G>s$JMdUk3*xpI9f0O@Uqr##2hGe;xGD16{;f?;uto^wKQjEnRA zY(fWRig8FG9n4*dlgwfwkh`+9YL>q|-poqm0uq>OOXpP2jk5(ByCVtKN8`uZ%pBq? z2d2dmIvwyEOPW)Uvw9u=in^-nXOI!AXI>lQK)KFoeK8tYLQeR#XcRA*JHrt{GaP)A z(?p#w&S9hG)OF;=fp;-kbe5k{Jb{|PrDxkw9Ml?vg-&ye5kxqhLm8u?0PxWPl`)ze zp&R>NQ(KJ_$|~k(#>rxuQ_Xm~9-|w}PTKLwwlUJ|s-l`Y98?*jR8+CAmHy_!7>#OP zUx{;p>Ga(gxfBO_Ch$22RPusIYwr-HezD9IRTci4y4up%3CJ@jUk4I##quNyo>Mft zG?7wIYtGWT`Z;k*(uwAl?kn;*>(9wPtItzt9nvP^Q^k;90x1hXsKKHXTGf@#sX$SFHW=E|;fYnEuDk-@GsI-Je4JnyQp?=JbJ7(&LapUrgt$DzsEOL6TMF%s+*$sX=H|{Ixp>5)Pkr<76 zZI#rUCYjO=(9+^0Y!4Z#8ItvJxFh<7FtVwkIywa%(r#fW#}I|nQ{x@gxZNosCF?!v;X8e zZ$aQXkb@-<$Z`n;?gK9hB}it7EQ+`8ZZ>qN1w$ zDpr)Wuf{}g1|2}mzUAkyd|oL}qRj+6l}{B()n+;mERn{ zv)q|OC=J9Hw<}E4RvT~R8JCy?^0EiT?Lt%PYUuOWjE;Pn+3`Ekl$rv*ydul`z}ZO{ z0a~_|nSH_F#Jp~NEpX~;Qm9Ct;614*0NQ)Qc)KuVJ!oI^EnXHJTntRF zRW$`IA!<(qx&O4nC;AO0RvQtz^D~iG6joj z7d;_k@!MVP44Bmy*qlG@ni*GnrhBgT;4QCBMgh{A6n`d0h229iR2Zsz+4MCEf+TJ+5rUoPIHoatMI$`0Q&^gdF`Zv5s)yuf|7l$VqB zs;{vC?@y*jJka){7TG=YHQ37R(}E-t{#KCg26G2KYVha|Fw%>DGs&&pzR2BsP^ZX* zA(4^8@y^==f$x$Q4GC;=g(nPY%{T zl9sJz>IGZvyEcVeUq<DB;t9ij z#Ury(Ml%HV_91V?8%RIbdwcqNDl^pVv&U{)|Hig$+kEyDn|vGF&OkN5J2g2Qyj*`+ zbE^nAXXGjHVyM$Bg*5ph{qn))7zHIP#_I;Hmh8R|ZTVWVd4s>w#S`1*#w7)a+$1lF8S*@yEP68P{b?o&+HhSd)SdK1w1$1x%L>XxTyoV75!=IDcvf-!5 z1~Al;)hszJKo<6eM-AcF(=y62^(Zm*C^7XY$JC<=k%@ATD#xEdHnJLD7Yk~?mI|RR zTq&*)s?pk*w2~x5e<}UeGdXTVS^W7bBvDggWLc12=(PuW(`)eemh=WBI8Nz}Je+R9 z)x43%(rGv&Cm}r|BMY_!o(3N(^Je&cZ}^p*@SB0dE_?Z}XgG*0ra=SDnWT6V*l?|z z((v3iw1(v`$_c%?aC%N~udgxL2SQ%srK9L#=Nx9;$zL(P_-Kg0`?Q<$FuY{*JF@c{ zBWu9v4g1rFAU5U$BaKSIOUm&Vp@k)wpad007UECcl&|fDm)4-!!z0r?;VlQf&d7Ao zp1z;HL{>vonO)F=kz`6Uy7+#4`L@i9amQZzGSXh64i_2O%R6+xe`I7rN}#P<_)hXV zs`Zjbk!s3>_Io)5IqL6$qCTY4i@?$IGw6qPY@92mP?kgAQONwN+3qvatC~RN+sSN! zkp-?YkA1;`+El8_6jYJw)8}?>JOsXc8oCO@hrM=&G#mih(YJUram0o*&y1Iwy!Nxt zQyU#VWbZ|3Wn(Y_*2&89~EeJ zv7N&s3!3m7I|jUzV3Zdf?-2%@c9R@meFgF6>%L}hezgt zXVHh@*}m`%-hF#m9y1M{?X^P}bN!^pxFSnVLFd4%;A~$cn4X3b8iu(1CvCA@YH8z; z`|hIoM8oqG<19OPJN`x{^u1()+iqM6>HP;9AY#B*i4xK13+NO4M z-d-=$fM9d|idg3Vs%R%Zn7$iLM}dpdvc7;tv+X-yaeWaz4^2zoyJy>X(DzfwH=58$ zR3VfRp3pb^ICsV`x=}ykmJM&@3zBogn;AOXdEpWS3l1z2PS_-{K`W{TPce!FestMO zD}HEiPjHw{jTD^>7HTIR&oSO%&P`z-GcEt=5l_lc9-RC=!h98-S^_*cqC6Rk*}l&B zi8z)P-ijcb7jE%{TWJ7&FE9KCXM}Z6%ne6#!-vBMG5R5M2KDji_OCG?<*}8&W46Kl zU@^^4eG%UfUnD!jSG>blTyX0Tk)$R`pESV}-X6J?=E7Jmuy=VQi>a684BcwqvKZRs zMQ%+&a&GZPPs8wTmcNE(v$Mmk-pH*qrOu1oO*37x>$f{?-zLw%O+2tkfAU2720TM| z+;|}d6Y7wdA|<_ieR};F_)dy>2W}#rB6UN2#r`{g@I@wMMEXAI8M@uy6YCNe=E*m1 z$l4KZopz1r8(GY%Hv99ukua$l_|CO38T>cq(14N?-URhYt#3cDeXSUTNH@&DbBnk8 z8v8bR!&~?D=J|Qxv!pO72Ny-+SwZ!4E5=E*wpE%Z=#Al)0GW$E>|?Q&jn>z!E#2Y-;rG7%JL)DCvwa7{Td7K)LO|${y_|kk z6}g>MmkMUJOBH*o{f0&t%y;Suzx52jl=5<4tvuJ z{k|YNYZ(U8yvE*J;AIG0^o%nHG1AfUv@A6(4|oeSB8SY{krzI~>Cp%A72{S5_b1AM zCCj@xk^9MzypDCUkqhU9b}t+z{TYLO+6oFxp72g13jrw&zMGTP9R7f4zOUNbv4r&u zWnnjN%Zc1Yy5u0hte`y|Ps2+*2ed=qp#@?(c{pzHiol5WM3$05ke=IkS0T8O;BCy7 zWgSf&Zl+qJc9g&s!!|=&)^1PWrT)~q_KMwL$l9G7Sz*HQnFz<8p-X9`@E_#~GvJ)L zElW*6&TU+ghU`rCMQ%x_hM-X1M<{4AZ5pIf(m9<{k9Vhw6|j-y(cHM*ACu~ z9I$GCB#0fMA!oNkv(Q?(jY}!+Z1JX7T3PK`yUEHmzD5ZOS%)yrUrf7WaH(5R9(@2C z=!y?w$5Q9Y!xLqm?+rhkz6?~3f9uiq?NH8CB(x9e(k4&M`h4)@ME*csk5g%vZ9ckf z_&YD0wgIVRen`yBYNndp*9@FtKO0P^vVh%fZ=#~hg6T`}of={VWM>Bt*}*(i4Au&r ziW#RT{MHyt=2Y3QC3g*75<(R`eNb9P^%nbOpWkU z3d;`CbC?)UA}e?p$_9-yP!LN-Y(|fu+6NBz^PdYF*Pn zYhce$f#ztwPXP;(uc)H-UnKzO`9pzPf-2Uukk}R3GP=Q}y0l@y1b%^4~r_Or7Uj7x3DI31T zLnIa$*sI9H(vLzP1(v02V8Xa{2QN2FGa>GcCg&z*jIuFueWqjlNH<#dEnkibwxH%5 zxTXNes>TTqJnt?3nu5<7u&^e1jV1ra6kZ0gJfy5b3MrJ7&Y^+A0Zm`j>!G7CQLvEu zw~!lsf-s0+CX*R}d$|mfbQi@;bbRa)OnDtU0^9ASpF%aq($Yz@QA7*=Ih_JCgtyQc z&}$|m!Wi{9cA@fFhtM(H*rzk$G5UMhSp347bS#)BQ;}a_O%#THi*Akc(&bk{S7StK z>7^(tJ7tRB*(;lg$45K_h8U1ZfEpD<9v!(#w|~3K_Pu5b?M}r+?xOL1;A_r!HuN>S@p%XizeeUb_b!?`axEN5 zjhDAKj&NZbI&LF^8^Gi>JUfjv@Sqr`1iRCIoCcsmVPYrcgBhn6o7MUrXbe6%LBJHD423?1odyK>j8kCmPHf4^i7QErtJOi7tVUydKbkn{* z9QOllNrBH?b`Za4Lwrf`4&AtL9}GjQfbg5%fp6wTvWMi!j>EWO@3J4p7WZmEdI~&b zM8ohDYfN~nfA*H76wEZJcX1WM2Mu!6!;VU>yj-?d6^xpKIGhPq}j~0g9sF5 z_+xH|MemGj)o5GXmwor-7N7QP{x;L^gE0gKOV2@wx{avK|$0Wz5uzEm8oUXztVswYyYVlfKEhK@^H z+>a28Vuec z8_^PVPizkC`7Y3$LMp)0wEbe=+#f>i(6RXIi9EyG|A*`qU!slIXTv5&J8H^*A>Mcb zFF32np-z2xcLXgwAKa+Wp#8u#gb_97p<6CUUqCmXy_+zb&f1;To)i9dO!&)X-t>B! z@vR0UO$7?Y-s@pa1T3>(kGuAW#a>!BVjAHMe}^Q>MXv7510g4{-zBxr$hMztfiQR5 zW3UK{m`hXOwGffr(2hmK6pBUkEC6i)h7_}`wEC1gGP4}q^PJSI2rA}<#0U?F6hX0~rWLM9H;?~q_PUf0>n z3*joBLm^(<*`e|B?Jr=-wnJWg%MHBXEYrA!Q3OQ1j;M^bfMmH{0&j4G*BPjzGz1)` zKz;-+^^Z2n6J3QYx}O?&k(%uoJNO`~PSN{xG-jNkgEPqjkvqvGykt5+jV*Uepqho5 zd^5IhrIs{X^oEDuWC!Vt7_zPZI&3^V#_fW=gvO_Nins3~G-{A^Fw?Rj2+HsAr82YOx+~Twot;T3?g5A_K7Pap3%SjA6d?78f zvc+rQl$oT6nKqF3__CTwcUtePL6Ut(vn;6n|njV2#L0YFCm18C?EsKvLlZH)Z-)%&nvOdCW#@EKlaiB5oS&iw-uMI_+? zOj;8t)NOtQ(HT{`Mfc-Nytn)aZ}CL#<8ZOtUhx+g1iP8q35t*mc6jTnTmr9GO&fU* zEujT`5B~`{kvmBOc3|s!I=)6v9oWyJQ^P#<7P{~}Ph`1vOBP0<=yv!W3h=bw>Fh)V zH=uIxL1gIYR-xOdO~jRH`bV~15Sz-y+;5n~9yAb_L%rA-(77d-ycR~4<**YAm@`K# zf&J)3{i5HXH0-B1cT(-;=b*0eL5b+bhHztw)LX%8Jkq#fc#~nG<^RHGXeqS@YD1mf z2!gtj(&ds97UAL9V2fKl!NoH{%^)hSyn2eC3b5{uraVProui{+h6HbLHG3`z(ZeeC z@*iP0EZKOfVTZoLH+7MZ@dW{d7K*vFP&_~jMGOU83at|9-cw*f`g|-A9|oj)(HJd( zy>qo7fftKSR3`|^Hfu_%3TRBk-9xbsj|NyyE=ZqCYf13SE%4HH$u*L5)SqgMfRo z859hbbl55}^~){Bbc~1nq*nW8Iy3|~-SHPu!nxhh2i7ocPCf5E48F0x^bk@V?}d^& zmx}I1m@qPAM4|`}!KluM_^T2^Z{iyQLK*~_@q!!0nIp6y8NAk3Iwj0 zM7axOf5l#M7u3@bhxMb33H5zZL=7}_mKe@FMrJ8oKnmm~1OkeHuIMSK2ZD8tXXp}| zMA^5bgAnTkWRPR2s)5HTR=A?cT<;e+!rH-K!&xz4%HX@=czokK^0|%A(1dcm4p;+GLB;41z`uYF*N7On48u-w?v&M;YW{@B^7|8X4i2*=X2BTk$n4NxNy|u_Ed) zT66pg{Q}zr9Y*UZsGG5V7o)WiV~0NahPEIYsWE8*721yPQ5Q<0^^zIv@{0F4O~{iN zX+kuLvpqE!Za{G**1zCi2$r-v#XDuxsSt;04w7VtmV@1NBv?rT3hlZP8=g5#OKQVx ziC5*c%|=u#zB0&w8Njq5x{)mCrZ22lbQA`!t{OpFfalZyKN=xQ(+5-u9ZRP}m^IA1KDymj$?!EayW>i<}pa8LHS*5!#ML3Q!5(lXF|I1PCP2t zj~Ld8m11i-&Gn@HmZh(m2@4 zrVKpFIa=;pVf-f2NLwvKH!ir!6W%&T6v!*ysXAa|?TW^v{#P{i-Id$u-H3;K8mI#3 zC*6KlD_>w!if`zq`VRsdUE#d+=|&OS&6@_dh%H&i(6>k<&%?=D{P-Z7lfoVydxp70 zGi<^Mk^J-Mp)I-_Ycc_f`LVKN)1xe8y<=0jAbq;iE{z;eiPP6O-J$xz)6=u@AV+^{ z&1@t=BJZ`(?DPO^h%)5OXMI^GV>g6lEs zSY|~H4-rTBoA8hH>z4jVHui;du`dP8f8h)L1Z4;Zjwt&G`6JtTJ*G(1VV&trnC=pW zenbJDh8LXq=sysQutDL}mVSTZ3GBsvloaHI;er;fPCAyW2Z>vzdHql@tg;*BIwNPa z?TmeDo#>}vHT!BYXL6QXq{kZw^`=TtNvjn6I}+$ls`QlTTlgx^8Bp(3@=;Jst#dI>KF-3hUxWz?W=? z4q~t@YjU2mF@do@UD7dE-7V?l@Ui@Ma5KmzUM)j^FUjAD!Vih_a{kREG z<12@eDE%mb#v|0Z>HqQeE$~rQ*ZOC|fB}OO6qNcLF=$YPgkmLvnt=o+GSO5(Q9%+W z2}un}OePSN$KWKI<1iSjwzT!O^xF1%`?~bnDu~*ELO^W=wTjvY^>rDe711hMEC26X z>zq9^3EJNKyZ3*7konHqd#}Cr-fKV4-fQ=70Fnn%{$(7Vion`{>vu}P$zKjF{2q3KWuANL_!GZ}ogm)Y z`P18JI>_Emw|C@u3~sjX0*j25ZTarPb~X8HjKPr7T<{Pn+ywQlO*`F(E$f{7WA|m@ z?gQWj)GObt;?Nv-=VQ?R*!SQbafSlMreJ$W{4NGV!fxwA2B1S&51WaW=vm(>_95*C z5DuCs;ffxh|COuIL)ZshzC5poFUUCYkiSoS+1z0&2->wJ^+xnD)_;2X`4S(pVx#K; zQa$p;H+b&JjC@th+4LH}i(>>MV$i;=&Micq97Ds(K^bC{*aG$waoOpK+P! zh*NJk)0FEy1otTU*?&VrtdlG^}37>LM;GJbNsX;_;X^dm|sS@BHOrJS*Dl(jNS8`H^t@wIPv!4JoA zl|0AOjH5@JFyh7tjylW-Qs9j`%%^v)YxoO9nb8YzGR4LN;&>O@Ynh7PwTB(T0eVQ2 z-+VGopR}NG*~158TQ_s42jQ*AP!!9NyACo9j$YX@cKz5A?dxE7%aKLL1ppF7Z0qxI z%x1bbB8;!&Z|E*uhS+U`Hz|JMS}C*b+zakUqH%yM9%HgmbylCwlEwesYzJaYJ^>G_ z;6%$c2T>)jhJe!5xKd&GQ@}I|F|dX0f((g@0pPz9{^6CRDJ0>S25b52r(Y2sF}}l? z;gRwEgyJA2*z%*jT4FHs#mHp73&RiC2n*-90kUi}66Yq>-l6ZTtuNWV`hpd7!#5kn zgbzXf0Cqt-+3bcDwn)KzcyUwAn75fKj}S-h+KA{tIe6r*9^^Z}5x6o_W6Nx0924Sl zFNw#gOZ+y&o}04+m$^jf`r}Zy1NjqwfSSa;dbII+oa2KKenf79r6O8=hKmt$mm3l^WQxk98}8vcnt96}4z8hiupNpW zjp7yg()dzZX@DN@O5-FI0PkQ?r}?!P6X3g|AmMi#vvn^r5l5so>B&(Zgz0s_dO7U z@i;&GOJ1OH&#R4Xbq1tE(9`rvOw{FMOR6816ob3Fjh=QQWeUx|_r$_T4ON;aQTAVW+_k~}h<*7hD{KAjK$+)ofiFyFXG zWCc(56Kn)Q4pwebaCcshf_vo*0i1r2w_hng%{!>zmwN1yd~(4T2VU4Jle4*1q_7RzA@r z<`T(+r*;HJuEsaxcY18vzYdDjAc^T(Dv|ShCGGaU0|6 z`#S9_^pv1ji{W9ycHeF6UlI7L&lY#Q>+76^w%Jt)tRrSKNxwzjPJG&T>nIErAYXM} z1$jTsKYQVR&BZJ_$on+@KMygVBypSAXOIG6)6sXeTV5RTVZ0>D18&|H3={FL`Gk|N zJ+Wz%1|iYlh(XMkklLMCc!C6fUX~N=WfAE*M{Ea967BT5^{42-svk1TM}Q{|F+;eC zN#AX~NDk`kglDua-ZZ-HL}xxccy*4*J|D6}2dS9+m{eN$j>ufxg~QLHQz84^0Bw3e z1Ky$DKbj597E#ChVBkaLdyW}%|kVmuF zpyp0?8d4O>C)iXH@RdH_@oZ!$2CRdTma9KQ=k`YisRRGQXOYu55Qo;J2{Da0Rl}AP z{e;@=OI$-Ocn}G2;{%t|Q?(evJ9`elhIIKltMND8HUA*$cwVZ!?vi>QkLmC|H|G$P zJ%{Oe5B$?B{qxbSPeA~%JTxQgA+mIh;R+jYFh?J^4|@)!G%~sv(@sr6 z$dV#-B>2UrZTzKzf1JD*9ibCd@*uo|6Kp)55J)*c3kQKp3;CMZ{?ewoq+9-$_R7BU2e#lgh+jcy|QO3ge?s#<_s@(+N!gr$aJX*b6&jSrZH@TFG> zXbU+9fXx!gE4N&V4z7AIwv~O*3BEhVKw{S+ISMcMHhmqNh6QNw(1iOs-(+S^bux3^ zP&6Fc8$mjY>japYmh3Ihq&Gtbv~i)l%1nBtORvkM*O8toJ6k&0xM(f6-9_Q*!-=wP{K~ew zjSBP=B`EH|Bi|i(q0OJ-8v1 z@a{l_s@ZH?D>Wlg8pGJA@yKE@ET>dC_Hf$vU?OLiELOvt7kv#nFCP9yo!%8H>S;?- zEig78k!@-;zq_(gybg^e)h(14Og@7}7V4{S1eRPR-$e(osvS9ljf_+@OtoL~eY?k3 zx*cRrxKE?j2g7n67eT+%g}$t_r~O=xNpO-iet*&XQdQW)bxkkT-b=GdvZ((y zwHVpsq}drjaWuam z@TnCOquI}^n2yRoulZ-WetFjMG}@eGxr}v`6@^3F;uf1`7#HRS!xNUX66f!xbD|j)0DY*_ z5=wr@a}K5w60{E{uEM$#`_WZzx^HB#2vVYc^&GR>Y|G0g_`|Wy$O@RBkM~$buKifSeXPkdtUWD9RY; z`0#Z`@mF<&u@oZ~GF%)+h9hCap<+=5hE+t~`c!M=GLZ3@X^2`Osu$RSQfG)`#n>8ZPqB zXliSy_BS>~{4~|*cg$kaAf{g|82Vu;vA$|?LyaG%75%VT=pS1>%$g>*p+gjFZ0kk- zD;9sPCLF0>R^zXV_-UHZKen)7LP4#+z7=T7gu+Qn{P|-iS6}4EAOG0a^Z7dtEtL~~ zj@YhlT+%Q2REXt=9q5{tMll@ehv8LN^j)&T-%wKMe#Vg$WF@;b| zT{g;$7ZaUTPBWx_*aDT3LG?IFaHlf39Qvg*1nbLgjOlW?b;ybLBBZ^cf%(czbyAj+ z!_^iQIVtRM=DjRc-$cW)AC6RAA!Br=7=a#{W2IpW!BNYtUtdQ#dF=* z>V;?! z)!$TW^o|i`$fv5Fp=f9+&twaAwETquU{?0={>5z(|I(@!X*pO!j5ZxD-{+c|rK;S7 zz^tt_jw=}vHf?olMvEg2<=ZN~$mL3H0;nV?zDRoFv>7!8EnSs~_zEo>ziWk8 zBh3{2X!UwtYmHl(-2}43gl5pbymTF=P@I}AaiZ^QiO|Jqo8A0Z)gERU_l(kUT`g+{ z%!k)EwlSSdkiN$2KHn%ToX=}X5KeMX7p{=FH)%i$M6I8Qt1=EyR zEx+O-Kdmn}HK0dCFVxCmz}V^u?mrnwLFmQx5&so)#v85Xd#GX#t!SsT+7;Up)6D*| zMt=m-h}CCFttysw|7^0x`=#N^A3LG2cI?=3{^b~4_;n0Z+W=eg{rDkia2HRIDAl$K z+g30`-eP34M20A6P?^!vR#5&G7zi}BVn{-!DxV+Cq94h{V4wvyxFJkoE!601s0q?& zVF-dAwO>3UlZIzj<7x?5?~eGd8{4|j&&ED~`Z#}G6-u+(fBCh3ltK$Go?t=?Yuk-) zw5@6i6Sd%Czr1rQOlL{}FoV6|WPd|G)2As>#+b^%ec(&S& z83w=oO)a>{K(Yyyk0s+Y?WXx~*;@Z2zB2Zc0u>$h!;pOgu2`rBSLKH+(V028fOB=5s63M93Yd~FW$7FxhrDiQt8#v0Q_E5r z&o6N_w#r|<0#_o`hy7y2p8aFmaLkc!F7*XfrJ)Js$Lk$64<~%N7S#w5RihkTGwOa^ z6oEoccgxhPbSKDUMmti|PzoSv#Yp$)rmvxDiCgc>WIT(wOj~Ojd#6*-S~a#>6D9rU zwQY+reJLzh;=i`RMROv!p#+zQI1Uwc^$wbeK_N6{m^Jpx)&4nci)Xb^eHpl+YU$$Y zD#5}QmmnCq=DBw*80~?wOVyU@C(011!!Z7enHPbzGqG~ooisjk)b2Yqs6T5rZCbN;Zh%GV#y0fWIly!MKB4Gnz)24hRx7XUv*Qu zbW#o7ZWlcmW)Lk+7#r$Lh@m-B6vbg>GS9(F6(0PxAt{JvzK<+EqqFa;n@@k^QqKNU z&;CmfJzKswcm5j=A6?nORD4a!57C%n{xed#w}d23f~_eOSTJ%IxN2Du(oU_hjw&4D(vU>awiCS9;{|mS-^V zBnJ;a#u^T{?8V-KL6up}o(g=N9DlquenYl(R@X7sY3)O-(RG8Z6FetaIR(d74r?A- zk=-+7k9U98LBj`|{G;tSl?5z*9+?J;!BR$4%-l(-3Req#*@^E4|HwDzbV! zXB}sqh4UzUgrGrc4%CuE%%bY44h9oeivbNaXfG( zet(GnlYuwkw;V?ZrqDlre~LAt5b5~s!~X~{H*8JC5-F~8wux=Ih^Kzk-!}|;4d`5P9fGn^ z*Asxw6B^B9j~BGapdSOBFSKWYCJ5qw^@)N420ag?{Bluxin!%nQ2>Z3_gY~?>jNqj z+E9G&oFwQppf3xW3`AY>YKP8kJ>X$kRNEApmTvP7WA&69gmu&v`GeC1$2q{ zJ1f_X_gsS}1E~aafmDKxKpHO^CF@cN`!}FsL8C{w+Ic>ZYR(cMm3cK#K>T$Z+RqJo z%AixRX-svz1ZaYUxDjZ&pjALK1ld5ESKS7E8%Sk-3P`zpV9?MLT&d0mDiJP~K&66i z0aAXi8#Hbt+9PqD1vE?0<3K?{F9MYb@{Mw(Dg)9yU2V|4K$nTXp8_eDKLDxzU5i8T zvz0TDO7Jp}rsMRJw6*nG1wiHEZ!ys2g1!fIp`Z_dt`OuI?P}s^pbDW)1yasIAm#i$ zps$MSAt04`;g_&xA+%LMO4|*jVgCT6VTYXT`dbM!M?$;_r2gIqQh(D=akcJ7Aa#Ak zp!a~(-xzd8>N*ifX+Hug7S0C^$~p~gy3kGrx&yb6OD(oJO+dwhmH|Ns z(B1(m5>z$D)%*VfQjJ}8mYd@pKpNtEK$^BEfmCyf@?4F*97r|xMj)*LcLOQEH-WB} z*p`oV`6Ymq-+hL*$IFQ#9-xSAuCk^Cd(T&@@3ifmGX*K-UOue7-Be4}sM6Qy}Gc2Gl|8?`ftYd0iYS;+5@EgUN!#SHU3U4aN{@)NaL6Sq;Wh5 zq+BWrT|IaSXtr=3Jju=b3k)IGfHdrEpcaYkO5<8*T;qmzuc7^ip*><~PXNspE`Kp-2)bsCZ7h(+ zc0N$6_$xA~*!Zh3{;oH)TMX^{hPK1des5@ARAY_f%Rmu{BM7ARV*$`~q5TIC{z0D~ z!%v%_XMmOodJ|~5puYmC^jVj>oKFR67uP}{O>YU%8AAISkV-MBCB<&PA2z5J zXoZBm-O&ESpg#lMB(6gPmUXkB(LgH&T?(XO+ksSq+YS1*K`$A9ry~PaN!YuAG{jzm zzKo_!X%7G?=XVXQqQnhb38bz!0WB7O4+3e8+GA*c1X4*qHE43F2@AAZ!rlY4M$iv| zG`+t9Qdu4|=p}>x2&DPk2NadCV^GW*Vw^!!45|cDSsD!O+Xg*m(BnYLc^EocMaKha zdd~w|E3qvB(%2%#-;aT6#dRAHx?pJ7O9s7X(9odkdMc2nd^6B35~8Tg&C|s|8plt8 zV&eKsukNCHxFX!!<>H?9SShA!EW0G*2y?=(XzHmJn7LUEiB$SMa_7}vRmHs2uTiKeL1(5elp zGp-GW#yr-1VXLZP*$OIcr9n~S+F@v22CXx$-G+9zK^u(gy@s~YpdT35`wi`<25mB~ zzcjSX20db2dkpOfgLWC$rwwh7LC+i4eTMdXgZ3NO*A4A}L2nz^gNF8jL5Gd&r-o*E z+&txas^;^A+In0Gtj}jhFk11X-Q62@9Ps0FpvUrCgAn>?&sY%mXJLgKe(-~*2>&Yv zrBkj1Wq$_cYoJtm)BUgy;p%gW&zWz{|9-F z7u^5PLc`tFIvQ-z$E8FDP}XKpu<^91#mz*Ep=w)d+-d<%!rGW`vy=pWl$QLmJ}Ayqdcz6a=I{svO6Ob zol@H3hI(UwpAQF6hH528csJB(11NI*JtOunXZXP$7VL-+4{3Y?8Gh(WD@OXbaa}Wj zf)9%Q{Im_A+%kZ&ZUE(511R@pP_Vm>RlZ+b|C!;3j*kqW?8%^DzablwG(NTRQP?4v zTzxeo6k_ieivDS!SsyolELLK9T*`<6l)M3yFK197;Zah`?@gJU=M11M96+fbKv|wa zf%dv=@$1UGHp34+e0>1r`xz8%X`3BhsdBj8JrYD1*ZL?y&_WjZfum!l_Y9zXFN1>0)fidS;3yE|T3WO8DDCslGeR-0o(xLs zjj47mCE+s}ei&;101Cg!>f`3>M;VmC=vF64Pn>ttO*dJYhbksCV@oGKaAW^XLqmB} zV?DMjL))Ndk|7eCuk$H)MLlKGgcw zx_*L65vC4q`X!AbuI|{cX}4I5WtSgLq*!Pc7E#uk zhNYJD=G->PW(L~~7jc)5q>V2;^C2&?H*66%AkiQ86=Gkeg&gGu+zOmgaOh0D9B`08 z7#Ijk;ZonqY-qizs)ZZ8>TxJW@`m-|%9>_uN3P+y84E%!QmI8|CnjfCuoKhLwg$u_ zLmVaryPE1%Kaj{PW-e;hqaBudbIMp>AThR_S=cPsQni>vCMVN1J@u{5sSwNEPgPNe zeY=Ggb}K@tHi$><#L*vpo8HhAzM<977W0*gXN9Rlnh|o+13ASlV%W9IBx0)}b~i6I zySd;RZd%&h27Pe%(mC1Ch#ah9xPR>zX;1OBBRC1@vIqE~{dfxa$9WX%->*!bEY!lH3kwug4y(SEGYYJrmFibIuBD~Vqv#erA1g;5w9oj8 zz-J7w->RrgpG&FBz`w;-MNj&CYM>9LMCmVWPDSb-wC+EhkQoB}iqq#+bj^c2D<}8& zS5TZjx1y^b{x;&1$7H9k4uV!}6%4UfJ%DOmz!5vx4TM{#>aeZ%MT5)jOe|cknyBBva!Yl5(=A<=f zf5P<({N5_Bov=gnGrlKAUWY@?gDa8r;I>!2LC+q?dPZ+?HUs!Z6zB5%Gk*Oz%~^oM z<~YvTK_~ED>o9A3DCJgcJti458=z^Wf@Ip74X zYaShj$s#L*;o@wV8bK!R_XY>Wn7(+07xyz9-&@SJ8y>nR2j)XC0s9MOIOUoc)k7D@ z8eZ(?oI$Ji#b;zgP^9VSa4Os_N117XQ&QHQ#wB&;JB?p^KYnXArG;?w|9_mGY)w!0 z=ch+A>0=T0eqDs%7qo&8Pna4b*ttQGq)x#nDeNs#>l-Rvc*7tA1)?!{H5 zWexckgo?#RCS5GxPgu9h<8#AOwBb1AVAte2%f! zAge7C!;JK;pNVb3q8!Q3QH~_f4%4Ou#q-_16OsBld+>KNc*ym{QaWp&V4`UJ0TnU| z7eqMIpRAO?@*cm7?FP>NJGlgljhZ&t;$!mqB+N?(?&jHZ5YjK zzOX0x>&!4uyJ7mCBwuMBB(LIY^Tp{Ywh70@f5GA`D!_Fm;QVkt{-hKoGh4X$3$CFbE!Y>Bl0LCD6CCEr48Y0|!eiOod zr zWNTqhA1?GU9QyX+48LeCt+E`gN$cw}Z96kaTj=*0ISVDdI1Vs&@Q*q5U2@!hG1VZK z*gM>|BIu~Q7~;c zqsn)(*h_K5ttB)w`) zShS>-wYFbJm%I)^X{#X>j(63%?U;l+@>sr-Ui8GR5pd|BOZNL_=Cjrk3l&3G4n4K$} zj*OzGFJ#@PhN+$Ar0TJY&zd#Z!P=7rOYpbhb&YM=d&{QDjnyaC0z zb1k>Cdur{qlkvNA?N`VWErDMhtgbu13`!}u9m~Vc|F4~E zFJNHDy`;+~FEf5SN`D(nuZL)&X;fJ1t6LFwfnBP9%@`*^9p{gRA+~+XU@>Rn!Q}<` z`~LEi)<&@(Lp!z z_m|z#_is*r_=Wn`_b>*drajQ{R;s?OITpP|si<}F7q@%xcbel*@)J56-NFJyy}{7( zg-Bs^3(L`pT;h9B%5s_~vXIw7{RYJ77Ac^}G^(kaFD1Um*0P8XyaLNf(XA4??T1TI!bH7o8Yb*ObF!=|Oe=9R`7!;C- zV(p_bT)Us);}!m(ebeYzaSnuU_Xm4t<$`QUx6bw=zE(oS+x>m7IlWOCOyA37;Y%X4 zc15GHbSstK$)Ar+u9BV6N2HI5m+?r79S0jMUo<@ABi)-Y>-&XU9(McaBrjPtJ)$3M zRg8&gVlc9l7|D-e1_F40e>wapX@J80N&r5RebNCT{c)y1}w zqsO;?D&vjE*!tGm&3;LQ=_4QS7JEg}PcDi4T539~)pj%|{3>oVkwbIVz>@gv92#uB zqlfw4)3=4=LE0l_8X0}(ZE%1AppG^8bp_~n8840iQh)f>G}@kLMNX`ZeTGYYsV6{L zQp&!PL$$H?F}Qv6H3X|IYWDj&uAv9Jd5qK{ln;}_G3R*SL(P8a%AwbfL1HVZ*QcI= zey!GiAPRp;?RJYT-$TEU_uo0=`?vAOiBrG+)UPEW2Z}B-fG_LhC5Frxo)7^lCq=t|E#hMO(GS8QC zOYYIAkY1DxFH+_O6UwLk3;BG4S|NPmGcauMtv}y{+x3OvwrAER+H^JL;oVuB=NV9+ zI6kp=K|SK#xk!!go^908{Epp`JT!%{a@eiq`D|o7>eOYln0T4iN;Wu;W9$mMpyCJS zp@whb*bp=rN1fl*4u0@1zkN@mNRSWg+Ft|nKcz8#&iBw|V`@8hx8EPV33^A%dBUh9 zKHVQ!d)R}ID3J>RvMi6)b}V|y>F_df+wya3V>kH+Mb4^?eLN^~8l~fW_OjgMLTSvS zP#H9Y6EDkN_CiU#IA;s;@JOwF*%%~t%`s4fsd$eUvrzr$v_HR4PY`w;WGCw{vA2uk zGDwPVVU}qhiGjw;Y>y`JnjmrI^)7!v5K>D67zVhVUokq#IGRO(=dB$ z9pn~OfFB{DFe%pK+R|aPVs##gj6v;jnEU`%y2SmkEFMY<9jTMogH5-t2UQ@XyL>_u)x~&s=8n>0hvI8B zp-2HnxRaJ#F9UyPx?Xtu%P&vLZN>Gp)mS z+zEeZmVYMUoOPd&?U;>suHz_&2uOs?cp*9`+z&88&O{p~hha^1;x6B9>mZ=LCvn+l zvHgFC{(F44a$%KMkOM@W~3!r#3w4xpB zqZ505w|>TEMq51IimojcFT4Bv%JB+PCJRN)kqP4XpcI=;Kibi2R*4!rU z^xgUmhhc8=_agSdaWN##=x08ahPc>S_u>sk(ldSDqG<9F$3OL{2fUaszK$P(>Spt2 zxO`JyM>OXq6XLx@%PWc(PEdX8uVFbzcN5LXe7vNjV~)D{=PdI|c_z=3v~|EQ`W;z6 z3+i$TDyy@S=2TJ+sv{xxk#i3qZe2S|-Yi0Cc$qLS(o{SrV&@j8W#}d$F(phQ^uQg2 ztUn&_nuHk{N$8)!yvj%Y&Cl?MmsC=H4@q&0u0z8+J(-#v4EI;0G!cJ{+(^zx0I7F! zhl;e=d!0OpbwMQ2Dzt&PNhNJCiuCCB3%@S5O9PO(*gh*>f%{%$c?|8Cc9lJCU+O!> z9Y@EDN2eSj-lE*Lw^NZxD-xA*+RCm3rNcPnTAKIV&mAbD5onBYg`V)I@4iRSkUYxv zW?s;KBXD)#D&F;@Z6}lE8`rkcH*VD?ZT;Sb(fQJXozV-y+T$Cyi4B-tkt2(MAv?g`I!4Z^VOBK;WuiIvdi2%`Pw~d{)9b?yC^ZZIbJZW(XTE zqy*QG1`|Ow3X1M=cradGaAaP-Ekf!Gt`vqph*=UBYFv_oPb%Grj8CHdi2WFo$boSO zcezQ3-cp&3iK+hAgYgYaB6?qY2BI#pKcoGA47WQI_yCBzCwv`s@Xmno&Eyq>lEJh* zNWG;|iDi)|7{*oVIUEPLJ!5H?r1ly5+xA)(Yad;)DBmp(|24uf%Gui)L5_=?q$bLo z3dQS2mvbTin&o?N^2l=g#nO%sSO3QrE+B^Nc^f3Lq4>NFNNmu4 z9Al*6%)@z6TzzFIP>nA7?>M-N1reH5s9DG4Jo@ zOc?|yHZO~UZEO(orASg&+82F~Vb(maI#-?>ugK97HHwiCJrMb7kXjiSx#eDFKOu63 zBpXT#?2i*yANgo+F#N2ef5_XQy)WRqr*~WOjDY_cUq|dX)FS;};(I7~HZGII=(%l} z@4@E0;t&5=I=aW+i&^pL(yo$`o{#n-6e2+Qo?z@PPoQI0+mkA3RBBedd32DYg-VWo z;tO;8M#wlOzD&snuqirz6}s*ruE4m~<zgYBc-qNDkw_dI<%i?s-(#Zh2IU?Kb!(` ziTz=~{*)!ehO69z>#at9=zbq&!*WkgiT|*#;};OBHg@yb(2`#QMsLo;uz1FpNRjWM z*?t)VchK$z5Jp@NLYs9oe4Wq^gO(u8mpg+K%$;mFYGI81LI^aQU-afkJ9F!XVe~X% zm+$uBh{V@PQ!Rll5EE0!8GiI*v&W#(nUh`G`Fg|;b(w(<^1TxKRVgn@g4^O)UbWNh zoP4rH>-nmC6EegfW3`{6vH2Ecx;gWL85l3Tgl>;n=P1GVhy$^=J!P?XvI4PBvHbEn zMl}KZ!%*DG!q1pdoqt84p|$mOEW+i}EMTohY0b|ORrLv`ms_L~<%Q2+k~j-mxZG;3O@eO-)9AP_?9MCif1Su4b0S7Zz~6Bf#-i zTIR(a9c+7D?pShGCqs#xQ*>=|FGiY2|GuX+WFfwOrPaVvd=kKC`FK|)$^^rtX8a7O zhjioP%f~n@f7K?m-Zp(FXQ#jinj2a^FSVa2 z?)nu~QU>+&3QFu>HRG-COYHXoxF8Ab|LBsb|C)o zmT_zrvhU&M42e2~+e}5&>4;)_E=PNllOfpq?^nLbY_GnAkQt5!&(|r#0p0h- z;Uo=dNhL=?xeX7$!f2MnJLgjk!t-<3a=yVivF(0RaYK>I^i;E@vy1elwQ>&Vc%yeY zI#&B<^O2;&S8&68-^5_}IV#7@Tnu(>?>B)*c%LteAID0j0~NQg!XzV7RBr!;)e;_% z!pMt(_{?m~xE@ADLucK6Fx%~-Fh_kDV*|K-m!FV|QDr1n*IN0pfEk!HW}Sx2rw6qeT3oKzl< zbt4V2?VeEh$x`1#Ba3Ti*&~Czu_jows|}spDr9^c`XHx0K)6$_)g$be-5iSjJQobm zhV^+mUsZZQn!FkxNhqj}7@Yn!AjiLwpB&_+AFm_b zQ;IlnB=!XG$olVAX|6CB*z`v>GIf1y6%f+tAN_5 zv&eO6G*cPS^|9oQD@4W^13k#s-bX}EkmN$XxH~Oh(kM&PqGb7|qD)Tc=N)MsARO!5 zA=EinNGGF`-(^^5y6>!j)9d|+4bz3f-9g?t8r+~&S3kF6?6HFqxCIhT&4{!W63zM6 zA+$qo>8!(xiKYM8?0I}jU;(2J`#Sgq+GX4g#%mZ7g9f1`Z{%CzVy@Fu%8ksEg!ej% ziAv}S<_c?s6oH1P3uFmf_R$%$$j*oHogldb&9S4`4B2@BDn)WPTuf;t`Qnz=@9`1} zzgBo88O36tJ3!M08oN$er`>j1H^;FTcA7h;VpOVFoM!wV=}b9v26;6V5o^8_QXW@L z^TA$qW*y>oHG!Ft(iv8jQeI}?&EaM8ImuUNU$EbVKReY(%ZK)~@b>c2zGM6AD7D6o zk6l8Vf2Uet!@^OkMR}KulQlJA)K_Fd+y1^c!*aqzi~-Z^bp+;=Yhf+D28MAP{W!ux z^SX59L2favo7xy3W{R;z9;cJT{|yEV1q*16H#9aaZ#34x!5b#G!!VGIs9S56)}N2V z2ekg))CN1sI50!o&=x$U#KJ@j7Sh}+T)rSYOyj~5cmx-wAauAU#qJ-;!J`5hzCR~E z`un0t5Kq3G5EWz9`9Q^zKx+b5cEu&4^hg#2S!aU6eYU!1oo;AoEK1ur5p?l2lpBlgsf2A)P);jeOR zk~550%ogv4-%;YDPmKrmwQ0y*jAetRD_lx6dd1-$5t+GQCHVrU4&e;7p zmDf=3YFBHz9%-?EQMIC3b>WzbPU87*)=t9)N2}^_loaLUG@>|1vnjjl-Nd4q&hJk2 zbbPqOMxL#YzWCCgR=#raTkAF!U2_So|L{3@sfWE99<_9825L z=cL?lIK;acd}w3ZwYv>LD5~dZys}|KJKYAi>o?7Yv?o12y1Q{O9W72eP9AEV+&1tP&y z?&NO;e)(OWGjl(F58(f)zz6Z$fR(E8z|HvGj|GTgVE!J;#_$5z!iw1C_`d+K0>2ya zA5EG3J__6b+=JhD@V^=OAb#hg*Wv;0O8nC1bvrOEjf};T{W{lKPtpq+D(W(hxD@`VB+- z5s-3u%Fv!O{>~fZa^Y4iP1{x=<@Y#{#`c<_y$_`P=3-noQ6#+`NW;Daq+vN}S9GkS zVP0!2kkT$SXtr^^#?ZbGr2NK06E(#7Kq|`>Kpgyft#29Ee+N>j{?pKYYtTO9dIU&w z?K-RlDd#Yda$aU=Jlv@Keqd;i8uXk&e=}$h>Wgy815(bj4Vq(IV}=$tv@M3V8%X1& zm2KscG_-uwEu|F#slO(magrM`UpI4dlACuL5bQ!YO;=w}8!3Z(olJi)b?el<{` zNKdQXlLWd55ZqODW_4kUQ^%+|6Np9F#23-xLAvOSMD>Vo`fyy$>pp${r z-+6{M$)M@R^ z45VSdX3%Ru1rp+fQ{51&fiyPS`7RRI{XiE9It(;b(CMeS{+B<~k#P+hbelmxG3a+dn%>_VMC;yK z9;5uO>svsVN*u%BJs{|8py`4x1yZU01xWK{4-o!A`a=d?F~;?`(xAJ6)Zfny+6<%; z^cjDP&T_2?e*>sQIR6Mp!#)R8Dzr25TwA7PKq}QfAkEzq$GSSS07z+f1F65wK(mC) zi^ks(prFvcbT(!if-VEPOwdZ8*@Auoq+E_Y$Cc_FgT@1CipmUasX;Bq_2)p!zRf|i{$EBVqE6|sRWA+YBuPyp)Qx!;jTYKX`w;GOwMai zHV`ThXgP+KYY;jY#}&=46BZ4egZ#!7mCT_*)f~h$C}&Ek@lG~~?XbGCWmMN(2JJVluN&F{ zgWfi-2Mz55gAN@}YftEk}EgU0eJ{UU6 z|OHBh($kfOW`3fBQr6c2KXs{tv>v7m5GAVnDk3RebF6xyKS`ap`pIXYJfQj}s) zxK^N)bgMRSKnX@sG~|(=FIQ8Q{kcKS4TW zJeN5kj{)`btb@)=F%a)X**aC&AFDy{ksW19z6&pvjX?$RPD&@tZ zAAWLh`C3B3(riObqf4V7UBk|x46rqaP~oM`>3&Gbv=<6Wbz6oX`VX75GcG=D11Pr- zpxixx^1}fXZsgO)gyd3o4e;~)01EdLrTEYcREv|#nqzePAj1zS9!(688`p6e z6!IBpUy*Bw`naLS4xmgLKq=0kkTcDRrT7fAHpv!g&J}ag{1Eb3kUnng3oJp}w`H3ikZS7PpqdSX+x=F_Og>Xi)ks}Nx z7RcNe$E~rgpvRsXN1tJbR{Mj9)sCC z%AX3k2=~C&Sf=kv&&5THa2YAgt2Hk98fuUlvRlMzx+qdb`+0EZeZDZOhNRa-;0c!g zXb0_bv3r&ok7EQ7=4ux=wW>8Y_|n*6bgu^1=Ng(tN?6bqnV20ar)H1jY+CemZ>d`( zUv8X4HMA{lbRtSwg@Yz2LyBhNWN35mxl>lS5Ema_`WwHaPc?vwuOE)JG`~Cr`jdv0 z;@V7`RB&OTdP&(#y9mwp7*XYcHq$ntuChnkI7oFJofqop|GmvLKjQhlsZSbru{F?U zS^=Cs9pG=E&9u4jHy&xI^C~Ya^;pH$(QT$howTY?`l~3$@j<>O`A7ERCq^+=^RDKZ z$XrO>dZt~Ep_XC`)){Kg3!@WkCU{9ttUH0Dpy~FI&Yso#g7(W>=!*kOt8cfvr-(KX zPJwk2jVBjw658xJf_zw6O3CBcjKJ0eShw0z7o0GJrEg;bAX3U zZu@W&cSQ1=z>-ecvlMCfJr+9si2bJ{ze8I3c6v|8xf;*v!O=^ui(DZ4j5I|ln^6x> zB{S!+C3gpXb0?DXbt7+d<>^NjwmlJhH!GO93P)nz3x#_n$vaC<|4fg5_5B2U)?@GD zw9cRU60q4Or~DBEWAD2?<49Pslk45)S&kcOrpo3C-upcayBIDW+sYs2EgqVNvT zG1B=Bt=~Pg43on@c$oXA;y+8xWV5a@E6NxK(FI3W%OD_ zkP6FPKs7*qK};0}o}kf>A}kG9SU3c2o**ie^yC@U|&~auwb-B32DG zaNa;YWKO4^|GRku^)vGsIB#GIGoOL;2DanU5@&dK?S{gfuN^Q0 zsEyP#H1zY+7D<(|ghCJAn&D^QoPeYII#x}27;2#X>Dq7u#~^8bRsd&=AL|!6hI^?s z%UfWv71nIULa-s!VTf1*YqqWj4mahEV@LC%QKj+LQB{3wt5~NUhS5&A1!F3AVDXQ} z6jKU{zT%fBHKsTOCFU0%wiD@^M@ke*$1%l7_E>lp;{X4TF~uIl!+TrPpQDW_D&b)z zzUQPr94n-2Bi-0G{T}`vWQE1UneFF|DLxp$ucA2MoDp{HWpU|;1{S)(h6WZk;tt@}dNIg1sGiT?%zXg)^hU#N51gu!zU* zM|)9{DE1tn4@A`YF-F3LN8)ihgc8+x%{*WF4$c>bV7jhOyv5`E1kY3Z_FF;-##TZA znEUY}I^a6salkw$c_x12F$O>;HzRxPzX#*%@}h{2yT><#65buaDjEzsGG2@pSD)&f zI}7DC+i%5osDMR3q4TPwO3=A`_36%j-e5eGS7(2MGr%HH(N;#dDj9^ewq`Lh>sx;p z^dMw6<_E)vRjN?D(eH}fX+%aE*G~ZJ z^2Fpva5lq{r!2e*>4ofN;qiISxfR$~IwJ_XM^S{WE%8n89)KxOoDwg|YY#y1n0GS{ z(mmlVi|z217k$w7NGY?A8$*PVW;9va+wC3lX7@r%&r9xsV!31Fa{JA+d{e{3^ycgM zPxz9!g5lo>{IzfWUL?l;JCE^~AcQk~#o^jKtsT%z z9I3;G=;T6drxrPqKgKJv5dNW}XhLTo8oV4RA$Oz^2Pio~H*D=@wQ{;88g4KKDJGzx(KrZ_!7kzFB|8DZI~uvEFQ|Zm8%;+Yd`| z9_0?NtF~?nAr-OM3r)OZ1GFU+M@0<9am+?qSH^MlvQQC`d%limaL7aCV2c)I0`Vki zJ}J#Emb4$zys2tHN7A*U<5iyFlIF;11}ppf=n)^%3~57I*Wbr?;lr&M!T4$vPNP2* z-XDrzU%-P^>v@nn!~}CMsM|htV2CT^z&Sg3^8AdAX_X2jWJayNd`a^`MT+y2>y^R_8Z z_De9^khnW9ih@YXTjRx664o9;_8j&cEuQ5zu+7+!Nc%n4=jC{wX! z+#Kc?a(U0P6N2H;C{(hMC(VeB??(2Gw{bLSyEj<0z3q8NWG7vSRa%pNElqkK=wv2) zz6w|>>nZNQvGCQ%&XV|dnEFT21zK`ssT60Q79=@UH2s!l48|lI&^JQ*7*Bc!J#Rry zZ{70i;LxrPIdu?Uv9UMV?-|cRCz4>U>r6Z|u zdZWG_y;(^$WZxxVeMb zVbk?~n(1-)*@P%nK%Ldarkin;G-n%y`Vrj1s3{ z(crA#4i)Bzp;)w3Mhu(4fFp(=YVyUD=1>XFDfa*rcQxc)3hTzts1;#9lzRnCvpA+`NLV51w?RfE* z#K)r}!eA6dgnl7cD&KZUf3PJ-TK2N=j@bCM9^(0s)hQC#pF+G0Sb1nVYQCR!mce$a z9kH_TZ$j~_f|B{jpWU!RRFRFb1vj!Yzskd>UIY&X5OLzEyVV#%iErkv+F5viIppXQ zn4ass-8XA{U>v$KjI~JE9rt!6yirEDi{{4WL%V3z?A%>!dD#3u0k=g@NC$_3{(fdB z2BGNaywi)uPx0OHKDwO}c4GLCRv+hD@0G+z3f;!(swrr;AYwinB6bgEGw2Zz7p`h%FirMc5ldt1Iq*ndpduIIB zZ$7peY4VMW5{VT3O;u_#C~6QlM6+?}@(Afywn_*zy#sKA!ZP`mgq7<>HRH{vg* zVmQHzb8-bC91XYc&f|25qrwV=P7M!5HPAa@yoqdQ#QBWaJ}k4XD7*r!lbINR#*MiZ zHrD86RSKN4OE!XK&gG$(Z9&aba5IuklmIOar2b5R6!2g^!%|XuZ%-zM^0EI zuN6(yak93$<+uo;Jigjr9%ZP(wwy zGFUo-mAy|nouGbIV1SlQh4(%aOpM$EozFs7niVYisO{TvM5&4av4W6;B5^dxLJEbU z;i2$nXkd|*U(LQe;eCf$iv!7;lW2<8e}ER1i7E&@f*=-Kjop%3Y6-z8CcCc?)$4sU zWxs{c6Lv#-A4QwbBs>Xea&l+dXrRQu~dPqBni(V!*Ii;+By@(TlOFv~dge(NA(VoX~EU+HXRHz_<_HK?i<8fETTBV)F_9GGg}K@-Jwq!Rn7}wjc}a z^yWY1yOm~VlfxLNvFjSdC~-cE5%-&*R0>c*{FGMJ_wvN}NBJfN%)#aSlEn3%!e`6v z10^`AKCL|b8d?^r$c<{sj82CyPt48t^7v*!ndk2zTMf*0!bVFd4|d29tjyl-ThIF# zOYE2AXlEZL-&%iy8v;AMS)PDBaxKP3IPASQGPxw~{bq^X^AT)61$&Biu6m^$laz4> z#eGA0xFq^%S$t;xWnphr!XixD)1~&G0!4jm&Ym70`ET}~kM{Y3+lzLt91`46YUizW z3VhY8Xhzr5JU}pUwU-@lLAm|38d|{%#Qa^z{$0?Xn^(-#2K!E`?VcW8c>zwg6qdzy zV)DGhTT=Al%ByC?y}!g*_%%#MZ$xfonBCFFhb_Lmn;(#&5DEfnM-8w{p>3sgqzKdYz#Tk8t236-( zPzj^~&qLXB;CUEtBfNPn-oQr-VbY`55&7>cFM-Jk)bs6_((PaYBUgVV?aw$^OU<3U z&1DNdAA!%#*2mI9ui6eB&&O3cS9?1@Tn*!>dlFY+t*GRi*|pvAY)MYpUUU~;yW-Qb zB7D07htC4OyLyvf!WdQC8IWETaeWJ(YB||a(`~+6=W?RI1b>|VpGthlxA3XtRH4af zZ3>*GxBus=ddEEUW~xxW^|!DNotJ8d+0rEgCS6cE-}>w6=NS6wW-w`?k}Y7;-7Sl} zdimBx{&UK4hnU~JG<^Mkv1K)4X@u8ZJ2=#rX7 z9=5Fcf}l&yrD2TNiA|vBq~DYn|0T%sQoRsC9zpOe?40*veteLo2d-hV1d~&pPOt zGSZrY5%olj$j|P|woYq5#u{BW1b$B%;Fs~P>H|SWj2wW!jTIT_c7Bt78)j-PcZXo?WM{{cWeU9hq z^t&L>Rq1!ZBB0ZROQk_S08;t30qJ+a=YW*+1k7Vp(%C>NX(P}X!sS+jzH88f2GNd_ z`g_-)K^PVIB`i;3DY_m=W&U>{mHBm`GsWNWSXfssg$C6FsVs4zG2-uM20aR-x$!=b zrlS!9v9rYA%?5G6reU8kXlgc2kcz(`kV-HQNV)t9NaNiFq@~5vPwILV&{zq(3`k4s zXFwW)`xiCDL{uXU5e7P2Ld1YH#3tkVs6jgo`V)|ruszR-9wX`G-QpmPQN z8A$!TWzghY_f*6Tpz-4GQK0h$Jq^BV-u7Szr8LahkJYazRwFVsqdc#c2DsjdUR1)J|@VR$kR zvOpdWbpB}Hg6YWeV#^|aGQOL6;4;X=7H1(nn&pm#GK*r5`@?BZCX~7Mj@neMt$5=oIHSXP6mbB-v;jMEX?rJy1c5{6tYFm z)8L-=^*U`hVx^5R(!FHdiK}1HCCjUtu?wJDAiXp;HQrRy(uC_;TLZATuuRKEc4DTz zV>@3Y?KSff)0P@$j54P+3%N&_ys_mETZNZI>SSY|xpHR1@~%=l|r}e!FaEaP&=$T`ibpUIiTOn|%n?eI%;? zC-c?sUHB1y{qAh7z<8xH1inZsAGZJ8D{!sam&dyfV;m3)zYvI@`mGu9$#<5%#(VOzI(iZT8=TKzEzF=506_UNI){B9#mYn~1D&J({`Py>W%$$oQ79;&O z=FbMM(z!w{KMA5eE^;qB%Scrsiz-hc|AsUF+zj5e{11qtDjR<;%MQe&EIq`4Ipo|Y zG4-wn{Yt&v2uz=B;jLxQFaNQLYGc67`0 zmXaFTF@oRzSdc74yiY4 zTqLtntcsb>+Z}brcc*)hFiaG&w)k8y{97(1VgY5>0gX^rw{|WYj;%EhBNa}q*J4flPs2bGj& zFr}twS!gYxd3fr*hQhbS+-_Yb#9BI*2Pf{;uu;axW%r4Dmm#Ak26BCO^<-YTQ0&~f zP+4L>6N+Ev58BV++GyW{U++TDvapA#JG%nc^6 zKoPL_=qd@8_c$NM($AAHpvJ{M4zFpOuL3V2zDUl>=c7CBg4d6p#rjvMXioO(_F#BM zPSGCNawPxw41ZZT8|Kzm@(z{Ypc!a%ix0l5 znVSo`usjwDCA`J3MeYp^nlUU=9wgUelTMN8X4l+TR$ z$p0D56vG!|TNsRwh;FsP95G!vI#Lvj9~-he~qKJj~n4Yd!7i40dx^hBkz88ywn0$p_XwHZNT8{7JE+G|XmPoQ* zW%I*Ve5k#L8za`iBl#!40gzftcJ|-nwkinCyQy#^a9XW__Ckl3wUndN^#)=dPbofp z%!pq#y7SpJ4N#L~eIt&;&zxM}h^weJ*ZF-TuJ=c8&bQhwfh}ymHu^}x-Oj#r)IpIS z-^%>hT!GcsbMXNcOP4Uonu}sOuoY{Dojoh=bvLp*`h@NN+??8 zXX-Q>&7h`an5ol}rp!7$L#l8=IT|3O$@0MLHoBuyh<~zg#Fy~17|E&1C97ck%KV@m z_ zl+(l2FltM!)6)6bscoH+->=re$2bWf3E(5(3&qw{t<5!BqqRJg%I~}OK4;$-cIG#~ z$LIgQpU=5xowe6~uf6tb?X_vh(~5P9y!5Cbu=YM~Qr`0S390dk{w*TMWaW9H?XYUz zH}8;?IFPJ+au?RxANwIBir<`nc+q)TX(>HbOyw$mu-%g$p(bnxBeT^x>uN-DtLys` zzSVf3S(Fl6_u5uP^PwCTvS}|$ZE+AAp-xY_e4;gcHGOU-y}5G+2B>1>A$wgBgsd1Q zj-H4-^3r;o-4zx|L`md#XP(dhVNvRawA3PNh2XBF$k>875vZf1zeSrE@ z!pvm?Pabbbm^<K>oWvViPVy@f*o6$<>o%(bdTvlPo}5RyOY%x%zY}@Mdr@GgcRJzxqujsd{x`JjAjjuD*o0Z!s8^(0?o#C>M zweJBOBISE!cWf)}=e;V528;&S2`e6u{e%v%b5O#W!+4S_#AO7xhOA++qrs?v!m>se+VkTHAfHmW->r53wIV8-vR|(xgg6 z<@J83-DcT5o?5q4w(D|9iXMi3I@y|&yPHB<8j;)E+zmMlWRVqW&Y(wom$s8Ml%-H7 zA{RBHSA;$h<*`AOM-YaT5}H86?XKWfDM+3i&jq(p0HAx8iwj<5++nW;G=H9+8mD~%J?LJy`h9fpGp9NO z`c^-7mn9A|@r(*s?WXhfxJruDRc)2?uu6~ZJgVa49@3^n9mR>q*Hw}MXz5;jW0IE` zC|FU+;+tWM;zg8F8b=&po0;}(wXIf3RB2NeP`A7H)sUA;=TFk6@<;Ji(w(nHzM*OQQ<+K9qoUkU<-Fj$OdEYF z5c0*MY-Q3ThMj$6#TLHNqMXYKL6q~YG$1A_Kr9}E4N-4_zDMZMRY1OmsQY~>M1KqQ zE@>TWu2eV2^cVT#hr5Kt7E9_(GA+BuRb*p&%J!}Ln(f{tZKdh*!a(C|y5p5t`*$sD zS6x`Ou6r3zr^(MpNRa5}3qy%+zUT-bIa^gq0oJRbEWrKhMnZsximElu!$q|kc(h11 zeQ&H#X&ZSIPZjSFZ|jL?isXcIrSqX(M{UteT8jc8raCV+U0xEf z?vE6GS5=hLA~R51w4zo6XeBNx+?5I!f&8m(08#4Nk28{Df=FsrqnfSB@23^WiycV* z8S=;7jHj^UEuyd&+1QJcR@e!yM?7v9K~bjk8dvWYbM!-yH2Lh`dYV*hmKRBsqog^8 zwSFtT#<(oaKt$rwjO)kdaN6zAi^T9sdY_?OXyKW1w!e-2+=Sttz@BAo+hCR%k8S2bI$yx9k9F^7 zWWe6Y!Gcyf$s(d3#vS`7DoR3>Tj=U?AMq4QCG*d5aZ!gf)E=D4V~a2Vxe9i}%w0;& zcuuEM2aHg$GpJ;#L_0~aizg`-0o0*i*$#w`k{RNLYuDGnd zB*}L#wO$G&FkL5hU4cn2$?CE0+91W$bd>shTMC=VWH=%nIYCP`s+zT0rF&BKD}~#3 zj-&z>dB`O3<@gEUymFO_wC-vI0i-))>&}IIChE4eh)-d4Tli}eq4%x$P~Fme?{HjH zELQ-id2m`4wncD|0{ElwU+cy4rRXF{x~;^|)JQ#^g?8NM*4-n(DUOx9KMkMi47Qz5 z3Htp{2Gb6fQR)}zT)X^cN@Uzi)?N40caTQKwjGTt6sHOc2xCgtl2})BszOL}5Q+}o z@o6%l^y6365Eq3Doi8t%^A(LL(9@G+jeak+Fvs+(!o24&GeI>dP`cT2(+{E&25J#0 zEj8U?YC4`zgnl{Z(fWO6q%xvKQUbl|_B6z}RDPb;35-YR*1dXHMHw9~)u5ZG2qGyJ zIbhTFAb{6cY?p3{Ph!X|fk(QnJEe0%y?GVa*PaO|(wUbuggNJnM2as%-Pw!BPna)# zeVOaaS|etK9X9DuGURRiJZUo`_2MT25vD$E=68)G>yXtVDlDqA`zL~Fdir@r0RgK` z@+1;XdPv&lmz3c|Ik%>IY)-A^;mcR03<)f%lqDMQJ8cfGRcnmjX&3vQHX-Rwo1mmz z7|_d@ATd}B&*iQ{-BTsfO_$szdXl#5)*eTh%c(JaE193}R=M^B54w$1IESB-odyv@ zvBB$r$c8_{jE@ph#`QB<&iHtzRG3gy#%405*D>p^-|N}O?P)lz|C@>W;WWk89C~j` zv2*#PvhFqgiG;c>Y6y}w&@_>O1qG=z)D!ym!B2%Thrp$hqCk9=Zmzm|%DUG+i`r`Z zW|01o2bJIO7P_)PtXi)lp-3ICRo6(}CxV+pJY<(_mP3QoMvGcSN}_@+2S9sc-+3r7 zJ#UCX?CU5pYMtMx?bTB~zu zS@(#jzpOgPy7w^vR{Happ4gqg&#rK*a*jk86OYGrO|Eym`ALyMjNEft`m*A0(f1N> zNGgguN#hHrT5CFyK~m)E+@@+=^o?t-fEz{fcw)+lLnV$%5-A~_ESk?HwYK};#Y223 zaX_3yMLZ>nFMbKdvmuh?suZb7u$RONHzzKeLDJ|@zArthT3P%TWZ55o%$zP~=*n%U zTb5qs_=(!fksZ6 zioU{6Zo*Gc{GhLI{ER(@ACft$SFz75?v)+MrMjc~BtOo`y*ebq80>|SnM(0JpnVsJ z??mLed+|8rD?Lh)6eg%gN>YdV)Lp^7Qh++TqNGBB$!Cp}A`I@S^oUF%b9~=Y6DdV0 zzCz+FH_aEf+!8Gphp7_M(Tz=tjzdPH4(Z$#iT{y%62%gmKHT$HRre+fiuncm`IZWw zv?KU6@hQ!Y?SQWEi$H+md8TDXy1kpf-s-r9l6UET<( zYTFr4CO2#5JXtg6=49ra19NWnnKS4y&B)hM{p7gDk1*#PnA7;lJ%%5th1`T6X#{g% zPUXk1Opn2mVxp8Ls5a*adye0e6aWl12hP+1=t@uWDA_7VP*Zgt!^CF7mCBP}alhl+ ztGLrCwh1}ZiZiV+wc^IViA$ciP=8A0#8jiHw5y!)YGoLiGPn>@+tJk*L7?c?Pp_XW zNqi}iT3(#uGZl;)i- z^9mBalu$4tB*j;{P)HIbDr3hMCFyaEOvI&9=!*~~r2n?83`ub$$;$XI<(NQXeIjLi z-0~sg?jM>Bp*Nh@BkTq-)GQV;$6CGWC1v>2M&H9ll40f_qDw8q&tg_8vW-*Z987r38iaV#`Nl^)wkNRh7}TuAozH`74r47Sv+biyZ+uSDsgy zQyB~M%-EC1h~}OC)7p9UA^uo-?#N-q^aH+M^vU%v4!wENn$uRZaaceDJSM=a@IV6F@DW zXIuCF98YR><`Dp{OK#adF=c3}_Gz!4_*K=jhDqk?Yp52s<){{x75ystq%xN4TB1)O zrB68oIeuy%kvg&2YWhG;C6&A6GcxT^yiN@f%Z0upUMT}9FPGl9RqX=AYpAb?^~8&e z*Evt*U(`4W>{ss(kF@J#Sh;2tgT}Rm==40m_zn8wzZ!Ubw0S^zTm8uiGpgoJ8JA z*-JA}``f4~*xrVC%LiD-+iSaaA?h3t2u+n+omZ9B8F7b&W8thRmsMp48-t8||K7=B zZ6a-dT=ue0V?eE@W~6%cpx9Mej-9JFde{$1-eH$Jywl@X9wn5*Dm4Tz&t;RRY(~?O zwL`;Y1x?mZI-TxB`aOLNXSeg3)(2=O!J178;&ixOt;}|n+q5(~qQdfZn;jt9RCzs& zm!=`mp0s~&wLUCf)E>UoDl_K4wO5bZL`ikp9{)tViNEq=xRrZup<}p(Jh$RwxD|_= z*A!{kgx?~%0jl2FZ$jf>7zzhv;auyXl+u=ULEnBOQ%g*}?2b4uI(ty)DU@;5Jx2*k zi9gZPc5lgXrssrP4rN7;b9%<~(U1>iP0o`EUmdoN3My$SFl10C1Wg&+nOx{j&S6E2 zaR$03YmQJXkgzYQT)QUc5Ir;Mol&kW_NCtBLP64RP|rJ~BfJWj?A7qq)Nm5E+@qy# zldvHVORZ8Gw;>PwP>RJRz5tAt3#7a8B9-P};vj_>Ux;J7;J>Eue-GYEX#8g5uk?T^ z)`@Awdgc!NHJ+$SL{7=}FG0?#{2DLi8D7|ZezE+(j;ttSxyj{Sl1gnJ#w+jA4y|+- zpQi+AqEgd?k}Q-Si2u}+w<_LvHR)FAsZhYt#t!Ua9pDP}c$-J3`FW5V&PnEPzH{}r zXzoVb%G@2z>m+GiVa_Bm*K8L3FDkGjdKO;MX(&|v-NN=UJ#09(gOhHptY`JdsMbXg zD84*oTL*38g1uILWwn(*tu|R&DSaiHc{0vpb$igXVs}#Ewsx(*nrDp}U*vu#x9Lfh zjw<)m*c^0fy2H-i#^WnmcUqA*WrqD2>?j=%QmVQdU_ZCaB9~V3U0%zdT`yv45r5Sv z@D-zF@}_m~$7HOsZm+)_Nkbdde}j?d(y#qUww36@-)%tGb=LEGq)@}S-JTdG*92En z16}?sMilwMd`bc!uev5u_Oi8J60D-e+iwYk6|>^b6|350`zqdivD5tyL~sU2c70g|o+g`d7cyKdlT|UaaZE?qy*_RAoy? zUhD>rSYwoCSEXA$V2}CK?)*GxTaUfWRYQXn_8gKz5kbfBG#}NCyz3BXC-6Qk{td;x5je3) zMbZCruf2HkcOuo7p;wDMR!hAv8D+f5jP6h+N>Z@3?vyiLq;ijSS07~?ww~xy;^1jM znx0jWHGbQjDXO1qZW66QHwOt6YI;_BJ<%&IwAxM~2m-xQv_h|}Uw#?nwtEfrTU9ic z6{dYJdva;rT@oJqmSd6GKe*rmFnk4Khx3XONnVTc-wA>1Y zi*u&N!WgZ?soz3A(~ZH)9Kr8d8wr=?HGVA6rK?Y~H~RcOqdBN83DDt%bJzYU+%iU6 zfNEKso23O|R${!AKK_CY!qrLoH~#p*jxl6$b|YEYbg->R4>L8o*_F0?p4ua8C4p@R z=%I_tt)Fz2c8KJXai{GLcPk6aK8cQlE2HOCxr3_EGeamfiBOuV*J2hOK zH0w!DRhzO~*s?XRY;x|}ry~y0VQC}LH?wTM7p%b;d8fNBSyV@n6w3|9=wkE**(I$( za~!Xv8V`nClV^R$+G~>P2y^RIZ!w~~RsU-eZipZsV``)GQlL&l%Ntxd^f4GQ> zll>oAMwk5`*(GF4r`1>NSzo002-*KB(M}KfiaigjJwn;`*@p|$s9s)FPxBTEjC>IL9iu`|M0Zvd$;PsxXk zI>fkEp`obS{w>HC>ND%{sMT#S`bUgPr$(fLeAEhsaDsf)sQRy9ywy64QK`#<1?A6% zo7z2-8TukofvA-w@(PmkPU!xr= ziWbT;)97_Xtu~w50pia=tlJ6ueX_KL(Ikp=e3vLAM)Rfb#p26=Z}H{NYA>i^DczK8 z4Y3bY^Ci4Hw}&*(V4^&(MRs*$5q+z5_dA4rpvBwS`57Mw6+3o+Q3v2u(I$OVDOH49 zda>}Lt?N+ok1HjjzTfOoa6? znSi$h|EnD;F@U6)g{6!EZS=wCe=*loT}9!-JrVaIrM)zjv5i`zW$(&r8$?B5qRncP zgAieNQkAgRLyZ5)h^SVp`M`C!dAl&@0Wxp2?iJktJq1kOg;}py0)k_1#CXgky1ij6 z%~Em!-c^JYDE;U_%laHn+*z$RumM6!a>Hel@~nG4#IcgYC&t5$JEh5n6wELj(+7mrFiO&UVmLAsYP3q80f4MnZw<-CEOvYbaL zZ$a^gv}IX8p?6$WG?CJlP)a0}VLiw#e{IZqqJt(D>idYUHU3jV^~+xh=$QLHd#UfF zR_3;dR%2Y$VJh88<*K2_ua)FcJQ7{Rc~i{TERoX%B&$z~Obn?aGyr9bSoDKd1)_Oo zkI~A1TDBoQm4j%R)bc%_;I9IcH=eqI7?r7}$!UqhIH6oZODG?R@t11Zrxb}9arVhR zrHBREm@hQhrwnO~FErVwlwj08Wic-WRzhPExti}Az$?*ASKhP!Km!TM?w;AdP;Fs^b(3W?DZTMv?;q_|bXH-4fZfV55oykYu zv(oF^&I?^(8v=IIUa4?8l?~p>Ew)JP*a$gP#$LJ2X(l_X`zU8-NXr$);z-ZMZoSf)oKOy8 zVU@M?ZTX|-ilxk@hgK>L2tOrKyl!uPk))yo=kr)OM1esFr>?AYx5ywe5&&Y0zDLVe#cE6cFUjgTE0NB>qfW{HY<^y zoXOpPR0n}ix0-j zq4LKERInG=LD+zuE00WO?M@S`~X(A*O(DP)Bl`o>dAU(Q~M(mnn7sP_sHZO$hgFAy}CzS$E5_ z0dn`oYS9xJ^XIU&Yyp$U{GuWOZFo2TCO@spA z3kNhuHffA69MBx;&=_AhAlrL2#uE<5u-Z;Z+*lnK2^*mYuceHh!qy7PAk;U7@rjae z%&%5P+|{`e4sr-d{1vvEs@(IW0;J&MG5kw|lKQVjh%cp^J0B7|Nf#ToHeu=NX-($l%A&v zIJNGGl1f)H=RPEZaKy$xYUe}bpCq}G_N(d&w&25?ofoj#HE!2!w+j7E>&_nuy*Eyk zz&s50|crYqC+% zQFk7(Hl%vED)+yMSfInFdB3A=_7TMmUD7Yr&A97`2#m<9=z(2cK-Tw&@NPT_NwGa_ zJ=jrURqSA8P1cfb=#rFmtSGHAg{RjDQB)h*vw}mNU6^a`M2qT%F4+>StlQ({exFFC zV_hOk>9V7_UIs&&^_=6QtQaxBRQ!^km#A4;i)t0qG`8ys>(bXp8^SGzv)0@yOSNWw zR&i3&GVR%VnKo&Bow-g+EVEwpI40sAPZ3i|1sycJf}K`=xE4mMtnM#R^(I>`rAIX% zLMz%^^JN!#2^AviT#H13alT(GeLveFlTR*LpmUp#R9})b=L91Y&Ns=cshOBodajB^ zi|YGtq&`Hk9*&bNho2<-XlJooeLuDEL`UCH)ZM9x5&oF5?R3Iwd0L4SebQJ*sV0C# zF0(&kweDRAoxKrN{=1~At6r6sK!rQ{+ywQ_qN`NdoK6a&Q`Q+a5w%(m6eg4t(b9zF zq6rbA+f_2|11rVvkK3!gbhC!SB^`s@t8#5dR8^QAbwq`&5DxVijk1#gmTK41dyy2i z!Ke`W^cWeLEyH;w;26vI5|QdTw1A`M&;pL0BTq7S48=mP{#v9giGLrh)(os&J6E;V z__H)hwa&)OpJ~(13a3|1&4epA5->HZW?Up$W?GyHmi`^$Vq8KH1p0o;=sEsfrP5xm z%B)qd@hH9(gRN3@VNtpXlYqRR5RLnCp7#R9LJbbdBU{)YF z3A$vQ?~hT~;0v=#vW5={48L$l$>7>x{h;dXj;wJ7fpI7WjM+FOaQ3>v*h1vquSJ8f zg_xgV3sJ>im>Vd>UgC+^OFaJ5;U&XrbLxjy59tW@WcMm}3IFet!oTJ8z%7SP4cydM z7?`#16l^t~jIG9#u+>EZfuDw~!kk>3LHdm{Ngf&Au^-#qebk>B$(^Sj{m zz=A_oV0Pc}f$9531g`4NrF|Ut6?QIWP_z?*ru zpG$gx<-MOrPR{i5o>ENwLeIOMr&VZpZ{t}9+{1h5m_T4Xa31d&Jng`>yuWr{An*`y zh<7Q^!@%XdKO7qf$Ov?>`?4i9B*xCXaUwPX}-<@9*$z2bO!I+jzQx+j;+l z=Xu~wyq_FLT7WxvHrjrG{{TEKm>^Be0H%&)^9ZNsIZ$@7*jT^0># zw-C0=xM4Zuk%Sb@nZt=req5v~?w5wHX}om-M$SUq1Ix9ri!~L>x2RYwM$uT}l4=p=*};xnGA z=;FBx#C|WPfw|oG(oi_WExNadmdsmz^McTfMGKXAhVqKD>ZyrM! z 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 Quk5z25EKO%dj^vymQxe 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�F!n&>*O1#iB$z@${IyXSRdS$ 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 X4q1UMQ=~s{hW0Rjw%y@g%n|(;gk8ay literal 0 HcmV?d00001 diff --git a/src/external/lpsolve/build/lp_solve/lp_BFP1.c b/src/external/lpsolve/build/lp_solve/lp_BFP1.c new file mode 100644 index 00000000..46fc57dc --- /dev/null +++ b/src/external/lpsolve/build/lp_solve/lp_BFP1.c @@ -0,0 +1,206 @@ + +/* Routines located in lp_BFP1.cpp; common for all factorization engines */ +/* Cfr. lp_BFP.h for definitions */ +/* ---------------------------------------------------------------------------------- */ +/* Changes: */ +/* 29 May 2004 Corrected calculation of bfp_efficiency(), which required */ +/* modifying the max_Bsize to include slack variables. KE. */ +/* 16 June 2004 Make the symbolic minimum degree ordering routine available */ +/* to BFPs as a routine internal to the library. KE */ +/* 1 July 2004 Change due to change in MDO naming. */ +/* ---------------------------------------------------------------------------------- */ + + +/* MUST MODIFY */ +MYBOOL BFP_CALLMODEL bfp_compatible(lprec *lp, int bfpversion, int lpversion, int sizeofvar) +{ + MYBOOL status = FALSE; + + if((lp != NULL) && (bfpversion == BFPVERSION) && (sizeof(LPSREAL) == sizeofvar)) { +#if 0 + if(lpversion == MAJORVERSION) /* Forces BFP renewal at lp_solve major version changes */ +#endif + status = TRUE; + } + return( status ); +} + +/* DON'T MODIFY */ +int BFP_CALLMODEL bfp_status(lprec *lp) +{ + return(lp->invB->status); +} + +/* DON'T MODIFY */ +int BFP_CALLMODEL bfp_indexbase(lprec *lp) +{ + return( MATINDEXBASE ); +} + +/* DON'T MODIFY */ +int BFP_CALLMODEL bfp_rowoffset(lprec *lp) +{ + if(lp->obj_in_basis) + return( 1 ); + else + return( 0 ); +} + +/* DON'T MODIFY */ +int BFP_CALLMODEL bfp_pivotmax(lprec *lp) +{ + if(lp->max_pivots > 0) + return( lp->max_pivots ); + else + return( DEF_MAXPIVOT ); +} + +/* DON'T MODIFY */ +LPSREAL * BFP_CALLMODEL bfp_pivotvector(lprec *lp) +{ + return( lp->invB->pcol ); +} + +/* DON'T MODIFY */ +LPSREAL BFP_CALLMODEL bfp_efficiency(lprec *lp) +{ + LPSREAL hold; + + hold = lp->bfp_nonzeros(lp, AUTOMATIC); + if(hold == 0) + hold = 1 + lp->rows; + hold = lp->bfp_nonzeros(lp, TRUE)/hold; + + return(hold); +} + +/* DON'T MODIFY */ +int BFP_CALLMODEL bfp_pivotcount(lprec *lp) +{ + return(lp->invB->num_pivots); +} + + +/* DON'T MODIFY */ +int BFP_CALLMODEL bfp_refactcount(lprec *lp, int kind) +{ + if(kind == BFP_STAT_REFACT_TOTAL) + return(lp->invB->num_refact); + else if(kind == BFP_STAT_REFACT_TIMED) + return(lp->invB->num_timed_refact); + else if(kind == BFP_STAT_REFACT_DENSE) + return(lp->invB->num_dense_refact); + else + return( BFP_STAT_ERROR ); +} + +/* DON'T MODIFY */ +MYBOOL BFP_CALLMODEL bfp_mustrefactorize(lprec *lp) +{ + MYBOOL test = lp->is_action(lp->spx_action, ACTION_REINVERT | ACTION_TIMEDREINVERT); + if(!test) { + LPSREAL f; + INVrec *lu = lp->invB; + + if(lu->num_pivots > 0) + f = (timeNow()-lu->time_refactstart) / (LPSREAL) lu->num_pivots; + else + f = 0; + + /* Always refactorize if we are above the set pivot limit */ + if(lu->force_refact || + (lu->num_pivots >= lp->bfp_pivotmax(lp))) + lp->set_action(&lp->spx_action, ACTION_REINVERT); + + /* Check if we should do an optimal time-based refactorization */ + else if(lu->timed_refact && (lu->num_pivots > 1) && + (f > MIN_TIMEPIVOT) && (f > lu->time_refactnext)) { + /* If we have excessive time usage in automatic mode then + treat as untimed case and update optimal time metric, ... */ + if((lu->timed_refact == AUTOMATIC) && + (lu->num_pivots < 0.4*lp->bfp_pivotmax(lp))) + lu->time_refactnext = f; + /* ... otherwise set flag for the optimal time-based refactorization */ + else + lp->set_action(&lp->spx_action, ACTION_TIMEDREINVERT); + } + + /* Otherwise simply update the optimal time metric */ + else + lu->time_refactnext = f; +#if 0 + if(lu->num_pivots % 10 == 0) + lp->report(lp, NORMAL, "bfp pivot %d - start %f - timestat %f", + lu->num_pivots, lu->time_refactstart, f); +#endif + } + + test = lp->is_action(lp->spx_action, ACTION_REINVERT | ACTION_TIMEDREINVERT); + return(test); +} + +/* DON'T MODIFY */ +MYBOOL BFP_CALLMODEL bfp_isSetI(lprec *lp) +{ + return( (MYBOOL) lp->invB->set_Bidentity ); +} + +/* DON'T MODIFY */ +int *bfp_createMDO(lprec *lp, MYBOOL *usedpos, int count, MYBOOL doMDO) +{ + int *mdo, i, j, kk; + + mdo = (int *) malloc((count + 1)*sizeof(*mdo)); +/* allocINT(lp, &mdo, count + 1, FALSE); */ + + /* Fill the mdo[] array with remaining full-pivot basic user variables */ + kk = 0; + for(j = 1; j <= lp->columns; j++) { + i = lp->rows + j; + if(usedpos[i] == TRUE) { + kk++; + mdo[kk] = i; + } + } + mdo[0] = kk; + if(kk == 0) + goto Process; + + /* Calculate the approximate minimum degree column ordering */ + if(doMDO) { + i = lp->getMDO(lp, usedpos, mdo, NULL, FALSE); + if(i != 0) { + lp->report(lp, CRITICAL, "bfp_createMDO: Internal error %d in minimum degree ordering routine", i); + FREE(mdo); + } + } +Process: + return( mdo ); +} +void BFP_CALLMODEL bfp_updaterefactstats(lprec *lp) +{ + INVrec *lu = lp->invB; + + /* Signal that we are refactorizing */ + lu->is_dirty = AUTOMATIC; + + /* Set time of start of current refactorization cycle */ + lu->time_refactstart = timeNow(); + lu->time_refactnext = 0; + lu->user_colcount = 0; + + /* Do the numbers */ + if(lu->force_refact) + lu->num_dense_refact++; + else if(lu->timed_refact && lp->is_action(lp->spx_action, ACTION_TIMEDREINVERT)) + lu->num_timed_refact++; + lu->num_refact++; +} + +int BFP_CALLMODEL bfp_rowextra(lprec *lp) +{ + if(lp->is_obj_in_basis(lp)) + return( 1 ); + else + return( 0 ); +} diff --git a/src/external/lpsolve/build/lp_solve/lp_BFP2.c b/src/external/lpsolve/build/lp_solve/lp_BFP2.c new file mode 100644 index 00000000..d5c73776 --- /dev/null +++ b/src/external/lpsolve/build/lp_solve/lp_BFP2.c @@ -0,0 +1,184 @@ +// Copyright(c) 2016-2018 Kjell Konis . +// Version: 5.5.2.0-17 +// Description: The lpSolveAPI package provides an R interface to 'lp_solve', +// a Mixed Integer Linear Programming (MILP) solver with support for pure +// linear, (mixed) integer/binary, semi-continuous and special ordered sets +// (SOS) models. +// License: LGPL-2 +// Repository: CRAN + +/* Routines located in lp_BFP2.cpp; optional shared for canned implementations */ +/* Cfr. lp_BFP.h for definitions */ +/* ---------------------------------------------------------------------------------- */ + + +/* DON'T MODIFY */ +MYBOOL BFP_CALLMODEL bfp_init(lprec *lp, int size, int delta, char *options) +{ + INVrec *lu; + + lp->invB = (INVrec *) calloc(1, sizeof(*(lp->invB))); + lu = lp->invB; + if((lu == NULL) || + !lp->bfp_resize(lp, size) || + !lp->bfp_restart(lp)) + return( FALSE ); + + /* Store any passed options */ + if(options != NULL) { + size_t len = strlen(options); + lu->opts = (char *) malloc(len + 1); + strcpy(lu->opts, options); + } + + /* Prepare for factorization and undo values reset by bfp_preparefactorization */ + lp->bfp_preparefactorization(lp); + lu->num_refact = 0; + + return( TRUE ); +} + +/* DON'T MODIFY */ +MYBOOL BFP_CALLMODEL bfp_restart(lprec *lp) +{ + INVrec *lu; + + lu = lp->invB; + if(lu == NULL) + return( FALSE ); + + lu->status = BFP_STATUS_SUCCESS; + lu->max_Bsize = 0; /* The largest NZ-count of the B matrix */ + lu->max_colcount = 0; /* The maximum number of user columns in B */ + lu->max_LUsize = 0; /* The largest NZ-count of LU-files generated */ + lu->num_refact = 0; /* The number of times the basis has been factored */ + lu->num_timed_refact = 0; + lu->num_dense_refact = 0; + lu->num_pivots = 0; /* The number of pivots since last factorization */ + lu->pcol = NULL; + lu->set_Bidentity = FALSE; + + return( TRUE ); +} + +/* DON'T MODIFY */ +MYBOOL BFP_CALLMODEL bfp_implicitslack(lprec *lp) +{ + return( FALSE ); +} + +/* DON'T MODIFY */ +int BFP_CALLMODEL bfp_colcount(lprec *lp) +{ + return(lp->invB->user_colcount); +} + + +/* DON'T MODIFY */ +MYBOOL BFP_CALLMODEL bfp_canresetbasis(lprec *lp) +{ + return( FALSE ); +} + + +/* DON'T MODIFY */ +MYBOOL BFP_CALLMODEL bfp_pivotalloc(lprec *lp, int newsize) +{ + /* Does nothing in the default implementation */ + return( TRUE ); +} + + +/* DON'T MODIFY */ +void BFP_CALLMODEL bfp_finishfactorization(lprec *lp) +{ + INVrec *lu; + + lu = lp->invB; + + SETMAX(lu->max_colcount, lp->bfp_colcount(lp)); + SETMAX(lu->max_LUsize, lp->bfp_nonzeros(lp, FALSE)); + + /* Signal that we done factorizing/reinverting */ + lu->is_dirty = FALSE; + lp->clear_action(&lp->spx_action, ACTION_REINVERT | ACTION_TIMEDREINVERT); + lu->force_refact = FALSE; + + /* Store information about the current inverse */ + lu->num_pivots = 0; + +} + + +/* DON'T MODIFY */ +LREAL BFP_CALLMODEL bfp_prepareupdate(lprec *lp, int row_nr, int col_nr, LPSREAL *pcol) +/* Was condensecol() in versions of lp_solve before 4.0.1.8 - KE */ +{ + LREAL pivValue; + INVrec *lu; + + lu = lp->invB; + + /* Store the incoming pivot value for RHS update purposes */ + lu->col_enter = col_nr; /* The index of the new data column */ + lu->col_pos = row_nr; /* The basis column to be replaced */ + lu->col_leave = lp->var_basic[row_nr]; + if(pcol == NULL) + pivValue = 0; + else + pivValue = pcol[row_nr]; + lu->theta_enter = pivValue; + + /* Save reference to the elimination vector */ + lu->pcol = pcol; + + /* Set completion status; but hold if we are reinverting */ + if(lu->is_dirty != AUTOMATIC) + lu->is_dirty = TRUE; + + return( pivValue ); +} + + +/* DON'T MODIFY */ +LPSREAL BFP_CALLMODEL bfp_pivotRHS(lprec *lp, LREAL theta, LPSREAL *pcol) +/* This function is used to adjust the RHS in bound swap operations as + well as handling the updating of the RHS for normal basis changes. + Was rhsmincol(), ie. "rhs minus column" in versions of lp_solve before 4.0.1.8 - KE */ +{ + INVrec *lu; + + lu = lp->invB; + + if(pcol == NULL) + pcol = lu->pcol; + + if(theta != 0) { + register int i, n = lp->rows; + register LREAL roundzero = lp->epsvalue; + register LREAL *rhs = lp->rhs, rhsmax = 0; + + for(i = 0; i <= n; i++, rhs++, pcol++) { + (*rhs) -= theta * (*pcol); + my_roundzero(*rhs, roundzero); + SETMAX(rhsmax, fabs(*rhs)); + } + lp->rhsmax = rhsmax; + } + + if(pcol == lu->pcol) + return( lu->theta_enter ); + else + return( 0.0 ); +} + + +/* DON'T MODIFY */ +void BFP_CALLMODEL bfp_btran_double(lprec *lp, LPSREAL *prow, int *pnzidx, LPSREAL *drow, int *dnzidx) +{ + if(prow != NULL) + lp->bfp_btran_normal(lp, prow, pnzidx); + if(drow != NULL) + lp->bfp_btran_normal(lp, drow, dnzidx); +} + diff --git a/src/external/lpsolve/build/lp_solve/lp_Hash.c b/src/external/lpsolve/build/lp_solve/lp_Hash.c new file mode 100644 index 00000000..f380acc9 --- /dev/null +++ b/src/external/lpsolve/build/lp_solve/lp_Hash.c @@ -0,0 +1,246 @@ +// Copyright(c) 2016-2018 Kjell Konis . +// Version: 5.5.2.0-17 +// Description: The lpSolveAPI package provides an R interface to 'lp_solve', +// a Mixed Integer Linear Programming (MILP) solver with support for pure +// linear, (mixed) integer/binary, semi-continuous and special ordered sets +// (SOS) models. +// License: LGPL-2 +// Repository: CRAN + +#include +#include +#include "lp_lib.h" +#include "lp_utils.h" +#include "lp_report.h" +#include "lp_Hash.h" + +#ifdef FORTIFY +# include "lp_fortify.h" +#endif + + +#define HASH_START_SIZE 5000 /* Hash table size for row and column name storage */ +#define NUMHASHPRIMES 45 + +STATIC hashtable *create_hash_table(int size, int base) +{ + int i; + int HashPrimes[ ] = { + 29, 229, 883, 1671, 2791, 4801, 8629, 10007, + 15289, 25303, 34843, 65269, 99709, 129403, 147673, 166669, + 201403, 222163, 242729, 261431, 303491, 320237, 402761, 501131, + 602309, 701507, 800999, 900551, 1000619, 1100837, 1200359, 1300021, + 1400017, 1500007, 1750009, 2000003, 2500009, 3000017, 4000037, 5000011, + 6000011, 7000003, 8000009, 9000011, 9999991}; + hashtable *ht; + + /* Find a good size for the hash table */ + if(size < HASH_START_SIZE) + size = HASH_START_SIZE; + for(i = 0; i < NUMHASHPRIMES-1; i++) + if(HashPrimes[i] > size) + break; + size = HashPrimes[i]; + + /* Then allocate and initialize memory */ + ht = (hashtable *) calloc(1 , sizeof(*ht)); + ht->table = (hashelem **) calloc(size, sizeof(*(ht->table))); + ht->size = size; + ht->base = base; + ht->count = base-1; + + return(ht); +} + +STATIC void free_hash_item(hashelem **hp) +{ + free((*hp)->name); + free(*hp); + *hp = NULL; +} + +STATIC void free_hash_table(hashtable *ht) +{ + hashelem *hp, *thp; + + hp = ht->first; + while(hp != NULL) { + thp = hp; + hp = hp->nextelem; + free_hash_item(&thp); + } + free(ht->table); + free(ht); +} + + +/* make a good hash function for any int size */ +/* inspired by Aho, Sethi and Ullman, Compilers ..., p436 */ +#define HASH_1 sizeof(unsigned int) +#define HASH_2 (sizeof(unsigned int) * 6) +#define HASH_3 (((unsigned int)0xF0) << ((sizeof(unsigned int) - 1) * CHAR_BIT)) + +STATIC int hashval(const char *string, int size) +{ + unsigned int result = 0, tmp; + + for(; *string; string++) { + result = (result << HASH_1) + *string; + if((tmp = result & HASH_3) != 0) { + /* if any of the most significant bits is on */ + result ^= tmp >> HASH_2; /* xor them in in a less significant part */ + result ^= tmp; /* and reset the most significant bits to 0 */ + } + } + return(result % size); +} /* hashval */ + + +STATIC hashelem *findhash(const char *name, hashtable *ht) +{ + hashelem *h_tab_p; + for(h_tab_p = ht->table[hashval(name, ht->size)]; + h_tab_p != NULL; + h_tab_p = h_tab_p->next) + if(strcmp(name, h_tab_p->name) == 0) /* got it! */ + break; + return(h_tab_p); +} /* findhash */ + + +STATIC hashelem *puthash(const char *name, int index, hashelem **list, hashtable *ht) +{ + hashelem *hp = NULL; + int hashindex; + + if(list != NULL) { + hp = list[index]; + if(hp != NULL) + list[index] = NULL; + } + + if((hp = findhash(name, ht)) == NULL) { + + hashindex = hashval(name, ht->size); + hp = (hashelem *) calloc(1, sizeof(*hp)); + allocCHAR(NULL, &hp->name, (int) (strlen(name) + 1), FALSE); + strcpy(hp->name, name); + hp->index = index; + ht->count++; + if(list != NULL) + list[index] = hp; + + hp->next = ht->table[hashindex]; + ht->table[hashindex] = hp; + if(ht->first == NULL) + ht->first = hp; + if(ht->last != NULL) + ht->last->nextelem = hp; + ht->last = hp; + + } + return(hp); +} + +STATIC void drophash(const char *name, hashelem **list, hashtable *ht) { + hashelem *hp, *hp1, *hp2; + int hashindex; + + if((hp = findhash(name, ht)) != NULL) { + hashindex = hashval(name, ht->size); + if((hp1 = ht->table[hashindex]) != NULL) { + hp2 = NULL; + while((hp1 != NULL) && (hp1 != hp)) { + hp2 = hp1; + hp1 = hp1->next; + } + if(hp1 == hp) { + if(hp2 != NULL) + hp2->next = hp->next; + else + ht->table[hashindex] = hp->next; + } + + hp1 = ht->first; + hp2 = NULL; + while((hp1 != NULL) && (hp1 != hp)) { + hp2 = hp1; + hp1 = hp1->nextelem; + } + if(hp1 == hp) { + if(hp2 != NULL) + hp2->nextelem = hp->nextelem; + else { + ht->first = hp->nextelem; + if (ht->first == NULL) + ht->last = NULL; + } + } + if(list != NULL) + list[hp->index] = NULL; + free_hash_item(&hp); + ht->count--; + } + } +} + +STATIC hashtable *copy_hash_table(hashtable *ht, hashelem **list, int newsize) +{ + hashtable *copy; + hashelem *elem, *new_elem; + + if(newsize < ht->size) + newsize = ht->size; + + copy = create_hash_table(newsize, ht->base); + if (copy != NULL) { + elem = ht->first; + while (elem != NULL) { + if((new_elem = puthash(elem->name, elem->index, list, copy)) == NULL) { + free_hash_table(copy); + return(NULL); + } + elem = elem ->nextelem; + } + } + + return(copy); +} + +STATIC int find_row(lprec *lp, char *name, MYBOOL Unconstrained_rows_found) +{ + hashelem *hp; + + if (lp->rowname_hashtab != NULL) + hp = findhash(name, lp->rowname_hashtab); + else + hp = NULL; + + if (hp == NULL) { + if(Unconstrained_rows_found) { /* just ignore them in this case */ + return(-1); + } + else { + return(-1); + } + } + return(hp->index); +} + +STATIC int find_var(lprec *lp, char *name, MYBOOL verbose) +{ + hashelem *hp; + + if (lp->colname_hashtab != NULL) + hp = findhash(name, lp->colname_hashtab); + else + hp = NULL; + + if (hp == NULL) { + if(verbose) + report(lp, SEVERE, "find_var: Unknown variable name '%s'\n", name); + return(-1); + } + return(hp->index); +} + diff --git a/src/external/lpsolve/build/lp_solve/lp_LUSOL.c b/src/external/lpsolve/build/lp_solve/lp_LUSOL.c new file mode 100644 index 00000000..4db35454 --- /dev/null +++ b/src/external/lpsolve/build/lp_solve/lp_LUSOL.c @@ -0,0 +1,735 @@ + +/* Modularized simplex basis factorization module - w/interface for lp_solve v5.0+ + ---------------------------------------------------------------------------------- + Author: Kjell Eikland + Contact: kjell.eikland@broadpark.no + License terms: LGPL. + + Requires: lusol.h, lp_lib.h, myblas.h + + Release notes: + v2.0.0 1 March 2004 First implementation of the LUSOL v2.0 C translation. + v2.0.1 1 April 2004 Added singularity recovery and fast/reuse update logic. + v2.0.2 23 May 2004 Moved mustrefact() function into the BFP structure. + v2.0.3 5 September 2004 Reworked pivot threshold tightening logic and default + values. + v2.1.0 18 June 2005 Made changes to allow for "pure" factorization; + i.e. without the objective function included. + + ---------------------------------------------------------------------------------- */ + +/* Generic include libraries */ +#include +#include +#include "lp_lib.h" + +/* Include libraries for this factorization system */ +#include "myblas.h" +#include "commonlib.h" +#include "lp_LUSOL.h" +#include "lusol.h" + +#ifdef FORTIFY +# include "lp_fortify.h" +#endif + +/* Include routines common to factorization engine implementations */ +#include "lp_BFP1.c" +#include "lp_BFP2.c" + + +/* MUST MODIFY */ +char * BFP_CALLMODEL bfp_name(void) +{ + return( "LUSOL v2.2.1.0" ); +} + + +/* MUST MODIFY */ +MYBOOL BFP_CALLMODEL bfp_resize(lprec *lp, int newsize) +{ + INVrec *lu; + + lu = lp->invB; + + /* Increment dimensionality since we put the objective row at the top */ + newsize = newsize + bfp_rowoffset(lp); + lu->dimalloc = newsize; + + /* Allocate index tracker arrays, LU matrices and various work vectors */ + if(!allocREAL(lp, &(lu->value), newsize+MATINDEXBASE, AUTOMATIC)) + return( FALSE ); + + /* Data specific to the factorization engine */ + if(lu->LUSOL != NULL) { + if(newsize > 0 || 1) + LUSOL_sizeto(lu->LUSOL, newsize, newsize, 0); + else { + LUSOL_free(lu->LUSOL); + lu->LUSOL = NULL; + } + } + else if(newsize > 0 || 1) { + int asize; + LPSREAL bsize; + + lu->LUSOL = LUSOL_create(NULL, 0, LUSOL_PIVMOD_TPP, bfp_pivotmax(lp)*0); + +#if 1 + lu->LUSOL->luparm[LUSOL_IP_ACCELERATION] = LUSOL_AUTOORDER; + lu->LUSOL->parmlu[LUSOL_RP_SMARTRATIO] = 0.50; +#endif +#if 0 + lu->timed_refact = DEF_TIMEDREFACT; +#else + lu->timed_refact = FALSE; +#endif + + /* The following adjustments seem necessary to make the really tough NETLIB + models perform reliably and still performant (e.g. cycle.mps) */ +#if 0 + lu->LUSOL->parmlu[LUSOL_RP_SMALLDIAG_U] = + lu->LUSOL->parmlu[LUSOL_RP_EPSDIAG_U] = lp->epsprimal; +#endif +#if 0 + lu->LUSOL->parmlu[LUSOL_RP_ZEROTOLERANCE] = lp->epsvalue; +#endif + +#if 1 + LUSOL_setpivotmodel(lu->LUSOL, LUSOL_PIVMOD_NOCHANGE, LUSOL_PIVTOL_SLIM); +#else + LUSOL_setpivotmodel(lu->LUSOL, LUSOL_PIVMOD_NOCHANGE, LUSOL_PIVTOL_TIGHT); +#endif + +#ifdef LUSOL_UseBLAS +/* if(fileSearchPath("PATH", "myBLAS.DLL", NULL) && load_BLAS("myBLAS")) */ + if(is_nativeBLAS() && load_BLAS(libnameBLAS)) + lp->report(lp, NORMAL, "Optimized BLAS was successfully loaded for bfp_LUSOL.\n"); +#endif + + /* Try to minimize memory allocation if we have a large number of unit columns */ + bsize = (LPSREAL) lp->get_nonzeros(lp); + if(newsize > lp->columns) + bsize += newsize; + else + bsize = bsize/lp->columns*newsize; + /* Add a "reasonable" delta to allow for B and associated factorizations + that are denser than average; this makes reallocations less frequent. + Values between 1.2 and 1.5 appear to be reasonable. */ + asize = (int) (bsize*MAX_DELTAFILLIN*1.3333); + if(!LUSOL_sizeto(lu->LUSOL, newsize, newsize, asize)) + return( FALSE ); + } + lu->dimcount = newsize; + return( TRUE ); +} + + +/* MUST MODIFY */ +void BFP_CALLMODEL bfp_free(lprec *lp) +{ + INVrec *lu; + + lu = lp->invB; + if(lu == NULL) + return; + + /* General arrays */ + FREE(lu->opts); + FREE(lu->value); + + /* Data specific to the factorization engine */ + LUSOL_free(lu->LUSOL); + + FREE(lu); + lp->invB = NULL; +} + + +/* MUST MODIFY */ +int BFP_CALLMODEL bfp_nonzeros(lprec *lp, MYBOOL maximum) +{ + INVrec *lu; + + lu = lp->invB; + if(maximum == TRUE) + return(lu->max_LUsize); + else if(maximum == AUTOMATIC) + return(lu->max_Bsize); + else + return(lu->LUSOL->luparm[LUSOL_IP_NONZEROS_L0]+lu->LUSOL->luparm[LUSOL_IP_NONZEROS_U0]); +/* return(lu->LUSOL->luparm[LUSOL_IP_NONZEROS_ROW]); */ +} + + +/* MUST MODIFY (or ignore) */ +int BFP_CALLMODEL bfp_memallocated(lprec *lp) +{ + int mem; + LUSOLrec *LUSOL = lp->invB->LUSOL; + + mem = sizeof(LPSREAL) * (LUSOL->lena+LUSOL->maxm+LUSOL_RP_LASTITEM); + mem += sizeof(int) * (2*LUSOL->lena+5*LUSOL->maxm+5*LUSOL->maxn+LUSOL_IP_LASTITEM); + if(LUSOL->luparm[LUSOL_IP_PIVOTTYPE] == LUSOL_PIVMOD_TCP) + mem += sizeof(LPSREAL) * LUSOL->maxn + 2*sizeof(LPSREAL)*LUSOL->maxn; + else if(LUSOL->luparm[LUSOL_IP_PIVOTTYPE] == LUSOL_PIVMOD_TRP) + mem += sizeof(LPSREAL) * LUSOL->maxn; + if(!LUSOL->luparm[LUSOL_IP_KEEPLU]) + mem += sizeof(LPSREAL) * LUSOL->maxn; + return( mem ); +} + + +/* MUST MODIFY */ +int BFP_CALLMODEL bfp_preparefactorization(lprec *lp) +{ + INVrec *lu = lp->invB; + + /* Finish any outstanding business */ + if(lu->is_dirty == AUTOMATIC) + lp->bfp_finishfactorization(lp); + + /* Clear or resize the existing LU matrices - specific for the factorization engine */ + LUSOL_clear(lu->LUSOL, TRUE); + if(lu->dimcount != lp->rows + bfp_rowoffset(lp)) + lp->bfp_resize(lp, lp->rows); + + /* Reset additional indicators */ + lp->bfp_updaterefactstats(lp); + lu->col_pos = 0; + + return(0); + +} + + +/* LOCAL HELPER ROUTINE - Replace a basis column with corresponding slack */ +int bfp_LUSOLsetcolumn(lprec *lp, int posnr, int colnr) +{ + int nz, inform; + + nz = lp->get_lpcolumn(lp, colnr, lp->invB->LUSOL->w + bfp_rowoffset(lp), NULL, NULL); + inform = LUSOL_replaceColumn(lp->invB->LUSOL, posnr, lp->invB->LUSOL->w); + return( inform ); +} + + +/* LOCAL HELPER ROUTINE - force the basis to be the identity matrix */ +int bfp_LUSOLidentity(lprec *lp, int *rownum) +{ + int i, nz; + INVrec *invB = lp->invB; + + /* Reset the factorization engine */ + LUSOL_clear(invB->LUSOL, TRUE); + + /* Add the basis columns */ + lp->invB->set_Bidentity = TRUE; + for(i = 1; i <= invB->dimcount; i++) { + nz = lp->get_basiscolumn(lp, i, rownum, invB->value); + LUSOL_loadColumn(invB->LUSOL, rownum, i, invB->value, nz, 0); + } + lp->invB->set_Bidentity = FALSE; + + /* Factorize */ + i = LUSOL_factorize(invB->LUSOL); + + return( i ); +} + + +/* LOCAL HELPER ROUTINE */ +int bfp_LUSOLfactorize(lprec *lp, MYBOOL *usedpos, int *rownum, int *singular) +{ + int i, j, nz, deltarows = bfp_rowoffset(lp); + INVrec *invB = lp->invB; + + /* Handle normal, presumed nonsingular case */ + if(singular == NULL) { + + /* Optionally do a symbolic minimum degree ordering; + not that slack variables should not be processed */ +/*#define UsePreprocessMDO*/ +#ifdef UsePreprocessMDO + int *mdo; + mdo = lp->bfp_createMDO(lp, usedpos, lp->rows, TRUE); + if(mdo != NULL) { + for(i = 1; i <= lp->rows; i++) + lp->set_basisvar(lp, i, mdo[i]); + FREE(mdo); + } +#endif + + /* Reset the factorization engine */ + LUSOL_clear(invB->LUSOL, TRUE); + + /* Add the basis columns in the original order */ + for(i = 1; i <= invB->dimcount; i++) { + nz = lp->get_basiscolumn(lp, i, rownum, invB->value); + LUSOL_loadColumn(invB->LUSOL, rownum, i, invB->value, nz, 0); + if((i > deltarows) && (lp->var_basic[i-deltarows] > lp->rows)) + lp->invB->user_colcount++; + } + + /* Factorize */ + i = LUSOL_factorize(invB->LUSOL); + } + + /* Handle case where a column may be singular */ + else { + LLrec *map; + + /* Reset the factorization engine */ + i = bfp_LUSOLidentity(lp, rownum); + + /* Build map of available columns */ + nz = createLink(lp->rows, &map, NULL); + for(i = 1; i <= lp->rows; i++) { + if(lp->var_basic[i] <= lp->rows) + removeLink(map, i); + } + + /* Rebuild the basis, column by column, while skipping slack columns */ + j = firstActiveLink(map); + for(i = 1; i <= lp->rows; i++) { + if(lp->var_basic[i] <= lp->rows) + continue; + nz = bfp_LUSOLsetcolumn(lp, j+deltarows, lp->var_basic[i]); + if(nz == LUSOL_INFORM_LUSUCCESS) + lp->invB->user_colcount++; + else { + nz = bfp_LUSOLsetcolumn(lp, j+deltarows, i); + lp->set_basisvar(lp, i, i); + } + j = nextActiveLink(map, j); + } + + /* Sort the basis list */ + MEMCOPY(rownum, lp->var_basic, lp->rows+1); + sortByINT(lp->var_basic, rownum, lp->rows, 1, TRUE); + + } + + return( i ); +} +/* LOCAL HELPER ROUTINE */ +void bfp_LUSOLtighten(lprec *lp) +{ + int infolevel = DETAILED; + + switch(LUSOL_tightenpivot(lp->invB->LUSOL)) { + case FALSE: lp->report(lp, infolevel, "bfp_factorize: Very hard numerics, but cannot tighten LUSOL thresholds further.\n"); + break; + case TRUE: lp->report(lp, infolevel, "bfp_factorize: Frequent refact pivot count %d at iter %.0f; tightened thresholds.\n", + lp->invB->num_pivots, (LPSREAL) lp->get_total_iter(lp)); + break; + default: lp->report(lp, infolevel, "bfp_factorize: LUSOL switched to %s pivoting model to enhance stability.\n", + LUSOL_pivotLabel(lp->invB->LUSOL)); + } +} + +#define is_fixedvar is_fixedvar_ /* resolves a compiler warning/error conflict with lp_lib.h */ + +static MYBOOL is_fixedvar(lprec *lp, int variable) +{ + if((lp->bb_bounds != NULL && lp->bb_bounds->UBzerobased) || (variable <= lp->rows)) + return( (MYBOOL) (lp->upbo[variable] < lp->epsprimal) ); + else + return( (MYBOOL) (lp->upbo[variable]-lp->lowbo[variable] < lp->epsprimal) ); +} /* is_fixedvar */ + +/* MUST MODIFY */ +int BFP_CALLMODEL bfp_factorize(lprec *lp, int uservars, int Bsize, MYBOOL *usedpos, MYBOOL final) +{ + int kcol, inform, + *rownum = NULL, + singularities = 0, + dimsize = lp->invB->dimcount; + LUSOLrec *LUSOL = lp->invB->LUSOL; + + /* Set dimensions and create work array */ + SETMAX(lp->invB->max_Bsize, Bsize+(1+lp->rows-uservars)); + kcol = lp->invB->dimcount; + LUSOL->m = kcol; + LUSOL->n = kcol; + allocINT(lp, &rownum, kcol+1, FALSE); + + /* Check if the refactorization frequency is low; + tighten pivot thresholds if appropriate */ + inform = lp->bfp_pivotcount(lp); + if(!final && /* No solution update-based refactorization */ + !lp->invB->force_refact && /* No sparsity-based refactorization */ + !lp->is_action(lp->spx_action, + ACTION_TIMEDREINVERT) && /* No optimal time-based refactorization */ + (inform > 5) && (inform < 0.25*lp->bfp_pivotmax(lp))) + bfp_LUSOLtighten(lp); + + + /* Reload B and factorize */ + inform = bfp_LUSOLfactorize(lp, usedpos, rownum, NULL); + + /* Do some checks */ +#ifdef Paranoia + if(uservars != lp->invB->user_colcount) { + lp->report(lp, SEVERE, "bfp_factorize: User variable count reconciliation failed\n"); + return( singularities ); + } +#endif + + /* Check result and do further remedial action if necessary */ + if(inform != LUSOL_INFORM_LUSUCCESS) { + int singularcols, + replacedcols = 0; + LPSREAL hold; + + /* Make sure we do not tighten factorization pivot criteria too often, and simply + accept the substitution of slack columns into the basis */ + if((lp->invB->num_singular+1) % TIGHTENAFTER == 0) + bfp_LUSOLtighten(lp); + + /* Try to restore a non-singular basis by substituting singular columns with slacks */ + while((inform == LUSOL_INFORM_LUSINGULAR) && (replacedcols < dimsize)) { + int iLeave, jLeave, iEnter; + MYBOOL isfixed; + + singularities++; + singularcols = LUSOL->luparm[LUSOL_IP_SINGULARITIES]; + hold = (LPSREAL) lp->get_total_iter(lp); + lp->report(lp, NORMAL, "bfp_factorize: Resolving %d singularit%s at refact %d, iter %.0f\n", + singularcols, my_plural_y(singularcols), lp->invB->num_refact, hold); + + /* Find the failing / singular column(s) and make slack substitutions */ + for(kcol = 1; kcol <= singularcols; kcol++) { + + /* Determine leaving and entering columns. */ + iLeave = LUSOL_getSingularity(LUSOL, kcol); /* This is the singular column as natural index */ + iEnter = iLeave; /* This is the target replacement slack */ +#if 1 + iEnter = LUSOL->iqinv[iEnter]; + iEnter = LUSOL->ip[iEnter]; +#endif + iLeave-= bfp_rowextra(lp); /* This is the original B column/basis index */ + jLeave = lp->var_basic[iLeave]; /* This is the IA column index in lp_solve */ + + /* Express the slack index in original lp_solve [1..rows] reference and check validity */ + /* if(B4 != NULL) iEnter = B4->B4_row[iEnter]; v6 FUNCTIONALITY */ + iEnter -= bfp_rowextra(lp); + if(lp->is_basic[iEnter]) { + lp->report(lp, DETAILED, "bfp_factorize: Replacement slack %d is already basic!\n", iEnter); + + /* See if we can find a good alternative slack variable to enter */ + iEnter = 0; + for(inform = 1; inform <= lp->rows; inform++) + if(!lp->is_basic[inform]) { + if((iEnter == 0) || (lp->upbo[inform] > lp->upbo[iEnter])) { + iEnter = inform; + if(my_infinite(lp, lp->upbo[iEnter])) + break; + } + } + if(iEnter == 0) { + lp->report(lp, SEVERE, "bfp_factorize: Could not find replacement slack variable!\n"); + break; + } + } + + /* We should update bound states for both the entering and leaving variables. + Note that this may cause (primal or dual) infeasibility, but I assume that + lp_solve traps this and takes necessary corrective action. */ + isfixed = is_fixedvar(lp, iEnter); + if(isfixed) + lp->fixedvars++; + hold = lp->upbo[jLeave]; + lp->is_lower[jLeave] = isfixed || (fabs(hold)>=lp->infinite) || (lp->rhs[iLeave] < hold); + lp->is_lower[iEnter] = TRUE; + + /* Do the basis replacement */ + lp->set_basisvar(lp, iLeave, iEnter); + + } + + /* Refactorize with slack substitutions */ + inform = bfp_LUSOLfactorize(lp, NULL, rownum, NULL); + replacedcols += singularcols; + } + + /* Check if we had a fundamental problem */ + if(singularities >= dimsize) { + lp->report(lp, IMPORTANT, "bfp_factorize: LUSOL was unable to recover from a singular basis\n"); + lp->spx_status = NUMFAILURE; + } + } + + /* Clean up before returning */ + FREE(rownum); + + /* Update statistics */ + /* SETMAX(lp->invB->max_Bsize, (*Bsize)); */ + lp->invB->num_singular += singularities; /* The total number of singular updates */ + + return( singularities ); +} + +/* MUST MODIFY */ +MYBOOL BFP_CALLMODEL bfp_finishupdate(lprec *lp, MYBOOL changesign) +/* Was addetacol() in versions of lp_solve before 4.0.1.8 - KE */ +{ + int i, k, kcol, deltarows = bfp_rowoffset(lp); + LPSREAL DIAG, VNORM; + INVrec *lu = lp->invB; + LUSOLrec *LUSOL = lu->LUSOL; + + if(!lu->is_dirty) + return( FALSE ); + if(lu->is_dirty != AUTOMATIC) + lu->is_dirty = FALSE; + + /* Perform the update */ + k = lu->col_pos+deltarows; + lu->num_pivots++; + if(lu->col_leave > lu->dimcount-deltarows) + lu->user_colcount--; + if(lu->col_enter > lu->dimcount-deltarows) + lu->user_colcount++; + kcol = lu->col_pos; + lu->col_pos = 0; + + /* Do standard update */ +#ifdef LUSOLSafeFastUpdate /* NB! Defined in lusol.h */ + if(TRUE || !changesign) { + if(changesign) { + LPSREAL *temp = LUSOL->vLU6L; + for(i = 1, temp++; i <= lp->rows+deltarows; i++, temp++) + if(*temp != 0) + *temp = -(*temp); + } + /* Execute the update using data prepared earlier */ + LU8RPC(LUSOL, LUSOL_UPDATE_OLDNONEMPTY, LUSOL_UPDATE_USEPREPARED, + k, NULL, NULL, &i, &DIAG, &VNORM); + } + else +#endif + { + /* Retrieve the data for the entering column (base 0) */ + i = lp->get_lpcolumn(lp, lu->col_enter, lu->value+deltarows, NULL, NULL); + lu->value[0] = 0; + /* Execute the update */ + LU8RPC(LUSOL, LUSOL_UPDATE_OLDNONEMPTY, LUSOL_UPDATE_NEWNONEMPTY, + k, lu->value, NULL, &i, &DIAG, &VNORM); + } + + if(i == LUSOL_INFORM_LUSUCCESS) { + + /* Check if we should refactorize based on accumulation of fill-in */ + DIAG = LUSOL->luparm[LUSOL_IP_NONZEROS_L]+LUSOL->luparm[LUSOL_IP_NONZEROS_U]; + VNORM = LUSOL->luparm[LUSOL_IP_NONZEROS_L0]+LUSOL->luparm[LUSOL_IP_NONZEROS_U0]; +#if 0 + /* This is Michael Saunder's fixed parameter */ + VNORM *= MAX_DELTAFILLIN; +#else + /* This is Kjell Eikland's dynamic error accumulation measure */ + VNORM *= pow(MAX_DELTAFILLIN, pow((0.5*LUSOL->nelem/VNORM), 0.25)); +#endif + lu->force_refact = (MYBOOL) ((DIAG > VNORM) && (lu->num_pivots > 20)); + +#if 0 + /* Additional KE logic to reduce maximum pivot count based on the density of B */ + if(!lu->force_refact) { + VNORM = lp->rows+1; + VNORM = 1.0 - pow((LPSREAL) LUSOL->nelem/VNORM/VNORM, 0.2); + lu->force_refact = (MYBOOL) (lu->num_pivots > VNORM*lp->bfp_pivotmax(lp)); + } +#endif + } + + /* Handle errors */ + else { +/* int infolevel = NORMAL; */ + int infolevel = DETAILED; + lp->report(lp, infolevel, "bfp_finishupdate: Failed at iter %.0f, pivot %d;\n%s\n", + (LPSREAL) (lp->total_iter+lp->current_iter), lu->num_pivots, LUSOL_informstr(LUSOL, i)); + if(i == LUSOL_INFORM_ANEEDMEM) { /* To compress used memory and realloc, if necessary */ + lp->invert(lp, INITSOL_USEZERO, FALSE); + if(i != LUSOL_INFORM_LUSUCCESS) + lp->report(lp, NORMAL, "bfp_finishupdate: Insufficient memory at iter %.0f;\n%s\n", + (LPSREAL) (lp->total_iter+lp->current_iter), LUSOL_informstr(LUSOL, i)); + } + else if(i == LUSOL_INFORM_RANKLOSS) { /* To fix rank loss and clear cumulative errors */ +#if 0 + /* This is test code to do pivot in slack BEFORE refactorization (pessimistic approach); + assumes that LUSOL returns correct information about the source of the singularity */ + kcol = LUSOL->luparm[LUSOL_IP_SINGULARINDEX]; +#ifdef MAPSINGULARCOLUMN + kcol = LUSOL_findColumnPosition(LUSOL, kcol); +#endif + lp->set_basisvar(lp, kcol-deltarows, kcol-deltarows); +#endif + lp->invert(lp, INITSOL_USEZERO, FALSE); + i = LUSOL->luparm[LUSOL_IP_INFORM]; + if(i != LUSOL_INFORM_LUSUCCESS) + lp->report(lp, NORMAL, "bfp_finishupdate: Recovery attempt unsuccessful at iter %.0f;\n%s\n", + (LPSREAL) (lp->total_iter+lp->current_iter), LUSOL_informstr(LUSOL, i)); + else + lp->report(lp, infolevel, "bfp_finishupdate: Correction or recovery was successful.\n"); + } + } + return( (MYBOOL) (i == LUSOL_INFORM_LUSUCCESS) ); + +} /* bfp_finishupdate */ + + +/* MUST MODIFY */ +void BFP_CALLMODEL bfp_ftran_normal(lprec *lp, LPSREAL *pcol, int *nzidx) +{ + int i; + INVrec *lu; + + lu = lp->invB; + + /* Do the LUSOL ftran */ + i = LUSOL_ftran(lu->LUSOL, pcol-bfp_rowoffset(lp), nzidx, FALSE); + if(i != LUSOL_INFORM_LUSUCCESS) { + lu->status = BFP_STATUS_ERROR; + lp->report(lp, NORMAL, "bfp_ftran_normal: Failed at iter %.0f, pivot %d;\n%s\n", + (LPSREAL) (lp->total_iter+lp->current_iter), lu->num_pivots, LUSOL_informstr(lu->LUSOL, i)); + } +} + + +/* MAY MODIFY */ +void BFP_CALLMODEL bfp_ftran_prepare(lprec *lp, LPSREAL *pcol, int *nzidx) +{ + int i; + INVrec *lu; + + lu = lp->invB; + + /* Do the LUSOL ftran */ + i = LUSOL_ftran(lu->LUSOL, pcol-bfp_rowoffset(lp), nzidx, TRUE); + if(i != LUSOL_INFORM_LUSUCCESS) { + lu->status = BFP_STATUS_ERROR; + lp->report(lp, NORMAL, "bfp_ftran_prepare: Failed at iter %.0f, pivot %d;\n%s\n", + (LPSREAL) (lp->total_iter+lp->current_iter), lu->num_pivots, LUSOL_informstr(lu->LUSOL, i)); + } +} + + +/* MUST MODIFY */ +void BFP_CALLMODEL bfp_btran_normal(lprec *lp, LPSREAL *prow, int *nzidx) +{ + int i; + INVrec *lu; + + lu = lp->invB; + + /* Do the LUSOL btran */ + i = LUSOL_btran(lu->LUSOL, prow-bfp_rowoffset(lp), nzidx); + if(i != LUSOL_INFORM_LUSUCCESS) { + lu->status = BFP_STATUS_ERROR; + lp->report(lp, NORMAL, "bfp_btran_normal: Failed at iter %.0f, pivot %d;\n%s\n", + (LPSREAL) (lp->total_iter+lp->current_iter), lu->num_pivots, LUSOL_informstr(lu->LUSOL, i)); + } + + /* Check performance data */ +#if 0 + if(lu->num_pivots == 1) { + if(lu->LUSOL->luparm[LUSOL_IP_ACCELERATION] > 0) + lp->report(lp, NORMAL, "RowL0 R:%10.7f C:%10.7f NZ:%10.7f\n", + (LPSREAL) lu->LUSOL->luparm[LUSOL_IP_ROWCOUNT_L0] / lu->LUSOL->m, + (LPSREAL) lu->LUSOL->luparm[LUSOL_IP_COLCOUNT_L0] / lu->LUSOL->m, + (LPSREAL) lu->LUSOL->luparm[LUSOL_IP_NONZEROS_L0] / pow((LPSREAL) lu->LUSOL->m, 2)); + else + lp->report(lp, NORMAL, "ColL0 C:%10.7f NZ:%10.7f\n", + (LPSREAL) lu->LUSOL->luparm[LUSOL_IP_COLCOUNT_L0] / lu->LUSOL->m, + (LPSREAL) lu->LUSOL->luparm[LUSOL_IP_NONZEROS_L0] / pow((LPSREAL) lu->LUSOL->m, 2)); + } +#endif + +} + +/* MUST MODIFY - Routine to find maximum rank of equality constraints */ +int BFP_CALLMODEL bfp_findredundant(lprec *lp, int items, getcolumnex_func cb, int *maprow, int *mapcol) +{ + int i, j, nz = 0, m = 0, n = 0, *nzrows = NULL; + LPSREAL *nzvalues = NULL, *arraymax = NULL; + LUSOLrec *LUSOL; + + /* Are we capable of finding redundancy with this BFP? */ + if((maprow == NULL) && (mapcol == NULL)) + return( n ); + + /* If so, initialize memory structures */ + if(!allocINT(lp, &nzrows, items, FALSE) || + !allocREAL(lp, &nzvalues, items, FALSE)) + return( n ); + + /* Compute the number of non-empty columns */ + m = 0; + for(j = 1; j <= mapcol[0]; j++) { + n = cb(lp, mapcol[j], NULL, NULL, maprow); + if(n > 0) { + m++; + mapcol[m] = mapcol[j]; + nz += n; + } + } + mapcol[0] = m; + + /* Instantiate a LUSOL object */ + LUSOL = LUSOL_create(NULL, 0, LUSOL_PIVMOD_TRP, 0); + if((LUSOL == NULL) || !LUSOL_sizeto(LUSOL, items, m, nz*LUSOL_MULT_nz_a)) + goto Finish; + + /* Modify relevant LUSOL parameters */ + LUSOL->m = items; + LUSOL->n = m; +#if 0 + LUSOL->luparm[LUSOL_IP_KEEPLU] = FALSE; + LUSOL->luparm[LUSOL_IP_PIVOTTYPE] = LUSOL_PIVMOD_TRP; + LUSOL->parmlu[LUSOL_RP_FACTORMAX_Lij] = 2.0; +#endif + + /* Load the columns into LUSOL */ + for(j = 1; j <= m; j++) { + n = cb(lp, mapcol[j], nzvalues, nzrows, maprow); + i = LUSOL_loadColumn(LUSOL, nzrows, j, nzvalues, n, -1); + if(n != i) { + lp->report(lp, IMPORTANT, "bfp_findredundant: Error %d while loading column %d with %d nz\n", + i, j, n); + n = 0; + goto Finish; + } + } + + /* Scale rows to prevent numerical problems */ + if((lp->scalemode != SCALE_NONE) && allocREAL(lp, &arraymax, items+1, TRUE)) { + for(i = 1; i <= nz; i++) { + SETMAX(arraymax[LUSOL->indc[i]], fabs(LUSOL->a[i])); + } + for(i = 1; i <= nz; i++) + LUSOL->a[i] /= arraymax[LUSOL->indc[i]]; + FREE(arraymax); + } + + /* Factorize for maximum rank */ + n = 0; + i = LUSOL_factorize(LUSOL); + /* lp->report(lp, NORMAL, "bfp_findredundant: r=%d c=%d - %s\n", items, m, LUSOL_informstr(LUSOL, i));*/ + if((i == LUSOL_INFORM_LUSUCCESS) || (i != LUSOL_INFORM_LUSINGULAR)) + goto Finish; + + /* We have a singular matrix, obtain the indeces of the singular rows */ + for(i = LUSOL->luparm[LUSOL_IP_RANK_U] + 1; i <= items; i++) { + n++; + maprow[n] = LUSOL->ip[i]; + } + maprow[0] = n; + + /* Clean up */ +Finish: + LUSOL_free(LUSOL); + FREE(nzrows); + FREE(nzvalues); + + return( n ); +} diff --git a/src/external/lpsolve/build/lp_solve/lp_MDO.c b/src/external/lpsolve/build/lp_solve/lp_MDO.c new file mode 100644 index 00000000..6f7807c5 --- /dev/null +++ b/src/external/lpsolve/build/lp_solve/lp_MDO.c @@ -0,0 +1,241 @@ +/* + Minimum matrix inverse fill-in modules - interface for lp_solve v5.0+ + ---------------------------------------------------------------------------------- + Author: Kjell Eikland + Contact: kjell.eikland@broadpark.no + License terms: LGPL. + + Requires: string.h, colamd.h, lp_lib.h + + Release notes: + v1.0 1 September 2003 Preprocessing routines for minimum fill-in column + ordering for inverse factorization using the open + source COLAMD library. Suitable for the dense parts + of both the product form and LU factorization inverse + methods. + v1.1 1 July 2004 Renamed from lp_colamdMDO to lp_MDO. + + ---------------------------------------------------------------------------------- +*/ + +#include +#include "commonlib.h" +#include "lp_lib.h" +#include "colamd.h" +#include "lp_MDO.h" + +#ifdef FORTIFY +# include "lp_fortify.h" +#endif + +STATIC MYBOOL includeMDO(MYBOOL *usedpos, int item) +{ +/* Legend: TRUE => A basic slack variable already in the basis + FALSE => A column free for being pivoted in + AUTOMATIC+TRUE => A row-singleton user column pivoted into the basis + AUTOMATIC+FALSE => A column-singleton user column pivoted into the basis */ + + /* Handle case where we are processing all columns */ + if(usedpos == NULL) + return( TRUE ); + + else { + /* Otherwise do the selective case */ + MYBOOL test = usedpos[item]; +#if 1 + return( test != TRUE ); +#else + test = test & TRUE; + return( test == FALSE ); +#endif + } +} + +STATIC int prepareMDO(lprec *lp, MYBOOL *usedpos, int *colorder, int *data, int *rowmap) +/* This routine prepares data structures for colamd(). It is called twice, the first + time to count applicable non-zero elements by column, and the second time to fill in + the row indexes of the non-zero values from the first call. Note that the colamd() + row index base is 0 (which suits lp_solve fine). */ +{ + int i, ii, j, k, kk; + int nrows = lp->rows+1, ncols = colorder[0]; + int offset = 0, Bnz = 0, Tnz; + MYBOOL dotally = (MYBOOL) (rowmap == NULL); + MATrec *mat = lp->matA; + LPSREAL hold; + LPSREAL *value; + int *rownr; + + if(dotally) + data[0] = 0; + + Tnz = nrows - ncols; + for(j = 1; j <= ncols; j++) { + kk = colorder[j]; + + /* Process slacks */ + if(kk <= lp->rows) { + if(includeMDO(usedpos, kk)) { + if(!dotally) + data[Bnz] = rowmap[kk]+offset; + Bnz++; + } + Tnz++; + } + /* Process user columns */ + else { + k = kk - lp->rows; + i = mat->col_end[k-1]; + ii= mat->col_end[k]; + Tnz += ii-i; +#ifdef Paranoia + if(i >= ii) + lp->report(lp, SEVERE, "prepareMDO: Encountered empty basic column %d\n", k); +#endif + + /* Detect if we need to do phase 1 adjustments of zero-valued OF variable */ + rownr = &COL_MAT_ROWNR(i); + value = &COL_MAT_VALUE(i); + hold = 0; + if((*rownr > 0) && includeMDO(usedpos, 0) && modifyOF1(lp, kk, &hold, 1.0)) { + if(!dotally) + data[Bnz] = offset; + Bnz++; + } + /* Loop over all NZ-variables */ + for(; i < ii; + i++, value += matValueStep, rownr += matRowColStep) { + if(!includeMDO(usedpos, *rownr)) + continue; + /* See if we need to change phase 1 OF value */ + if(*rownr == 0) { + hold = *value; + if(!modifyOF1(lp, kk, &hold, 1.0)) + continue; + } + /* Tally uneliminated constraint row values */ + if(!dotally) + data[Bnz] = rowmap[*rownr]+offset; + Bnz++; + } + } + if(dotally) + data[j] = Bnz; + } + return( Tnz ); +} + +STATIC MYBOOL verifyMDO(lprec *lp, int *col_end, int *row_nr, int rowmax, int colmax) +{ + int i, j, n, err = 0; + + for(i = 1; i <= colmax; i++) { + n = 0; + for(j = col_end[i-1]; (j < col_end[i]) && (err == 0); j++, n++) { + if(row_nr[j] < 0 || row_nr[j] > rowmax) + err = 1; + if(n > 0 && row_nr[j] <= row_nr[j-1]) + err = 2; + n++; + } + } + if(err != 0) + lp->report(lp, SEVERE, "verifyMDO: Invalid MDO input structure generated (error %d)\n", err); + return( (MYBOOL) (err == 0) ); +} + +void *mdo_calloc(size_t size, size_t count) +{ + return ( calloc(size, count) ); +} +void mdo_free(void *mem) +{ + free( mem ); +} + + +int __WINAPI getMDO(lprec *lp, MYBOOL *usedpos, int *colorder, int *size, MYBOOL symmetric) +{ + int error = FALSE; + int nrows = lp->rows+1, ncols = colorder[0]; + int i, j, kk, n; + int *col_end, *row_map = NULL; + int Bnz, Blen, *Brows = NULL; + int stats[COLAMD_STATS]; + double knobs[COLAMD_KNOBS]; + + /* Tally the non-zero counts of the unused columns/rows of the + basis matrix and store corresponding "net" starting positions */ + allocINT(lp, &col_end, ncols+1, FALSE); + n = prepareMDO(lp, usedpos, colorder, col_end, NULL); + Bnz = col_end[ncols]; + + /* Check that we have unused basic columns, otherwise skip analysis */ + if(ncols == 0 || Bnz == 0) + goto Transfer; + + /* Get net number of rows and fill mapper */ + allocINT(lp, &row_map, nrows, FALSE); + nrows = 0; + for(i = 0; i <= lp->rows; i++) { + row_map[i] = i-nrows; + /* Increment eliminated row counter if necessary */ + if(!includeMDO(usedpos, i)) + nrows++; + } + nrows = lp->rows+1 - nrows; + + /* Store row indeces of non-zero values in the basic columns */ + Blen = colamd_recommended(Bnz, nrows, ncols); + allocINT(lp, &Brows, Blen, FALSE); + prepareMDO(lp, usedpos, colorder, Brows, row_map); +#ifdef Paranoia + verifyMDO(lp, col_end, Brows, nrows, ncols); +#endif + + /* Compute the MDO */ +#if 1 + colamd_set_defaults(knobs); + knobs [COLAMD_DENSE_ROW] = 0.2+0.2 ; /* default changed for UMFPACK */ + knobs [COLAMD_DENSE_COL] = knobs [COLAMD_DENSE_ROW]; + if(symmetric && (nrows == ncols)) { + MEMCOPY(colorder, Brows, ncols + 1); + error = !symamd(nrows, colorder, col_end, Brows, knobs, stats, mdo_calloc, mdo_free); + } + else + error = !colamd(nrows, ncols, Blen, Brows, col_end, knobs, stats); +#else + if(symmetric && (nrows == ncols)) { + MEMCOPY(colorder, Brows, ncols + 1); + error = !symamd(nrows, colorder, col_end, Brows, knobs, stats, mdo_calloc, mdo_free); + } + else + error = !colamd(nrows, ncols, Blen, Brows, col_end, (double *) NULL, stats); +#endif + + /* Transfer the estimated optimal ordering, adjusting for index offsets */ +Transfer: + if(error) + error = stats[COLAMD_STATUS]; + else { + MEMCOPY(Brows, colorder, ncols + 1); + for(j = 0; j < ncols; j++) { + kk = col_end[j]; + n = Brows[kk+1]; + colorder[j+1] = n; + } + } + + /* Free temporary vectors */ + FREE(col_end); + if(row_map != NULL) + FREE(row_map); + if(Brows != NULL) + FREE(Brows); + + if(size != NULL) + *size = ncols; + return( error ); +} + + diff --git a/src/external/lpsolve/build/lp_solve/lp_MPS.c b/src/external/lpsolve/build/lp_solve/lp_MPS.c new file mode 100644 index 00000000..3c737de9 --- /dev/null +++ b/src/external/lpsolve/build/lp_solve/lp_MPS.c @@ -0,0 +1,1855 @@ + +#include +#include +#include +#include "commonlib.h" +#include "lp_lib.h" +#include "lp_scale.h" +#include "lp_report.h" +#include "lp_MPS.h" + +#ifdef FORTIFY +# include "lp_fortify.h" +#endif + +/* Define buffer-size controled function mapping */ +# if defined _MSC_VER +# define vsnprintf _vsnprintf +# endif + +/* MPS file input and output routines for lp_solve */ +/* ------------------------------------------------------------------------- */ + +/* +A: MPS format was named after an early IBM LP product and has emerged +as a de facto standard ASCII medium among most of the commercial LP +codes. Essentially all commercial LP codes accept this format, but if +you are using public domain software and have MPS files, you may need +to write your own reader routine for this. It's not too hard. The +main things to know about MPS format are that it is column oriented (as +opposed to entering the model as equations), and everything (variables, +rows, etc.) gets a name. MPS format is described in more detail in +Murtagh's book, referenced in another section. Also, + +ftp://softlib.cs.rice.edu/pub/miplib/mps_format + +is a nice short introduction. exports + +MPS is an old format, so it is set up as though you were using punch +cards, and is not free format. Fields start in column 1, 5, 15, 25, 40 +and 50. Sections of an MPS file are marked by so-called header cards, +which are distinguished by their starting in column 1. Although it is +typical to use upper-case throughout the file (like I said, MPS has +long historical roots), many MPS-readers will accept mixed-case for +anything except the header cards, and some allow mixed-case anywhere. +The names that you choose for the individual entities (constraints or +variables) are not important to the solver; you should pick names that +are meaningful to you, or will be easy for a post-processing code to +read. + +Here is a little sample model written in MPS format (explained in more +detail below): + +NAME TESTPROB +ROWS + N COST + L LIM1 + G LIM2 + E MYEQN +COLUMNS + XONE COST 1 LIM1 1 + XONE LIM2 1 + YTWO COST 4 LIM1 1 + YTWO MYEQN -1 + ZTHREE COST 9 LIM2 1 + ZTHREE MYEQN 1 +RHS + RHS1 LIM1 5 LIM2 10 + RHS1 MYEQN 7 +BOUNDS + UP BND1 XONE 4 + LO BND1 YTWO -1 + UP BND1 YTWO 1 +ENDATA + +means: + +Optimize + COST: XONE + 4 YTWO + 9 ZTHREE +Subject To + LIM1: XONE + YTWO <= 5 + LIM2: XONE + ZTHREE >= 10 + MYEQN: - YTWO + ZTHREE = 7 +Bounds + 0 <= XONE <= 4 +-1 <= YTWO <= 1 +End + +*/ + +/* copy a MPS name, only trailing spaces are removed. In MPS, names can have + embedded spaces! */ +STATIC void namecpy(char *into, char *from) +{ + int i; + + /* copy at most 8 characters of from, stop at end of string or newline */ + for(i = 0; (from[i] != '\0') && (from[i] != '\n') && (from[i] != '\r') && (i < 8); i++) + into[i] = from[i]; + + /* end with end of string */ + into[i] = '\0'; + + /* remove trailing spaces, if any */ + for(i--; (i >= 0) && (into[i] == ' '); i--) + into[i] = '\0'; +} + +/* scan an MPS line, and pick up the information in the fields that are + present */ + +/* scan_line for fixed MPS format */ +STATIC int scan_lineFIXED(lprec *lp, int section, char* line, char *field1, char *field2, char *field3, + double *field4, char *field5, double *field6) +{ + int items = 0, line_len; + char buf[16], *ptr1, *ptr2; + + line_len = (int) strlen(line); + while ((line_len) && ((line[line_len-1] == '\n') || (line[line_len-1] == '\r') || (line[line_len-1] == ' '))) + line_len--; + + if(line_len >= 1) { /* spaces or N/L/G/E or UP/LO */ + strncpy(buf, line, 4); + buf[4] = '\0'; + sscanf(buf, "%s", field1); + items++; + } + else + field1[0] = '\0'; + + line += 4; + + if(line_len >= 5) { /* name */ + if (line[-1] != ' ') { + report(lp, IMPORTANT, "MPS_readfile: invalid data card; column 4 must be blank\n"); + return(-1); + } + namecpy(field2, line); + items++; + } + else + field2[0] = '\0'; + + line += 10; + + if(line_len >= 14) { /* name */ + if (line[-1] != ' ' || line[-2] != ' ') { + report(lp, IMPORTANT, "MPS_readfile: invalid data card; columns 13-14 must be blank\n"); + return(-1); + } + namecpy(field3, line); + items++; + } + else + field3[0] = '\0'; + + line += 10; + + if(line_len >= 25) { /* number */ + if (line[-1] != ' ' || line[-2] != ' ') { + report(lp, IMPORTANT, "MPS_readfile: invalid data card; columns 23-24 must be blank\n"); + return(-1); + } + strncpy(buf, line, 15); + buf[15] = '\0'; + for(ptr1 = ptr2 = buf; ; ptr1++) + if(!isspace((unsigned char) *ptr1)) + if((*(ptr2++) = *ptr1) == 0) + break; + /* *field4 = atof(buf); */ + *field4 = strtod(buf, &ptr1); + if(*ptr1) { + report(lp, IMPORTANT, "MPS_readfile: invalid number in columns 25-36 \n"); + return(-1); + } + items++; + } + else + *field4 = 0; + + line += 15; + + if(line_len >= 40) { /* name */ + if (line[-1] != ' ' || line[-2] != ' ' || line[-3] != ' ') { + report(lp, IMPORTANT, "MPS_readfile: invalid data card; columns 37-39 must be blank\n"); + return(-1); + } + namecpy(field5, line); + items++; + } + else + field5[0] = '\0'; + line += 10; + + if(line_len >= 50) { /* number */ + if (line[-1] != ' ' || line[-2] != ' ') { + report(lp, IMPORTANT, "MPS_readfile: invalid data card; columns 48-49 must be blank\n"); + return(-1); + } + strncpy(buf, line, 15); + buf[15] = '\0'; + for(ptr1 = ptr2 = buf; ; ptr1++) + if(!isspace((unsigned char) *ptr1)) + if((*(ptr2++) = *ptr1) == 0) + break; + /* *field6 = atof(buf); */ + *field6 = strtod(buf, &ptr1); + if(*ptr1) { + report(lp, IMPORTANT, "MPS_readfile: invalid number in columns 50-61 \n"); + return(-1); + } + items++; + } + else + *field6 = 0; + + return(items); +} + +STATIC int spaces(char *line, int line_len) +{ + int l; + char *line1 = line; + + while (*line1 == ' ') + line1++; + l = (int) (line1 - line); + if (line_len < l) + l = line_len; + return(l); +} + +STATIC int lenfield(char *line, int line_len) +{ + int l; + char *line1 = line; + + while ((*line1) && (*line1 != ' ')) + line1++; + l = (int) (line1 - line); + if (line_len < l) + l = line_len; + return(l); +} + +/* scan_line for fixed MPS format */ +STATIC int scan_lineFREE(lprec *lp, int section, char* line, char *field1, char *field2, char *field3, + double *field4, char *field5, double *field6) +{ + int items = 0, line_len, len; + char buf[256], *ptr1 = NULL, *ptr2; + + line_len = (int) strlen(line); + while ((line_len) && ((line[line_len-1] == '\n') || (line[line_len-1] == '\r') || (line[line_len-1] == ' '))) + line_len--; + + len = spaces(line, line_len); + line += len; + line_len -= len; + + if ((section == MPSCOLUMNS) || (section == MPSRHS) || (section == MPSRANGES)) { + field1[0] = '\0'; + items++; + } + else { + len = lenfield(line, line_len); + if(line_len >= 1) { /* spaces or N/L/G/E or UP/LO */ + strncpy(buf, line, len); + buf[len] = '\0'; + sscanf(buf, "%s", field1); + if(section == MPSBOUNDS) { + for(ptr1 = field1; *ptr1; ptr1++) + *ptr1=(char)toupper(*ptr1); + } + items++; + } + else + field1[0] = '\0'; + + line += len; + line_len -= len; + + len = spaces(line, line_len); + line += len; + line_len -= len; + } + + len = lenfield(line, line_len); + if(line_len >= 1) { /* name */ + strncpy(field2, line, len); + field2[len] = '\0'; + items++; + } + else + field2[0] = '\0'; + + line += len; + line_len -= len; + + len = spaces(line, line_len); + line += len; + line_len -= len; + + len = lenfield(line, line_len); + if(line_len >= 1) { /* name */ + strncpy(field3, line, len); + field3[len] = '\0'; + items++; + } + else + field3[0] = '\0'; + + line += len; + line_len -= len; + + len = spaces(line, line_len); + line += len; + line_len -= len; + + if (*field3) { + if((section == MPSCOLUMNS) && (strcmp(field3, "'MARKER'") == 0)) { + *field4 = 0; + items++; + ptr1 = field3; + } + else if((section == MPSBOUNDS) && + ((strcmp(field1, "FR") == 0) || (strcmp(field1, "MI") == 0) || (strcmp(field1, "PL") == 0) || (strcmp(field1, "BV") == 0))) + /* field3 *is* the variable name */; + else { + /* Some free MPS formats allow that field 2 is not provided after the first time. + The fieldname is then the same as the the defined field the line before. + In that case field2 shifts to field3, field1 shifts to field 2. + This situation is tested by checking if field3 is numerical AND there are an even number of fields after. + */ + char *line1 = line; + int line_len1 = line_len; + int items1 = 0; + + while (line_len1 > 0) { + len = lenfield(line1, line_len1); + if (len > 0) { + line1 += len; + line_len1 -= len; + items1++; + } + len = spaces(line1, line_len1); + line1 += len; + line_len1 -= len; + } + if ((items1 % 2) == 0) { + *field4 = strtod(field3, &ptr1); + if(*ptr1 == 0) { + strcpy(field3, field2); + if ((section == MPSROWS) || (section == MPSBOUNDS) /* || (section == MPSSOS) */) + *field2 = 0; + else { + strcpy(field2, field1); + *field1 = 0; + } + items++; + } + else + ptr1 = NULL; + } + else + ptr1 = NULL; + } + } + else { + ptr1 = NULL; + if((section == MPSBOUNDS) && + ((strcmp(field1, "FR") == 0) || (strcmp(field1, "MI") == 0) || (strcmp(field1, "PL") == 0) || (strcmp(field1, "BV") == 0))) { + strcpy(field3, field2); + *field2 = 0; + items++; + } + } + + if(ptr1 == NULL) { + len = lenfield(line, line_len); + if(line_len >= 1) { /* number */ + strncpy(buf, line, len); + buf[len] = '\0'; + for(ptr1 = ptr2 = buf; ; ptr1++) + if(!isspace((unsigned char) *ptr1)) + if((*(ptr2++) = *ptr1) == 0) + break; + /* *field4 = atof(buf); */ + *field4 = strtod(buf, &ptr1); + if(*ptr1) + return(-1); + items++; + } + else + *field4 = 0; + + line += len; + line_len -= len; + + len = spaces(line, line_len); + line += len; + line_len -= len; + } + + len = lenfield(line, line_len); + if(line_len >= 1) { /* name */ + strncpy(field5, line, len); + field5[len] = '\0'; + items++; + } + else + field5[0] = '\0'; + line += len; + line_len -= len; + + len = spaces(line, line_len); + line += len; + line_len -= len; + + len = lenfield(line, line_len); + if(line_len >= 1) { /* number */ + strncpy(buf, line, len); + buf[len] = '\0'; + for(ptr1 = ptr2 = buf; ; ptr1++) + if(!isspace((unsigned char) *ptr1)) + if((*(ptr2++) = *ptr1) == 0) + break; + /* *field6 = atof(buf); */ + *field6 = strtod(buf, &ptr1); + if(*ptr1) + return(-1); + items++; + } + else + *field6 = 0; + + if((section == MPSSOS) && (items == 2)) { + strcpy(field3, field2); + strcpy(field2, field1); + *field1 = 0; + } + + if((section != MPSOBJNAME) && (section != MPSBOUNDS)) { + for(ptr1 = field1; *ptr1; ptr1++) + *ptr1=(char)toupper(*ptr1); + } + + return(items); +} + +STATIC int addmpscolumn(lprec *lp, MYBOOL Int_section, int typeMPS, MYBOOL *Column_ready, + int *count, LPSREAL *Last_column, int *Last_columnno, char *Last_col_name) +{ + int ok = TRUE; + + if (*Column_ready) { + ok = add_columnex(lp, *count, Last_column, Last_columnno); + if (ok) { + ok = set_col_name(lp, lp->columns, Last_col_name); + } + if (ok) { + set_int(lp, lp->columns, Int_section); + if ((Int_section) && (typeMPS & MPSIBM)) + set_bounds(lp, lp->columns, 10.0 / DEF_INFINITE, DEF_INFINITE / 10.0); + } + } + *Column_ready = FALSE; + *count = 0; + return(ok); +} + +#if 0 +STATIC MYBOOL appendmpsitem(int *count, int rowIndex[], LPSREAL rowValue[]) +{ + int i = *count; + + if(rowValue[i] == 0) + return( FALSE ); + + while((i > 0) && (rowIndex[i] < rowIndex[i-1])) { + swapINT (rowIndex+i, rowIndex+i-1); + swapREAL(rowValue+i, rowValue+i-1); + i--; + } + (*count)++; + return( TRUE ); +} +#endif + +STATIC MYBOOL appendmpsitem(int *count, int rowIndex[], LPSREAL rowValue[]) +{ + int i = *count; + + /* Check for non-negativity of the index */ + if(rowIndex[i] < 0) + return( FALSE ); + + /* Move the element so that the index list is sorted ascending */ + while((i > 0) && (rowIndex[i] < rowIndex[i-1])) { + swapINT (rowIndex+i, rowIndex+i-1); + swapREAL(rowValue+i, rowValue+i-1); + i--; + } + + /* Add same-indexed items (which is rarely encountered), and shorten the list */ + if((i < *count) && (rowIndex[i] == rowIndex[i+1])) { + int ii = i + 1; + rowValue[i] += rowValue[ii]; + (*count)--; + while(ii < *count) { + rowIndex[ii] = rowIndex[ii+1]; + rowValue[ii] = rowValue[ii+1]; + ii++; + } + } + + /* Update the count and return */ + (*count)++; + return( TRUE ); +} + +MYBOOL MPS_readfile(lprec **newlp, char *filename, int typeMPS, int verbose) +{ + MYBOOL status = FALSE; + FILE *fpin; + + fpin = fopen(filename, "r"); + if(fpin != NULL) { + status = MPS_readhandle(newlp, fpin, typeMPS, verbose); + fclose(fpin); + } + return( status ); +} + +static int __WINAPI MPS_input(void *fpin, char *buf, int max_size) +{ + return(fgets(buf, max_size, (FILE *) fpin) != NULL); +} + +MYBOOL __WINAPI MPS_readhandle(lprec **newlp, FILE *filehandle, int typeMPS, int verbose) +{ + return(MPS_readex(newlp, (void *) filehandle, MPS_input, typeMPS, verbose)); +} + +MYBOOL __WINAPI MPS_readex(lprec **newlp, void *userhandle, read_modeldata_func read_modeldata, int typeMPS, int verbose) +{ + char field1[BUFSIZ], field2[BUFSIZ], field3[BUFSIZ], field5[BUFSIZ], line[BUFSIZ], tmp[BUFSIZ], + Last_col_name[BUFSIZ], probname[BUFSIZ], OBJNAME[BUFSIZ], *ptr; + int items, row, Lineno, var, + section = MPSUNDEF, variant = 0, NZ = 0, SOS = 0; + MYBOOL Int_section, Column_ready, Column_ready1, + Unconstrained_rows_found = FALSE, OF_found = FALSE, CompleteStatus = FALSE; + double field4, field6; + LPSREAL *Last_column = NULL; + int count = 0, *Last_columnno = NULL; + int OBJSENSE = ROWTYPE_EMPTY; + lprec *lp; + int (*scan_line)(lprec *lp, int section, char* line, char *field1, char *field2, char *field3, + double *field4, char *field5, double *field6); + + if(newlp == NULL) + return( CompleteStatus ); + else if(*newlp == NULL) + lp = make_lp(0, 0); + else + lp = *newlp; + + if((typeMPS & MPSFIXED) == MPSFIXED) + scan_line = scan_lineFIXED; + else if((typeMPS & MPSFREE) == MPSFREE) + scan_line = scan_lineFREE; + else { + report(lp, IMPORTANT, "MPS_readfile: Unrecognized MPS line type.\n"); + if (*newlp == NULL) + delete_lp(lp); + return( CompleteStatus ); + } + + if (lp != NULL) { + lp->source_is_file = TRUE; + lp->verbose = verbose; + strcpy(Last_col_name, ""); + strcpy(OBJNAME, ""); + Int_section = FALSE; + Column_ready = FALSE; + Lineno = 0; + + /* let's initialize line to all zero's */ + MEMCLEAR(line, BUFSIZ); + + while(read_modeldata(userhandle, line, BUFSIZ - 1)) { + Lineno++; + + for(ptr = line; (*ptr) && (isspace((unsigned char) *ptr)); ptr++); + + /* skip lines which start with "*", they are comment */ + if((line[0] == '*') || (*ptr == 0) || (*ptr == '\n') || (*ptr == '\r')) { + report(lp, FULL, "Comment on line %d: %s", Lineno, line); + continue; + } + + report(lp, FULL, "Line %6d: %s", Lineno, line); + + /* first check for "special" lines: NAME, ROWS, BOUNDS .... */ + /* this must start in the first position of line */ + if(line[0] != ' ') { + sscanf(line, "%s", tmp); + if(strcmp(tmp, "NAME") == 0) { + section = MPSNAME; + *probname = 0; + sscanf(line, "NAME %s", probname); + if (!set_lp_name(lp, probname)) + break; + } + else if(((typeMPS & MPSFREE) == MPSFREE) && (strcmp(tmp, "OBJSENSE") == 0)) { + section = MPSOBJSENSE; + report(lp, FULL, "Switching to OBJSENSE section\n"); + } + else if(((typeMPS & MPSFREE) == MPSFREE) && (strcmp(tmp, "OBJNAME") == 0)) { + section = MPSOBJNAME; + report(lp, FULL, "Switching to OBJNAME section\n"); + } + else if(strcmp(tmp, "ROWS") == 0) { + section = MPSROWS; + report(lp, FULL, "Switching to ROWS section\n"); + } + else if(strcmp(tmp, "COLUMNS") == 0) { + allocREAL(lp, &Last_column, lp->rows + 1, TRUE); + allocINT(lp, &Last_columnno, lp->rows + 1, TRUE); + count = 0; + if ((Last_column == NULL) || (Last_columnno == NULL)) + break; + section = MPSCOLUMNS; + report(lp, FULL, "Switching to COLUMNS section\n"); + } + else if(strcmp(tmp, "RHS") == 0) { + if (!addmpscolumn(lp, Int_section, typeMPS, &Column_ready, &count, Last_column, Last_columnno, Last_col_name)) + break; + section = MPSRHS; + report(lp, FULL, "Switching to RHS section\n"); + } + else if(strcmp(tmp, "BOUNDS") == 0) { + section = MPSBOUNDS; + report(lp, FULL, "Switching to BOUNDS section\n"); + } + else if(strcmp(tmp, "RANGES") == 0) { + section = MPSRANGES; + report(lp, FULL, "Switching to RANGES section\n"); + } + else if((strcmp(tmp, "SOS") == 0) || (strcmp(tmp, "SETS") == 0)) { + section = MPSSOS; + if(strcmp(tmp, "SOS") == 0) + variant = 0; + else + variant = 1; + report(lp, FULL, "Switching to %s section\n", tmp); + } + else if(strcmp(tmp, "ENDATA") == 0) { + report(lp, FULL, "Finished reading MPS file\n"); + CompleteStatus = TRUE; + break; + } + else { /* line does not start with space and does not match above */ + report(lp, IMPORTANT, "Unrecognized MPS line %d: %s\n", Lineno, line); + break; + } + } + else { /* normal line, process */ + items = scan_line(lp, section, line, field1, field2, field3, &field4, field5, &field6); + if(items < 0){ + report(lp, IMPORTANT, "Syntax error on line %d: %s\n", Lineno, line); + break; + } + + switch(section) { + + case MPSNAME: + report(lp, IMPORTANT, "Error, extra line under NAME line\n"); + break; + + case MPSOBJSENSE: + if(OBJSENSE != ROWTYPE_EMPTY) { + report(lp, IMPORTANT, "Error, extra line under OBJSENSE line\n"); + break; + } + if((strcmp(field1, "MAXIMIZE") == 0) || (strcmp(field1, "MAX") == 0)) { + OBJSENSE = ROWTYPE_OFMAX; + set_maxim(lp); + } + else if((strcmp(field1, "MINIMIZE") == 0) || (strcmp(field1, "MIN") == 0)) { + OBJSENSE = ROWTYPE_OFMIN; + set_minim(lp); + } + else { + report(lp, SEVERE, "Unknown OBJSENSE direction '%s' on line %d\n", field1, Lineno); + break; + } + continue; + + case MPSOBJNAME: + if(*OBJNAME) { + report(lp, IMPORTANT, "Error, extra line under OBJNAME line\n"); + break; + } + strcpy(OBJNAME, field1); + continue; + + /* Process entries in the ROWS section */ + case MPSROWS: + /* field1: rel. operator; field2: name of constraint */ + + report(lp, FULL, "Row %5d: %s %s\n", lp->rows + 1, field1, field2); + + if(strcmp(field1, "N") == 0) { + if((*OBJNAME) && (strcmp(field2, OBJNAME))) + /* Ignore this objective name since it is not equal to the OBJNAME name */; + else if(!OF_found) { /* take the first N row as OF, ignore others */ + if (!set_row_name(lp, 0, field2)) + break; + OF_found = TRUE; + } + else if(!Unconstrained_rows_found) { + report(lp, IMPORTANT, "Unconstrained row %s ignored\n", field2); + report(lp, IMPORTANT, "Further messages of this kind will be suppressed\n"); + Unconstrained_rows_found = TRUE; + } + } + else if(strcmp(field1, "L") == 0) { + if ((!str_add_constraint(lp, "" ,LE ,0)) || (!set_row_name(lp, lp->rows, field2))) + break; + } + else if(strcmp(field1, "G") == 0) { + if ((!str_add_constraint(lp, "" ,GE ,0)) || (!set_row_name(lp, lp->rows, field2))) + break; + } + else if(strcmp(field1, "E") == 0) { + if ((!str_add_constraint(lp, "",EQ ,0)) || (!set_row_name(lp, lp->rows, field2))) + break; + } + else { + report(lp, SEVERE, "Unknown relation code '%s' on line %d\n", field1, Lineno); + break; + } + + continue; + + /* Process entries in the COLUMNS section */ + case MPSCOLUMNS: + /* field2: variable; field3: constraint; field4: coef */ + /* optional: field5: constraint; field6: coef */ + + report(lp, FULL, "Column %4d: %s %s %g %s %g\n", + lp->columns + 1, field2, field3, field4, field5, field6); + + if((items == 4) || (items == 5) || (items == 6)) { + if (NZ == 0) + strcpy(Last_col_name, field2); + else if(*field2) { + Column_ready1 = (MYBOOL) (strcmp(field2, Last_col_name) != 0); + if(Column_ready1) { + if (find_var(lp, field2, FALSE) >= 0) { + report(lp, SEVERE, "Variable name (%s) is already used!\n", field2); + break; + } + + if(Column_ready) { /* Added ability to handle non-standard "same as above" column name */ + if (addmpscolumn(lp, Int_section, typeMPS, &Column_ready, &count, Last_column, Last_columnno, Last_col_name)) { + strcpy(Last_col_name, field2); + NZ = 0; + } + else + break; + } + } + } + if(items == 5) { /* there might be an INTEND or INTORG marker */ + /* look for " 'MARKER' 'INTORG'" + or " 'MARKER' 'INTEND'" */ + if(strcmp(field3, "'MARKER'") != 0) + break; + if(strcmp(field5, "'INTORG'") == 0) { + Int_section = TRUE; + report(lp, FULL, "Switching to integer section\n"); + } + else if(strcmp(field5, "'INTEND'") == 0) { + Int_section = FALSE; + report(lp, FULL, "Switching to non-integer section\n"); + } + else + report(lp, IMPORTANT, "Unknown marker (ignored) at line %d: %s\n", + Lineno, field5); + } + else if((row = find_row(lp, field3, Unconstrained_rows_found)) >= 0) { + if(row > lp->rows) + report(lp, CRITICAL, "Invalid row %s encountered in the MPS file\n", field3); + Last_columnno[count] = row; + Last_column[count] = (LPSREAL)field4; + if(appendmpsitem(&count, Last_columnno, Last_column)) { + NZ++; + Column_ready = TRUE; + } + } + } + if(items == 6) { + if((row = find_row(lp, field5, Unconstrained_rows_found)) >= 0) { + if(row > lp->rows) + report(lp, CRITICAL, "Invalid row %s encountered in the MPS file\n", field5); + Last_columnno[count] = row; + Last_column[count] = (LPSREAL)field6; + if(appendmpsitem(&count, Last_columnno, Last_column)) { + NZ++; + Column_ready = TRUE; + } + } + } + + if((items < 4) || (items > 6)) { /* Wrong! */ + report(lp, CRITICAL, "Wrong number of items (%d) in COLUMNS section (line %d)\n", + items, Lineno); + break; + } + + continue; + + /* Process entries in the RHS section */ + /* field2: uninteresting name; field3: constraint name */ + /* field4: value */ + /* optional: field5: constraint name; field6: value */ + case MPSRHS: + + report(lp, FULL, "RHS line: %s %s %g %s %g\n", + field2, field3, field4, field5, field6); + + if((items != 4) && (items != 6)) { + report(lp, CRITICAL, "Wrong number of items (%d) in RHS section line %d\n", + items, Lineno); + break; + } + + if((row = find_row(lp, field3, Unconstrained_rows_found)) >= 0) { + if ((row == 0) && ((typeMPS & MPSNEGOBJCONST) == MPSNEGOBJCONST)) + field4 = -field4; + set_rh(lp, row, (LPSREAL)field4); + } + + if(items == 6) { + if((row = find_row(lp, field5, Unconstrained_rows_found)) >= 0) { + if ((row == 0) && ((typeMPS & MPSNEGOBJCONST) == MPSNEGOBJCONST)) + field6 = -field6; + set_rh(lp, row, (LPSREAL)field6); + } + } + + continue; + + /* Process entries in the BOUNDS section */ + /* field1: bound type; field2: uninteresting name; */ + /* field3: variable name; field4: value */ + case MPSBOUNDS: + + report(lp, FULL, "BOUNDS line: %s %s %s %g\n", + field1, field2, field3, field4); + + var = find_var(lp, field3, FALSE); + if(var < 0){ /* bound on undefined var in COLUMNS section ... */ + Column_ready = TRUE; + if (!addmpscolumn(lp, FALSE, typeMPS, &Column_ready, &count, Last_column, Last_columnno, field3)) + break; + Column_ready = TRUE; + var = find_var(lp, field3, TRUE); + } + if(var < 0) /* undefined var and could add ... */; + else if(strcmp(field1, "UP") == 0) { + /* upper bound */ + /* if(!set_bounds(lp, var, get_lowbo(lp, var), field4)) */ + if(!set_upbo(lp, var, field4)) + break; + } + else if(strcmp(field1, "SC") == 0) { + /* upper bound */ + if(field4 == 0) + field4 = lp->infinite; + /* if(!set_bounds(lp, var, get_lowbo(lp, var), field4)) */ + if(!set_upbo(lp, var, field4)) + break; + set_semicont(lp, var, TRUE); + } + else if(strcmp(field1, "SI") == 0) { + /* upper bound */ + if(field4 == 0) + field4 = lp->infinite; + /* if(!set_bounds(lp, var, get_lowbo(lp, var), field4)) */ + if(!set_upbo(lp, var, field4)) + break; + set_int(lp, var, TRUE); + set_semicont(lp, var, TRUE); + } + else if(strcmp(field1, "LO") == 0) { + /* lower bound */ + /* if(!set_bounds(lp, var, field4, get_upbo(lp, var))) */ + if(!set_lowbo(lp, var, field4)) + break; + } + else if(strcmp(field1, "PL") == 0) { /* plus-ranged variable */ + /* if(!set_bounds(lp, var, get_lowbo(lp, var), lp->infinite)) */ + if(!set_upbo(lp, var, lp->infinite)) + break; + } + else if(strcmp(field1, "MI") == 0) { /* minus-ranged variable */ + /* if(!set_bounds(lp, var, -lp->infinite, get_upbo(lp, var))) */ + if(!set_lowbo(lp, var, -lp->infinite)) + break; + } + else if(strcmp(field1, "FR") == 0) { /* free variable */ + set_unbounded(lp, var); + } + else if(strcmp(field1, "FX") == 0) { + /* fixed, upper _and_ lower */ + if(!set_bounds(lp, var, field4, field4)) + break; + } + else if(strcmp(field1, "BV") == 0) { /* binary variable */ + set_binary(lp, var, TRUE); + } + /* AMPL bounds type UI and LI added by E.Imamura (CRIEPI) */ + else if(strcmp(field1, "UI") == 0) { /* upper bound for integer variable */ + /* if(!set_bounds(lp, var, get_lowbo(lp, var), field4)) */ + if(!set_upbo(lp, var, field4)) + break; + set_int(lp, var, TRUE); + } + else if(strcmp(field1, "LI") == 0) { /* lower bound for integer variable - corrected by KE */ + /* if(!set_bounds(lp, var, field4, get_upbo(lp, var))) */ + if(!set_lowbo(lp, var, field4)) + break; + set_int(lp, var, TRUE); + } + else { + report(lp, CRITICAL, "BOUND type %s on line %d is not supported", + field1, Lineno); + break; + } + + continue; + + /* Process entries in the BOUNDS section */ + + /* We have to implement the following semantics: + + D. The RANGES section is for constraints of the form: h <= + constraint <= u . The range of the constraint is r = u - h . The + value of r is specified in the RANGES section, and the value of u or + h is specified in the RHS section. If b is the value entered in the + RHS section, and r is the value entered in the RANGES section, then + u and h are thus defined: + + row type sign of r h u + ---------------------------------------------- + G + or - b b + |r| + L + or - b - |r| b + E + b b + |r| + E - b - |r| b */ + + /* field2: uninteresting name; field3: constraint name */ + /* field4: value */ + /* optional: field5: constraint name; field6: value */ + + case MPSRANGES: + + report(lp, FULL, "RANGES line: %s %s %g %s %g", + field2, field3, field4, field5, field6); + + if((items != 4) && (items != 6)) { + report(lp, CRITICAL, "Wrong number of items (%d) in RANGES section line %d", + items, Lineno); + break; + } + + if((row = find_row(lp, field3, Unconstrained_rows_found)) >= 0) { + /* Determine constraint type */ + + if(fabs(field4) >= lp->infinite) { + report(lp, IMPORTANT, + "Warning, Range for row %s >= infinity (value %g) on line %d, ignored", + field3, field4, Lineno); + } + else if(field4 == 0) { + /* Change of a GE or LE to EQ */ + if(lp->orig_upbo[row] != 0) + set_constr_type(lp, row, EQ); + } + else if(is_chsign(lp, row)) { + /* GE */ + lp->orig_upbo[row] = fabs(field4); + } + else if((lp->orig_upbo[row] == 0) && (field4 >= 0)) { + /* EQ with positive sign of r value */ + set_constr_type(lp, row, GE); + lp->orig_upbo[row] = field4; + } + else if(lp->orig_upbo[row] == lp->infinite) { + /* LE */ + lp->orig_upbo[row] = fabs(field4); + } + else if((lp->orig_upbo[row] == 0) && (field4 < 0)) { + /* EQ with negative sign of r value */ + set_constr_type(lp, row, LE); + lp->orig_upbo[row] = my_flipsign(field4); + } + else { /* let's be paranoid */ + report(lp, IMPORTANT, + "Cannot figure out row type, row = %d, is_chsign = %d, upbo = %g on line %d", + row, is_chsign(lp, row), (double)lp->orig_upbo[row], Lineno); + } + } + + if(items == 6) { + if((row = find_row(lp, field5, Unconstrained_rows_found)) >= 0) { + /* Determine constraint type */ + + if(fabs(field6) >= lp->infinite) { + report(lp, IMPORTANT, + "Warning, Range for row %s >= infinity (value %g) on line %d, ignored", + field5, field6, Lineno); + } + else if(field6 == 0) { + /* Change of a GE or LE to EQ */ + if(lp->orig_upbo[row] != 0) + set_constr_type(lp, row, EQ); + } + else if(is_chsign(lp, row)) { + /* GE */ + lp->orig_upbo[row] = fabs(field6); + } + else if(lp->orig_upbo[row] == 0 && field6 >= 0) { + /* EQ with positive sign of r value */ + set_constr_type(lp, row, GE); + lp->orig_upbo[row] = field6; + } + else if(lp->orig_upbo[row] == lp->infinite) { + /* LE */ + lp->orig_upbo[row] = fabs(field6); + } + else if((lp->orig_upbo[row] == 0) && (field6 < 0)) { + /* EQ with negative sign of r value */ + set_constr_type(lp, row, LE); + lp->orig_upbo[row] = my_flipsign(field6); + } + else { /* let's be paranoid */ + report(lp, IMPORTANT, + "Cannot figure out row type, row = %d, is_chsign = %d, upbo = %g on line %d", + row, is_chsign(lp,row), (double) lp->orig_upbo[row], Lineno); + } + } + } + + continue; + + /* Process entries in the SOS section */ + + /* We have to implement the following semantics: + + E. The SOS section is for ordered variable sets of the form: + x1, x2, x3 ... xn where only a given number of consequtive variables + may be non-zero. Each set definition is prefaced by type, name + and priority data. Each set member has an optional weight that + determines its order. There are two forms supported; a full format + and a reduced CPLEX-like format. */ + + case MPSSOS: + report(lp, FULL, "SOS line: %s %s %g %s %g", + field2, field3, field4, field5, field6); + + if((items == 0) || (items > 4)) { + report(lp, IMPORTANT, + "Invalid number of items (%d) in SOS section line %d\n", + items, Lineno); + break; + } + + if(strlen(field1) == 0) items--; /* fix scanline anomoly! */ + + /* Check if this is the start of a new SOS */ + if(items == 1 || items == 4) { + row = (int) (field1[1] - '0'); + if((row <= 0) || (row > 9)) { + report(lp, IMPORTANT, + "Error: Invalid SOS type %s line %d\n", field1, Lineno); + break; + } + field1[0] = '\0'; /* fix scanline anomoly! */ + + /* lp_solve needs a name for the SOS */ + if(variant == 0) { + if(strlen(field3) == 0) /* CPLEX format does not provide a SOS name; create one */ + sprintf(field3, "SOS_%d", SOS_count(lp) + 1); + } + else { /* Remap XPRESS format name */ + strcpy(field3, field1); + } + /* Obtain the SOS priority */ + if(items == 4) + SOS = (int) field4; + else + SOS = 1; + + /* Define a new SOS instance */ + + SOS = add_SOS(lp, field3, (int) row, SOS, 0, NULL, NULL); + } + /* Otherwise, add set members to the active SOS */ + else { + char *field = (items == 3) ? field3 /* Native lp_solve and XPRESS formats */ : field2 /* CPLEX format */; + + var = find_var(lp, field, FALSE); /* Native lp_solve and XPRESS formats */ + if(var < 0){ /* SOS on undefined var in COLUMNS section ... */ + Column_ready = TRUE; + if (!addmpscolumn(lp, FALSE, typeMPS, &Column_ready, &count, Last_column, Last_columnno, field)) + break; + Column_ready = TRUE; + var = find_var(lp, field, TRUE); + } + if((var < 0) || (SOS < 1)) /* undefined var and could add ... */; + else append_SOSrec(lp->SOS->sos_list[SOS-1], 1, &var, &field4); + } + + continue; + } + + /* If we got here there was an error "upstream" */ + report(lp, IMPORTANT, + "Error: Cannot handle line %d\n", Lineno); + break; + } + } + + if((*OBJNAME) && (!OF_found)) { + report(lp, IMPORTANT, + "Error: Objective function specified by OBJNAME card not found\n"); + CompleteStatus = FALSE; + } + + if(CompleteStatus == FALSE) { + if (*newlp == NULL) + delete_lp(lp); + } + else { + if (typeMPS & MPSIBM) { + LPSREAL lower, upper; + + for (var = 1; var <= lp->columns; var++) + if (is_int(lp, var)) { + lower = get_lowbo(lp, var); + upper = get_upbo(lp, var); + if ((lower == 10.0 / DEF_INFINITE) && (upper == DEF_INFINITE / 10.0)) + upper = 1.0; + if (lower == 10.0 / DEF_INFINITE) + lower = 0.0; + if (upper == DEF_INFINITE / 10.0) + upper = lp->infinite; + set_bounds(lp, var, lower, upper); + } + } + *newlp = lp; + } + if(Last_column != NULL) + FREE(Last_column); + if(Last_columnno != NULL) + FREE(Last_columnno); + } + + return( CompleteStatus ); +} + +static void number(char *str,LPSREAL value) + { + char __str[80], *_str; + int i; + + /* sprintf(_str,"%12.6G",value); */ + _str=__str+2; + if (value>=0.0) + if ((value!=0.0) && ((value>0.99999999e12) || (value<0.0001))) { + int n=15; + + do { + n--; + i=sprintf(_str,"%*.*E",n,n-6,(double) value); + if (i>12) { + char *ptr=strchr(_str,'E'); + + if (ptr!=NULL) { + if (*(++ptr)=='-') ptr++; + while ((i>12) && ((*ptr=='+') || (*ptr=='0'))) { + strcpy(ptr,ptr+1); + i--; + } + } + } + } while (i>12); + } + else if (value>=1.0e10) { + int n=13; + + do { + i=sprintf(_str,"%*.0f",--n,(double) value); + } while (i>12); + } + else { + if (((i=sprintf(_str,"%12.10f",(double) value))>12) && (_str[12]>='5')) { + for (i=11;i>=0;i--) + if (_str[i]!='.') { + if (++_str[i]>'9') _str[i]='0'; + else break; + } + if (i<0) { + *(--_str)='1'; + *(--_str)=' '; + } + } + } + else + if ((value<-0.99999999e11) || (value>-0.0001)) { + int n=15; + + do { + n--; + i=sprintf(_str,"%*.*E",n,n-7,(double) value); + if (i>12) { + char *ptr=strchr(_str,'E'); + + if (ptr!=NULL) { + if (*(++ptr)=='-') ptr++; + while ((i>12) && ((*ptr=='+') || (*ptr=='0'))) { + strcpy(ptr,ptr+1); + i--; + } + } + } + } while (i>12); + } + else if (value<=-1.0e9) { + int n=13; + + do { + i=sprintf(_str,"%*.0f",--n,(double) value); + } while (i>12); + } + else + if (((i=sprintf(_str,"%12.9f",(double) value))>12) && (_str[12]>='5')) { + for (i=11;i>=1;i--) + if (_str[i]!='.') { + if (++_str[i]>'9') _str[i]='0'; + else break; + } + if (i<1) { + *_str='1'; + *(--_str)='-'; + *(--_str)=' '; + } + } + //strncpy(str,_str,12); + _str[12] ='\0'; strcpy(str, _str); + } + +static char *formatnumber12(char *numberbuffer, double a) +{ +#if 0 + return(sprintf(numberbuffer, "%12g", a)); +#else + number(numberbuffer, a); + return(numberbuffer); +#endif +} + +STATIC char *MPSnameFIXED(char *name0, char *name) +{ + sprintf(name0, "%-8.8s", name); + return(name0); +} + +STATIC char *MPSnameFREE(char *name0, char *name) +{ + if(strlen(name) < 8) + return(MPSnameFIXED(name0, name)); + else + return(name); +} + +static void write_data(void *userhandle, write_modeldata_func write_modeldata, char *format, ...) +{ + char buff[DEF_STRBUFSIZE+1]; + va_list ap; + + va_start(ap, format); + vsnprintf(buff, DEF_STRBUFSIZE, format, ap); + va_end(ap); + write_modeldata(userhandle, buff); +} + +MYBOOL __WINAPI MPS_writefileex(lprec *lp, int typeMPS, void *userhandle, write_modeldata_func write_modeldata) +{ + int i, j, jj, je, k, marker, putheader, ChangeSignObj = FALSE, *idx, *idx1; + MYBOOL ok = TRUE, names_used; + LPSREAL a, *val, *val1; + char * (*MPSname)(char *name0, char *name); + char numberbuffer[15]; + char name0[9]; + + if((typeMPS & MPSFIXED) == MPSFIXED) { + MPSname = MPSnameFIXED; + ChangeSignObj = is_maxim(lp); + } + else if((typeMPS & MPSFREE) == MPSFREE) { + MPSname = MPSnameFREE; + } + else { + report(lp, IMPORTANT, "MPS_writefile: unrecognized MPS name type.\n"); + return(FALSE); + } + + names_used = lp->names_used; + + if((typeMPS & MPSFIXED) == MPSFIXED) { + /* Check if there is no variable name where the first 8 charachters are equal to the first 8 characters of anothe variable */ + if(names_used) + for(i = 1; (i <= lp->columns) && (ok); i++) + if((lp->col_name[i] != NULL) && (lp->col_name[i]->name != NULL) && (!is_splitvar(lp, i)) && (strlen(lp->col_name[i]->name) > 8)) + for(j = 1; (j < i) && (ok); j++) + if((lp->col_name[j] != NULL) && (lp->col_name[j]->name != NULL) && (!is_splitvar(lp, j))) + if(strncmp(lp->col_name[i]->name, lp->col_name[j]->name, 8) == 0) + ok = FALSE; + } + + if(!ok) { + lp->names_used = FALSE; + ok = TRUE; + } + + memset(numberbuffer, 0, sizeof(numberbuffer)); + + marker = 0; + + /* First write metadata in structured comment form (lp_solve style) */ + write_data(userhandle, write_modeldata, "*\n", + (int) MAJORVERSION, (int) MINORVERSION); + write_data(userhandle, write_modeldata, "*\n", lp->rows); + write_data(userhandle, write_modeldata, "*\n", lp->columns); + write_data(userhandle, write_modeldata, "*\n", lp->equalities); + if(SOS_count(lp) > 0) + write_data(userhandle, write_modeldata, "*\n", SOS_count(lp)); + write_data(userhandle, write_modeldata, "*\n", lp->int_vars); + if(lp->sc_vars > 0) + write_data(userhandle, write_modeldata, "*\n", lp->sc_vars); + write_data(userhandle, write_modeldata, "*\n", (is_maxim(lp) ? "MAX" : "MIN")); + write_data(userhandle, write_modeldata, "*\n"); + + /* Write the MPS content */ + write_data(userhandle, write_modeldata, "NAME %s\n", MPSname(name0, get_lp_name(lp))); + if(((typeMPS & MPSFREE) == MPSFREE) && (is_maxim(lp))) + write_data(userhandle, write_modeldata, "OBJSENSE\n MAX\n"); + write_data(userhandle, write_modeldata, "ROWS\n"); + for(i = 0; i <= lp->rows; i++) { + if(i == 0) + write_data(userhandle, write_modeldata, " N "); + else if(lp->orig_upbo[i] != 0) { + if(is_chsign(lp,i)) + write_data(userhandle, write_modeldata, " G "); + else + write_data(userhandle, write_modeldata, " L "); + } + else + write_data(userhandle, write_modeldata, " E "); + write_data(userhandle, write_modeldata, "%s\n", MPSname(name0, get_row_name(lp, i))); + } + + allocREAL(lp, &val, 1 + lp->rows, TRUE); + allocINT(lp, &idx, 1 + lp->rows, TRUE); + write_data(userhandle, write_modeldata, "COLUMNS\n"); + for(i = 1; i <= lp->columns; i++) { + if(!is_splitvar(lp, i)) { + if(is_int(lp,i) && (marker % 2) == 0) { + write_data(userhandle, write_modeldata, " MARK%04d 'MARKER' 'INTORG'\n", + marker); + marker++; + } + if(!is_int(lp,i) && (marker % 2) == 1) { + write_data(userhandle, write_modeldata, " MARK%04d 'MARKER' 'INTEND'\n", + marker); + marker++; + } + + /* Loop over non-zero column entries */ + je = get_columnex(lp, i, val, idx); + for(k = 1, val1 = val, idx1 = idx, jj = 0; jj < je; jj++) { + k = 1 - k; + j = *(idx1++); + a = *(val1++); + if (k == 0) { + write_data(userhandle, write_modeldata, " %s", + MPSname(name0, get_col_name(lp, i))); + write_data(userhandle, write_modeldata, " %s %s", + MPSname(name0, get_row_name(lp, j)), +/* formatnumber12(numberbuffer, (double) a)); */ + formatnumber12(numberbuffer, (double) (a * (j == 0 && ChangeSignObj ? -1 : 1)))); + } + else + write_data(userhandle, write_modeldata, " %s %s\n", + MPSname(name0, get_row_name(lp, j)), + formatnumber12(numberbuffer, (double) (a * (j == 0 && ChangeSignObj ? -1 : 1)))); +/* formatnumber12(numberbuffer, (double) a)); */ + } + if(k == 0) + write_data(userhandle, write_modeldata, "\n"); + } + } + if((marker % 2) == 1) { + write_data(userhandle, write_modeldata, " MARK%04d 'MARKER' 'INTEND'\n", + marker); + /* marker++; */ /* marker not used after this */ + } + FREE(idx); + FREE(val); + + write_data(userhandle, write_modeldata, "RHS\n"); + for(k = 1, i = 0; i <= lp->rows; i++) { + a = lp->orig_rhs[i]; + if(a) { + a = unscaled_value(lp, a, i); + if ((i == 0) && ((typeMPS & MPSNEGOBJCONST) == MPSNEGOBJCONST)) + a = -a; + if((i == 0) || is_chsign(lp, i)) + a = my_flipsign(a); + k = 1 - k; + if(k == 0) + write_data(userhandle, write_modeldata, " RHS %s %s", + MPSname(name0, get_row_name(lp, i)), + formatnumber12(numberbuffer, (double)a)); + else + write_data(userhandle, write_modeldata, " %s %s\n", + MPSname(name0, get_row_name(lp, i)), + formatnumber12(numberbuffer, (double)a)); + } + } + if(k == 0) + write_data(userhandle, write_modeldata, "\n"); + + putheader = TRUE; + for(k = 1, i = 1; i <= lp->rows; i++){ + a = 0; + if((lp->orig_upbo[i] < lp->infinite) && (lp->orig_upbo[i] != 0.0)) + a = lp->orig_upbo[i]; + if(a) { + if(putheader) { + write_data(userhandle, write_modeldata, "RANGES\n"); + putheader = FALSE; + } + a = unscaled_value(lp, a, i); + k = 1 - k; + if(k == 0) + write_data(userhandle, write_modeldata, " RGS %s %s", + MPSname(name0, get_row_name(lp, i)), + formatnumber12(numberbuffer, (double)a)); + else + write_data(userhandle, write_modeldata, " %s %s\n", + MPSname(name0, get_row_name(lp, i)), + formatnumber12(numberbuffer, (double)a)); + } + } + if(k == 0) + write_data(userhandle, write_modeldata, "\n"); + + putheader = TRUE; + for(i = lp->rows + 1; i <= lp->sum; i++) + if(!is_splitvar(lp, i - lp->rows)) { + j = i - lp->rows; + if((lp->orig_lowbo[i] != 0) && (lp->orig_upbo[i] < lp->infinite) && + (lp->orig_lowbo[i] == lp->orig_upbo[i])) { + a = lp->orig_upbo[i]; + a = unscaled_value(lp, a, i); + if(putheader) { + write_data(userhandle, write_modeldata, "BOUNDS\n"); + putheader = FALSE; + } + write_data(userhandle, write_modeldata, " FX BND %s %s\n", + MPSname(name0, get_col_name(lp, j)), + formatnumber12(numberbuffer, (double)a)); + } + else if(is_binary(lp, j)) { + if(putheader) { + write_data(userhandle, write_modeldata, "BOUNDS\n"); + putheader = FALSE; + } + write_data(userhandle, write_modeldata, " BV BND %s\n", + MPSname(name0, get_col_name(lp, j))); + } + else if(is_unbounded(lp, j)) { + if(putheader) { + write_data(userhandle, write_modeldata, "BOUNDS\n"); + putheader = FALSE; + } + write_data(userhandle, write_modeldata, " FR BND %s\n", + MPSname(name0, get_col_name(lp, j))); + } + else { + if((lp->orig_lowbo[i] != 0) || (is_int(lp, j))) { /* Some solvers like CPLEX need to have a bound on a variable if it is integer, but not binary else it is interpreted as binary which is not ment */ + a = lp->orig_lowbo[i]; + a = unscaled_value(lp, a, i); + if(putheader) { + write_data(userhandle, write_modeldata, "BOUNDS\n"); + putheader = FALSE; + } + if(lp->orig_lowbo[i] != -lp->infinite) + write_data(userhandle, write_modeldata, " LO BND %s %s\n", + MPSname(name0, get_col_name(lp, j)), + formatnumber12(numberbuffer, (double)a)); + else + write_data(userhandle, write_modeldata, " MI BND %s\n", + MPSname(name0, get_col_name(lp, j))); + } + + if((lp->orig_upbo[i] < lp->infinite) || (is_semicont(lp, j))) { + a = lp->orig_upbo[i]; + if(a < lp->infinite) + a = unscaled_value(lp, a, i); + if(putheader) { + write_data(userhandle, write_modeldata, "BOUNDS\n"); + putheader = FALSE; + } + if(is_semicont(lp, j)) { + if(is_int(lp, j)) + write_data(userhandle, write_modeldata, " SI BND %s %s\n", + MPSname(name0, get_col_name(lp, j)), + (a < lp->infinite) ? formatnumber12(numberbuffer, (double)a) : " "); + else + write_data(userhandle, write_modeldata, " SC BND %s %s\n", + MPSname(name0, get_col_name(lp, j)), + (a < lp->infinite) ? formatnumber12(numberbuffer, (double)a) : " "); + } + else + write_data(userhandle, write_modeldata, " UP BND %s %s\n", + MPSname(name0, get_col_name(lp, j)), + formatnumber12(numberbuffer, (double)a)); + } + } + } + + /* Write optional SOS section */ + putheader = TRUE; + for(i = 0; i < SOS_count(lp); i++) { + SOSgroup *SOS = lp->SOS; + + if(putheader) { + write_data(userhandle, write_modeldata, "SOS\n"); + putheader = FALSE; + } + write_data(userhandle, write_modeldata, " S%1d SOS %s %s\n", + SOS->sos_list[i]->type, + MPSname(name0, SOS->sos_list[i]->name), + formatnumber12(numberbuffer, (double) SOS->sos_list[i]->priority)); + for(j = 1; j <= SOS->sos_list[i]->size; j++) { + write_data(userhandle, write_modeldata, " SOS %s %s\n", + MPSname(name0, get_col_name(lp, SOS->sos_list[i]->members[j])), + formatnumber12(numberbuffer, (double) SOS->sos_list[i]->weights[j])); + } + } + + write_data(userhandle, write_modeldata, "ENDATA\n"); + + lp->names_used = names_used; + + return(ok); +} + +static int __WINAPI write_lpdata(void *userhandle, char *buf) +{ + fputs(buf, (FILE *) userhandle); + return(TRUE); +} + +MYBOOL MPS_writefile(lprec *lp, int typeMPS, char *filename) +{ + FILE *output = stdout; + MYBOOL ok; + + if (filename != NULL) { + ok = ((output = fopen(filename, "w")) != NULL); + if(!ok) + return(ok); + } + else + output = lp->outstream; + + ok = MPS_writefileex(lp, typeMPS, (void *) output, write_lpdata); + + if (filename != NULL) + fclose(output); + + return(ok); +} + +MYBOOL MPS_writehandle(lprec *lp, int typeMPS, FILE *output) +{ + MYBOOL ok; + + if (output != NULL) + set_outputstream(lp, output); + + output = lp->outstream; + + ok = MPS_writefileex(lp, typeMPS, (void *) output, write_lpdata); + + return(ok); +} + + +/* Read and write BAS files */ +/* #define OldNameMatch */ +#ifdef OldNameMatch +static int MPS_getnameidx(lprec *lp, char *varname, MYBOOL isrow) +{ + int in = -1; + + in = get_nameindex(lp, varname, isrow); + if((in < 0) && (strncmp(varname, (isrow ? ROWNAMEMASK : COLNAMEMASK), 1) == 0)) { + if(sscanf(varname + 1, "%d", &in) != 1) + in = -1; + } + return( in ); +} +#else +static int MPS_getnameidx(lprec *lp, char *varname, MYBOOL tryrowfirst) +{ + int in = -1; + + /* Have we defined our own variable names? */ + if(lp->names_used) { + /* First check the primary name list */ + in = get_nameindex(lp, varname, tryrowfirst); + if((in > 0) && !tryrowfirst) + in += lp->rows; + /* If we were unsuccessful, try the secondary name list */ + else if(in < 0) { + in = get_nameindex(lp, varname, (MYBOOL) !tryrowfirst); + if((in > 0) && tryrowfirst) + in += lp->rows; + } + } + /* If not, see if we can match the standard name mask */ + + if(in == -1) { + if(strncmp(varname, (tryrowfirst ? ROWNAMEMASK : COLNAMEMASK), 1) == 0) { + /* Fail if we did not successfully scan as a valid integer */ + if((sscanf(varname + 1, "%d", &in) != 1) || + (in < (tryrowfirst ? 0 : 1)) || (in > (tryrowfirst ? lp->rows : lp->columns))) + in = -1; + } + else if(strncmp(varname, (!tryrowfirst ? ROWNAMEMASK : COLNAMEMASK), 1) == 0) { + /* Fail if we did not successfully scan as a valid integer */ + if((sscanf(varname + 1, "%d", &in) != 1) || + (in < (tryrowfirst ? 0 : 1)) || (in > (tryrowfirst ? lp->rows : lp->columns))) + in = -1; + } + } + return( in ); +} +#endif + +MYBOOL MPS_readBAS(lprec *lp, int typeMPS, char *filename, char *info) +{ + char field1[BUFSIZ], field2[BUFSIZ], field3[BUFSIZ], field5[BUFSIZ], + line[BUFSIZ], tmp[BUFSIZ], *ptr; + double field4, field6; + int ib, in, items, Lineno = 0; + MYBOOL ok; + FILE *input = stdin; + int (*scan_line)(lprec *lp, int section, char* line, char *field1, char *field2, char *field3, + double *field4, char *field5, double *field6); + + if((typeMPS & MPSFIXED) == MPSFIXED) + scan_line = scan_lineFIXED; + else if((typeMPS & MPSFREE) == MPSFREE) + scan_line = scan_lineFREE; + else { + report(lp, IMPORTANT, "MPS_readBAS: unrecognized MPS line type.\n"); + return(FALSE); + } + + ok = (MYBOOL) ((filename != NULL) && ((input = fopen(filename,"r")) != NULL)); + if(!ok) + return(ok); + default_basis(lp); + + /* Let's initialize line to all zero's */ + MEMCLEAR(line, BUFSIZ); + ok = FALSE; + while(fgets(line, BUFSIZ - 1, input)) { + Lineno++; + + for(ptr = line; (*ptr) && (isspace((unsigned char) *ptr)); ptr++); + + /* skip lines which start with "*", they are comment */ + if((line[0] == '*') || (*ptr == 0) || (*ptr == '\n') || (*ptr == '\r')) { + report(lp, FULL, "Comment on line %d: %s", Lineno, line); + continue; + } + + report(lp, FULL, "Line %6d: %s", Lineno, line); + + /* first check for "special" lines: in our case only NAME and ENDATA, + ...this must start in the first position of line */ + if(line[0] != ' ') { + sscanf(line, "%s", tmp); + if(strcmp(tmp, "NAME") == 0) { + if(info != NULL) { + *info = 0; + for(ptr = line + 4; (*ptr) && (isspace((unsigned char) *ptr)); ptr++); + in = (int) strlen(ptr); + while ((in > 0) && ((ptr[in - 1] == '\r') || (ptr[in - 1] == '\n') || isspace(ptr[in - 1]))) + in--; + ptr[in] = 0; + strcpy(info, ptr); + } + } + else if(strcmp(tmp, "ENDATA") == 0) { + report(lp, FULL, "Finished reading BAS file\n"); + ok = TRUE; + break; + } + else { /* line does not start with space and does not match above */ + report(lp, IMPORTANT, "Unrecognized BAS line %d: %s\n", Lineno, line); + break; + } + } + else { /* normal line, process */ + items = scan_line(lp, /* MPSRHS */ MPSBOUNDS, line, field1, field2, field3, &field4, field5, &field6); + if(items < 0){ + report(lp, IMPORTANT, "Syntax error on line %d: %s\n", Lineno, line); + break; + } + /* find first variable index value */ + in = MPS_getnameidx(lp, field2, FALSE); +#ifdef OldNameMatch + if(in < 0) + in = MPS_getnameidx(lp, field2, TRUE); + else + in += lp->rows; +#endif + if(in < 0) + break; + + /* check if we have the basic/non-basic variable format */ + if(field1[0] == 'X') { + /* find second variable index value */ + ib = in; + in = MPS_getnameidx(lp, field3, FALSE); +#ifdef OldNameMatch + if(in < 0) + in = MPS_getnameidx(lp, field3, TRUE); + else + in += lp->rows; +#endif + if(in < 0) + break; + + lp->is_lower[in] = (MYBOOL) (field1[1] == 'L'); + lp->is_basic[ib] = TRUE; + } + else + lp->is_lower[in] = (MYBOOL) (field1[0] == 'L'); + + lp->is_basic[in] = FALSE; + + } + } + /* Update the basis index-to-variable array */ + ib = 0; + items = lp->sum; + for(in = 1; in <= items; in++) + if(lp->is_basic[in]) { + ib++; + lp->var_basic[ib] = in; + } + + fclose(input); + return( ok ); +} + +MYBOOL MPS_writeBAS(lprec *lp, int typeMPS, char *filename) +{ + int ib, in; + MYBOOL ok; + char name1[100], name2[100]; + FILE *output = stdout; + char * (*MPSname)(char *name0, char *name); + char name0[9]; + + /* Set name formatter */ + if((typeMPS & MPSFIXED) == MPSFIXED) + MPSname = MPSnameFIXED; + else if((typeMPS & MPSFREE) == MPSFREE) + MPSname = MPSnameFREE; + else { + report(lp, IMPORTANT, "MPS_writeBAS: unrecognized MPS name type.\n"); + return(FALSE); + } + + /* Open the file for writing */ + ok = (MYBOOL) ((filename == NULL) || ((output = fopen(filename,"w")) != NULL)); + if(!ok) + return(ok); + if(filename == NULL && lp->outstream != NULL) + output = lp->outstream; + + fprintf(output, "NAME %s Rows %d Cols %d Iters %.0f\n", + get_lp_name(lp), lp->rows, lp->columns, (double) get_total_iter(lp)); + + ib = lp->rows; + in = 0; + while ((ib < lp->sum) || (in < lp->sum)) { + + /* Find next basic variable (skip slacks) */ + ib++; + while((ib <= lp->sum) && !lp->is_basic[ib]) + ib++; + + /* Find next non-basic variable (skip lower-bounded structural variables) */ + in++; + while((in <= lp->sum) && (lp->is_basic[in] || + ((in > lp->rows) && lp->is_lower[in]))) + in++; + + /* Check if we have a basic/non-basic variable pair */ + if((ib <= lp->sum) && (in <= lp->sum)) { + strcpy(name1, MPSname(name0, (ib <= lp->rows ? get_row_name(lp, ib) : + get_col_name(lp, ib-lp->rows)))); + strcpy(name2, MPSname(name0, (in <= lp->rows ? get_row_name(lp, in) : + get_col_name(lp, in-lp->rows)))); + fprintf(output, " %2s %s %s\n", (lp->is_lower[in] ? "XL" : "XU"), name1, name2); + } + + /* Otherwise just write the bound state of the non-basic variable */ + else if(in <= lp->sum) { + strcpy(name1, MPSname(name0, (in <= lp->rows ? get_row_name(lp, in) : + get_col_name(lp, in-lp->rows)))); + fprintf(output, " %2s %s\n", (lp->is_lower[in] ? "LL" : "UL"), name1); + } + + } + fprintf(output, "ENDATA\n"); + + if(filename != NULL) + fclose(output); + return( ok ); +} diff --git a/src/external/lpsolve/build/lp_solve/lp_SOS.c b/src/external/lpsolve/build/lp_solve/lp_SOS.c new file mode 100644 index 00000000..512ab548 --- /dev/null +++ b/src/external/lpsolve/build/lp_solve/lp_SOS.c @@ -0,0 +1,1575 @@ + +#include +#include "commonlib.h" +#include "lp_lib.h" +#include "lp_report.h" +#include "lp_SOS.h" + +#ifdef FORTIFY +# include "lp_fortify.h" +#endif + + +/* + Specially Ordered Set (SOS) routines - w/interface for lp_solve v5.0+ + ---------------------------------------------------------------------------------- + Author: Kjell Eikland + Contact: kjell.eikland@broadpark.no + License terms: LGPL. + + Requires: lp_lib.h + + Release notes: + v1.0 1 September 2003 Complete package for SOS creation and use in a LP + setting. Notable feature of this implementation + compared to those in other commercial systems is + the generalization to SOS'es of "unlimited" order. + v1.1 8 December 2003 Added variable (index) deletion method. + v1.2 17 December 2004 Added bound change tracking functionality. + v1.3 18 September 2005 Added sparse SOS handling to speed up processing + of large number of SOS'es. + + ---------------------------------------------------------------------------------- +*/ + +/* SOS group functions */ +STATIC SOSgroup *create_SOSgroup(lprec *lp) +{ + SOSgroup *group; + + group = (SOSgroup *) calloc(1, sizeof(*group)); + group->lp = lp; + group->sos_alloc = SOS_START_SIZE; + group->sos_list = (SOSrec **) malloc((group->sos_alloc) * sizeof(*group->sos_list)); + return(group); +} + +STATIC void resize_SOSgroup(SOSgroup *group) +{ + if(group->sos_count == group->sos_alloc) { + group->sos_alloc = (int)((double) group->sos_alloc*RESIZEFACTOR); + group->sos_list = (SOSrec **) realloc(group->sos_list, + (group->sos_alloc) * sizeof(*group->sos_list)); + } +} + +STATIC int append_SOSgroup(SOSgroup *group, SOSrec *SOS) +{ + int i, k; + SOSrec *SOSHold; + + /* Check if we should resize */ + resize_SOSgroup(group); + + /* First append to the end of the list */ + group->sos_list[group->sos_count] = SOS; + group->sos_count++; + i = abs(SOS->type); + SETMAX(group->maxorder, i); + if(i == 1) + group->sos1_count++; + k = group->sos_count; + SOS->tagorder = k; + + /* Sort the SOS list by given priority */ + for(i = group->sos_count-1; i > 0; i--) { + if(group->sos_list[i]->priority < group->sos_list[i-1]->priority) { + SOSHold = group->sos_list[i]; + group->sos_list[i] = group->sos_list[i-1]; + group->sos_list[i-1] = SOSHold; + if(SOSHold == SOS) + k = i; /* This is the index in the [1..> range */ + } + else + break; + } + /* Return the list index of the new SOS */ + return( k ); +} + + +STATIC int clean_SOSgroup(SOSgroup *group, MYBOOL forceupdatemap) +{ + int i, n, k; + SOSrec *SOS; + + if(group == NULL) + return( 0 ); + + /* Delete any SOS without members or trivial member count */ + n = 0; + if(group->sos_alloc > 0) { + group->maxorder = 0; + for(i = group->sos_count; i > 0; i--) { + SOS = group->sos_list[i-1]; + k = SOS->members[0]; + if((k == 0) || /* Empty */ + ((k == abs(SOS->type)) && (k <= 2))) { /* Trivial */ + delete_SOSrec(group, i); + n++; + } + else { + SETMAX(group->maxorder, abs(SOS->type)); + } + } + if((n > 0) || forceupdatemap) + SOS_member_updatemap(group); + } + return( n ); +} + + +STATIC void free_SOSgroup(SOSgroup **group) +{ + int i; + + if((group == NULL) || (*group == NULL)) + return; + if((*group)->sos_alloc > 0) { + for(i = 0; i < (*group)->sos_count; i++) + free_SOSrec((*group)->sos_list[i]); + FREE((*group)->sos_list); + FREE((*group)->membership); + FREE((*group)->memberpos); + } + FREE(*group); +} + +/* SOS record functions */ +STATIC SOSrec *create_SOSrec(SOSgroup *group, char *name, int type, int priority, int size, int *variables, LPSREAL *weights) +{ + SOSrec *SOS; + + SOS = (SOSrec *) calloc(1 , sizeof(*SOS)); + SOS->parent = group; + SOS->type = type; + if(name == NULL) + SOS->name = NULL; + else + { + allocCHAR(group->lp, &SOS->name, (int) (strlen(name)+1), FALSE); + strcpy(SOS->name, name); + } + if(type < 0) + type = abs(type); + SOS->tagorder = 0; + SOS->size = 0; + SOS->priority = priority; + SOS->members = NULL; + SOS->weights = NULL; + SOS->membersSorted = NULL; + SOS->membersMapped = NULL; + + if(size > 0) + size = append_SOSrec(SOS, size, variables, weights); + + return(SOS); +} + + +STATIC int append_SOSrec(SOSrec *SOS, int size, int *variables, LPSREAL *weights) +{ + int i, oldsize, newsize, nn; + lprec *lp = SOS->parent->lp; + + oldsize = SOS->size; + newsize = oldsize + size; + nn = abs(SOS->type); + + /* Shift existing active data right (normally zero) */ + if(SOS->members == NULL) + allocINT(lp, &SOS->members, 1+newsize+1+nn, TRUE); + else { + allocINT(lp, &SOS->members, 1+newsize+1+nn, AUTOMATIC); + for(i = newsize+1+nn; i > newsize+1; i--) + SOS->members[i] = SOS->members[i-size]; + } + SOS->members[0] = newsize; + SOS->members[newsize+1] = nn; + + /* Copy the new data into the arrays */ + if(SOS->weights == NULL) + allocREAL(lp, &SOS->weights, 1+newsize, TRUE); + else + allocREAL(lp, &SOS->weights, 1+newsize, AUTOMATIC); + for(i = oldsize+1; i <= newsize; i++) { + SOS->members[i] = variables[i-oldsize-1]; + if((SOS->members[i] < 1) || (SOS->members[i] > lp->columns)) + report(lp, IMPORTANT, "append_SOS_rec: Invalid SOS variable definition for index %d\n", SOS->members[i]); + else { + if(SOS->isGUB) + lp->var_type[SOS->members[i]] |= ISGUB; + else + lp->var_type[SOS->members[i]] |= ISSOS; + } + if(weights == NULL) + SOS->weights[i] = i; /* Follow standard, which is sorted ascending */ + else + SOS->weights[i] = weights[i-oldsize-1]; + SOS->weights[0] += SOS->weights[i]; + } + + /* Sort the new paired lists ascending by weight (simple bubble sort) */ + i = sortByREAL(SOS->members, SOS->weights, newsize, 1, TRUE); + if(i > 0) + report(lp, DETAILED, "append_SOS_rec: Non-unique SOS variable weight for index %d\n", i); + + /* Define mapping arrays to search large SOS's faster */ + allocINT(lp, &SOS->membersSorted, newsize, AUTOMATIC); + allocINT(lp, &SOS->membersMapped, newsize, AUTOMATIC); + for(i = oldsize+1; i <= newsize; i++) { + SOS->membersSorted[i - 1] = SOS->members[i]; + SOS->membersMapped[i - 1] = i; + } + sortByINT(SOS->membersMapped, SOS->membersSorted, newsize, 0, TRUE); + + /* Confirm the new size */ + SOS->size = newsize; + + return(newsize); + +} + +STATIC int make_SOSchain(lprec *lp, MYBOOL forceresort) +{ + int i, j, k, n; + MYBOOL *hold = NULL; + LPSREAL *order, sum, weight; + SOSgroup *group = lp->SOS; + + /* PART A: Resort individual SOS member lists, if specified */ + if(forceresort) + SOS_member_sortlist(group, 0); + + /* PART B: Tally SOS variables and create master SOS variable list */ + n = 0; + for(i = 0; i < group->sos_count; i++) + n += group->sos_list[i]->size; + lp->sos_vars = n; + if(lp->sos_vars > 0) /* Prevent memory loss in case of multiple solves */ + FREE(lp->sos_priority); + allocINT(lp, &lp->sos_priority, n, FALSE); + allocREAL(lp, &order, n, FALSE); + + /* Move variable data to the master SOS list and sort by ascending weight */ + n = 0; + sum = 0; + for(i = 0; i < group->sos_count; i++) { + for(j = 1; j <= group->sos_list[i]->size; j++) { + lp->sos_priority[n] = group->sos_list[i]->members[j]; + weight = group->sos_list[i]->weights[j]; + sum += weight; + order[n] = sum; + n++; + } + } + hpsortex(order, n, 0, sizeof(*order), FALSE, compareREAL, lp->sos_priority); + FREE(order); + + /* Remove duplicate SOS variables */ + allocMYBOOL(lp, &hold, lp->columns+1, TRUE); + k = 0; + for(i = 0; i < n; i++) { + j = lp->sos_priority[i]; + if(!hold[j]) { + hold[j] = TRUE; + if(k < i) + lp->sos_priority[k] = j; + k++; + } + } + FREE(hold); + + /* Adjust the size of the master variable list, if necessary */ + if(k < lp->sos_vars) { + allocINT(lp, &lp->sos_priority, k, AUTOMATIC); + lp->sos_vars = k; + } + + return( k ); + +} + + +STATIC MYBOOL delete_SOSrec(SOSgroup *group, int sosindex) +{ +#ifdef Paranoia + if((sosindex <= 0) || (sosindex > group->sos_count)) { + report(group->lp, IMPORTANT, "delete_SOSrec: Invalid SOS index %d\n", sosindex); + return(FALSE); + } +#endif + + /* Delete and free the SOS record */ + if(abs(SOS_get_type(group, sosindex)) == 1) + group->sos1_count--; + free_SOSrec(group->sos_list[sosindex-1]); + while(sosindex < group->sos_count) { + group->sos_list[sosindex-1] = group->sos_list[sosindex]; + sosindex++; + } + group->sos_count--; + + /* Update maxorder */ + group->maxorder = 0; + for(sosindex = 0; sosindex < group->sos_count; sosindex++) { + SETMAX(group->maxorder, abs(group->sos_list[sosindex]->type)); + } + + return(TRUE); +} + + +STATIC void free_SOSrec(SOSrec *SOS) +{ + if(SOS->name != NULL) + FREE(SOS->name); + if(SOS->size > 0) { + FREE(SOS->members); + FREE(SOS->weights); + FREE(SOS->membersSorted); + FREE(SOS->membersMapped); + } + FREE(SOS); +} + + +STATIC MYBOOL SOS_member_sortlist(SOSgroup *group, int sosindex) +/* Routine to (re-)sort SOS member arrays for faster access to large SOSes */ +{ + int i, n; + int *list; + lprec *lp = group->lp; + SOSrec *SOS; + +#ifdef Paranoia + if((sosindex < 0) || (sosindex > group->sos_count)) { + report(lp, IMPORTANT, "SOS_member_sortlist: Invalid SOS index %d\n", sosindex); + return(FALSE); + } +#endif + + if((sosindex == 0) && (group->sos_count == 1)) + sosindex = 1; + + if(sosindex == 0) { + for(i = 1; i <= group->sos_count; i++) { + if(!SOS_member_sortlist(group, i)) + return(FALSE); + } + } + else { + SOS = group->sos_list[sosindex-1]; + list = SOS->members; + n = list[0]; + /* Make sure that the arrays are properly allocated and sized */ + if(n != group->sos_list[sosindex-1]->size) { + allocINT(lp, &SOS->membersSorted, n, AUTOMATIC); + allocINT(lp, &SOS->membersMapped, n, AUTOMATIC); + group->sos_list[sosindex-1]->size = n; + } + /* Reload the arrays and do the sorting */ + for(i = 1; i <= n; i++) { + SOS->membersSorted[i - 1] = list[i]; + SOS->membersMapped[i - 1] = i; + } + sortByINT(SOS->membersMapped, SOS->membersSorted, n, 0, TRUE); + } + return( TRUE ); +} + +STATIC int SOS_member_updatemap(SOSgroup *group) +{ + int i, j, k, n, nvars = 0, + *list, *tally = NULL; + SOSrec *rec; + lprec *lp = group->lp; + + /* (Re)-initialize usage arrays */ + allocINT(lp, &group->memberpos, lp->columns+1, AUTOMATIC); + allocINT(lp, &tally, lp->columns+1, TRUE); + + /* Get each variable's SOS membership count */ + for(i = 0; i < group->sos_count; i++) { + rec = group->sos_list[i]; + n = rec->size; + list = rec->members; + for(j = 1; j <= n; j++) { + k = list[j]; +#ifdef Paranoia + if((k < 1) || (k > lp->columns)) + report(lp, SEVERE, "SOS_member_updatemap: Member %j of SOS number %d is out of column range (%d)\n", + j, i+1, k); +#endif + tally[k]++; + } + + } + + /* Compute pointer into column-sorted array */ + group->memberpos[0] = 0; + for(i = 1; i <= lp->columns; i++) { + n = tally[i]; + if(n > 0) + nvars++; + group->memberpos[i] = group->memberpos[i-1] + n; + } + n = group->memberpos[lp->columns]; + MEMCOPY(tally+1, group->memberpos, lp->columns); + + /* Load the column-sorted SOS indeces / pointers */ + allocINT(lp, &group->membership, n+1, AUTOMATIC); + for(i = 0; i < group->sos_count; i++) { + rec = group->sos_list[i]; + n = rec->size; + list = rec->members; + for(j = 1; j <= n; j++) { + k = tally[list[j]]++; +#ifdef Paranoia + if(k > group->memberpos[lp->columns]) + report(lp, SEVERE, "SOS_member_updatemap: Member mapping for variable %j of SOS number %d is invalid\n", + list[j], i+1); +#endif + group->membership[k] = i+1; + } + } + FREE(tally); + + return( nvars ); +} + + +STATIC MYBOOL SOS_shift_col(SOSgroup *group, int sosindex, int column, int delta, LLrec *usedmap, MYBOOL forceresort) +/* Routine to adjust SOS indeces for variable insertions or deletions; + Note: SOS_shift_col must be called before make_SOSchain! */ +{ + int i, ii, n, nn, nr; + int changed; + int *list; + LPSREAL *weights; + +#ifdef Paranoia + lprec *lp = group->lp; + + if((sosindex < 0) || (sosindex > group->sos_count)) { + report(lp, IMPORTANT, "SOS_shift_col: Invalid SOS index %d\n", sosindex); + return(FALSE); + } + else if((column < 1) || (delta == 0)) { + report(lp, IMPORTANT, "SOS_shift_col: Invalid column %d specified with delta %d\n", + column, delta); + return(FALSE); + } +#endif + + if((sosindex == 0) && (group->sos_count == 1)) + sosindex = 1; + + if(sosindex == 0) { + for(i = 1; i <= group->sos_count; i++) { + if(!SOS_shift_col(group, i, column, delta, usedmap, forceresort)) + return(FALSE); + } + } + else { + list = group->sos_list[sosindex-1]->members; + weights = group->sos_list[sosindex-1]->weights; + n = list[0]; + nn = list[n+1]; + + /* Case where variable indeces are to be incremented */ + if(delta > 0) { + for(i = 1; i <= n; i++) { + if(list[i] >= column) + list[i] += delta; + } + } + /* Case where variables are to be deleted/indeces decremented */ + else { + changed = 0; + if(usedmap != NULL) { + int *newidx = NULL; + /* Defer creation of index mapper until we are sure that a + member of this SOS is actually targeted for deletion */ + if(newidx == NULL) { + allocINT(group->lp, &newidx, group->lp->columns+1, TRUE); + for(i = firstActiveLink(usedmap), ii = 1; i != 0; + i = nextActiveLink(usedmap, i), ii++) + newidx[i] = ii; + } + for(i = 1, ii = 0; i <= n; i++) { + nr = list[i]; + /* Check if this SOS variable should be deleted */ + if(!isActiveLink(usedmap, nr)) + continue; + + /* If the index is "high" then make adjustment and shift */ + changed++; + ii++; + list[ii] = newidx[nr]; + weights[ii] = weights[i]; + } + FREE(newidx); + } + else + for(i = 1, ii = 0; i <= n; i++) { + nr = list[i]; + /* Check if this SOS variable should be deleted */ + if((nr >= column) && (nr < column-delta)) + continue; + /* If the index is "high" then decrement */ + if(nr > column) { + changed++; + nr += delta; + } + ii++; + list[ii] = nr; + weights[ii] = weights[i]; + } + /* Update the SOS length / type indicators */ + if(ii < n) { + list[0] = ii; + list[ii+1] = nn; + } + + /* Update mapping arrays to search large SOS's faster */ + if(forceresort && ((ii < n) || (changed > 0))) + SOS_member_sortlist(group, sosindex); + } + + } + return(TRUE); + +} + +int SOS_member_count(SOSgroup *group, int sosindex) +{ + SOSrec *SOS; + +#ifdef Paranoia + if((sosindex < 0) || (sosindex > group->sos_count)) { + report(group->lp, IMPORTANT, "SOS_member_count: Invalid SOS index %d\n", sosindex); + return( -1 ); + } +#endif + SOS = group->sos_list[sosindex-1]; + return( SOS->members[0] ); +} + +int SOS_member_delete(SOSgroup *group, int sosindex, int member) +{ + int *list, i, i2, k, n, nn = 0; + SOSrec *SOS; + lprec *lp = group->lp; + +#ifdef Paranoia + if((sosindex < 0) || (sosindex > group->sos_count)) { + report(group->lp, IMPORTANT, "SOS_member_delete: Invalid SOS index %d\n", sosindex); + return( -1 ); + } +#endif + + if(sosindex == 0) { + for(i = group->memberpos[member-1]; i < group->memberpos[member]; i++) { + k = group->membership[i]; + n = SOS_member_delete(group, k, member); + if(n >= 0) + nn += n; + else + return( n ); + } + /* We must update the mapper */ + k = group->memberpos[member]; + i = group->memberpos[member-1]; + n = group->memberpos[lp->columns] - k; + if(n > 0) + MEMCOPY(group->membership + i, group->membership + k, n); + for(i = member; i <= lp->columns; i++) + group->memberpos[i] = group->memberpos[i-1]; + } + else { + SOS = group->sos_list[sosindex-1]; + list = SOS->members; + n = list[0]; + + /* Find the offset of the member */ + i = 1; + while((i <= n) && (abs(list[i]) != member)) + i++; + if(i > n) + return( -1 ); + nn++; + + /* Shift remaining members *and* the active count one position left */ + while(i <= n) { + list[i] = list[i+1]; + i++; + } + list[0]--; + SOS->size--; + + /* Do the same with the active list one position left */ + i = n + 1; + i2 = i + list[n]; + k = i + 1; + while(i < i2) { + if(abs(list[k]) == member) + k++; + list[i] = list[k]; + i++; + k++; + } + } + + return( nn ); +} + +int SOS_get_type(SOSgroup *group, int sosindex) +{ +#ifdef Paranoia + if((sosindex < 1) || (sosindex > group->sos_count)) { + report(group->lp, IMPORTANT, "SOS_get_type: Invalid SOS index %d\n", sosindex); + return(FALSE); + } +#endif + + return(group->sos_list[sosindex-1]->type); +} + + +int SOS_infeasible(SOSgroup *group, int sosindex) +{ + int i, n, nn, varnr, failindex, *list; + lprec *lp = group->lp; + +#ifdef Paranoia + if((sosindex < 0) || (sosindex > group->sos_count)) { + report(lp, IMPORTANT, "SOS_infeasible: Invalid SOS index %d\n", sosindex); + return(FALSE); + } +#endif + + if(sosindex == 0 && group->sos_count == 1) + sosindex = 1; + + failindex = 0; + if(sosindex == 0) { + for(i = 1; i <= group->sos_count; i++) { + failindex = SOS_infeasible(group, i); + if(failindex > 0) break; + } + } + else { + list = group->sos_list[sosindex-1]->members; + n = list[0]; + nn = list[n+1]; + /* Find index of next lower-bounded variable */ + for(i = 1; i <= n; i++) { + varnr = abs(list[i]); + if((lp->orig_lowbo[lp->rows + varnr] > 0) && + !((lp->sc_vars > 0) && is_semicont(lp, varnr))) + break; + } + + /* Find if there is another lower-bounded variable beyond the type window */ + i = i+nn; + while(i <= n) { + varnr = abs(list[i]); + if((lp->orig_lowbo[lp->rows + varnr] > 0) && + !((lp->sc_vars > 0) && is_semicont(lp, varnr))) + break; + i++; + } + if(i <= n) + failindex = abs(list[i]); + } + return(failindex); +} + + +int SOS_member_index(SOSgroup *group, int sosindex, int member) +{ + int n; + SOSrec *SOS; + + SOS = group->sos_list[sosindex-1]; + n = SOS->members[0]; + + n = searchFor(member, SOS->membersSorted, n, 0, FALSE); + if(n >= 0) + n = SOS->membersMapped[n]; + + return(n); +} + + +int SOS_memberships(SOSgroup *group, int varnr) +{ + int i, n = 0; + lprec *lp; + + /* Check if there is anything to do */ + if((group == NULL) || (SOS_count(lp = group->lp) == 0)) + return( n ); + +#ifdef Paranoia + if((varnr < 0) || (varnr > lp->columns)) { + report(lp, IMPORTANT, "SOS_memberships: Invalid variable index %d given\n", varnr); + return( n ); + } +#endif + + if(varnr == 0) { + for(i = 1; i <= lp->columns; i++) + if(group->memberpos[i] > group->memberpos[i-1]) + n++; + } + else + n = group->memberpos[varnr] - group->memberpos[varnr-1]; + + return( n ); +} + + +int SOS_is_member(SOSgroup *group, int sosindex, int column) +{ + int i, n = FALSE, *list; + lprec *lp; + + if(group == NULL) + return( FALSE ); + lp = group->lp; + +#ifdef Paranoia + if((sosindex < 0) || (sosindex > group->sos_count)) { + report(lp, IMPORTANT, "SOS_is_member: Invalid SOS index %d\n", sosindex); + return(n); + } +#endif + + if(sosindex == 0) { + if(lp->var_type[column] & (ISSOS | ISGUB)) + n = (MYBOOL) (SOS_memberships(group, column) > 0); + } + else if(lp->var_type[column] & (ISSOS | ISGUB)) { + + /* Search for the variable */ + i = SOS_member_index(group, sosindex, column); + + /* Signal active status if found, otherwise return FALSE */ + if(i > 0) { + list = group->sos_list[sosindex-1]->members; + if(list[i] < 0) + n = -TRUE; + else + n = TRUE; + } + } + return(n); +} + + +MYBOOL SOS_is_member_of_type(SOSgroup *group, int column, int sostype) +{ + int i, k, n; + + if(group != NULL) + for(i = group->memberpos[column-1]; i < group->memberpos[column]; i++) { + k = group->membership[i]; + n = SOS_get_type(group, k); + if(((n == sostype) || + ((sostype == SOSn) && (n > 2))) && SOS_is_member(group, k, column)) + return(TRUE); + } + return(FALSE); +} + + +MYBOOL SOS_set_GUB(SOSgroup *group, int sosindex, MYBOOL state) +{ + int i; + +#ifdef Paranoia + if((sosindex < 0) || (sosindex > group->sos_count)) { + report(group->lp, IMPORTANT, "SOS_set_GUB: Invalid SOS index %d\n", sosindex); + return(FALSE); + } +#endif + if((sosindex == 0) && (group->sos_count == 1)) + sosindex = 1; + + if(sosindex == 0) { + for(i = 1; i <= group->sos_count; i++) + SOS_set_GUB(group, i, state); + } + else + group->sos_list[sosindex-1]->isGUB = state; + return(TRUE); +} + + +MYBOOL SOS_is_GUB(SOSgroup *group, int sosindex) +{ + int i; + +#ifdef Paranoia + if((sosindex < 0) || (sosindex > group->sos_count)) { + report(group->lp, IMPORTANT, "SOS_is_GUB: Invalid SOS index %d\n", sosindex); + return(FALSE); + } +#endif + + if((sosindex == 0) && (group->sos_count == 1)) + sosindex = 1; + + if(sosindex == 0) { + for(i = 1; i <= group->sos_count; i++) { + if(SOS_is_GUB(group, i)) + return(TRUE); + } + return(FALSE); + } + else + return( group->sos_list[sosindex-1]->isGUB ); +} + + +MYBOOL SOS_is_marked(SOSgroup *group, int sosindex, int column) +{ + int i, k, n, *list; + lprec *lp; + + if(group == NULL) + return( FALSE ); + lp = group->lp; + +#ifdef Paranoia + if((sosindex < 0) || (sosindex > group->sos_count)) { + report(lp, IMPORTANT, "SOS_is_marked: Invalid SOS index %d\n", sosindex); + return(FALSE); + } +#endif + + if(!(lp->var_type[column] & (ISSOS | ISGUB))) + return(FALSE); + + if(sosindex == 0) { + for(i = group->memberpos[column-1]; i < group->memberpos[column]; i++) { + k = group->membership[i]; + n = SOS_is_marked(group, k, column); + if(n) + return(TRUE); + } + } + else { + list = group->sos_list[sosindex-1]->members; + n = list[0]; + + /* Search for the variable (normally always faster to do linear search here) */ + column = -column; + for(i = 1; i <= n; i++) + if(list[i] == column) + return(TRUE); + } + return(FALSE); +} + + +MYBOOL SOS_is_active(SOSgroup *group, int sosindex, int column) +{ + int i, n, nn, *list; + lprec *lp = group->lp; + +#ifdef Paranoia + if((sosindex < 0) || (sosindex > group->sos_count)) { + report(lp, IMPORTANT, "SOS_is_active: Invalid SOS index %d\n", sosindex); + return(FALSE); + } +#endif + + if(!(lp->var_type[column] & (ISSOS | ISGUB))) + return(FALSE); + + if(sosindex == 0) { + for(i = group->memberpos[column-1]; i < group->memberpos[column]; i++) { + nn = group->membership[i]; + n = SOS_is_active(group, nn, column); + if(n) + return(TRUE); + } + } + else { + + list = group->sos_list[sosindex-1]->members; + n = list[0]+1; + nn = list[n]; + + /* Scan the active (non-zero) SOS index list */ + for(i = 1; (i <= nn) && (list[n+i] != 0); i++) + if(list[n+i] == column) + return(TRUE); + } + return(FALSE); +} + + +MYBOOL SOS_is_full(SOSgroup *group, int sosindex, int column, MYBOOL activeonly) +{ + int i, nn, n, *list; + lprec *lp = group->lp; + +#ifdef Paranoia + if((sosindex < 0) || (sosindex > group->sos_count)) { + report(lp, IMPORTANT, "SOS_is_full: Invalid SOS index %d\n", sosindex); + return(FALSE); + } +#endif + + if(!(lp->var_type[column] & (ISSOS | ISGUB))) + return(FALSE); + + if(sosindex == 0) { + for(i = group->memberpos[column-1]; i < group->memberpos[column]; i++) { + nn = group->membership[i]; + if(SOS_is_full(group, nn, column, activeonly)) + return(TRUE); + } + } + else if(SOS_is_member(group, sosindex, column)) { + + list = group->sos_list[sosindex-1]->members; + n = list[0]+1; + nn = list[n]; + + /* Info: Last item in the active list is non-zero if the current SOS is full */ + if(list[n+nn] != 0) + return(TRUE); + + if(!activeonly) { + /* Spool to last active variable */ + for(i = nn-1; (i > 0) && (list[n+i] == 0); i--); + /* Having found it, check if subsequent variables are set (via bounds) as inactive */ + if(i > 0) { + nn -= i; /* Compute unused active slots */ + i = SOS_member_index(group, sosindex, list[n+i]); + for(; (nn > 0) && (list[i] < 0); i++, nn--); + if(nn == 0) + return(TRUE); + } + } + } + + return(FALSE); +} + + +MYBOOL SOS_can_activate(SOSgroup *group, int sosindex, int column) +{ + int i, n, nn, nz, *list; + lprec *lp; + + if(group == NULL) + return( FALSE ); + lp = group->lp; + +#ifdef Paranoia + if((sosindex < 0) || (sosindex > group->sos_count)) { + report(lp, IMPORTANT, "SOS_can_activate: Invalid SOS index %d\n", sosindex); + return(FALSE); + } +#endif + + if(!(lp->var_type[column] & (ISSOS | ISGUB))) + return(FALSE); + + if(sosindex == 0) { + for(i = group->memberpos[column-1]; i < group->memberpos[column]; i++) { + nn = group->membership[i]; + n = SOS_can_activate(group, nn, column); + if(n == FALSE) + return(FALSE); + } + } + else if(SOS_is_member(group, sosindex, column)) { + + list = group->sos_list[sosindex-1]->members; + n = list[0]+1; + nn = list[n]; + +#if 0 + /* Accept if the SOS is empty */ + if(list[n+1] == 0) + return(TRUE); +#endif + + /* Cannot activate a variable if the SOS is full */ + if(list[n+nn] != 0) + return(FALSE); + + /* Check if there are variables quasi-active via non-zero lower bounds */ + nz = 0; + for(i = 1; i < n; i++) + if(lp->bb_bounds->lowbo[lp->rows+abs(list[i])] > 0) { + nz++; + /* Reject outright if selected column has a non-zero lower bound */ + if(list[i] == column) + return(FALSE); + } +#ifdef Paranoia + if(nz > nn) + report(lp, SEVERE, "SOS_can_activate: Found too many non-zero member variables for SOS index %d\n", sosindex); +#endif + for(i = 1; i <= nn; i++) { + if(list[n+i] == 0) + break; + if(lp->bb_bounds->lowbo[lp->rows+list[n+i]] == 0) + nz++; + } + if(nz == nn) + return(FALSE); + + /* Accept if the SOS is empty */ + if(list[n+1] == 0) + return(TRUE); + + /* Check if we can set variable active in SOS2..SOSn + (must check left and right neighbours if one variable is already active) */ + if(nn > 1) { + + /* Find the variable that was last activated; + Also check that the candidate variable is not already active */ + for(i = 1; i <= nn; i++) { + if(list[n+i] == 0) + break; + if(list[n+i] == column) + return(FALSE); + } + i--; + nn = list[n+i]; + + /* SOS accepts an additional variable; confirm neighbourness of candidate; + Search for the SOS set index of the last activated variable */ + n = list[0]; + for(i = 1; i <= n; i++) + if(abs(list[i]) == nn) + break; + if(i > n) { + report(lp, CRITICAL, "SOS_can_activate: Internal index error at SOS %d\n", sosindex); + return(FALSE); + } + + /* SOS accepts an additional variable; confirm neighbourness of candidate */ + + /* Check left neighbour */ + if((i > 1) && (list[i-1] == column)) + return(TRUE); + /* Check right neighbour */ + if((i < n) && (list[i+1] == column)) + return(TRUE); + + /* It is not the right neighbour; return false */ + return(FALSE); + } + } + return(TRUE); +} + + +MYBOOL SOS_set_marked(SOSgroup *group, int sosindex, int column, MYBOOL asactive) +{ + int i, n, nn, *list; + lprec *lp = group->lp; + +#ifdef Paranoia + if((sosindex < 0) || (sosindex > group->sos_count)) { + report(lp, IMPORTANT, "SOS_set_marked: Invalid SOS index %d\n", sosindex); + return(FALSE); + } +#endif + + if(!(lp->var_type[column] & (ISSOS | ISGUB))) + return(FALSE); + + if(sosindex == 0) { + + /* Define an IBM-"SOS3" member variable temporarily as integer, if it is + not already a permanent integer; is reset in SOS_unmark */ + if(asactive && !is_int(lp, column) && SOS_is_member_of_type(group, column, SOS3)) { + lp->var_type[column] |= ISSOSTEMPINT; + set_int(lp, column, TRUE); + } + + nn = 0; + for(i = group->memberpos[column-1]; i < group->memberpos[column]; i++) { + n = group->membership[i]; + if(SOS_set_marked(group, n, column, asactive)) + nn++; + } + return((MYBOOL) (nn == group->sos_count)); + } + else { + list = group->sos_list[sosindex-1]->members; + n = list[0]+1; + nn = list[n]; + + /* Search for the variable */ + i = SOS_member_index(group, sosindex, column); + + /* First mark active in the set member list as used */ + if((i > 0) && (list[i] > 0)) + list[i] *= -1; + else + return(TRUE); + + /* Then move the variable to the live list */ + if(asactive) { + for(i = 1; i <= nn; i++) { + if(list[n+i] == column) + return(FALSE); + else if(list[n+i] == 0) { + list[n+i] = column; + return(FALSE); + } + } + } + return(TRUE); + } +} + + +MYBOOL SOS_unmark(SOSgroup *group, int sosindex, int column) +{ + int i, n, nn, *list; + MYBOOL isactive; + lprec *lp = group->lp; + +#ifdef Paranoia + if((sosindex < 0) || (sosindex > group->sos_count)) { + report(lp, IMPORTANT, "SOS_unmark: Invalid SOS index %d\n", sosindex); + return(FALSE); + } +#endif + + if(!(lp->var_type[column] & (ISSOS | ISGUB))) + return(FALSE); + + + if(sosindex == 0) { + + /* Undefine a SOS3 member variable that has temporarily been set as integer */ + if(lp->var_type[column] & ISSOSTEMPINT) { + lp->var_type[column] &= !ISSOSTEMPINT; + set_int(lp, column, FALSE); + } + + nn = 0; + for(i = group->memberpos[column-1]; i < group->memberpos[column]; i++) { + n = group->membership[i]; + if(SOS_unmark(group, n, column)) + nn++; + } + return((MYBOOL) (nn == group->sos_count)); + } + else { + list = group->sos_list[sosindex-1]->members; + n = list[0]+1; + nn = list[n]; + + /* Search for the variable */ + i = SOS_member_index(group, sosindex, column); + + /* Restore sign in main list */ + if((i > 0) && (list[i] < 0)) + list[i] *= -1; + else + return(TRUE); + + /* Find the variable in the active list... */ + isactive = SOS_is_active(group, sosindex, column); + if(isactive) { + for(i = 1; i <= nn; i++) + if(list[n+i] == column) + break; + /* ...shrink the list if found, otherwise return error */ + if(i <= nn) { + for(; ilp; + +#ifdef Paranoia + if((sosindex < 0) || (sosindex > group->sos_count)) { + report(lp, IMPORTANT, "SOS_fix_unmarked: Invalid SOS index %d\n", sosindex); + return(FALSE); + } +#endif + + count = 0; + if(sosindex == 0) { + for(i = group->memberpos[variable-1]; i < group->memberpos[variable]; i++) { + n = group->membership[i]; + count += SOS_fix_unmarked(group, n, variable, bound, value, isupper, diffcount, changelog); + } + } + else { + list = group->sos_list[sosindex-1]->members; + n = list[0]+1; + + /* Count the number of active and free SOS variables */ + nn = list[n]; + for(i = 1; i <= nn; i++) { + if(list[n+i] == 0) + break; + } + i--; + i = nn - i; /* Establish the number of unused slots */ + + /* Determine the free SOS variable window */ + if(i == nn) { + nLeft = 0; + nRight = SOS_member_index(group, sosindex, variable); + } + else { + nLeft = SOS_member_index(group, sosindex, list[n+1]); + if(variable == list[n+1]) + nRight = nLeft; + else + nRight = SOS_member_index(group, sosindex, variable); + } + + nRight += i; /* Loop (nRight+1)..n */ + + /* Fix variables outside of the free SOS variable window */ + for(i = 1; i < n; i++) { + /* Skip the SOS variable window */ + if((i >= nLeft) && (i <= nRight)) + continue; + /* Otherwise proceed to set bound */ + ii = list[i]; + if(ii > 0) { + ii += lp->rows; + if(bound[ii] != value) { + /* Verify that we don't violate original bounds */ + if(isupper && (value < lp->orig_lowbo[ii])) + return(-ii); + else if(!isupper && (value > lp->orig_upbo[ii])) + return(-ii); + /* OK, set the new bound */ + count++; + if(changelog == NULL) + bound[ii] = value; + else + modifyUndoLadder(changelog, ii, bound, value); + + } + if((diffcount != NULL) && (lp->solution[ii] != value)) + (*diffcount)++; + } + } + } + return(count); +} + +int *SOS_get_candidates(SOSgroup *group, int sosindex, int column, MYBOOL excludetarget, + LPSREAL *upbound, LPSREAL *lobound) +{ + int i, ii, j, n, nn = 0, *list, *candidates = NULL; + lprec *lp = group->lp; + + if(group == NULL) + return( candidates ); + +#ifdef Paranoia + if(sosindex > group->sos_count) { + report(lp, IMPORTANT, "SOS_get_candidates: Invalid index %d\n", sosindex); + return( candidates ); + } +#endif + + /* Determine SOS target(s); note that if "sosindex" is negative, only + the first non-empty SOS where "column" is a member is processed */ + if(sosindex <= 0) { + i = 0; + ii = group->sos_count; + } + else { + i = sosindex - 1; + ii = sosindex; + } + + /* Tally candidate usage */ + allocINT(lp, &candidates, lp->columns+1, TRUE); + for(; i < ii; i++) { + if(!SOS_is_member(group, i+1, column)) + continue; + list = group->sos_list[i]->members; + n = list[0]; + while(n > 0) { + j = list[n]; + if((j > 0) && (upbound[lp->rows+j] > 0)) { + if(lobound[lp->rows+j] > 0) { + report(lp, IMPORTANT, "SOS_get_candidates: Invalid non-zero lower bound setting\n"); + n = 0; + goto Finish; + } + if(candidates[j] == 0) + nn++; + candidates[j]++; + } + n--; + } + if((sosindex < 0) && (nn > 1)) + break; + } + + /* Condense the list into indeces */ + n = 0; + for(i = 1; i <= lp->columns; i++) { + if((candidates[i] > 0) && (!excludetarget || (i != column))) { + n++; + candidates[n] = i; + } + } + + /* Finalize */ +Finish: + candidates[0] = n; + if(n == 0) + FREE(candidates); + + return( candidates); + +} + +int SOS_fix_list(SOSgroup *group, int sosindex, int variable, LPSREAL *bound, + int *varlist, MYBOOL isleft, DeltaVrec *changelog) +{ + int i, ii, jj, count = 0; + LPSREAL value = 0; + lprec *lp = group->lp; + +#ifdef Paranoia + if((sosindex < 0) || (sosindex > group->sos_count)) { + report(lp, IMPORTANT, "SOS_fix_list: Invalid index %d\n", sosindex); + return(FALSE); + } +#endif + + if(sosindex == 0) { + for(i = group->memberpos[variable-1]; i < group->memberpos[variable]; i++) { + ii = group->membership[i]; + count += SOS_fix_list(group, ii, variable, bound, varlist, isleft, changelog); + } + } + else { + + /* Establish the number of unmarked variables in the left window + (note that "variable" should have been marked previously) */ + ii = varlist[0] / 2; + if(isleft) { + i = 1; + if(isleft == AUTOMATIC) + ii = varlist[0]; + } + else { + i = ii + 1; + ii = varlist[0]; + } + + /* Loop over members to fix values at the new bound (zero) */ + while(i <= ii) { + if(SOS_is_member(group, sosindex, varlist[i])) { + jj = lp->rows + varlist[i]; + + /* Verify that we don't violate original bounds */ + if(value < lp->orig_lowbo[jj]) + return( -jj ); + /* OK, set the new bound */ + count++; + if(changelog == NULL) + bound[jj] = value; + else + modifyUndoLadder(changelog, jj, bound, value); + } + i++; + } + + } + return( count ); +} + +int SOS_is_satisfied(SOSgroup *group, int sosindex, LPSREAL *solution) +/* Determine if the SOS is satisfied for the current solution vector; + The return code is in the range [-2..+2], depending on the type of + satisfaction. Positive return value means too many non-zero values, + negative value means set incomplete: + + -2: Set member count not full (SOS3) + -1: Set member count not full + 0: Set is full (also returned if the SOS index is invalid) + 1: Too many non-zero sequential variables + 2: Set consistency error + +*/ +{ + int i, n, nn, count, *list; + int type, status = 0; + lprec *lp = group->lp; + +#ifdef Paranoia + if((sosindex < 0) || (sosindex > group->sos_count)) { + report(lp, IMPORTANT, "SOS_is_satisfied: Invalid index %d\n", sosindex); + return( SOS_COMPLETE ); + } +#endif + + if((sosindex == 0) && (group->sos_count == 1)) + sosindex = 1; + + if(sosindex == 0) { + for(i = 1; i <= group->sos_count; i++) { + status = SOS_is_satisfied(group, i, solution); + if((status != SOS_COMPLETE) && (status != SOS_INCOMPLETE)) + break; + } + } + else { + type = SOS_get_type(group, sosindex); + list = group->sos_list[sosindex-1]->members; + n = list[0]+1; + nn = list[n]; + + /* Count the number of active SOS variables */ + for(i = 1; i <= nn; i++) { + if(list[n+i] == 0) + break; + } + count = i-1; + if(count == nn) + status = SOS_COMPLETE; /* Set is full */ + else + status = SOS_INCOMPLETE; /* Set is partial */ + + /* Find index of the first active variable; fail if some are non-zero */ + if(count > 0) { + nn = list[n+1]; + for(i = 1; i < n; i++) { + if((abs(list[i]) == nn) || (solution[lp->rows + abs(list[i])] != 0)) + break; + } + if(abs(list[i]) != nn) + status = SOS_INTERNALERROR; /* Set consistency error (leading set variables are non-zero) */ + else { + /* Scan active SOS variables until we find a non-zero value */ + while(count > 0) { + if(solution[lp->rows + abs(list[i])] != 0) + break; + i++; + count--; + } + /* Scan active non-zero SOS variables; break at first non-zero (rest required to be zero) */ + while(count > 0) { + if(solution[lp->rows + abs(list[i])] == 0) + break; + i++; + count--; + } + if(count > 0) + status = SOS_INTERNALERROR; /* Set consistency error (active set variables are zero) */ + } + } + else { + i = 1; + /* There are no active variables; see if we have happened to find a valid header */ + while((i < n) && (solution[lp->rows + abs(list[i])] == 0)) + i++; + count = 0; + while((i < n) && (count <= nn) && (solution[lp->rows + abs(list[i])] != 0)) { + count++; + i++; + } + if(count > nn) + status = SOS_INFEASIBLE; /* Too-many sequential non-zero variables */ + } + + /* Scan the trailing set of SOS variables; fail if some are non-zero */ + if(status <= 0) { + n--; + while(i <= n) { + if(solution[lp->rows + abs(list[i])] != 0) + break; + i++; + } + if(i <= n) + status = SOS_INFEASIBLE; /* Too-many sequential non-zero variables */ + + /* Code member deficiency for SOS3 separately */ + else if((status == -1) && (type <= SOS3)) + status = SOS3_INCOMPLETE; + } + + } + return( status ); +} + +MYBOOL SOS_is_feasible(SOSgroup *group, int sosindex, LPSREAL *solution) +/* Determine if the SOS is feasible up to the current SOS variable */ +{ + int i, n, nn, *list; + MYBOOL status = TRUE; + lprec *lp = group->lp; + +#ifdef Paranoia + if((sosindex < 0) || (sosindex > group->sos_count)) { + report(lp, IMPORTANT, "SOS_is_feasible: Invalid SOS index %d\n", sosindex); + return( 0 ); + } +#endif + + if((sosindex == 0) && (group->sos_count == 1)) + sosindex = 1; + + if(sosindex == 0) { + for(i = 1; status && (i <= group->sos_count); i++) { + status = SOS_is_feasible(group, i, solution); + } + } + else { + list = group->sos_list[sosindex-1]->members; + n = list[0]+1; + nn = list[n]; + if(nn <= 2) + return(status); + + /* Find if we have a gap in the non-zero solution values */ + i = 1; + sosindex = 0; + while((i <= nn) && (list[n+i] != 0)) { + while((i <= nn) && (list[n+i] != 0) && (solution[lp->rows+list[n+i]] == 0)) + i++; + if((i <= nn) && (list[n+i] != 0)) { + i++; /* Step to next */ + while((i <= nn) && (list[n+i] != 0) && (solution[lp->rows+list[n+i]] != 0)) + i++; + sosindex++; + } + i++; /* Step to next */ + } + status = (MYBOOL) (sosindex <= 1); + } + return(status); +} diff --git a/src/external/lpsolve/build/lp_solve/lp_crash.c b/src/external/lpsolve/build/lp_solve/lp_crash.c new file mode 100644 index 00000000..8678983c --- /dev/null +++ b/src/external/lpsolve/build/lp_solve/lp_crash.c @@ -0,0 +1,863 @@ + +/* + ---------------------------------------------------------------------------------- + Crash management routines in lp_solve v5.0+ + ---------------------------------------------------------------------------------- + Author: Kjell Eikland + Contact: kjell.eikland@broadpark.no + License terms: LGPL. + + Requires: lp_lib.h, lp_utils.h, lp_matrix.h + + Release notes: + v1.0.0 1 April 2004 First version. + v1.1.0 20 July 2004 Reworked with flexible matrix storage model. + + ---------------------------------------------------------------------------------- +*/ + +#include + +#include "commonlib.h" +#include "lp_lib.h" +#include "lp_scale.h" +#include "lp_utils.h" +#include "lp_report.h" +#include "lp_matrix.h" +#include "lp_crash.h" + +#ifdef FORTIFY +# include "lp_fortify.h" +#endif + + +MYBOOL crash_basis(lprec *lp) +{ + int i; + MATrec *mat = lp->matA; + MYBOOL ok = TRUE; + + /* Initialize basis indicators */ + if(lp->basis_valid) + lp->var_basic[0] = FALSE; + else + default_basis(lp); + + /* Set initial partial pricing blocks */ + if(lp->rowblocks != NULL) + lp->rowblocks->blocknow = 1; + if(lp->colblocks != NULL) + lp->colblocks->blocknow = ((lp->crashmode == CRASH_NONE) || (lp->colblocks->blockcount == 1) ? 1 : 2); + + /* Construct a basis that is in some measure the "most feasible" */ + if((lp->crashmode == CRASH_MOSTFEASIBLE) && mat_validate(mat)) { + /* The logic here follows Maros */ + LLrec *rowLL = NULL, *colLL = NULL; + int ii, rx, cx, ix, nz; + LPSREAL wx, tx, *rowMAX = NULL, *colMAX = NULL; + int *rowNZ = NULL, *colNZ = NULL, *rowWT = NULL, *colWT = NULL; + LPSREAL *value; + int *rownr, *colnr; + + report(lp, NORMAL, "crash_basis: 'Most feasible' basis crashing selected\n"); + + /* Tally row and column non-zero counts */ + ok = allocINT(lp, &rowNZ, lp->rows+1, TRUE) && + allocINT(lp, &colNZ, lp->columns+1, TRUE) && + allocREAL(lp, &rowMAX, lp->rows+1, FALSE) && + allocREAL(lp, &colMAX, lp->columns+1, FALSE); + if(!ok) + goto Finish; + + nz = mat_nonzeros(mat); + rownr = &COL_MAT_ROWNR(0); + colnr = &COL_MAT_COLNR(0); + value = &COL_MAT_VALUE(0); + for(i = 0; i < nz; + i++, rownr += matRowColStep, colnr += matRowColStep, value += matValueStep) { + rx = *rownr; + cx = *colnr; + wx = fabs(*value); + rowNZ[rx]++; + colNZ[cx]++; + if(i == 0) { + rowMAX[rx] = wx; + colMAX[cx] = wx; + colMAX[0] = wx; + } + else { + SETMAX(rowMAX[rx], wx); + SETMAX(colMAX[cx], wx); + SETMAX(colMAX[0], wx); + } + } + /* Reduce counts for small magnitude to preserve stability */ + rownr = &COL_MAT_ROWNR(0); + colnr = &COL_MAT_COLNR(0); + value = &COL_MAT_VALUE(0); + for(i = 0; i < nz; + i++, rownr += matRowColStep, colnr += matRowColStep, value += matValueStep) { + rx = *rownr; + cx = *colnr; + wx = fabs(*value); +#ifdef CRASH_SIMPLESCALE + if(wx < CRASH_THRESHOLD * colMAX[0]) { + rowNZ[rx]--; + colNZ[cx]--; + } +#else + if(wx < CRASH_THRESHOLD * rowMAX[rx]) + rowNZ[rx]--; + if(wx < CRASH_THRESHOLD * colMAX[cx]) + colNZ[cx]--; +#endif + } + + /* Set up priority tables */ + ok = allocINT(lp, &rowWT, lp->rows+1, TRUE); + createLink(lp->rows, &rowLL, NULL); + ok &= (rowLL != NULL); + if(!ok) + goto Finish; + for(i = 1; i <= lp->rows; i++) { + if(get_constr_type(lp, i)==EQ) + ii = 3; + else if(lp->upbo[i] < lp->infinite) + ii = 2; + else if(fabs(lp->rhs[i]) < lp->infinite) + ii = 1; + else + ii = 0; + rowWT[i] = ii; + if(ii > 0) + appendLink(rowLL, i); + } + ok = allocINT(lp, &colWT, lp->columns+1, TRUE); + createLink(lp->columns, &colLL, NULL); + ok &= (colLL != NULL); + if(!ok) + goto Finish; + for(i = 1; i <= lp->columns; i++) { + ix = lp->rows+i; + if(is_unbounded(lp, i)) + ii = 3; + else if(lp->upbo[ix] >= lp->infinite) + ii = 2; + else if(fabs(lp->upbo[ix]-lp->lowbo[ix]) > lp->epsmachine) + ii = 1; + else + ii = 0; + colWT[i] = ii; + if(ii > 0) + appendLink(colLL, i); + } + + /* Loop over all basis variables */ + for(i = 1; i <= lp->rows; i++) { + + /* Select row */ + rx = 0; + wx = -lp->infinite; + for(ii = firstActiveLink(rowLL); ii > 0; ii = nextActiveLink(rowLL, ii)) { + tx = rowWT[ii] - CRASH_SPACER*rowNZ[ii]; + if(tx > wx) { + rx = ii; + wx = tx; + } + } + if(rx == 0) + break; + removeLink(rowLL, rx); + + /* Select column */ + cx = 0; + wx = -lp->infinite; + for(ii = mat->row_end[rx-1]; ii < mat->row_end[rx]; ii++) { + + /* Update NZ column counts for row selected above */ + tx = fabs(ROW_MAT_VALUE(ii)); + ix = ROW_MAT_COLNR(ii); +#ifdef CRASH_SIMPLESCALE + if(tx >= CRASH_THRESHOLD * colMAX[0]) +#else + if(tx >= CRASH_THRESHOLD * colMAX[ix]) +#endif + colNZ[ix]--; + if(!isActiveLink(colLL, ix) || (tx < CRASH_THRESHOLD * rowMAX[rx])) + continue; + + /* Now do the test for best pivot */ + tx = my_sign(lp->orig_obj[ix]) - my_sign(ROW_MAT_VALUE(ii)); + tx = colWT[ix] + CRASH_WEIGHT*tx - CRASH_SPACER*colNZ[ix]; + if(tx > wx) { + cx = ix; + wx = tx; + } + } + if(cx == 0) + break; + removeLink(colLL, cx); + + /* Update row NZ counts */ + ii = mat->col_end[cx-1]; + rownr = &COL_MAT_ROWNR(ii); + value = &COL_MAT_VALUE(ii); + for(; ii < mat->col_end[cx]; + ii++, rownr += matRowColStep, value += matValueStep) { + wx = fabs(*value); + ix = *rownr; +#ifdef CRASH_SIMPLESCALE + if(wx >= CRASH_THRESHOLD * colMAX[0]) +#else + if(wx >= CRASH_THRESHOLD * rowMAX[ix]) +#endif + rowNZ[ix]--; + } + + /* Set new basis variable */ + set_basisvar(lp, rx, lp->rows+cx); + } + + /* Clean up */ +Finish: + FREE(rowNZ); + FREE(colNZ); + FREE(rowMAX); + FREE(colMAX); + FREE(rowWT); + FREE(colWT); + freeLink(&rowLL); + freeLink(&colLL); + } + + /* Construct a basis that is in some measure the "least degenerate" */ + else if((lp->crashmode == CRASH_LEASTDEGENERATE) && mat_validate(mat)) { + /* The logic here follows Maros */ + LLrec *rowLL = NULL, *colLL = NULL; + int ii, rx, cx, ix, nz, *merit = NULL; + LPSREAL *value, wx, hold, *rhs = NULL, *eta = NULL; + int *rownr, *colnr; + + report(lp, NORMAL, "crash_basis: 'Least degenerate' basis crashing selected\n"); + + /* Create temporary arrays */ + ok = allocINT(lp, &merit, lp->columns + 1, FALSE) && + allocREAL(lp, &eta, lp->rows + 1, FALSE) && + allocREAL(lp, &rhs, lp->rows + 1, FALSE); + createLink(lp->columns, &colLL, NULL); + createLink(lp->rows, &rowLL, NULL); + ok &= (colLL != NULL) && (rowLL != NULL); + if(!ok) + goto FinishLD; + MEMCOPY(rhs, lp->orig_rhs, lp->rows + 1); + for(i = 1; i <= lp->columns; i++) + appendLink(colLL, i); + for(i = 1; i <= lp->rows; i++) + appendLink(rowLL, i); + + /* Loop until we have found enough new bases */ + while(colLL->count > 0) { + + /* Tally non-zeros matching in RHS and each active column */ + nz = mat_nonzeros(mat); + rownr = &COL_MAT_ROWNR(0); + colnr = &COL_MAT_COLNR(0); + ii = 0; + MEMCLEAR(merit, lp->columns + 1); + for(i = 0; i < nz; + i++, rownr += matRowColStep, colnr += matRowColStep) { + rx = *rownr; + cx = *colnr; + if(isActiveLink(colLL, cx) && (rhs[rx] != 0)) { + merit[cx]++; + ii++; + } + } + if(ii == 0) + break; + + /* Find maximal match; break ties with column length */ + i = firstActiveLink(colLL); + cx = i; + for(i = nextActiveLink(colLL, i); i != 0; i = nextActiveLink(colLL, i)) { + if(merit[i] >= merit[cx]) { + if((merit[i] > merit[cx]) || (mat_collength(mat, i) > mat_collength(mat, cx))) + cx = i; + } + } + + /* Determine the best pivot row */ + i = mat->col_end[cx-1]; + nz = mat->col_end[cx]; + rownr = &COL_MAT_ROWNR(i); + value = &COL_MAT_VALUE(i); + rx = 0; + wx = 0; + MEMCLEAR(eta, lp->rows + 1); + for(; i < nz; + i++, rownr += matRowColStep, value += matValueStep) { + ix = *rownr; + hold = *value; + eta[ix] = rhs[ix] / hold; + hold = fabs(hold); + if(isActiveLink(rowLL, ix) && (hold > wx)) { + wx = hold; + rx = ix; + } + } + + /* Set new basis variable */ + if(rx > 0) { + + /* We have to update the rhs vector for the implied transformation + in order to be able to find the new RHS non-zero pattern */ + for(i = 1; i <= lp->rows; i++) + rhs[i] -= wx * eta[i]; + rhs[rx] = wx; + + /* Do the exchange */ + set_basisvar(lp, rx, lp->rows+cx); + removeLink(rowLL, rx); + } + removeLink(colLL, cx); + + } + + /* Clean up */ +FinishLD: + FREE(merit); + FREE(rhs); + freeLink(&rowLL); + freeLink(&colLL); + + } + return( ok ); +} + +#if 0 +MYBOOL __WINAPI guess_basis(lprec *lp, LPSREAL *guessvector, int *basisvector) +{ + MYBOOL status = FALSE; + LPSREAL *values = NULL, *violation = NULL, + *value, error, upB, loB, sortorder = 1.0; + int i, n, *rownr, *colnr; + MATrec *mat = lp->matA; + + if(!mat_validate(lp->matA)) + return( status ); + + /* Create helper arrays */ + if(!allocREAL(lp, &values, lp->sum+1, TRUE) || + !allocREAL(lp, &violation, lp->sum+1, TRUE)) + goto Finish; + + /* Compute values of slack variables for given guess vector */ + i = 0; + n = get_nonzeros(lp); + rownr = &COL_MAT_ROWNR(i); + colnr = &COL_MAT_COLNR(i); + value = &COL_MAT_VALUE(i); + for(; i < n; i++, rownr += matRowColStep, colnr += matRowColStep, value += matValueStep) + values[*rownr] += unscaled_mat(lp, my_chsign(is_chsign(lp, *rownr), *value), *rownr, *colnr) * + guessvector[*colnr]; + MEMMOVE(values+lp->rows+1, guessvector+1, lp->columns); + + /* Initialize constraint bound violation measures */ + for(i = 1; i <= lp->rows; i++) { + upB = get_rh_upper(lp, i); + loB = get_rh_lower(lp, i); + error = values[i] - upB; + if(error > lp->epsprimal) + violation[i] = sortorder*error; + else { + error = loB - values[i]; + if(error > lp->epsprimal) + violation[i] = sortorder*error; + else if(is_infinite(lp, loB) && is_infinite(lp, upB)) + ; + else if(is_infinite(lp, upB)) + violation[i] = sortorder*(loB - values[i]); + else if(is_infinite(lp, loB)) + violation[i] = sortorder*(values[i] - upB); + else + violation[i] = - sortorder*MAX(upB - values[i], values[i] - loB); + } + basisvector[i] = i; + } + + /* Initialize user variable bound violation measures */ + for(i = 1; i <= lp->columns; i++) { + n = lp->rows+i; + upB = get_upbo(lp, i); + loB = get_lowbo(lp, i); + error = guessvector[i] - upB; + if(error > lp->epsprimal) + violation[n] = sortorder*error; + else { + error = loB - values[n]; + if(error > lp->epsprimal) + violation[n] = sortorder*error; + else if(is_infinite(lp, loB) && is_infinite(lp, upB)) + ; + else if(is_infinite(lp, upB)) + violation[n] = sortorder*(loB - values[n]); + else if(is_infinite(lp, loB)) + violation[n] = sortorder*(values[n] - upB); + else + violation[n] = - sortorder*MAX(upB - values[n], values[n] - loB); + } + basisvector[n] = n; + } + + /* Sort decending by violation; this means that variables with + the largest violations will be designated as basic */ + sortByREAL(basisvector, violation, lp->sum, 1, FALSE); + + /* Adjust the non-basic indeces for the (proximal) bound state */ + error = lp->epsprimal; + for(i = lp->rows+1, rownr = basisvector+i; i <= lp->sum; i++, rownr++) { + if(*rownr <= lp->rows) { + if(values[*rownr] <= get_rh_lower(lp, *rownr)+error) + *rownr = -(*rownr); + } + else + if(values[i] <= get_lowbo(lp, (*rownr)-lp->rows)+error) + *rownr = -(*rownr); + } + + /* Clean up and return status */ + status = (MYBOOL) (violation[1] == 0); +Finish: + FREE(values); + FREE(violation); + + + return( status ); +} +#endif + +#if 0 +MYBOOL __WINAPI guess_basis(lprec *lp, LPSREAL *guessvector, int *basisvector) +{ + MYBOOL *isnz, status = FALSE; + LPSREAL *values = NULL, *violation = NULL, + eps = lp->epsprimal, + *value, error, upB, loB, sortorder = 1.0; + int i, j, n, *rownr, *colnr, *slkpos, + nrows = lp->rows, ncols = lp->columns; + MATrec *mat = lp->matA; + + if(!mat_validate(mat)) + return( status ); + + /* Create helper arrays */ + if(!allocREAL(lp, &values, lp->sum+1, TRUE) || + !allocREAL(lp, &violation, lp->sum+1, TRUE)) + goto Finish; + + /* Compute values of slack variables for given guess vector */ + i = 0; + n = get_nonzeros(lp); + rownr = &COL_MAT_ROWNR(i); + colnr = &COL_MAT_COLNR(i); + value = &COL_MAT_VALUE(i); + for(; i < n; i++, rownr += matRowColStep, colnr += matRowColStep, value += matValueStep) + values[*rownr] += unscaled_mat(lp, my_chsign(is_chsign(lp, *rownr), *value), *rownr, *colnr) * + guessvector[*colnr]; + MEMMOVE(values+nrows+1, guessvector+1, ncols); + + /* Initialize constraint bound violation measures (expressed as positive values) */ + for(i = 1; i <= nrows; i++) { + upB = get_rh_upper(lp, i); + loB = get_rh_lower(lp, i); + error = values[i] - upB; + if(error > eps) + violation[i] = sortorder*error; + else { + error = loB - values[i]; + if(error > eps) + violation[i] = sortorder*error; + else if(my_infinite(lp, loB) && my_infinite(lp, upB)) + ; + else if(my_infinite(lp, upB)) + violation[i] = sortorder*(loB - values[i]); + else if(my_infinite(lp, loB)) + violation[i] = sortorder*(values[i] - upB); + else + violation[i] = -sortorder*MAX(upB - values[i], values[i] - loB); + } + basisvector[i] = i; + } + + /* Initialize user variable bound violation measures (expressed as positive values) */ + for(i = 1; i <= ncols; i++) { + n = nrows+i; + upB = get_upbo(lp, i); + loB = get_lowbo(lp, i); + error = guessvector[i] - upB; + if(error > eps) + violation[n] = sortorder*error; + else { + error = loB - values[n]; + if(error > eps) + violation[n] = sortorder*error; + else if(my_infinite(lp, loB) && my_infinite(lp, upB)) + ; + else if(my_infinite(lp, upB)) + violation[n] = sortorder*(loB - values[n]); + else if(my_infinite(lp, loB)) + violation[n] = sortorder*(values[n] - upB); + else + violation[n] = -sortorder*MAX(upB - values[n], values[n] - loB); + } + basisvector[n] = n; + } + + /* Sort decending by violation; this means that variables with + the largest violations will be designated as basic */ + sortByREAL(basisvector, violation, lp->sum, 1, FALSE); + error = violation[1]; + + /* Adjust the non-basic indeces for the (proximal) bound state */ + for(i = nrows+1, rownr = basisvector+i; i <= lp->sum; i++, rownr++) { + if(*rownr <= nrows) { + if(values[*rownr] <= get_rh_lower(lp, *rownr)+eps) + *rownr = -(*rownr); + } + else + if(values[i] <= get_lowbo(lp, (*rownr)-nrows)+eps) + *rownr = -(*rownr); + } + +#if 1 + /* Let us check for obvious row singularities and try to fix these; + First assemble necessary basis statistics... */ + isnz = (MYBOOL *) values; + MEMCLEAR(isnz, nrows+1); + slkpos = (int *) violation; + MEMCLEAR(slkpos, nrows+1); + for(i = 1; i <= nrows; i++) { + j = abs(basisvector[i]); + if(j <= nrows) { + isnz[j] = TRUE; + slkpos[j] = i; + } + else { + j-= nrows; + j = mat->col_end[j-1]; + isnz[COL_MAT_ROWNR(j)] = TRUE; + /*isnz[COL_MAT_ROWNR(j+1)] = TRUE;*/ + } + } + for(; i <= lp->sum; i++) { + j = abs(basisvector[i]); + if(j <= nrows) + slkpos[j] = i; + } + + /* ...then set the corresponding slacks basic for row rank deficient positions */ + for(j = 1; j <= nrows; j++) { +#ifdef Paranoia + if(slkpos[j] == 0) + report(lp, SEVERE, "guess_basis: Internal error"); +#endif + if(!isnz[j]) { + isnz[j] = TRUE; + i = slkpos[j]; + swapINT(&basisvector[i], &basisvector[j]); + basisvector[j] = abs(basisvector[j]); + } + } +#endif + + /* Clean up and return status */ + status = (MYBOOL) (error <= eps); +Finish: + FREE(values); + FREE(violation); + + return( status ); +} +#endif + +#if 0 +MYBOOL __WINAPI guess_basis(lprec *lp, LPSREAL *guessvector, int *basisvector) +{ + MYBOOL *isnz, status = FALSE; + LPSREAL *values = NULL, *violation = NULL, + eps = lp->epsprimal, + *value, error, upB, loB, sortorder = 1.0; + int i, j, jj, n, *rownr, *colnr, *slkpos, + nrows = lp->rows, ncols = lp->columns; + MATrec *mat = lp->matA; + + if(!mat_validate(mat)) + return( status ); + + /* Create helper arrays */ + if(!allocREAL(lp, &values, lp->sum+1, TRUE) || + !allocREAL(lp, &violation, lp->sum+1, TRUE)) + goto Finish; + + /* Compute values of slack variables for given guess vector */ + i = 0; + n = get_nonzeros(lp); + rownr = &COL_MAT_ROWNR(i); + colnr = &COL_MAT_COLNR(i); + value = &COL_MAT_VALUE(i); + for(; i < n; i++, rownr += matRowColStep, colnr += matRowColStep, value += matValueStep) + values[*rownr] += unscaled_mat(lp, my_chsign(is_chsign(lp, *rownr), *value), *rownr, *colnr) * + guessvector[*colnr]; + MEMMOVE(values+nrows+1, guessvector+1, ncols); + + /* Initialize constraint bound violation measures (expressed as positive values) */ + for(i = 1; i <= nrows; i++) { + upB = get_rh_upper(lp, i); + loB = get_rh_lower(lp, i); + error = values[i] - upB; + if(error > -eps) + violation[i] = sortorder*MAX(0,error); + else { + error = loB - values[i]; + if(error > -eps) + violation[i] = sortorder*MAX(0,error); + else if(my_infinite(lp, loB) && my_infinite(lp, upB)) + ; + else if(my_infinite(lp, upB)) + violation[i] = sortorder*(loB - values[i]); + else if(my_infinite(lp, loB)) + violation[i] = sortorder*(values[i] - upB); + else + violation[i] = -sortorder*MAX(upB - values[i], values[i] - loB); + } + basisvector[i] = i; + } + + /* Initialize user variable bound violation measures (expressed as positive values) */ + for(i = 1; i <= ncols; i++) { + n = nrows+i; + upB = get_upbo(lp, i); + loB = get_lowbo(lp, i); + error = guessvector[i] - upB; + if(error > -eps) + violation[n] = sortorder*MAX(0,error); + else { + error = loB - values[n]; + if(error > -eps) + violation[n] = sortorder*MAX(0,error); + else if(my_infinite(lp, loB) && my_infinite(lp, upB)) + ; + else if(my_infinite(lp, upB)) + violation[n] = sortorder*(loB - values[n]); + else if(my_infinite(lp, loB)) + violation[n] = sortorder*(values[n] - upB); + else + violation[n] = -sortorder*MAX(upB - values[n], values[n] - loB); + } + basisvector[n] = n; + } + + /* Sort decending by violation; this means that variables with + the largest violations will be designated as basic */ + sortByREAL(basisvector, violation, lp->sum, 1, FALSE); + error = violation[1]; + + /* Adjust the non-basic indeces for the (proximal) bound state */ + for(i = nrows+1, rownr = basisvector+i; i <= lp->sum; i++, rownr++) { + if(*rownr <= nrows) { + values[*rownr] -= lp->orig_rhs[*rownr]; + if(values[*rownr] <= eps) + *rownr = -(*rownr); + } + else + if(values[i] <= get_lowbo(lp, (*rownr)-nrows)+eps) + *rownr = -(*rownr); + } + + /* Let us check for obvious row singularities and try to fix these; + First assemble necessary basis statistics... */ + isnz = (MYBOOL *) values; + MEMCLEAR(isnz, nrows+1); + slkpos = (int *) violation; + MEMCLEAR(slkpos, nrows+1); + for(i = 1; i <= nrows; i++) { + j = abs(basisvector[i]); + if(j <= nrows) { + isnz[j] = TRUE; + slkpos[j] = i; + } + else { + j-= nrows; + jj = mat->col_end[j-1]; + isnz[COL_MAT_ROWNR(jj)] = TRUE; +/* if(++jj < mat->col_end[j]) + isnz[COL_MAT_ROWNR(jj)] = TRUE; */ + } + } + for(; i <= lp->sum; i++) { + j = abs(basisvector[i]); + if(j <= nrows) + slkpos[j] = i; + } + + /* ...then set the corresponding slacks basic for row rank deficient positions */ + for(j = 1; j <= nrows; j++) { +#ifdef Paranoia + if(slkpos[j] == 0) + report(lp, SEVERE, "guess_basis: Internal error"); +#endif + if(!isnz[j]) { + isnz[j] = TRUE; + i = slkpos[j]; + swapINT(&basisvector[i], &basisvector[j]); + basisvector[j] = abs(basisvector[j]); + } + } + + /* Lastly normalize all basic variables to be coded as lower-bounded */ + for(i = 1; i <= nrows; i++) + basisvector[i] = -abs(basisvector[i]); + + /* Clean up and return status */ + status = (MYBOOL) (error <= eps); +Finish: + FREE(values); + FREE(violation); + + return( status ); +} +#endif + +MYBOOL __WINAPI guess_basis(lprec *lp, LPSREAL *guessvector, int *basisvector) +{ + MYBOOL *isnz = NULL, status = FALSE; + LPSREAL *values = NULL, *violation = NULL, + eps = lp->epsprimal, + *value, error, upB, loB, sortorder = -1.0; + int i, j, jj, n, *rownr, *colnr, *slkpos = NULL, + nrows = lp->rows, ncols = lp->columns, nsum = lp->sum; + int *basisnr; + MATrec *mat = lp->matA; + + if(!mat_validate(mat)) + return( status ); + + /* Create helper arrays, providing for multiple use of the violation array */ + if(!allocREAL(lp, &values, nsum+1, TRUE) || + !allocREAL(lp, &violation, nsum+1, TRUE)) + goto Finish; + + /* Compute the values of the constraints for the given guess vector */ + i = 0; + n = get_nonzeros(lp); + rownr = &COL_MAT_ROWNR(i); + colnr = &COL_MAT_COLNR(i); + value = &COL_MAT_VALUE(i); + for(; i < n; i++, rownr += matRowColStep, colnr += matRowColStep, value += matValueStep) + values[*rownr] += unscaled_mat(lp, my_chsign(is_chsign(lp, *rownr), *value), *rownr, *colnr) * + guessvector[*colnr]; + MEMMOVE(values+nrows+1, guessvector+1, ncols); + + /* Initialize bound "violation" or primal non-degeneracy measures, expressed + as the absolute value of the differences from the closest bound. */ + for(i = 1; i <= nsum; i++) { + if(i <= nrows) { + loB = get_rh_lower(lp, i); + upB = get_rh_upper(lp, i); + } + else { + loB = get_lowbo(lp, i-nrows); + upB = get_upbo(lp, i-nrows); + } + + /* Free constraints/variables */ + if(my_infinite(lp, loB) && my_infinite(lp, upB)) + error = 0; + /* Violated constraints/variable bounds */ + else if(values[i]+eps < loB) + error = loB-values[i]; + else if(values[i]-eps > upB) + error = values[i]-upB; + /* Non-violated constraints/variables bounds */ + else if(my_infinite(lp, upB)) + error = MAX(0, values[i]-loB); + else if(my_infinite(lp, loB)) + error = MAX(0, upB-values[i]); + else + error = MIN(upB-values[i], values[i]-loB); /* MAX(upB-values[i], values[i]-loB); */ + if(error != 0) + violation[i] = sortorder*error; + basisvector[i] = i; + } + + /* Sort decending , meaning that variables with the largest + "violations" will be designated basic. Effectively, we are performing a + greedy type algorithm, but start at the "least interesting" end. */ + sortByREAL(basisvector, violation, nsum, 1, FALSE); + error = violation[1]; /* Used for setting the return value */ + + /* Let us check for obvious row singularities and try to fix these. + Note that we reuse the memory allocated to the violation array. + First assemble necessary basis statistics... */ + slkpos = (int *) violation; + n = nrows+1; + MEMCLEAR(slkpos, n); + isnz = (MYBOOL *) (slkpos+n+1); + MEMCLEAR(isnz, n); + for(i = 1; i <= nrows; i++) { + j = abs(basisvector[i]); + if(j <= nrows) { + isnz[j] = TRUE; + slkpos[j] = i; + } + else { + j-= nrows; + jj = mat->col_end[j-1]; + jj = COL_MAT_ROWNR(jj); + isnz[jj] = TRUE; + } + } + for(; i <= nsum; i++) { + j = abs(basisvector[i]); + if(j <= nrows) + slkpos[j] = i; + } + + /* ...then set the corresponding slacks basic for row rank deficient positions */ + for(j = 1; j <= nrows; j++) { + if(slkpos[j] == 0) + report(lp, SEVERE, "guess_basis: Internal error"); + if(!isnz[j]) { + isnz[j] = TRUE; + i = slkpos[j]; + swapINT(&basisvector[i], &basisvector[j]); + basisvector[j] = abs(basisvector[j]); + } + } + + /* Adjust the non-basic indeces for the (proximal) bound state */ + for(i = nrows+1, basisnr = basisvector+i; i <= nsum; i++, basisnr++) { + n = *basisnr; + if(n <= nrows) { + values[n] -= get_rh_lower(lp, n); + if(values[n] <= eps) + *basisnr = -(*basisnr); + } + else + if(values[n]-eps <= get_lowbo(lp, n-nrows)) + *basisnr = -(*basisnr); + } + +/* Lastly normalize all basic variables to be coded as lower-bounded, + or effectively zero-based in the case of free variables. */ + for(i = 1; i <= nrows; i++) + basisvector[i] = -abs(basisvector[i]); + + /* Clean up and return status */ + status = (MYBOOL) (error <= eps); +Finish: + FREE(values); + FREE(violation); + + return( status ); +} diff --git a/src/external/lpsolve/build/lp_solve/lp_lib.c b/src/external/lpsolve/build/lp_solve/lp_lib.c new file mode 100644 index 00000000..268898dc --- /dev/null +++ b/src/external/lpsolve/build/lp_solve/lp_lib.c @@ -0,0 +1,10039 @@ + +/* ---------------------------------------------------------------------------------- + Main library of routines for lp_solve v5.0+ + ---------------------------------------------------------------------------------- + Author: Michel Berkelaar (to v3.2) + Kjell Eikland (v4.0 and forward) + Contact: kjell.eikland@broadpark.no + License terms: LGPL. + + Requires: (see below) + + Release notes: + v5.0.0 1 January 2004 First integrated and repackaged version. + v5.0.1 8 May 2004 Cumulative update since initial release; + overall functionality scope maintained. + v5.1.0 20 July 2004 Reworked lp_solve throughout to fit new + flexible matrix storage model. + + ---------------------------------------------------------------------------------- */ + +/* ---------------------------------------------------------------------------------- */ +/* Main library of routines for lp_solve */ +/*----------------------------------------------------------------------------------- */ +#include +#include +#include +#include + +#if LoadInverseLib == TRUE + #ifdef WIN32 + #include + #else + #include + #endif +#endif + + +/* ---------------------------------------------------------------------------------- */ +/* Include core and support modules via headers */ +/* ---------------------------------------------------------------------------------- */ +#include "lp_lib.h" +#include "commonlib.h" +#include "lp_utils.h" +#include "lp_matrix.h" +#include "lp_SOS.h" +#include "lp_Hash.h" +#include "lp_MPS.h" +#include "lp_wlp.h" +#include "lp_presolve.h" +#include "lp_scale.h" +#include "lp_simplex.h" +#include "lp_mipbb.h" +#include "lp_report.h" +#include "lp_MDO.h" +#include "lp_bit.h" + +#if INVERSE_ACTIVE==INVERSE_LUMOD + #include "lp_LUMOD.h" +#elif INVERSE_ACTIVE==INVERSE_LUSOL + #include "lp_LUSOL.h" +#elif INVERSE_ACTIVE==INVERSE_GLPKLU + #include "lp_glpkLU.h" +#elif INVERSE_ACTIVE==INVERSE_ETAPFI + #include "lp_etaPFI.h" +#elif INVERSE_ACTIVE==INVERSE_LEGACY + #include "lp_etaPFI.h" +#endif + +#if libBLAS > 0 + #include "myblas.h" +#endif + +#ifdef __BORLANDC__ + #pragma hdrstop + #pragma package(smart_init) +#endif + +/* ---------------------------------------------------------------------------------- */ +/* Include selected basis inverse routines and price norm scalars */ +/* ---------------------------------------------------------------------------------- */ + +#include "lp_price.h" +#include "lp_pricePSE.h" + +#ifdef FORTIFY +# include "lp_fortify.h" +#endif + +#define sensrejvar TRUE + +/* Return lp_solve version information */ +void __WINAPI lp_solve_version(int *majorversion, int *minorversion, int *release, int *build) +{ + if(majorversion != NULL) + (*majorversion) = MAJORVERSION; + if(minorversion != NULL) + (*minorversion) = MINORVERSION; + if(release != NULL) + (*release) = RELEASE; + if(build != NULL) + (*build) = BUILD; +} + + +/* ---------------------------------------------------------------------------------- */ +/* Various interaction elements */ +/* ---------------------------------------------------------------------------------- */ + +MYBOOL __WINAPI userabort(lprec *lp, int message) +{ + MYBOOL abort; + int spx_save; + + spx_save = lp->spx_status; + lp->spx_status = RUNNING; + if(yieldformessages(lp) != 0) { + lp->spx_status = USERABORT; + if(lp->bb_level > 0) + lp->bb_break = TRUE; + } + if((message > 0) && (lp->usermessage != NULL) && (lp->msgmask & message)) + lp->usermessage(lp, lp->msghandle, message); + abort = (MYBOOL) (lp->spx_status != RUNNING); + if(!abort) + lp->spx_status = spx_save; + return( abort ); +} + +STATIC int yieldformessages(lprec *lp) +{ + if((lp->sectimeout > 0) && + ((timeNow()-lp->timestart)-(LPSREAL)lp->sectimeout>0)) + lp->spx_status = TIMEOUT; + + if(lp->ctrlc != NULL) { + int retcode = lp->ctrlc(lp, lp->ctrlchandle); + /* Check for command to restart the B&B */ + if((retcode == ACTION_RESTART) && (lp->bb_level > 1)) { + lp->bb_break = AUTOMATIC; + retcode = 0; + } + return(retcode); + } + else + return(0); +} + +void __WINAPI set_outputstream(lprec *lp, FILE *stream) +{ + if((lp->outstream != NULL) && (lp->outstream != stdout)) { + if(lp->streamowned) + fclose(lp->outstream); + else + fflush(lp->outstream); + } + if(stream == NULL) + lp->outstream = stdout; + else + lp->outstream = stream; + lp->streamowned = FALSE; +} + +MYBOOL __WINAPI set_outputfile(lprec *lp, char *filename) +{ + MYBOOL ok; + FILE *output = stdout; + + ok = (MYBOOL) ((filename == NULL) || (*filename == 0) || ((output = fopen(filename,"w")) != NULL)); + if(ok) { + set_outputstream(lp, output); + lp->streamowned = (MYBOOL) ((filename != NULL) && (*filename != 0)); +#if 1 + if((filename != NULL) && (*filename == 0)) + lp->outstream = NULL; +#endif + } + return(ok); +} + +LPSREAL __WINAPI time_elapsed(lprec *lp) +{ + if(lp->timeend > 0) + return(lp->timeend - lp->timestart); + else + return(timeNow() - lp->timestart); +} + +void __WINAPI put_bb_nodefunc(lprec *lp, lphandleint_intfunc newnode, void *bbnodehandle) +{ + lp->bb_usenode = newnode; + lp->bb_nodehandle = bbnodehandle; /* User-specified "owner process ID" */ +} +void __WINAPI put_bb_branchfunc(lprec *lp, lphandleint_intfunc newbranch, void *bbbranchhandle) +{ + lp->bb_usebranch = newbranch; + lp->bb_branchhandle = bbbranchhandle; /* User-specified "owner process ID" */ +} +void __WINAPI put_abortfunc(lprec *lp, lphandle_intfunc newctrlc, void *ctrlchandle) +{ + lp->ctrlc = newctrlc; + lp->ctrlchandle = ctrlchandle; /* User-specified "owner process ID" */ +} +void __WINAPI put_logfunc(lprec *lp, lphandlestr_func newlog, void *loghandle) +{ + lp->writelog = newlog; + lp->loghandle = loghandle; /* User-specified "owner process ID" */ +} +void __WINAPI put_msgfunc(lprec *lp, lphandleint_func newmsg, void *msghandle, int mask) +{ + lp->usermessage = newmsg; + lp->msghandle = msghandle; /* User-specified "owner process ID" */ + lp->msgmask = mask; +} + + +/* ---------------------------------------------------------------------------------- */ +/* DLL exported function */ +/* ---------------------------------------------------------------------------------- */ +lprec * __WINAPI read_MPS(char *filename, int options) +{ + lprec *lp = NULL; + int typeMPS; + + typeMPS = (options & ~0x07) >> 2; + if ((typeMPS & (MPSFIXED|MPSFREE)) == 0) + typeMPS |= MPSFIXED; + if(MPS_readfile(&lp, filename, typeMPS, options & 0x07)) + return( lp ); + else + return( NULL ); +} +lprec * __WINAPI read_mps(FILE *filename, int options) +{ + lprec *lp = NULL; + int typeMPS; + + typeMPS = (options & ~0x07) >> 2; + if ((typeMPS & (MPSFIXED|MPSFREE)) == 0) + typeMPS |= MPSFIXED; + if(MPS_readhandle(&lp, filename, typeMPS, options & 0x07)) + return( lp ); + else + return( NULL ); +} +/* #if defined develop */ +lprec * __WINAPI read_mpsex(void *userhandle, read_modeldata_func read_modeldata, int options) +{ + lprec *lp = NULL; + int typeMPS; + + typeMPS = (options & ~0x07) >> 2; + if ((typeMPS & (MPSFIXED|MPSFREE)) == 0) + typeMPS |= MPSFIXED; + if(MPS_readex(&lp, userhandle, read_modeldata, typeMPS, options & 0x07)) + return( lp ); + else + return( NULL ); +} +/* #endif */ +lprec * __WINAPI read_freeMPS(char *filename, int options) +{ + lprec *lp = NULL; + int typeMPS; + + typeMPS = (options & ~0x07) >> 2; + typeMPS &= ~MPSFIXED; + typeMPS |= MPSFREE; + if(MPS_readfile(&lp, filename, typeMPS, options & 0x07)) + return( lp ); + else + return( NULL ); +} +lprec * __WINAPI read_freemps(FILE *filename, int options) +{ + lprec *lp = NULL; + int typeMPS; + + typeMPS = (options & ~0x07) >> 2; + typeMPS &= ~MPSFIXED; + typeMPS |= MPSFREE; + if(MPS_readhandle(&lp, filename, typeMPS, options & 0x07)) + return( lp ); + else + return( NULL ); +} +/* #if defined develop */ +lprec * __WINAPI read_freempsex(void *userhandle, read_modeldata_func read_modeldata, int options) +{ + lprec *lp = NULL; + int typeMPS; + + typeMPS = (options & ~0x07) >> 2; + typeMPS &= ~MPSFIXED; + typeMPS |= MPSFREE; + if(MPS_readex(&lp, userhandle, read_modeldata, typeMPS, options & 0x07)) + return( lp ); + else + return( NULL ); +} +/* #endif */ +MYBOOL __WINAPI write_mps(lprec *lp, char *filename) +{ + return(MPS_writefile(lp, MPSFIXED, filename)); +} +MYBOOL __WINAPI write_MPS(lprec *lp, FILE *output) +{ + return(MPS_writehandle(lp, MPSFIXED, output)); +} + +MYBOOL __WINAPI write_freemps(lprec *lp, char *filename) +{ + return(MPS_writefile(lp, MPSFREE, filename)); +} +MYBOOL __WINAPI write_freeMPS(lprec *lp, FILE *output) +{ + return(MPS_writehandle(lp, MPSFREE, output)); +} + +MYBOOL __WINAPI write_lp(lprec *lp, char *filename) +{ + return(LP_writefile(lp, filename)); +} +MYBOOL __WINAPI write_LP(lprec *lp, FILE *output) +{ + return(LP_writehandle(lp, output)); +} +#ifndef PARSER_LP +MYBOOL __WINAPI LP_readhandle(lprec **lp, FILE *filename, int verbose, char *lp_name) +{ + return(FALSE); +} +lprec * __WINAPI read_lp(FILE *filename, int verbose, char *lp_name) +{ + return(NULL); +} +lprec * __WINAPI read_LP(char *filename, int verbose, char *lp_name) +{ + return(NULL); +} +#endif + +MYBOOL __WINAPI write_basis(lprec *lp, char *filename) +{ + int typeMPS = MPSFIXED; + return( MPS_writeBAS(lp, typeMPS, filename) ); +} +MYBOOL __WINAPI read_basis(lprec *lp, char *filename, char *info) +{ + int typeMPS = MPSFIXED; + + typeMPS = MPS_readBAS(lp, typeMPS, filename, info); + + /* Code basis */ + if(typeMPS) { + set_action(&lp->spx_action, ACTION_REBASE | ACTION_REINVERT | ACTION_RECOMPUTE); + lp->basis_valid = TRUE; /* Do not re-initialize basis on entering Solve */ + lp->var_basic[0] = FALSE; /* Set to signal that this is a non-default basis */ + } + return( (MYBOOL) typeMPS ); +} + +/* Write and read lp_solve parameters (placeholders) - see lp_params.c */ +void __WINAPI reset_params(lprec *lp) +{ + int mode; + + lp->epsmachine = DEF_EPSMACHINE; + lp->epsperturb = DEF_PERTURB; + lp->lag_accept = DEF_LAGACCEPT; + set_epslevel(lp, EPS_DEFAULT); + + lp->tighten_on_set = FALSE; + lp->negrange = DEF_NEGRANGE; + +#if 0 + lp->do_presolve = PRESOLVE_ROWS | PRESOLVE_COLS | PRESOLVE_MERGEROWS | + PRESOLVE_REDUCEGCD | + PRESOLVE_ROWDOMINATE; +#else + lp->do_presolve = PRESOLVE_NONE; +#endif + lp->presolveloops = DEF_MAXPRESOLVELOOPS; + + lp->scalelimit = DEF_SCALINGLIMIT; + lp->scalemode = SCALE_INTEGERS | +#if 0 + SCALE_POWER2 | + SCALE_LOGARITHMIC | SCALE_MEAN; +#else + SCALE_LINEAR | SCALE_GEOMETRIC | + SCALE_EQUILIBRATE; +#endif + + lp->crashmode = CRASH_NONE; + + lp->max_pivots = 0; + lp->simplex_strategy = SIMPLEX_DUAL_PRIMAL; +#define PricerDefaultOpt 1 +#if PricerDefaultOpt == 1 + mode = PRICER_DEVEX; +#elif PricerDefaultOpt == 2 + mode = PRICER_STEEPESTEDGE; + mode |= PRICE_TRUENORMINIT; +#else + mode = PRICER_STEEPESTEDGE | PRICE_PRIMALFALLBACK; +#endif + mode |= PRICE_ADAPTIVE; +#ifdef EnableRandomizedPricing + mode |= PRICE_RANDOMIZE; +#endif + set_pivoting(lp, mode); + + lp->improve = IMPROVE_DEFAULT; + lp->anti_degen = ANTIDEGEN_DEFAULT; + + lp->bb_floorfirst = BRANCH_AUTOMATIC; + lp->bb_rule = NODE_DYNAMICMODE | NODE_GREEDYMODE | NODE_GAPSELECT | +#if 1 + NODE_PSEUDOCOSTSELECT | +#else + NODE_PSEUDOFEASSELECT | +#endif + NODE_RCOSTFIXING; + lp->bb_limitlevel = DEF_BB_LIMITLEVEL; + lp->bb_PseudoUpdates = DEF_PSEUDOCOSTUPDATES; + + lp->bb_heuristicOF = my_chsign(is_maxim(lp), MAX(DEF_INFINITE, lp->infinite)); + lp->bb_breakOF = -lp->bb_heuristicOF; + + lp->sectimeout = 0; + lp->solutionlimit = 1; + + set_outputstream(lp, NULL); /* Set to default output stream */ + lp->verbose = NORMAL; + lp->print_sol = FALSE; /* Can be FALSE, TRUE, AUTOMATIC (only non-zeros printed) */ + lp->spx_trace = FALSE; + lp->lag_trace = FALSE; + lp->bb_trace = FALSE; +} + +void __WINAPI unscale(lprec *lp) +{ + undoscale(lp); +} +int __WINAPI solve(lprec *lp) +{ +#if defined FPUexception + catchFPU(_EM_INVALID | _EM_ZERODIVIDE | _EM_OVERFLOW | _EM_UNDERFLOW); +#endif + + if(has_BFP(lp)) { + lp->solvecount++; + if(is_add_rowmode(lp)) + set_add_rowmode(lp, FALSE); + return(lin_solve(lp)); + } + else + return( NOBFP ); +} +void __WINAPI print_lp(lprec *lp) +{ + REPORT_lp(lp); +} +void __WINAPI print_tableau(lprec *lp) +{ + REPORT_tableau(lp); +} +void __WINAPI print_objective(lprec *lp) +{ + REPORT_objective(lp); +} +void __WINAPI print_solution(lprec *lp, int columns) +{ + REPORT_solution(lp, columns); +} +void __WINAPI print_constraints(lprec *lp, int columns) +{ + REPORT_constraints(lp, columns); +} +void __WINAPI print_duals(lprec *lp) +{ + REPORT_duals(lp); +} +void __WINAPI print_scales(lprec *lp) +{ + REPORT_scales(lp); +} +MYBOOL __WINAPI print_debugdump(lprec *lp, char *filename) +{ + return(REPORT_debugdump(lp, filename, (MYBOOL) (get_total_iter(lp) > 0))); +} +void __WINAPI print_str(lprec *lp, char *str) +{ + report(lp, lp->verbose, "%s", str); +} + + + +/* ---------------------------------------------------------------------------------- */ +/* Parameter setting and retrieval functions */ +/* ---------------------------------------------------------------------------------- */ + +void __WINAPI set_timeout(lprec *lp, long sectimeout) +{ + lp->sectimeout = sectimeout; +} + +long __WINAPI get_timeout(lprec *lp) +{ + return(lp->sectimeout); +} + +void __WINAPI set_verbose(lprec *lp, int verbose) +{ + lp->verbose = verbose; +} + +int __WINAPI get_verbose(lprec *lp) +{ + return(lp->verbose); +} + +void __WINAPI set_print_sol(lprec *lp, int print_sol) +{ + lp->print_sol = print_sol; +} + +int __WINAPI get_print_sol(lprec *lp) +{ + return(lp->print_sol); +} + +void __WINAPI set_debug(lprec *lp, MYBOOL debug) +{ + lp->bb_trace = debug; +} + +MYBOOL __WINAPI is_debug(lprec *lp) +{ + return(lp->bb_trace); +} + +void __WINAPI set_trace(lprec *lp, MYBOOL trace) +{ + lp->spx_trace = trace; +} + +MYBOOL __WINAPI is_trace(lprec *lp) +{ + return(lp->spx_trace); +} + +void __WINAPI set_anti_degen(lprec *lp, int anti_degen) +{ + lp->anti_degen = anti_degen; +} + +int __WINAPI get_anti_degen(lprec *lp) +{ + return(lp->anti_degen); +} + +MYBOOL __WINAPI is_anti_degen(lprec *lp, int testmask) +{ + return((MYBOOL) ((lp->anti_degen == testmask) || ((lp->anti_degen & testmask) != 0))); +} + +void __WINAPI set_presolve(lprec *lp, int presolvemode, int maxloops) +{ + presolvemode &= ~PRESOLVE_REDUCEMIP; /* disable PRESOLVE_REDUCEMIP since it is very rare that this is effective, and also that it adds code complications and delayed presolve effects that are not captured properly. */ + lp->do_presolve = presolvemode; + lp->presolveloops = maxloops; +} + +int __WINAPI get_presolve(lprec *lp) +{ + return(lp->do_presolve); +} + +int __WINAPI get_presolveloops(lprec *lp) +{ + if(lp->presolveloops < 0) + return(DEF_MAXPRESOLVELOOPS); + else if(lp->presolveloops == 0) + return(MAXINT32); + else + return(lp->presolveloops); +} + +MYBOOL __WINAPI is_presolve(lprec *lp, int testmask) +{ + return((MYBOOL) ((lp->do_presolve == testmask) || ((lp->do_presolve & testmask) != 0))); +} + +void __WINAPI set_maxpivot(lprec *lp, int maxpivot) +{ + lp->max_pivots = maxpivot; +} + +int __WINAPI get_maxpivot(lprec *lp) +{ + return( lp->bfp_pivotmax(lp) ); +} + +void __WINAPI set_bb_rule(lprec *lp, int bb_rule) +{ + lp->bb_rule = bb_rule; +} + +int __WINAPI get_bb_rule(lprec *lp) +{ + return(lp->bb_rule); +} + +/* INLINE */ MYBOOL is_bb_rule(lprec *lp, int bb_rule) +{ + return( (MYBOOL) ((lp->bb_rule & NODE_STRATEGYMASK) == bb_rule) ); +} + +/* INLINE */ MYBOOL is_bb_mode(lprec *lp, int bb_mask) +{ + return( (MYBOOL) ((lp->bb_rule & bb_mask) > 0) ); +} + +void __WINAPI set_action(int *actionvar, int actionmask) +{ + *actionvar |= actionmask; +} + +void __WINAPI clear_action(int *actionvar, int actionmask) +{ + *actionvar &= ~actionmask; +} + +MYBOOL __WINAPI is_action(int actionvar, int testmask) +{ + return( (MYBOOL) ((actionvar & testmask) != 0) ); +} + +void __WINAPI set_bb_depthlimit(lprec *lp, int bb_maxlevel) +{ + lp->bb_limitlevel = bb_maxlevel; +} + +int __WINAPI get_bb_depthlimit(lprec *lp) +{ + return(lp->bb_limitlevel); +} + +void __WINAPI set_obj_bound(lprec *lp, LPSREAL bb_heuristicOF) +{ + lp->bb_heuristicOF = bb_heuristicOF; +} + +LPSREAL __WINAPI get_obj_bound(lprec *lp) +{ + return(lp->bb_heuristicOF); +} + +void __WINAPI set_mip_gap(lprec *lp, MYBOOL absolute, LPSREAL mip_gap) +{ + if(absolute) + lp->mip_absgap = mip_gap; + else + lp->mip_relgap = mip_gap; +} + +LPSREAL __WINAPI get_mip_gap(lprec *lp, MYBOOL absolute) +{ + if(absolute) + return(lp->mip_absgap); + else + return(lp->mip_relgap); +} + +MYBOOL __WINAPI set_var_branch(lprec *lp, int colnr, int branch_mode) +{ + if(colnr > lp->columns || colnr < 1) { + report(lp, IMPORTANT, "set_var_branch: Column %d out of range\n", colnr); + return( FALSE ); + } + + if(lp->bb_varbranch == NULL) { + int i; + if(branch_mode == BRANCH_DEFAULT) + return( TRUE ); + allocMYBOOL(lp, &lp->bb_varbranch, lp->columns_alloc, FALSE); + for(i = 0; i < lp->columns; i++) + lp->bb_varbranch[i] = BRANCH_DEFAULT; + } + lp->bb_varbranch[colnr - 1] = (MYBOOL) branch_mode; + return( TRUE ); +} + +int __WINAPI get_var_branch(lprec *lp, int colnr) +{ + if(colnr > lp->columns || colnr < 1) { + report(lp, IMPORTANT, "get_var_branch: Column %d out of range\n", colnr); + return(lp->bb_floorfirst); + } + + if(lp->bb_varbranch == NULL) + return(lp->bb_floorfirst); + if(lp->bb_varbranch[colnr - 1] == BRANCH_DEFAULT) + return(lp->bb_floorfirst); + else + return(lp->bb_varbranch[colnr - 1]); +} + +static void set_infiniteex(lprec *lp, LPSREAL infinite, MYBOOL init) +{ + int i; + + infinite = fabs(infinite); + if((init) || is_infinite(lp, lp->bb_heuristicOF)) + lp->bb_heuristicOF = my_chsign(is_maxim(lp), infinite); + if((init) || is_infinite(lp, lp->bb_breakOF)) + lp->bb_breakOF = my_chsign(is_maxim(lp), -infinite); + for(i = 0; i <= lp->sum; i++) { + if((!init) && is_infinite(lp, lp->orig_lowbo[i])) + lp->orig_lowbo[i] = -infinite; + if((init) || is_infinite(lp, lp->orig_upbo[i])) + lp->orig_upbo[i] = infinite; + } + lp->infinite = infinite; +} + + +MYBOOL __WINAPI is_infinite(lprec *lp, LPSREAL value) +{ +#if 1 + return( (MYBOOL) (fabs(value) >= lp->infinite) ); +#else + if(fabs(value) >= lp->infinite) + return( TRUE ); + else + return( FALSE ); +#endif +} + +void __WINAPI set_infinite(lprec *lp, LPSREAL infinite) +{ + set_infiniteex(lp, infinite, FALSE); +} + +LPSREAL __WINAPI get_infinite(lprec *lp) +{ + return(lp->infinite); +} + +void __WINAPI set_epsperturb(lprec *lp, LPSREAL epsperturb) +{ + lp->epsperturb = epsperturb; +} + +LPSREAL __WINAPI get_epsperturb(lprec *lp) +{ + return(lp->epsperturb); +} + +void __WINAPI set_epspivot(lprec *lp, LPSREAL epspivot) +{ + lp->epspivot = epspivot; +} + +LPSREAL __WINAPI get_epspivot(lprec *lp) +{ + return(lp->epspivot); +} + +void __WINAPI set_epsint(lprec *lp, LPSREAL epsint) +{ + lp->epsint = epsint; +} + +LPSREAL __WINAPI get_epsint(lprec *lp) +{ + return(lp->epsint); +} + +void __WINAPI set_epsb(lprec *lp, LPSREAL epsb) +{ + lp->epsprimal = MAX(epsb, lp->epsmachine); +} + +LPSREAL __WINAPI get_epsb(lprec *lp) +{ + return(lp->epsprimal); +} + +void __WINAPI set_epsd(lprec *lp, LPSREAL epsd) +{ + lp->epsdual = MAX(epsd, lp->epsmachine); /* Mainly used as tolerance for reduced cost */ +} + +LPSREAL __WINAPI get_epsd(lprec *lp) +{ + return(lp->epsdual); +} + +void __WINAPI set_epsel(lprec *lp, LPSREAL epsel) +{ + lp->epsvalue = MAX(epsel, lp->epsmachine); +} + +LPSREAL __WINAPI get_epsel(lprec *lp) +{ + return(lp->epsvalue); +} + +MYBOOL __WINAPI set_epslevel(lprec *lp, int epslevel) +{ + LPSREAL SPX_RELAX, MIP_RELAX; + + switch(epslevel) { + case EPS_TIGHT: SPX_RELAX = 1; + MIP_RELAX = 1; + break; + case EPS_MEDIUM: SPX_RELAX = 10; + MIP_RELAX = 1; + break; + case EPS_LOOSE: SPX_RELAX = 100; + MIP_RELAX = 10; + break; + case EPS_BAGGY: SPX_RELAX = 1000; + MIP_RELAX = 100; + break; + default: return( FALSE ); + } + lp->epsvalue = SPX_RELAX*DEF_EPSVALUE; + lp->epsprimal = SPX_RELAX*DEF_EPSPRIMAL; + lp->epsdual = SPX_RELAX*DEF_EPSDUAL; + lp->epspivot = SPX_RELAX*DEF_EPSPIVOT; + lp->epssolution= MIP_RELAX*DEF_EPSSOLUTION; + lp->epsint = MIP_RELAX*DEF_EPSINT; + lp->mip_absgap = MIP_RELAX*DEF_MIP_GAP; + lp->mip_relgap = MIP_RELAX*DEF_MIP_GAP; + + return( TRUE ); +} + +void __WINAPI set_scaling(lprec *lp, int scalemode) +{ + lp->scalemode = scalemode; +} + +int __WINAPI get_scaling(lprec *lp) +{ + return(lp->scalemode); +} + +MYBOOL __WINAPI is_scalemode(lprec *lp, int testmask) +{ + return((MYBOOL) ((lp->scalemode & testmask) != 0)); +} + +MYBOOL __WINAPI is_scaletype(lprec *lp, int scaletype) +{ + int testtype; + + testtype = lp->scalemode & SCALE_MAXTYPE; + return((MYBOOL) (scaletype == testtype)); +} + +void __WINAPI set_scalelimit(lprec *lp, LPSREAL scalelimit) +/* Set the relative scaling convergence criterion for the active scaling mode; + the integer part specifies the maximum number of iterations (default = 5). */ +{ + lp->scalelimit = fabs(scalelimit); +} + +LPSREAL __WINAPI get_scalelimit(lprec *lp) +{ + return(lp->scalelimit); +} + +MYBOOL __WINAPI is_integerscaling(lprec *lp) +{ + return(is_scalemode(lp, SCALE_INTEGERS)); +} + +void __WINAPI set_improve(lprec *lp, int improve) +{ + lp->improve = improve; +} + +int __WINAPI get_improve(lprec *lp) +{ + return(lp->improve); +} + +void __WINAPI set_lag_trace(lprec *lp, MYBOOL lag_trace) +{ + lp->lag_trace = lag_trace; +} + +MYBOOL __WINAPI is_lag_trace(lprec *lp) +{ + return(lp->lag_trace); +} + +void __WINAPI set_pivoting(lprec *lp, int pivoting) +{ + /* Set new pivoting strategy */ + lp->piv_strategy = pivoting; + report(lp, DETAILED, "set_pivoting: Pricing strategy set to '%s'\n", + get_str_piv_rule(get_piv_rule(lp))); +} + +int __WINAPI get_pivoting(lprec *lp) +{ + return( lp->piv_strategy ); +} + +/* INLINE */ int get_piv_rule(lprec *lp) +{ + return( (lp->piv_strategy | PRICE_STRATEGYMASK) ^ PRICE_STRATEGYMASK ); +} + +STATIC char *get_str_piv_rule(int rule) +{ + static char *pivotText[PRICER_LASTOPTION+1] = + {"Bland first index", "Dantzig", "Devex", "Steepest Edge"}; + + return( pivotText[rule] ); +} + +MYBOOL __WINAPI is_piv_rule(lprec *lp, int rule) +{ + return( (MYBOOL) (get_piv_rule(lp) == rule) ); +} + +MYBOOL __WINAPI is_piv_mode(lprec *lp, int testmask) +{ + return((MYBOOL) (((testmask & PRICE_STRATEGYMASK) != 0) && + ((lp->piv_strategy & testmask) != 0))); +} + +void __WINAPI set_break_at_first(lprec *lp, MYBOOL break_at_first) +{ + lp->bb_breakfirst = break_at_first; +} + +MYBOOL __WINAPI is_break_at_first(lprec *lp) +{ + return(lp->bb_breakfirst); +} + +void __WINAPI set_bb_floorfirst(lprec *lp, int bb_floorfirst) +{ + lp->bb_floorfirst = (MYBOOL) bb_floorfirst; +} + +int __WINAPI get_bb_floorfirst(lprec *lp) +{ + return(lp->bb_floorfirst); +} + +void __WINAPI set_break_at_value(lprec *lp, LPSREAL break_at_value) +{ + lp->bb_breakOF = break_at_value; +} + +LPSREAL __WINAPI get_break_at_value(lprec *lp) +{ + return(lp->bb_breakOF); +} + +void __WINAPI set_negrange(lprec *lp, LPSREAL negrange) +{ + if(negrange <= 0) + lp->negrange = negrange; + else + lp->negrange = 0.0; +} + +LPSREAL __WINAPI get_negrange(lprec *lp) +{ + return(lp->negrange); +} + +int __WINAPI get_max_level(lprec *lp) +{ + return(lp->bb_maxlevel); +} + +COUNTER __WINAPI get_total_nodes(lprec *lp) +{ + return(lp->bb_totalnodes); +} + +COUNTER __WINAPI get_total_iter(lprec *lp) +{ + return(lp->total_iter + lp->current_iter); +} + +LPSREAL __WINAPI get_objective(lprec *lp) +{ + if(lp->spx_status == OPTIMAL) + ; + else if(!lp->basis_valid) { + report(lp, CRITICAL, "get_objective: Not a valid basis\n"); + return(0.0); + } + + return( lp->best_solution[0] ); +} + +int __WINAPI get_nonzeros(lprec *lp) +{ + return( mat_nonzeros(lp->matA) ); +} + +MYBOOL __WINAPI set_mat(lprec *lp, int rownr, int colnr, LPSREAL value) +{ + if((rownr < 0) || (rownr > lp->rows)) { + report(lp, IMPORTANT, "set_mat: Row %d out of range\n", rownr); + return( FALSE ); + } + if((colnr < 1) || (colnr > lp->columns)) { + report(lp, IMPORTANT, "set_mat: Column %d out of range\n", colnr); + return( FALSE ); + } + +#ifdef DoMatrixRounding + if(rownr == 0) + value = roundToPrecision(value, lp->matA->epsvalue); +#endif + value = scaled_mat(lp, value, rownr, colnr); + if(rownr == 0) { + lp->orig_obj[colnr] = my_chsign(is_chsign(lp, rownr), value); + return( TRUE ); + } + else + return( mat_setvalue(lp->matA, rownr, colnr, value, FALSE) ); +} + +LPSREAL __WINAPI get_working_objective(lprec *lp) +{ + LPSREAL value = 0.0; + + if(!lp->basis_valid) + report(lp, CRITICAL, "get_working_objective: Not a valid basis\n"); + else if((lp->spx_status == RUNNING) && (lp->solutioncount == 0)) + value = my_chsign(!is_maxim(lp), lp->rhs[0]); + else + value = lp->solution[0]; + + return(value); +} + +LPSREAL __WINAPI get_var_primalresult(lprec *lp, int index) +{ + if((index < 0) || (index > lp->presolve_undo->orig_sum)) { + report(lp, IMPORTANT, "get_var_primalresult: Index %d out of range\n", index); + return( 0.0 ); + } + if((lp->do_presolve & PRESOLVE_LASTMASKMODE) != PRESOLVE_NONE) + return( lp->full_solution[index] ); + else + return( lp->best_solution[index] ); +} + +LPSREAL __WINAPI get_var_dualresult(lprec *lp, int index) +{ + LPSREAL *duals; + + if((index < 0) || (index > lp->presolve_undo->orig_sum)) { + report(lp, IMPORTANT, "get_var_dualresult: Index %d out of range\n", index); + return( 0.0 ); + } + + if(index == 0) + return( lp->best_solution[0] ); + + /* Make sure we actually have dual information available */ + if(!get_ptr_sensitivity_rhs(lp, &duals, NULL, NULL)) + return( 0.0 ); + else + duals = ((lp->full_duals == NULL) ? lp->duals : lp->full_duals); + return( duals[index] ); +} + +MYBOOL __WINAPI get_variables(lprec *lp, LPSREAL *var) +{ + if(lp->spx_status == OPTIMAL) + ; + else if(!lp->basis_valid) { + report(lp, CRITICAL, "get_variables: Not a valid basis\n"); + return(FALSE); + } + + MEMCOPY(var, lp->best_solution + (1 + lp->rows), lp->columns); + return(TRUE); +} + +MYBOOL __WINAPI get_ptr_variables(lprec *lp, LPSREAL **var) +{ + if(lp->spx_status == OPTIMAL) + ; + else if(!lp->basis_valid) { + report(lp, CRITICAL, "get_ptr_variables: Not a valid basis\n"); + return(FALSE); + } + + if(var != NULL) + *var = lp->best_solution + (1 + lp->rows); + return(TRUE); +} + +MYBOOL __WINAPI get_constraints(lprec *lp, LPSREAL *constr) +{ + if(lp->spx_status == OPTIMAL) + ; + else if(!lp->basis_valid) { + report(lp, CRITICAL, "get_constraints: Not a valid basis\n"); + return(FALSE); + } + + MEMCOPY(constr, lp->best_solution + 1, lp->rows); + return(TRUE); +} + +MYBOOL __WINAPI get_ptr_constraints(lprec *lp, LPSREAL **constr) +{ + if(lp->spx_status == OPTIMAL) + ; + else if(!lp->basis_valid) { + report(lp, CRITICAL, "get_ptr_constraints: Not a valid basis\n"); + return(FALSE); + } + + if(constr != NULL) + *constr = lp->best_solution + 1; + return(TRUE); +} + +MYBOOL __WINAPI get_sensitivity_rhs(lprec *lp, LPSREAL *duals, LPSREAL *dualsfrom, LPSREAL *dualstill) +{ + LPSREAL *duals0, *dualsfrom0, *dualstill0; + + if(!lp->basis_valid) { + report(lp, CRITICAL, "get_sensitivity_rhs: Not a valid basis\n"); + return(FALSE); + } + + if(!get_ptr_sensitivity_rhs(lp, + (duals != NULL) ? &duals0 : NULL, + (dualsfrom != NULL) ? &dualsfrom0 : NULL, + (dualstill != NULL) ? &dualstill0 : NULL)) + return(FALSE); + + if(duals != NULL) + MEMCOPY(duals, duals0, lp->sum); + if(dualsfrom != NULL) + MEMCOPY(dualsfrom, dualsfrom0, lp->sum); + if(dualstill != NULL) + MEMCOPY(dualstill, dualstill0, lp->sum); + return(TRUE); +} + +MYBOOL __WINAPI get_ptr_sensitivity_rhs(lprec *lp, LPSREAL **duals, LPSREAL **dualsfrom, LPSREAL **dualstill) +{ + if(!lp->basis_valid) { + report(lp, CRITICAL, "get_ptr_sensitivity_rhs: Not a valid basis\n"); + return(FALSE); + } + + if(duals != NULL) { + if(lp->duals == NULL) { + if((MIP_count(lp) > 0) && (lp->bb_totalnodes > 0)) { + report(lp, CRITICAL, "get_ptr_sensitivity_rhs: Sensitivity unknown\n"); + return(FALSE); + } + if(!construct_duals(lp)) + return(FALSE); + } + *duals = lp->duals + 1; + } + + if((dualsfrom != NULL) || (dualstill != NULL)) { + if((lp->dualsfrom == NULL) || (lp->dualstill == NULL)) { + if((MIP_count(lp) > 0) && (lp->bb_totalnodes > 0)) { + report(lp, CRITICAL, "get_ptr_sensitivity_rhs: Sensitivity unknown\n"); + return(FALSE); + } + construct_sensitivity_duals(lp); + if((lp->dualsfrom == NULL) || (lp->dualstill == NULL)) + return(FALSE); + } + if(dualsfrom != NULL) + *dualsfrom = lp->dualsfrom + 1; + if(dualstill != NULL) + *dualstill = lp->dualstill + 1; + } + return(TRUE); +} + +MYBOOL __WINAPI get_sensitivity_objex(lprec *lp, LPSREAL *objfrom, LPSREAL *objtill, LPSREAL *objfromvalue, LPSREAL *objtillvalue) +{ + LPSREAL *objfrom0, *objtill0, *objfromvalue0, *objtillvalue0; + + if(!lp->basis_valid) { + report(lp, CRITICAL, "get_sensitivity_objex: Not a valid basis\n"); + return(FALSE); + } + + if(!get_ptr_sensitivity_objex(lp, (objfrom != NULL) ? &objfrom0 : NULL, + (objtill != NULL) ? &objtill0 : NULL, + (objfromvalue != NULL) ? &objfromvalue0 : NULL, + (objtillvalue != NULL) ? &objtillvalue0 : NULL)) + return(FALSE); + + if((objfrom != NULL) && (objfrom0 != NULL)) + MEMCOPY(objfrom, objfrom0, lp->columns); + if((objtill != NULL) && (objtill0 != NULL)) + MEMCOPY(objtill, objtill0, lp->columns); + if((objfromvalue != NULL) && (objfromvalue0 != NULL)) + MEMCOPY(objfromvalue, objfromvalue0, lp->columns); + if((objtillvalue != NULL) && (objtillvalue0 != NULL)) + MEMCOPY(objtillvalue, objtillvalue0, lp->columns); + return(TRUE); +} + +MYBOOL __WINAPI get_sensitivity_obj(lprec *lp, LPSREAL *objfrom, LPSREAL *objtill) +{ + return(get_sensitivity_objex(lp, objfrom, objtill, NULL, NULL)); +} + +MYBOOL __WINAPI get_ptr_sensitivity_objex(lprec *lp, LPSREAL **objfrom, LPSREAL **objtill, LPSREAL **objfromvalue, LPSREAL **objtillvalue) +{ + if(!lp->basis_valid) { + report(lp, CRITICAL, "get_ptr_sensitivity_objex: Not a valid basis\n"); + return(FALSE); + } + + if((objfrom != NULL) || (objtill != NULL)) { + if((lp->objfrom == NULL) || (lp->objtill == NULL)) { + if((MIP_count(lp) > 0) && (lp->bb_totalnodes > 0)) { + report(lp, CRITICAL, "get_ptr_sensitivity_objex: Sensitivity unknown\n"); + return(FALSE); + } + construct_sensitivity_obj(lp); + if((lp->objfrom == NULL) || (lp->objtill == NULL)) + return(FALSE); + } + if(objfrom != NULL) + *objfrom = lp->objfrom + 1; + if(objtill != NULL) + *objtill = lp->objtill + 1; + } + + if((objfromvalue != NULL) /* || (objtillvalue != NULL) */) { + if((lp->objfromvalue == NULL) /* || (lp->objtillvalue == NULL) */) { + if((MIP_count(lp) > 0) && (lp->bb_totalnodes > 0)) { + report(lp, CRITICAL, "get_ptr_sensitivity_objex: Sensitivity unknown\n"); + return(FALSE); + } + construct_sensitivity_duals(lp); + if((lp->objfromvalue == NULL) /* || (lp->objtillvalue == NULL) */) + return(FALSE); + } + } + + if(objfromvalue != NULL) + *objfromvalue = lp->objfromvalue + 1; + + if(objtillvalue != NULL) + *objtillvalue = NULL /* lp->objtillvalue + 1 */; + + return(TRUE); +} + +MYBOOL __WINAPI get_ptr_sensitivity_obj(lprec *lp, LPSREAL **objfrom, LPSREAL **objtill) +{ + return(get_ptr_sensitivity_objex(lp, objfrom, objtill, NULL, NULL)); +} + +void __WINAPI set_solutionlimit(lprec *lp, int limit) +{ + lp->solutionlimit = limit; +} +int __WINAPI get_solutionlimit(lprec *lp) +{ + return(lp->solutionlimit); +} +int __WINAPI get_solutioncount(lprec *lp) +{ + return(lp->solutioncount); +} + +int __WINAPI get_Nrows(lprec *lp) +{ + return(lp->rows); +} + +int __WINAPI get_Norig_rows(lprec *lp) +{ + if(lp->varmap_locked) + return(lp->presolve_undo->orig_rows); + else + return(lp->rows); +} + +int __WINAPI get_Lrows(lprec *lp) +{ + if(lp->matL == NULL) + return( 0 ); + else + return( lp->matL->rows ); +} + +int __WINAPI get_Ncolumns(lprec *lp) +{ + return(lp->columns); +} + +int __WINAPI get_Norig_columns(lprec *lp) +{ + if(lp->varmap_locked) + return(lp->presolve_undo->orig_columns); + else + return(lp->columns); +} + + +/* ---------------------------------------------------------------------------------- */ +/* Core routines for lp_solve */ +/* ---------------------------------------------------------------------------------- */ +int __WINAPI get_status(lprec *lp) +{ + return(lp->spx_status); +} + +char * __WINAPI get_statustext(lprec *lp, int statuscode) +{ + if (statuscode == NOBFP) return("No basis factorization package"); + else if (statuscode == DATAIGNORED) return("Invalid input data provided"); + else if (statuscode == NOMEMORY) return("Not enough memory available"); + else if (statuscode == NOTRUN) return("Model has not been optimized"); + else if (statuscode == OPTIMAL) return("OPTIMAL solution"); + else if (statuscode == SUBOPTIMAL) return("SUB-OPTIMAL solution"); + else if (statuscode == INFEASIBLE) return("Model is primal INFEASIBLE"); + else if (statuscode == UNBOUNDED) return("Model is primal UNBOUNDED"); + else if (statuscode == RUNNING) return("lp_solve is currently running"); + else if (statuscode == NUMFAILURE) return("NUMERIC FAILURE encountered"); + else if (statuscode == DEGENERATE) return("DEGENERATE situation"); + else if (statuscode == USERABORT) return("User-requested termination"); + else if (statuscode == TIMEOUT) return("Termination due to timeout"); + else if (statuscode == PRESOLVED) return("Model solved by presolve"); + else if (statuscode == PROCFAIL) return("B&B routine failed"); + else if (statuscode == PROCBREAK) return("B&B routine terminated"); + else if (statuscode == FEASFOUND) return("Feasible B&B solution found"); + else if (statuscode == NOFEASFOUND) return("No feasible B&B solution found"); + else if (statuscode == FATHOMED) return("Fathomed/pruned branch"); + else return("Undefined internal error"); +} + +MYBOOL __WINAPI is_obj_in_basis(lprec *lp) +{ + return( lp->obj_in_basis ); +} + +void __WINAPI set_obj_in_basis(lprec *lp, MYBOOL obj_in_basis) +{ + lp->obj_in_basis = (MYBOOL) (obj_in_basis == TRUE); +} + +lprec * __WINAPI make_lp(int rows, int columns) +{ + lprec *lp; + +# if defined FORTIFY + /* Fortify_EnterScope(); */ +# endif + + if(rows < 0 || columns < 0) + return(NULL); + + lp = (lprec*) calloc(1, sizeof(*lp)); + if(!lp) + return(NULL); + + set_lp_name(lp, NULL); + lp->names_used = FALSE; + lp->use_row_names = TRUE; + lp->use_col_names = TRUE; + lp->rowcol_name = NULL; + + /* Do standard initializations ------------------------------------------------------------ */ +#if 1 + lp->obj_in_basis = DEF_OBJINBASIS; +#else + lp->obj_in_basis = FALSE; +#endif + lp->verbose = NORMAL; + set_callbacks(lp); + set_BFP(lp, NULL); + set_XLI(lp, NULL); +#if libBLAS > 0 + init_BLAS(); +#if libBLAS > 1 + if(is_nativeBLAS() && !load_BLAS(libnameBLAS)) + /*report(lp, "make_lp: Could not load external BLAS library '%s'.\n", libnameBLAS)*/; +#endif +#endif + + /* Define the defaults for key user-settable values --------------------------------------- */ + reset_params(lp); + + /* Do other initializations --------------------------------------------------------------- */ + lp->source_is_file = FALSE; + lp->model_is_pure = TRUE; + lp->model_is_valid = FALSE; + lp->spx_status = NOTRUN; + lp->lag_status = NOTRUN; + + lp->workarrays = mempool_create(lp); + lp->wasPreprocessed = FALSE; + lp->wasPresolved = FALSE; + presolve_createUndo(lp); + + lp->bb_varactive = NULL; + lp->bb_varbranch = NULL; + lp->var_priority = NULL; + + lp->rhsmax = 0.0; + lp->bigM = 0.0; + lp->bb_deltaOF = 0.0; + + lp->equalities = 0; + lp->fixedvars = 0; + lp->int_vars = 0; + lp->sc_vars = 0; + + lp->sos_ints = 0; + lp->sos_vars = 0; + lp->sos_priority = NULL; + + lp->rows_alloc = 0; + lp->columns_alloc = 0; + lp->sum_alloc = 0; + + lp->rows = rows; + lp->columns = columns; + lp->sum = rows + columns; + varmap_clear(lp); + + lp->matA = mat_create(lp, rows, columns, lp->epsvalue); + lp->matL = NULL; + lp->invB = NULL; + lp->duals = NULL; + lp->dualsfrom = NULL; + lp->dualstill = NULL; + lp->objfromvalue = NULL; + lp->objfrom = NULL; + lp->objtill = NULL; + + inc_col_space(lp, columns + 1); + inc_row_space(lp, rows + 1); + + /* Avoid bound-checker uninitialized variable error */ + lp->orig_lowbo[0] = 0; + + lp->rootbounds = NULL; + lp->bb_bounds = NULL; + lp->bb_basis = NULL; + + lp->basis_valid = FALSE; + lp->simplex_mode = SIMPLEX_DYNAMIC; + lp->scaling_used = FALSE; + lp->columns_scaled = FALSE; + lp->P1extraDim = 0; + lp->P1extraVal = 0.0; + lp->bb_strongbranches = 0; + lp->current_iter = 0; + lp->total_iter = 0; + lp->current_bswap = 0; + lp->total_bswap = 0; + lp->solutioncount = 0; + lp->solvecount = 0; + + allocINT(lp, &lp->rejectpivot, DEF_MAXPIVOTRETRY + 1, TRUE); + + set_minim(lp); + set_infiniteex(lp, DEF_INFINITE, TRUE); + + initPricer(lp); + + /* Call-back routines by KE */ + lp->ctrlc = NULL; + lp->ctrlchandle = NULL; + lp->writelog = NULL; + lp->loghandle = NULL; + lp->debuginfo = NULL; + lp->usermessage = NULL; + lp->msgmask = MSG_NONE; + lp->msghandle = NULL; + + lp->timecreate = timeNow(); + + return(lp); +} + +MYBOOL __WINAPI resize_lp(lprec *lp, int rows, int columns) +{ + MYBOOL status = TRUE; + + if(columns > lp->columns) + status = inc_col_space(lp, columns - lp->columns); + else + while(status && (lp->columns > columns)) { + status = del_column(lp, lp->columns); + } + if(status && (rows > lp->rows)) + status = inc_row_space(lp, rows - lp->rows); + else + while(status && (lp->rows > rows)) { + status = del_constraint(lp, lp->rows); + } + return( status ); +} + +void __WINAPI free_lp(lprec **plp) +{ + if(plp != NULL) { + lprec *lp = *plp; + if(lp != NULL) + delete_lp(lp); + *plp = NULL; + } +} + +void __WINAPI delete_lp(lprec *lp) +{ + if(lp == NULL) + return; + + FREE(lp->rowcol_name); + FREE(lp->lp_name); + FREE(lp->ex_status); + if(lp->names_used) { + FREE(lp->row_name); + FREE(lp->col_name); + free_hash_table(lp->rowname_hashtab); + free_hash_table(lp->colname_hashtab); + } + + mat_free(&lp->matA); + lp->bfp_free(lp); +#if LoadInverseLib == TRUE + if(lp->hBFP != NULL) + set_BFP(lp, NULL); +#endif +#if LoadLanguageLib == TRUE + if(lp->hXLI != NULL) + set_XLI(lp, NULL); +#endif + + unset_OF_p1extra(lp); + FREE(lp->orig_obj); + FREE(lp->orig_rhs); + FREE(lp->rhs); + FREE(lp->var_type); + set_var_weights(lp, NULL); + FREE(lp->bb_varbranch); + FREE(lp->sc_lobound); + FREE(lp->var_is_free); + FREE(lp->orig_upbo); + FREE(lp->orig_lowbo); + FREE(lp->upbo); + FREE(lp->lowbo); + FREE(lp->var_basic); + FREE(lp->is_basic); + FREE(lp->is_lower); + if(lp->bb_PseudoCost != NULL) { +/* report(lp, SEVERE, "delete_lp: The B&B pseudo-cost array was not cleared on delete\n"); */ + free_pseudocost(lp); + } + if(lp->bb_bounds != NULL) { + report(lp, SEVERE, "delete_lp: The stack of B&B levels was not empty (failed at %.0f nodes)\n", + (double) lp->bb_totalnodes); + unload_BB(lp); + } + if(lp->bb_basis != NULL) { +/* report(lp, SEVERE, "delete_lp: The stack of saved bases was not empty on delete\n"); */ + unload_basis(lp, FALSE); + } + + FREE(lp->rejectpivot); + partial_freeBlocks(&(lp->rowblocks)); + partial_freeBlocks(&(lp->colblocks)); + multi_free(&(lp->multivars)); + multi_free(&(lp->longsteps)); + + FREE(lp->solution); + FREE(lp->best_solution); + FREE(lp->full_solution); + + presolve_freeUndo(lp); + mempool_free(&(lp->workarrays)); + + freePricer(lp); + + FREE(lp->drow); + FREE(lp->nzdrow); + + FREE(lp->duals); + FREE(lp->full_duals); + FREE(lp->dualsfrom); + FREE(lp->dualstill); + FREE(lp->objfromvalue); + FREE(lp->objfrom); + FREE(lp->objtill); + FREE(lp->row_type); + + if(lp->sos_vars > 0) + FREE(lp->sos_priority); + free_SOSgroup(&(lp->SOS)); + free_SOSgroup(&(lp->GUB)); + freecuts_BB(lp); + + if(lp->scaling_used) + FREE(lp->scalars); + if(lp->matL != NULL) { + FREE(lp->lag_rhs); + FREE(lp->lambda); + FREE(lp->lag_con_type); + mat_free(&lp->matL); + } + if(lp->streamowned) + set_outputstream(lp, NULL); + +#if libBLAS > 0 + if(!is_nativeBLAS()) + unload_BLAS(); +#endif + + FREE(lp); + +# if defined FORTIFY + /* Fortify_LeaveScope(); */ +# endif +} + +static MYBOOL get_SOS(lprec *lp, int index, char *name, int *sostype, int *priority, int *count, int *sosvars, LPSREAL *weights) +{ + SOSrec *SOS; + + if((index < 1) || (index > SOS_count(lp))) + return( FALSE ); + SOS = lp->SOS->sos_list[index-1]; + if(name != NULL) + strcpy(name, SOS->name); + if(sostype != NULL) + *sostype = SOS->type; + if(priority != NULL) + *priority = SOS->priority; + if(count != NULL) { + *count = SOS->size; + if(sosvars != NULL) { + int i; + for(i = 1; i <= *count; i++) { + sosvars[i-1] = SOS->members[i]; + if(weights != NULL) + weights[i-1] = SOS->weights[i]; + } + } + } + return( TRUE ); +} + +/* Make a copy of the existing model using (mostly) high-level + construction routines to simplify future maintainance. */ +lprec* __WINAPI copy_lp(lprec *lp) +{ + int i, n, *idx = NULL; + LPSREAL hold, *val = NULL, infinite; + lprec *newlp = NULL; + char buf[256], ok = FALSE; + int sostype, priority, count, *sosvars, rows, columns; + LPSREAL *weights = NULL; + +#if 0 + if(lp->wasPresolved) + return( newlp ); +#endif + + rows = get_Nrows(lp); + columns = get_Ncolumns(lp); + + if(!allocINT(lp, &idx, rows+1, FALSE) || + !allocREAL(lp, &val, rows+1, FALSE)) + goto Finish; + + /* Create the new object */ + newlp = make_lp(rows, 0); + if(newlp == NULL) + goto Finish; + if(!resize_lp(newlp, rows, columns)) + goto Finish; + set_sense(newlp, is_maxim(lp)); + set_use_names(newlp, FALSE, is_use_names(lp, FALSE)); + set_use_names(newlp, TRUE, is_use_names(lp, TRUE)); + if(!set_lp_name(newlp, get_lp_name(lp))) + goto Finish; + /* set_algopt(newlp, get_algopt(lp)); */ /* v6 */ + set_verbose(newlp, get_verbose(lp)); + + /* Transfer standard simplex parameters */ + set_epspivot(newlp, get_epspivot(lp)); + set_epsel(newlp, get_epsel(lp)); + set_epsb(newlp, get_epsb(lp)); + set_epsd(newlp, get_epsd(lp)); + set_pivoting(newlp, get_pivoting(lp)); + set_negrange(newlp, lp->negrange); + set_infinite(newlp, get_infinite(lp)); + set_presolve(newlp, get_presolve(lp), get_presolveloops(lp)); + set_scaling(newlp, get_scaling(lp)); + set_scalelimit(newlp, get_scalelimit(lp)); + set_simplextype(newlp, get_simplextype(lp)); + set_epsperturb(newlp, get_epsperturb(lp)); + set_anti_degen(newlp, get_anti_degen(lp)); + set_improve(newlp, get_improve(lp)); + set_basiscrash(newlp, get_basiscrash(lp)); + set_maxpivot(newlp, get_maxpivot(lp)); + set_timeout(newlp, get_timeout(lp)); + + /* Transfer MILP parameters */ + set_epsint(newlp, get_epsint(lp)); + set_bb_rule(newlp, get_bb_rule(lp)); + set_bb_depthlimit(newlp, get_bb_depthlimit(lp)); + set_bb_floorfirst(newlp, get_bb_floorfirst(lp)); + set_mip_gap(newlp, TRUE, get_mip_gap(lp, TRUE)); + set_mip_gap(newlp, FALSE, get_mip_gap(lp, FALSE)); + set_break_at_first(newlp, is_break_at_first(lp)); + set_break_at_value(newlp, get_break_at_value(lp)); + + /* Set RHS and range */ + infinite = get_infinite(lp); + for(i = 0; i <= rows; i++) { + if(i > 0) + if(!set_constr_type(newlp, i, get_constr_type(lp, i))) + goto Finish; + if(!set_rh(newlp, i, get_rh(lp, i))) + goto Finish; + if((i > 0) && ((hold = get_rh_range(lp, i)) < infinite)) + if(!set_rh_range(newlp, i, hold)) + goto Finish; + if(lp->names_used && lp->use_row_names && (lp->row_name[i] != NULL) && (lp->row_name[i]->name != NULL)) + if(!set_row_name(newlp, i, get_row_name(lp, i))) + goto Finish; + } + + /* Load the constraint matrix and variable definitions */ + for(i = 1; i <= columns; i++) { + n = get_columnex(lp, i, val, idx); + if ((n < 0) || (!add_columnex(newlp, n, val, idx))) + goto Finish; + if(is_binary(lp, i)) { + if (!set_binary(newlp, i, TRUE)) + goto Finish; + } + else { + if(is_int(lp, i)) + if(!set_int(newlp, i, TRUE)) + goto Finish; + if((hold = get_lowbo(lp, i)) != 0) + if(!set_lowbo(newlp, i, hold)) + goto Finish; + if((hold = get_upbo(lp, i)) < infinite) + if(!set_upbo(newlp, i, hold)) + goto Finish; + } + if(is_semicont(lp, i)) + if(!set_semicont(newlp, i, TRUE)) + goto Finish; + if(lp->names_used && lp->use_col_names && (lp->col_name[i] != NULL) && (lp->col_name[i]->name != NULL)) + if(!set_col_name(newlp, i, get_col_name(lp, i))) + goto Finish; + } + + /* copy SOS data */ + for(i = 1; get_SOS(lp, i, buf, &sostype, &priority, &count, NULL, NULL); i++) + if (count) { + if(!allocINT(lp, &sosvars, count, FALSE) || + !allocREAL(lp, &weights, count, FALSE)) + n = 0; + else { + get_SOS(lp, i, buf, &sostype, &priority, &count, sosvars, weights); + n = add_SOS(newlp, buf, sostype, priority, count, sosvars, weights); + } + FREE(weights); + FREE(sosvars); + if(n == 0) + goto Finish; + } + +#if 0 + /* Other parameters set if the source model was previously solved */ + if(lp->solvecount > 0) { + MEMCOPY(newlp->scalars, lp->scalars, lp->sum+1); + MEMCOPY(newlp->var_basic, lp->var_basic, rows+1); + MEMCOPY(newlp->is_basic, lp->is_basic, lp->sum+1); + MEMCOPY(newlp->is_lower, lp->is_lower, lp->sum+1); + MEMCOPY(newlp->solution, lp->solution, lp->sum+1); + if(lp->duals != NULL) { + allocREAL(newlp, &newlp->duals, newlp->sum_alloc+1, FALSE); + MEMCOPY(newlp->duals, lp->duals, lp->sum+1); + } + newlp->solutioncount = lp->solutioncount; + newlp->solvecount = lp->solvecount; + } +#endif + + ok = TRUE; + + /* Clean up before returning */ +Finish: + if(!ok) + free_lp(&newlp); + FREE(val); + FREE(idx); + + return( newlp ); +} +MYBOOL __WINAPI dualize_lp(lprec *lp) +{ + int i, n; + MATrec *mat = lp->matA; + LPSREAL *item; + + /* Are we allowed to perform the operation? */ + if((MIP_count(lp) > 0) || (lp->solvecount > 0)) + return( FALSE ); + + /* Modify sense */ + set_sense(lp, (MYBOOL) !is_maxim(lp)); + + /* Transpose matrix and reverse signs */ + n = mat_nonzeros(mat); + mat_transpose(mat); + item = &COL_MAT_VALUE(0); + for(i = 0; i < n; i++, item += matValueStep) + *item *= -1; + + /* Row-column swap other vectors */ + swapINT(&lp->rows, &lp->columns); + swapINT(&lp->rows_alloc, &lp->columns_alloc); + swapREAL(lp->orig_rhs, lp->orig_obj); + if ((lp->rhs != NULL) && (lp->obj != NULL)) + swapREAL(lp->rhs, lp->obj); + + /* Reallocate storage */ +/* +var_type +sc_bound +solution +best_solution +full_solution +duals +*/ + + /* Shift variable bounds */ +/* +is_basic +orig_upbo +orig_lowbo +scalars +*/ + + return( TRUE ); +} + +/* Optimize memory usage */ +STATIC MYBOOL memopt_lp(lprec *lp, int rowextra, int colextra, int nzextra) +{ + MYBOOL status = FALSE; + + if(lp == NULL) + return( status ); + + status = mat_memopt(lp->matA, rowextra, colextra, nzextra) && + (++rowextra > 0) && (++colextra > 0) && (++nzextra > 0); + +#if 0 /* inc_ routines not well-tested for reduction in size allocation */ + if(status) { + int colalloc = lp->columns_alloc - MIN(lp->columns_alloc, lp->columns + colextra), + rowalloc = lp->rows_alloc - MIN(lp->rows_alloc, lp->rows + rowextra); + + status = inc_lag_space(lp, rowalloc, FALSE) && + inc_row_space(lp, rowalloc) && + inc_col_space(lp, colalloc); + } +#endif + + return( status ); +} + + +/* Utility routine group for constraint and column deletion/insertion + mapping in relation to the original set of constraints and columns */ +STATIC void varmap_lock(lprec *lp) +{ + presolve_fillUndo(lp, lp->rows, lp->columns, TRUE); + lp->varmap_locked = TRUE; +} +STATIC void varmap_clear(lprec *lp) +{ + presolve_setOrig(lp, 0, 0); + lp->varmap_locked = FALSE; +} +STATIC MYBOOL varmap_canunlock(lprec *lp) +{ + /* Don't do anything if variables aren't locked yet */ + if(lp->varmap_locked) { + int i; + presolveundorec *psundo = lp->presolve_undo; + + /* Check for the obvious */ + if(/*lp->names_used || + (psundo->orig_columns != lp->columns) || (psundo->orig_rows != lp->rows)) */ + (psundo->orig_columns > lp->columns) || (psundo->orig_rows > lp->rows)) + return( FALSE ); + + /* Check for deletions */ + for(i = psundo->orig_rows + psundo->orig_columns; i > 0; i--) + if(psundo->orig_to_var[i] == 0) + return( FALSE ); + + /* Check for insertions */ + for(i = lp->sum; i > 0; i--) + if(psundo->var_to_orig[i] == 0) + return( FALSE ); + } + return( TRUE ); +} +STATIC void varmap_add(lprec *lp, int base, int delta) +{ + int i, ii; + presolveundorec *psundo = lp->presolve_undo; + + /* Don't do anything if variables aren't locked yet */ + if(!lp->varmap_locked) + return; + + /* Set new constraints/columns to have an "undefined" mapping to original + constraints/columns (assumes that counters have NOT yet been updated) */ + for(i = lp->sum; i >= base; i--) { + ii = i + delta; + psundo->var_to_orig[ii] = psundo->var_to_orig[i]; + } + + /* Initialize map of added rows/columns */ + for(i = 0; i < delta; i++) { + ii = base + i; + psundo->var_to_orig[ii] = 0; + } +} + +STATIC void varmap_delete(lprec *lp, int base, int delta, LLrec *varmap) +{ + int i, ii, j; + MYBOOL preparecompact = (MYBOOL) (varmap != NULL); + presolveundorec *psundo = lp->presolve_undo; + + /* Set the model "dirty" if we are deleting row of constraint */ + lp->model_is_pure &= (MYBOOL) ((lp->solutioncount == 0) && !preparecompact); + + /* Don't do anything if + 1) variables aren't locked yet, or + 2) the constraint was added after the variables were locked */ + if(!lp->varmap_locked) { +#if 0 + if(lp->names_used) + varmap_lock(lp); + else + return; +#else + if(!lp->model_is_pure && lp->names_used) + varmap_lock(lp); +#endif + } + + /* Do mass deletion via a linked list */ + preparecompact = (MYBOOL) (varmap != NULL); + if(preparecompact) { + preparecompact = (MYBOOL) (base > lp->rows); /* Set TRUE for columns */ + for(j = firstInactiveLink(varmap); j != 0; j = nextInactiveLink(varmap, j)) { + i = j; + if(preparecompact) { +#ifdef Paranoia + if(SOS_is_member(lp->SOS, 0, j)) + report(lp, SEVERE, "varmap_delete: Deleting variable %d, which is in a SOS!\n", j); +#endif + i += lp->rows; + } + ii = psundo->var_to_orig[i]; + if(ii > 0) /* It was an original variable; reverse sign of index to flag deletion */ + psundo->var_to_orig[i] = -ii; + else /* It was a non-original variable; add special code for deletion */ + psundo->var_to_orig[i] = -(psundo->orig_rows+psundo->orig_columns+i); + } + return; + } + + /* Do legacy simplified version if we are doing batch delete operations */ + preparecompact = (MYBOOL) (base < 0); + if(preparecompact) { + base = -base; + if(base > lp->rows) + base += (psundo->orig_rows - lp->rows); + for(i = base; i < base-delta; i++) { + ii = psundo->var_to_orig[i]; + if(ii > 0) /* It was an original variable; reverse sign of index to flag deletion */ + psundo->var_to_orig[i] = -ii; + else /* It was a non-original variable; add special code for deletion */ + psundo->var_to_orig[i] = -(psundo->orig_rows+psundo->orig_columns+i); + } + return; + } + + /* We are deleting an original constraint/column; + 1) clear mapping of original to deleted + 2) shift the deleted variable to original mappings left + 3) decrement all subsequent original-to-current pointers + */ + if(varmap_canunlock(lp)) lp->varmap_locked = FALSE; + for(i = base; i < base-delta; i++) { + ii = psundo->var_to_orig[i]; + if(ii > 0) + psundo->orig_to_var[ii] = 0; + } + for(i = base; i <= lp->sum+delta; i++) { + ii = i - delta; + psundo->var_to_orig[i] = psundo->var_to_orig[ii]; + } + + i = 1; + j = psundo->orig_rows; + if(base > lp->rows) { + i += j; + j += psundo->orig_columns; + } + ii = base-delta; + for(; i <= j; i++) { + if(psundo->orig_to_var[i] >= ii) + psundo->orig_to_var[i] += delta; + } + +} + +STATIC MYBOOL varmap_validate(lprec *lp, int varno) +{ + MYBOOL success = TRUE; + int i, ii, ix, ie, + n_rows = lp->rows, + orig_sum = lp->presolve_undo->orig_sum, + orig_rows = lp->presolve_undo->orig_rows; + + if(varno <= 0) { + varno = 1; + ie = orig_sum; + } + else + ie = varno; + for(i = varno; success && (i <= ie); i++) { + ix = lp->presolve_undo->orig_to_var[i]; + if((ix > 0) && (i > orig_rows)) + ix += n_rows; + + /* Check for index out of range due to presolve */ + success = (MYBOOL) (ix <= orig_sum); + if(!success) + report(lp, SEVERE, "varmap_validate: Invalid new mapping found for variable %d\n", + i); + else if(ix != 0) { + ii = lp->presolve_undo->var_to_orig[ix]; + if(ix > n_rows) + ii += orig_rows; + success = (MYBOOL) (ii == i); + if(!success) + report(lp, SEVERE, "varmap_validate: Invalid old mapping found for variable %d (%d)\n", + i, ii); + } + } + return( success ); +} + +STATIC void varmap_compact(lprec *lp, int prev_rows, int prev_cols) +{ + presolveundorec *psundo = lp->presolve_undo; + int i, ii, n_sum, n_rows, + orig_rows = psundo->orig_rows, + prev_sum = prev_rows + prev_cols; + + /* Nothing to do if the model is not "dirty" or the variable map is not locked */ + if(lp->model_is_pure || !lp->varmap_locked) + return; + + /* We are deleting an original constraint/column; + 1) clear mapping of original to deleted + 2) shift the deleted variable to original mappings left + 3) decrement all subsequent original-to-current pointers + */ + n_sum = 0; + n_rows = 0; + for(i = 1; i <= prev_sum; i++) { + ii = psundo->var_to_orig[i]; + + /* Process variable if it was deleted in the previous round */ + if(ii < 0) { + ii = -ii; + /* Update map back if we have an original variable, otherwise just skip */ + if(i <= prev_rows) + psundo->orig_to_var[ii] = 0; + else + psundo->orig_to_var[orig_rows+ii] = 0; + } + /* Otherwise shift and update map back */ + else { + n_sum++; + /* Shift only if necessary */ + if(n_sum < i) + psundo->var_to_orig[n_sum] = ii; + /* Update map back if we have an original variable */ + if(ii > 0) { + if(i <= prev_rows) { + psundo->orig_to_var[ii] = n_sum; + n_rows = n_sum; + } + else + psundo->orig_to_var[orig_rows+ii] = n_sum-n_rows; + } + } + } +#ifdef xxParanoia + if(!varmap_validate(lp, 0)) + report(lp, SEVERE, "varmap_compact: Internal presolve mapping error at exit\n"); +#endif + +} + +/* Utility group for shifting row and column data */ +STATIC MYBOOL shift_rowcoldata(lprec *lp, int base, int delta, LLrec *usedmap, MYBOOL isrow) +/* Note: Assumes that "lp->sum" and "lp->rows" HAVE NOT been updated to the new counts */ +{ + int i, ii; + LPSREAL lodefault; + + /* Shift data right/down (insert), and set default values in positive delta-gap */ + if(delta > 0) { + + /* Determine if we can take the easy way out */ + MYBOOL easyout = (MYBOOL) ((lp->solvecount == 0) && (base > lp->rows)); + + /* Shift the row/column data */ + + MEMMOVE(lp->orig_upbo + base + delta, lp->orig_upbo + base, lp->sum - base + 1); + MEMMOVE(lp->orig_lowbo + base + delta, lp->orig_lowbo + base, lp->sum - base + 1); + + if(!easyout) { + MEMMOVE(lp->upbo + base + delta, lp->upbo + base, lp->sum - base + 1); + MEMMOVE(lp->lowbo + base + delta, lp->lowbo + base, lp->sum - base + 1); + if(lp->model_is_valid) { + MEMMOVE(lp->solution + base + delta, lp->solution + base, lp->sum - base + 1); + MEMMOVE(lp->best_solution + base + delta, lp->best_solution + base, lp->sum - base + 1); + } + MEMMOVE(lp->is_lower + base + delta, lp->is_lower + base, lp->sum - base + 1); + } + + /* Deal with scalars; the vector can be NULL */ + if(lp->scalars != NULL) { + if(!easyout) + for(ii = lp->sum; ii >= base; ii--) { + i = ii + delta; + lp->scalars[i] = lp->scalars[ii]; + } + for(ii = base; ii < base + delta; ii++) + lp->scalars[ii] = 1; + } + + /* Set defaults */ +#ifdef SlackInitMinusInf + if(isrow) + lodefault = -lp->infinite; + else +#endif + lodefault = 0; + + for(i = 0; i < delta; i++) { + ii = base + i; + lp->orig_upbo[ii] = lp->infinite; + lp->orig_lowbo[ii] = lodefault; + if(!easyout) { + lp->upbo[ii] = lp->orig_upbo[ii]; + lp->lowbo[ii] = lp->orig_lowbo[ii]; + lp->is_lower[ii] = TRUE; + } + } + } + + /* Shift data left/up (delete) */ + else if(usedmap != NULL) { + int k, offset = 0; + if(!isrow) + offset += lp->rows; + i = offset + 1; + for(k = firstActiveLink(usedmap); k != 0; + i++, k = nextActiveLink(usedmap, k)) { + ii = k + offset; + if(ii == i) + continue; + lp->upbo[i] = lp->upbo[ii]; + lp->orig_upbo[i] = lp->orig_upbo[ii]; + lp->lowbo[i] = lp->lowbo[ii]; + lp->orig_lowbo[i] = lp->orig_lowbo[ii]; + lp->solution[i] = lp->solution[ii]; + lp->best_solution[i] = lp->best_solution[ii]; + lp->is_lower[i] = lp->is_lower[ii]; + if(lp->scalars != NULL) + lp->scalars[i] = lp->scalars[ii]; + } + if(isrow) { + base = lp->rows + 1; + MEMMOVE(lp->upbo + i, lp->upbo + base, lp->columns); + MEMMOVE(lp->orig_upbo + i, lp->orig_upbo + base, lp->columns); + MEMMOVE(lp->lowbo + i, lp->lowbo + base, lp->columns); + MEMMOVE(lp->orig_lowbo + i, lp->orig_lowbo + base, lp->columns); + if(lp->model_is_valid) { + MEMMOVE(lp->solution + i, lp->solution + base, lp->columns); + MEMMOVE(lp->best_solution + i, lp->best_solution + base, lp->columns); + } + MEMMOVE(lp->is_lower + i, lp->is_lower + base, lp->columns); + if(lp->scalars != NULL) + MEMMOVE(lp->scalars + i, lp->scalars + base, lp->columns); + } + } + + else if(delta < 0) { + + /* First make sure we don't cross the sum count border */ + if(base-delta-1 > lp->sum) + delta = base - lp->sum - 1; + + /* Shift the data*/ + for(i = base; i <= lp->sum + delta; i++) { + ii = i - delta; + lp->upbo[i] = lp->upbo[ii]; + lp->orig_upbo[i] = lp->orig_upbo[ii]; + lp->lowbo[i] = lp->lowbo[ii]; + lp->orig_lowbo[i] = lp->orig_lowbo[ii]; + lp->solution[i] = lp->solution[ii]; + lp->best_solution[i] = lp->best_solution[ii]; + lp->is_lower[i] = lp->is_lower[ii]; + if(lp->scalars != NULL) + lp->scalars[i] = lp->scalars[ii]; + } + + } + + lp->sum += delta; + + lp->matA->row_end_valid = FALSE; + + return(TRUE); +} + +STATIC MYBOOL shift_basis(lprec *lp, int base, int delta, LLrec *usedmap, MYBOOL isrow) +/* Note: Assumes that "lp->sum" and "lp->rows" HAVE NOT been updated to the new counts */ +{ + int i, ii; + MYBOOL Ok = TRUE; + + /* Don't bother to shift the basis if it is not yet ready */ + if(!is_BasisReady(lp)) + return( Ok ); + + /* Basis adjustments due to insertions (after actual row/column insertions) */ + if(delta > 0) { + + /* Determine if the basis becomes invalidated */ + if(isrow) + set_action(&lp->spx_action, ACTION_REBASE | ACTION_REINVERT); + + /* Shift and fix invalid basis references (increment higher order basic variable index) */ + if(base <= lp->sum) + MEMMOVE(lp->is_basic + base + delta, lp->is_basic + base, lp->sum - base + 1); + + /* Prevent CPU-expensive basis updating if this is the initial model creation */ + if(!lp->model_is_pure || (lp->solvecount > 0)) + for(i = 1; i <= lp->rows; i++) { + ii = lp->var_basic[i]; + if(ii >= base) + lp->var_basic[i] += delta; + } + + /* Update the basis (shift and extend) */ + for(i = 0; i < delta; i++) { + ii = base + i; + lp->is_basic[ii] = isrow; + if(isrow) + lp->var_basic[lp->rows+1+i] = ii; + } + + } + /* Basis adjustments due to deletions (after actual row/column deletions) */ + else { + int j,k; + + /* Fix invalid basis references (decrement high basic slack variable indexes), + but reset the entire basis if a deleted variable is found in the basis */ + k = 0; + for(i = 1; i <= lp->rows; i++) { + ii = lp->var_basic[i]; + lp->is_basic[ii] = FALSE; + if(ii >= base) { + /* Skip to next basis variable if this one is to be deleted */ + if(ii < base-delta) { + set_action(&lp->spx_action, ACTION_REBASE); + continue; + } + /* Otherwise, update the index of the basic variable for deleted variables */ + ii += delta; + } + k++; + lp->var_basic[k] = ii; + } + + /* Set the new basis indicators */ + i = k; + if(isrow) + i = MIN(k, lp->rows+delta); + for(; i > 0; i--) { + j = lp->var_basic[i]; + lp->is_basic[j] = TRUE; + } + + /* If a column was deleted from the basis then simply add back a non-basic + slack variable; do two scans, if necessary to avoid adding equality slacks */ + if(!isrow && (k < lp->rows)) { + for(j = 0; j <= 1; j++) + for(i = 1; (i <= lp->rows) && (k < lp->rows); i++) + if(!lp->is_basic[i]) { + if(!is_constr_type(lp, i, EQ) || (j == 1)) { + k++; + lp->var_basic[k] = i; + lp->is_basic[i] = TRUE; + } + } + k = 0; + } + + /* We are left with "k" indexes; if no basis variable was deleted, k=rows and the + inverse is still valid, if k+delta < 0 we do not have a valid + basis and must create one (in most usage modes this should not happen, + unless there is a bug) */ + if(k+delta < 0) + Ok = FALSE; + if(isrow || (k != lp->rows)) + set_action(&lp->spx_action, ACTION_REINVERT); + + } + return(Ok); + +} + +STATIC MYBOOL shift_rowdata(lprec *lp, int base, int delta, LLrec *usedmap) +/* Note: Assumes that "lp->rows" HAS NOT been updated to the new count */ +{ + int i, ii; + + /* Shift sparse matrix row data */ + if(lp->matA->is_roworder) + mat_shiftcols(lp->matA, &base, delta, usedmap); + else + mat_shiftrows(lp->matA, &base, delta, usedmap); + + /* Shift data down (insert row), and set default values in positive delta-gap */ + if(delta > 0) { + + /* Shift row data */ + for(ii = lp->rows; ii >= base; ii--) { + i = ii + delta; + lp->orig_rhs[i] = lp->orig_rhs[ii]; + lp->rhs[i] = lp->rhs[ii]; + lp->row_type[i] = lp->row_type[ii]; + } + + /* Set defaults (actual basis set in separate procedure) */ + for(i = 0; i < delta; i++) { + ii = base + i; + lp->orig_rhs[ii] = 0; + lp->rhs[ii] = 0; + lp->row_type[ii] = ROWTYPE_EMPTY; + } + } + + /* Shift data up (delete row) */ + else if(usedmap != NULL) { + for(i = 1, ii = firstActiveLink(usedmap); ii != 0; + i++, ii = nextActiveLink(usedmap, ii)) { + if(i == ii) + continue; + lp->orig_rhs[i] = lp->orig_rhs[ii]; + lp->rhs[i] = lp->rhs[ii]; + lp->row_type[i] = lp->row_type[ii]; + } + delta = i - lp->rows - 1; + } + else if(delta < 0) { + + /* First make sure we don't cross the row count border */ + if(base-delta-1 > lp->rows) + delta = base - lp->rows - 1; + + /* Shift row data (don't shift basis indexes here; done in next step) */ + for(i = base; i <= lp->rows + delta; i++) { + ii = i - delta; + lp->orig_rhs[i] = lp->orig_rhs[ii]; + lp->rhs[i] = lp->rhs[ii]; + lp->row_type[i] = lp->row_type[ii]; + } + } + + shift_basis(lp, base, delta, usedmap, TRUE); + shift_rowcoldata(lp, base, delta, usedmap, TRUE); + inc_rows(lp, delta); + + return(TRUE); +} + +STATIC MYBOOL shift_coldata(lprec *lp, int base, int delta, LLrec *usedmap) +/* Note: Assumes that "lp->columns" has NOT been updated to the new count */ +{ + int i, ii; + + if(lp->bb_totalnodes == 0) + free_duals(lp); + + /* Shift A matrix data */ + if(lp->matA->is_roworder) + mat_shiftrows(lp->matA, &base, delta, usedmap); + else + mat_shiftcols(lp->matA, &base, delta, usedmap); + + /* Shift data right (insert), and set default values in positive delta-gap */ + if(delta > 0) { + + /* Fix variable priority data */ + if((lp->var_priority != NULL) && (base <= lp->columns)) { + for(i = 0; i < lp->columns; i++) + if(lp->var_priority[i] >= base) + lp->var_priority[i] += delta; + } + if((lp->sos_priority != NULL) && (base <= lp->columns)) { + for(i = 0; i < lp->sos_vars; i++) + if(lp->sos_priority[i] >= base) + lp->sos_priority[i] += delta; + } + + /* Fix invalid split variable data */ + if((lp->var_is_free != NULL) && (base <= lp->columns)) { + for(i = 1; i <= lp->columns; i++) + if(abs(lp->var_is_free[i]) >= base) + lp->var_is_free[i] += my_chsign(lp->var_is_free[i] < 0, delta); + } + + /* Shift column data right */ + for(ii = lp->columns; ii >= base; ii--) { + i = ii + delta; + lp->var_type[i] = lp->var_type[ii]; + lp->sc_lobound[i] = lp->sc_lobound[ii]; + lp->orig_obj[i] = lp->orig_obj[ii]; + if(lp->obj != NULL) + lp->obj[i] = lp->obj[ii]; +/* + if(lp->objfromvalue != NULL) + lp->objfromvalue[i] = lp->objfromvalue[ii]; + if(lp->objfrom != NULL) + lp->objfrom[i] = lp->objfrom[ii]; + if(lp->objtill != NULL) + lp->objtill[i] = lp->objtill[ii]; +*/ + if(lp->var_priority != NULL) + lp->var_priority[i-1] = lp->var_priority[ii-1]; + if(lp->bb_varbranch != NULL) + lp->bb_varbranch[i-1] = lp->bb_varbranch[ii-1]; + if(lp->var_is_free != NULL) + lp->var_is_free[i] = lp->var_is_free[ii]; + if(lp->best_solution != NULL) + lp->best_solution[lp->rows + i] = lp->best_solution[lp->rows + ii]; + } + + /* Set defaults */ + for(i = 0; i < delta; i++) { + ii = base + i; + lp->var_type[ii] = ISREAL; + lp->sc_lobound[ii] = 0; + lp->orig_obj[ii] = 0; + if(lp->obj != NULL) + lp->obj[ii] = 0; +/* + if(lp->objfromvalue != NULL) + lp->objfromvalue[ii] = 0; + if(lp->objfrom != NULL) + lp->objfrom[ii] = 0; + if(lp->objtill != NULL) + lp->objtill[ii] = 0; +*/ + if(lp->var_priority != NULL) + lp->var_priority[ii-1] = ii; + if(lp->bb_varbranch != NULL) + lp->bb_varbranch[ii-1] = BRANCH_DEFAULT; + if(lp->var_is_free != NULL) + lp->var_is_free[ii] = 0; + if(lp->best_solution != NULL) + lp->best_solution[lp->rows + ii] = 0; + } + } + + /* Shift data left (delete) */ + else if(usedmap != NULL) { + /* Assume there is no need to handle split columns, since we are doing + this only from presolve, which comes before splitting of columns. */ + + /* First update counts */ + if(lp->int_vars + lp->sc_vars > 0) + for(ii = firstInactiveLink(usedmap); ii != 0; ii = nextInactiveLink(usedmap, ii)) { + if(is_int(lp, ii)) { + lp->int_vars--; + if(SOS_is_member(lp->SOS, 0, ii)) + lp->sos_ints--; + } + if(is_semicont(lp, ii)) + lp->sc_vars--; + } + /* Shift array members */ + for(i = 1, ii = firstActiveLink(usedmap); ii != 0; + i++, ii = nextActiveLink(usedmap, ii)) { + if(i == ii) + continue; + lp->var_type[i] = lp->var_type[ii]; + lp->sc_lobound[i] = lp->sc_lobound[ii]; + lp->orig_obj[i] = lp->orig_obj[ii]; + if(lp->obj != NULL) + lp->obj[i] = lp->obj[ii]; +/* + if(lp->objfromvalue != NULL) + lp->objfromvalue[i] = lp->objfromvalue[ii]; + if(lp->objfrom != NULL) + lp->objfrom[i] = lp->objfrom[ii]; + if(lp->objtill != NULL) + lp->objtill[i] = lp->objtill[ii]; +*/ + if(lp->bb_varbranch != NULL) + lp->bb_varbranch[i-1] = lp->bb_varbranch[ii-1]; + if(lp->var_is_free != NULL) + lp->var_is_free[i] = lp->var_is_free[ii]; + if(lp->best_solution != NULL) + lp->best_solution[lp->rows + i] = lp->best_solution[lp->rows + ii]; + } + /* Shift variable priority data */ + if((lp->var_priority != NULL) || (lp->sos_priority != NULL)) { + int *colmap = NULL, k; + allocINT(lp, &colmap, lp->columns + 1, TRUE); + for(i = 1, ii = 0; i <= lp->columns; i++) { + if(isActiveLink(usedmap, i)) { + ii++; + colmap[i] = ii; + } + } + if(lp->var_priority != NULL) { + for(i = 0, ii = 0; i < lp->columns; i++) { + k = colmap[lp->var_priority[i]]; + if(k > 0) { + lp->var_priority[ii] = k; + ii++; + } + } + } + if(lp->sos_priority != NULL) { + for(i = 0, ii = 0; i < lp->sos_vars; i++) { + k = colmap[lp->sos_priority[i]]; + if(k > 0) { + lp->sos_priority[ii] = k; + ii++; + } + } + lp->sos_vars = ii; + } + FREE(colmap); + } + + delta = i - lp->columns - 1; + } + else if(delta < 0) { + + /* Fix invalid split variable data */ + if(lp->var_is_free != NULL) { + for(i = 1; i <= lp->columns; i++) + if(abs(lp->var_is_free[i]) >= base) + lp->var_is_free[i] -= my_chsign(lp->var_is_free[i] < 0, delta); + } + + /* Shift column data (excluding the basis) */ + for(i = base; i < base-delta; i++) { + if(is_int(lp, i)) { + lp->int_vars--; + if(SOS_is_member(lp->SOS, 0, i)) + lp->sos_ints--; + } + if(is_semicont(lp, i)) + lp->sc_vars--; + } + for(i = base; i <= lp->columns + delta; i++) { + ii = i - delta; + lp->var_type[i] = lp->var_type[ii]; + lp->sc_lobound[i] = lp->sc_lobound[ii]; + lp->orig_obj[i] = lp->orig_obj[ii]; + if(lp->obj != NULL) + lp->obj[i] = lp->obj[ii]; +/* + if(lp->objfromvalue != NULL) + lp->objfromvalue[i] = lp->objfromvalue[ii]; + if(lp->objfrom != NULL) + lp->objfrom[i] = lp->objfrom[ii]; + if(lp->objtill != NULL) + lp->objtill[i] = lp->objtill[ii]; +*/ + if(lp->var_priority != NULL) + lp->var_priority[i-1] = lp->var_priority[ii-1]; + if(lp->bb_varbranch != NULL) + lp->bb_varbranch[i-1] = lp->bb_varbranch[ii-1]; + if(lp->var_is_free != NULL) + lp->var_is_free[i] = lp->var_is_free[ii]; + if(lp->best_solution != NULL) + lp->best_solution[lp->rows + i] = lp->best_solution[lp->rows + ii]; + } + + /* Fix invalid variable priority data */ + if(lp->var_priority != NULL) { + for(i = 0, ii = 0; i < lp->columns; i++) + if(lp->var_priority[i] > base - delta) + lp->var_priority[ii++] = lp->var_priority[i] + delta; + else if(lp->var_priority[i] < base) + lp->var_priority[ii++] = lp->var_priority[i]; + } + if(lp->sos_priority != NULL) { + for(i = 0, ii = 0; i < lp->sos_vars; i++) { + if(lp->sos_priority[i] > base - delta) + lp->sos_priority[ii++] = lp->sos_priority[i] + delta; + else if(lp->sos_priority[i] < base) + lp->sos_priority[ii++] = lp->sos_priority[i]; + } + lp->sos_vars = ii; + } + + } + + shift_basis(lp, lp->rows+base, delta, usedmap, FALSE); + if(SOS_count(lp) > 0) + SOS_shift_col(lp->SOS, 0, base, delta, usedmap, FALSE); + shift_rowcoldata(lp, lp->rows+base, delta, usedmap, FALSE); + inc_columns(lp, delta); + + return( TRUE ); +} + +/* Utility group for incrementing row and column vector storage space */ +STATIC void inc_rows(lprec *lp, int delta) +{ + int i; + + if(lp->names_used && (lp->row_name != NULL)) + for(i = lp->rows + delta; i > lp->rows; i--) + lp->row_name[i] = NULL; + + lp->rows += delta; + if(lp->matA->is_roworder) + lp->matA->columns += delta; + else + lp->matA->rows += delta; +} + +STATIC void inc_columns(lprec *lp, int delta) +{ + int i; + + if(lp->names_used && (lp->col_name != NULL)) + for(i = lp->columns + delta; i > lp->columns; i--) + lp->col_name[i] = NULL; + + lp->columns += delta; + if(lp->matA->is_roworder) + lp->matA->rows += delta; + else + lp->matA->columns += delta; + if(get_Lrows(lp) > 0) + lp->matL->columns += delta; +} + +STATIC MYBOOL inc_rowcol_space(lprec *lp, int delta, MYBOOL isrows) +{ + int i, oldrowcolalloc, rowcolsum; + + /* Get rid of dual arrays */ + if(lp->solvecount > 0) + free_duals(lp); + + /* Set constants */ + oldrowcolalloc = lp->sum_alloc; + lp->sum_alloc += delta; + rowcolsum = lp->sum_alloc + 1; + + /* Reallocate lp memory */ + if(!allocREAL(lp, &lp->upbo, rowcolsum, AUTOMATIC) || + !allocREAL(lp, &lp->orig_upbo, rowcolsum, AUTOMATIC) || + !allocREAL(lp, &lp->lowbo, rowcolsum, AUTOMATIC) || + !allocREAL(lp, &lp->orig_lowbo, rowcolsum, AUTOMATIC) || + !allocREAL(lp, &lp->solution, rowcolsum, AUTOMATIC) || + !allocREAL(lp, &lp->best_solution, rowcolsum, AUTOMATIC) || + !allocMYBOOL(lp, &lp->is_basic, rowcolsum, AUTOMATIC) || + !allocMYBOOL(lp, &lp->is_lower, rowcolsum, AUTOMATIC) || + ((lp->scalars != NULL) && !allocREAL(lp, &lp->scalars, rowcolsum, AUTOMATIC))) + return( FALSE ); + + /* Fill in default values, where appropriate */ + for(i = oldrowcolalloc+1; i < rowcolsum; i++) { + lp->upbo[i] = lp->infinite; + lp->orig_upbo[i] = lp->upbo[i]; + lp->lowbo[i] = 0; + lp->orig_lowbo[i] = lp->lowbo[i]; + lp->is_basic[i] = FALSE; + lp->is_lower[i] = TRUE; + } + + /* Deal with scalars; the vector can be NULL and also contains Lagrangean information */ + if(lp->scalars != NULL) { + for(i = oldrowcolalloc+1; i < rowcolsum; i++) + lp->scalars[i] = 1; + if(oldrowcolalloc == 0) + lp->scalars[0] = 1; + } + + return( inc_presolve_space(lp, delta, isrows) && + resizePricer(lp) ); +} + +STATIC MYBOOL inc_lag_space(lprec *lp, int deltarows, MYBOOL ignoreMAT) +{ + int newsize; + + if(deltarows > 0) { + + newsize = get_Lrows(lp) + deltarows; + + /* Reallocate arrays */ + if(!allocREAL(lp, &lp->lag_rhs, newsize+1, AUTOMATIC) || + !allocREAL(lp, &lp->lambda, newsize+1, AUTOMATIC) || + !allocINT(lp, &lp->lag_con_type, newsize+1, AUTOMATIC)) + return( FALSE ); + + /* Reallocate the matrix (note that the row scalars are stored at index 0) */ + if(!ignoreMAT) { + if(lp->matL == NULL) + lp->matL = mat_create(lp, newsize, lp->columns, lp->epsvalue); + else + inc_matrow_space(lp->matL, deltarows); + } + lp->matL->rows += deltarows; + + } + /* Handle column count expansion as special case */ + else if(!ignoreMAT) { + inc_matcol_space(lp->matL, lp->columns_alloc-lp->matL->columns_alloc+1); + } + + + return( TRUE ); +} + +STATIC MYBOOL inc_row_space(lprec *lp, int deltarows) +{ + int i, rowsum, oldrowsalloc; + MYBOOL ok = TRUE; + + /* Adjust lp row structures */ + i = lp->rows_alloc+deltarows; + if(lp->matA->is_roworder) { + i -= lp->matA->columns_alloc; + SETMIN(i, deltarows); + if(i > 0) + inc_matcol_space(lp->matA, i); + rowsum = lp->matA->columns_alloc; + } + else { +#if 0 + if((lp->rows_alloc > 0) && (lp->rows + deltarows > lp->rows_alloc)) + i = deltarows; /* peno 25/12/06 */ + else +#endif + i -= lp->matA->rows_alloc; + SETMIN(i, deltarows); + if(i > 0) + inc_matrow_space(lp->matA, i); + rowsum = lp->matA->rows_alloc; + } + if(lp->rows+deltarows > lp->rows_alloc) { + + rowsum++; + oldrowsalloc = lp->rows_alloc; + lp->rows_alloc = rowsum; + deltarows = rowsum - oldrowsalloc; + rowsum++; + + if(!allocREAL(lp, &lp->orig_rhs, rowsum, AUTOMATIC) || + !allocLREAL(lp, &lp->rhs, rowsum, AUTOMATIC) || + !allocINT(lp, &lp->row_type, rowsum, AUTOMATIC) || + !allocINT(lp, &lp->var_basic, rowsum, AUTOMATIC)) + return( FALSE ); + + if(oldrowsalloc == 0) { + lp->var_basic[0] = AUTOMATIC; /*TRUE;*/ /* Indicates default basis */ + lp->orig_rhs[0] = 0; + lp->row_type[0] = ROWTYPE_OFMIN; + } + for(i = oldrowsalloc+1; i < rowsum; i++) { + lp->orig_rhs[i] = 0; + lp->rhs[i] = 0; + lp->row_type[i] = ROWTYPE_EMPTY; + lp->var_basic[i] = i; + } + + /* Adjust hash name structures */ + if(lp->names_used && (lp->row_name != NULL)) { + + /* First check the hash table */ + if(lp->rowname_hashtab->size < lp->rows_alloc) { + hashtable *ht; + + ht = copy_hash_table(lp->rowname_hashtab, lp->row_name, lp->rows_alloc + 1); + if(ht == NULL) { + lp->spx_status = NOMEMORY; + return( FALSE ); + } + free_hash_table(lp->rowname_hashtab); + lp->rowname_hashtab = ht; + } + + /* Then the string storage (i.e. pointer to the item's hash structure) */ + lp->row_name = (hashelem **) realloc(lp->row_name, (rowsum) * sizeof(*lp->row_name)); + if(lp->row_name == NULL) { + lp->spx_status = NOMEMORY; + return( FALSE ); + } + for(i = oldrowsalloc + 1; i < rowsum; i++) + lp->row_name[i] = NULL; + } + + ok = inc_rowcol_space(lp, deltarows, TRUE); + + } + return(ok); +} + +STATIC MYBOOL inc_col_space(lprec *lp, int deltacols) +{ + int i,colsum, oldcolsalloc; + + i = lp->columns_alloc+deltacols; + if(lp->matA->is_roworder) { + i -= lp->matA->rows_alloc; + SETMIN(i, deltacols); + if(i > 0) + inc_matrow_space(lp->matA, i); + colsum = lp->matA->rows_alloc; + } + else { + i -= lp->matA->columns_alloc; + SETMIN(i, deltacols); + if(i > 0) + inc_matcol_space(lp->matA, i); + colsum = lp->matA->columns_alloc; + } + + if(lp->columns+deltacols >= lp->columns_alloc) { + + colsum++; + oldcolsalloc = lp->columns_alloc; + lp->columns_alloc = colsum; + deltacols = colsum - oldcolsalloc; + colsum++; + + /* Adjust hash name structures */ + if(lp->names_used && (lp->col_name != NULL)) { + + /* First check the hash table */ + if(lp->colname_hashtab->size < lp->columns_alloc) { + hashtable *ht; + + ht = copy_hash_table(lp->colname_hashtab, lp->col_name, lp->columns_alloc + 1); + if(ht != NULL) { + free_hash_table(lp->colname_hashtab); + lp->colname_hashtab = ht; + } + } + + /* Then the string storage (i.e. pointer to the item's hash structure) */ + lp->col_name = (hashelem **) realloc(lp->col_name, (colsum) * sizeof(*lp->col_name)); + for(i = oldcolsalloc+1; i < colsum; i++) + lp->col_name[i] = NULL; + } + + if(!allocREAL(lp, &lp->orig_obj, colsum, AUTOMATIC) || + !allocMYBOOL(lp, &lp->var_type, colsum, AUTOMATIC) || + !allocREAL(lp, &lp->sc_lobound, colsum, AUTOMATIC) || + ((lp->obj != NULL) && !allocREAL(lp, &lp->obj, colsum, AUTOMATIC)) || + ((lp->var_priority != NULL) && !allocINT(lp, &lp->var_priority, colsum-1, AUTOMATIC)) || + ((lp->var_is_free != NULL) && !allocINT(lp, &lp->var_is_free, colsum, AUTOMATIC)) || + ((lp->bb_varbranch != NULL) && !allocMYBOOL(lp, &lp->bb_varbranch, colsum-1, AUTOMATIC))) + return( FALSE ); + + /* Make sure that Lagrangean constraints have the same number of columns */ + if(get_Lrows(lp) > 0) + inc_lag_space(lp, 0, FALSE); + + /* Update column pointers */ + for(i = MIN(oldcolsalloc, lp->columns) + 1; i < colsum; i++) { + lp->orig_obj[i] = 0; + if(lp->obj != NULL) + lp->obj[i] = 0; + lp->var_type[i] = ISREAL; + lp->sc_lobound[i] = 0; + if(lp->var_priority != NULL) + lp->var_priority[i-1] = i; + } + + if(lp->var_is_free != NULL) { + for(i = oldcolsalloc+1; i < colsum; i++) + lp->var_is_free[i] = 0; + } + + if(lp->bb_varbranch != NULL) { + for(i = oldcolsalloc; i < colsum-1; i++) + lp->bb_varbranch[i] = BRANCH_DEFAULT; + } + + inc_rowcol_space(lp, deltacols, FALSE); + + } + return(TRUE); +} + +/* Problem manipulation routines */ + +MYBOOL __WINAPI set_obj(lprec *lp, int colnr, LPSREAL value) +{ + if(colnr <= 0) + colnr = set_rh(lp, 0, value); + else + colnr = set_mat(lp, 0, colnr, value); + return((MYBOOL) colnr); +} + +MYBOOL __WINAPI set_obj_fnex(lprec *lp, int count, LPSREAL *row, int *colno) +{ + MYBOOL chsgn = is_maxim(lp); + int i, ix; + LPSREAL value; + + if(row == NULL) + return( FALSE ); + + else if(colno == NULL) { + if(count <= 0) + count = lp->columns; + for(i = 1; i <= count; i++) { + value = row[i]; +#ifdef DoMatrixRounding + value = roundToPrecision(value, lp->matA->epsvalue); +#endif + lp->orig_obj[i] = my_chsign(chsgn, scaled_mat(lp, value, 0, i)); + } + } + else { + MEMCLEAR(lp->orig_obj, lp->columns+1); + for(i = 0; i < count; i++) { + ix = colno[i]; + value = row[i]; +#ifdef DoMatrixRounding + value = roundToPrecision(value, lp->matA->epsvalue); +#endif + lp->orig_obj[ix] = my_chsign(chsgn, scaled_mat(lp, value, 0, ix)); + } + } + + return(TRUE); +} + +MYBOOL __WINAPI set_obj_fn(lprec *lp, LPSREAL *row) +{ + return( set_obj_fnex(lp, 0, row, NULL) ); +} + +MYBOOL __WINAPI str_set_obj_fn(lprec *lp, char *row_string) +{ + int i; + MYBOOL ret = TRUE; + LPSREAL *arow; + char *p, *newp; + + allocREAL(lp, &arow, lp->columns + 1, FALSE); + p = row_string; + for(i = 1; i <= lp->columns; i++) { + arow[i] = (LPSREAL) strtod(p, &newp); + if(p == newp) { + report(lp, IMPORTANT, "str_set_obj_fn: Bad string %s\n", p); + lp->spx_status = DATAIGNORED; + ret = FALSE; + break; + } + else + p = newp; + } + if(lp->spx_status != DATAIGNORED) + ret = set_obj_fn(lp, arow); + FREE(arow); + return( ret ); +} + +STATIC MYBOOL append_columns(lprec *lp, int deltacolumns) +{ + if(!inc_col_space(lp, deltacolumns)) + return( FALSE ); + varmap_add(lp, lp->sum+1, deltacolumns); + shift_coldata(lp, lp->columns+1, deltacolumns, NULL); + return( TRUE ); +} + +STATIC MYBOOL append_rows(lprec *lp, int deltarows) +{ + if(!inc_row_space(lp, deltarows)) + return( FALSE ); + varmap_add(lp, lp->rows+1, deltarows); + shift_rowdata(lp, lp->rows+1, deltarows, NULL); + + return( TRUE ); +} + +MYBOOL __WINAPI set_add_rowmode(lprec *lp, MYBOOL turnon) +{ + if((lp->solvecount == 0) && (turnon ^ lp->matA->is_roworder)) + return( mat_transpose(lp->matA) ); + else + return( FALSE ); +} + +MYBOOL __WINAPI is_add_rowmode(lprec *lp) +{ + return(lp->matA->is_roworder); +} + +MYBOOL __WINAPI set_row(lprec *lp, int rownr, LPSREAL *row) +{ + if((rownr < 0) || (rownr > lp->rows)) { + report(lp, IMPORTANT, "set_row: Row %d out of range\n", rownr); + return( FALSE ); + } + if(rownr == 0) + return( set_obj_fn(lp, row) ); + else + return( mat_setrow(lp->matA, rownr, lp->columns, row, NULL, TRUE, TRUE) ); +} + +MYBOOL __WINAPI set_rowex(lprec *lp, int rownr, int count, LPSREAL *row, int *colno) +{ + if((rownr < 0) || (rownr > lp->rows)) { + report(lp, IMPORTANT, "set_rowex: Row %d out of range\n", rownr); + return( FALSE ); + } + if(rownr == 0) + return( set_obj_fnex(lp, count, row, colno) ); + else + return( mat_setrow(lp->matA, rownr, count, row, colno, TRUE, TRUE) ); +} + +MYBOOL __WINAPI add_constraintex(lprec *lp, int count, LPSREAL *row, int *colno, int constr_type, LPSREAL rh) +{ + int n; + MYBOOL status = FALSE; + + if(!(constr_type == LE || constr_type == GE || constr_type == EQ)) { + report(lp, IMPORTANT, "add_constraintex: Invalid %d constraint type\n", constr_type); + return( status ); + } + + /* Prepare for a new row */ + if(!append_rows(lp, 1)) + return( status ); + + /* Set constraint parameters, fix the slack */ + if((constr_type & ROWTYPE_CONSTRAINT) == EQ) { + lp->equalities++; + lp->orig_upbo[lp->rows] = 0; + lp->upbo[lp->rows] = 0; + } + lp->row_type[lp->rows] = constr_type; + + if(is_chsign(lp, lp->rows) && (rh != 0)) + lp->orig_rhs[lp->rows] = -rh; + else + lp->orig_rhs[lp->rows] = rh; + + /* Insert the non-zero constraint values */ + if(colno == NULL && row != NULL) + n = lp->columns; + else + n = count; + mat_appendrow(lp->matA, n, row, colno, my_chsign(is_chsign(lp, lp->rows), 1.0), TRUE); + if(!lp->varmap_locked) + presolve_setOrig(lp, lp->rows, lp->columns); + +#ifdef Paranoia + if(lp->matA->is_roworder) + n = lp->matA->columns; + else + n = lp->matA->rows; + if(lp->rows != n) { + report(lp, SEVERE, "add_constraintex: Row count mismatch %d vs %d\n", + lp->rows, n); + } + else if(is_BasisReady(lp) && !verify_basis(lp)) + report(lp, SEVERE, "add_constraintex: Invalid basis detected for row %d\n", lp->rows); + else +#endif + status = TRUE; + + return( status ); +} + +MYBOOL __WINAPI add_constraint(lprec *lp, LPSREAL *row, int constr_type, LPSREAL rh) +{ + return( add_constraintex(lp, 0, row, NULL, constr_type, rh) ); +} + +MYBOOL __WINAPI str_add_constraint(lprec *lp, char *row_string, int constr_type, LPSREAL rh) +{ + int i; + char *p, *newp; + LPSREAL *aRow; + MYBOOL status = FALSE; + + allocREAL(lp, &aRow, lp->columns + 1, FALSE); + p = row_string; + + for(i = 1; i <= lp->columns; i++) { + aRow[i] = (LPSREAL) strtod(p, &newp); + if(p == newp) { + report(lp, IMPORTANT, "str_add_constraint: Bad string '%s'\n", p); + lp->spx_status = DATAIGNORED; + break; + } + else + p = newp; + } + if(lp->spx_status != DATAIGNORED) + status = add_constraint(lp, aRow, constr_type, rh); + FREE(aRow); + + return(status); +} + +STATIC MYBOOL del_constraintex(lprec *lp, LLrec *rowmap) +{ + int i; + + if(lp->equalities > 0) + for(i = firstInactiveLink(rowmap); i != 0; i = nextInactiveLink(rowmap, i)) { + if(is_constr_type(lp, i, EQ)) { +#ifdef Paranoia + if(lp->equalities == 0) + report(lp, SEVERE, "del_constraintex: Invalid count of equality constraints\n"); +#endif + lp->equalities--; + } + } + + varmap_delete(lp, 1, -1, rowmap); + shift_rowdata(lp, 1, -1, rowmap); + if(!lp->varmap_locked) { + presolve_setOrig(lp, lp->rows, lp->columns); + if(lp->names_used) + del_varnameex(lp, lp->row_name, lp->rows, lp->rowname_hashtab, 0, rowmap); + } + +#ifdef Paranoia + if(is_BasisReady(lp) && !verify_basis(lp)) + report(lp, SEVERE, "del_constraintex: Invalid basis detected\n"); +#endif + + return(TRUE); +} +MYBOOL __WINAPI del_constraint(lprec *lp, int rownr) +{ + MYBOOL preparecompact = (MYBOOL) (rownr < 0); + + if(preparecompact) + rownr = -rownr; + if((rownr < 1) || (rownr > lp->rows)) { + report(lp, IMPORTANT, "del_constraint: Attempt to delete non-existing constraint %d\n", rownr); + return(FALSE); + } + /* + if(lp->matA->is_roworder) { + report(lp, IMPORTANT, "del_constraint: Cannot delete constraint while in row entry mode.\n"); + return(FALSE); + } + */ + + if(is_constr_type(lp, rownr, EQ) && (lp->equalities > 0)) + lp->equalities--; + + varmap_delete(lp, my_chsign(preparecompact, rownr), -1, NULL); + shift_rowdata(lp, my_chsign(preparecompact, rownr), -1, NULL); + +/* + peno 04.10.07 + Fixes a problem with del_constraint. + Constraints names were not shifted and reported variable result was incorrect. + See UnitTest1, UnitTest2 + + min: -2 x3; + + c1: +x2 -x1 <= 10; + c: 0 x3 <= 0; + c2: +x3 +x2 +x1 <= 20; + + 2 <= x3 <= 3; + x1 <= 30; + + // del_constraint(lp, 2); + + // See write_LP and print_solution result + + // To fix, commented if(!lp->varmap_locked) + +*/ + if(!lp->varmap_locked) + { + presolve_setOrig(lp, lp->rows, lp->columns); + if(lp->names_used) + del_varnameex(lp, lp->row_name, lp->rows, lp->rowname_hashtab, rownr, NULL); + } + +#ifdef Paranoia + if(is_BasisReady(lp) && !verify_basis(lp)) + report(lp, SEVERE, "del_constraint: Invalid basis detected at row %d\n", rownr); +#endif + + return(TRUE); +} + +MYBOOL __WINAPI add_lag_con(lprec *lp, LPSREAL *row, int con_type, LPSREAL rhs) +{ + int k; + LPSREAL sign; + + if(con_type == LE || con_type == EQ) + sign = 1; + else if(con_type == GE) + sign = -1; + else { + report(lp, IMPORTANT, "add_lag_con: Constraint type %d not implemented\n", con_type); + return(FALSE); + } + + inc_lag_space(lp, 1, FALSE); + + k = get_Lrows(lp); + lp->lag_rhs[k] = rhs * sign; + mat_appendrow(lp->matL, lp->columns, row, NULL, sign, TRUE); + lp->lambda[k] = 0; + lp->lag_con_type[k] = con_type; + + return(TRUE); +} + +MYBOOL __WINAPI str_add_lag_con(lprec *lp, char *row_string, int con_type, LPSREAL rhs) +{ + int i; + MYBOOL ret = TRUE; + LPSREAL *a_row; + char *p, *new_p; + + allocREAL(lp, &a_row, lp->columns + 1, FALSE); + p = row_string; + + for(i = 1; i <= lp->columns; i++) { + a_row[i] = (LPSREAL) strtod(p, &new_p); + if(p == new_p) { + report(lp, IMPORTANT, "str_add_lag_con: Bad string '%s'\n", p); + lp->spx_status = DATAIGNORED; + ret = FALSE; + break; + } + else + p = new_p; + } + if(lp->spx_status != DATAIGNORED) + ret = add_lag_con(lp, a_row, con_type, rhs); + FREE(a_row); + return( ret ); +} + +/* INLINE */ MYBOOL is_splitvar(lprec *lp, int colnr) +/* Two cases handled by var_is_free: + + 1) LB:-Inf / UB:var_is_free != NULL) && + (lp->var_is_free[colnr] < 0) && (-lp->var_is_free[colnr] != colnr))); +} + +void del_splitvars(lprec *lp) +{ + int j, jj, i; + + if(lp->var_is_free != NULL) { + for(j = lp->columns; j >= 1; j--) + if(is_splitvar(lp, j)) { + /* Check if we need to modify the basis */ + jj = lp->rows+abs(lp->var_is_free[j]); + i = lp->rows+j; + if(lp->is_basic[i] && !lp->is_basic[jj]) { + i = findBasisPos(lp, i, NULL); + set_basisvar(lp, i, jj); + } + /* Delete the helper column */ + del_column(lp, j); + } + FREE(lp->var_is_free); + } +} + +MYBOOL __WINAPI set_column(lprec *lp, int colnr, LPSREAL *column) +{ + return( mat_setcol(lp->matA, colnr, lp->rows, column, NULL, TRUE, TRUE) ); +} + +MYBOOL __WINAPI set_columnex(lprec *lp, int colnr, int count, LPSREAL *column, int *rowno) +{ + return( mat_setcol(lp->matA, colnr, count, column, rowno, TRUE, TRUE) ); +} + +MYBOOL __WINAPI add_columnex(lprec *lp, int count, LPSREAL *column, int *rowno) +/* This function adds a data column to the current model; three cases handled: + + 1: Prepare for column data by setting column = NULL + 2: Dense vector indicated by (rowno == NULL) over 0..count+get_Lrows() elements + 3: Sparse vector set over row vectors rowno, over 0..count-1 elements. + + NB! If the column has only one entry, this should be handled as + a bound, but this currently is not the case */ +{ + MYBOOL status = FALSE; + + /* Prepare and shift column vectors */ + if(!append_columns(lp, 1)) + return( status ); + + /* Append sparse regular constraint values */ + if(mat_appendcol(lp->matA, count, column, rowno, 1.0, TRUE) < 0) + report(lp, SEVERE, "add_columnex: Data column %d supplied in non-ascending row index order.\n", + lp->columns); + else +#ifdef Paranoia + if(lp->columns != (lp->matA->is_roworder ? lp->matA->rows : lp->matA->columns)) { + report(lp, SEVERE, "add_columnex: Column count mismatch %d vs %d\n", + lp->columns, (lp->matA->is_roworder ? lp->matA->rows : lp->matA->columns)); + } + else if(is_BasisReady(lp) && (lp->P1extraDim == 0) && !verify_basis(lp)) + report(lp, SEVERE, "add_columnex: Invalid basis detected for column %d\n", + lp->columns); + else +#endif + status = TRUE; + + if(!lp->varmap_locked) + presolve_setOrig(lp, lp->rows, lp->columns); + + return( status ); +} + +MYBOOL __WINAPI add_column(lprec *lp, LPSREAL *column) +{ + del_splitvars(lp); + return(add_columnex(lp, lp->rows, column, NULL)); +} + +MYBOOL __WINAPI str_add_column(lprec *lp, char *col_string) +{ + int i; + MYBOOL ret = TRUE; + LPSREAL *aCol; + char *p, *newp; + + allocREAL(lp, &aCol, lp->rows + 1, FALSE); + p = col_string; + + for(i = 0; i <= lp->rows; i++) { + aCol[i] = (LPSREAL) strtod(p, &newp); + if(p == newp) { + report(lp, IMPORTANT, "str_add_column: Bad string '%s'\n", p); + lp->spx_status = DATAIGNORED; + ret = FALSE; + break; + } + else + p = newp; + } + if(lp->spx_status != DATAIGNORED) + ret = add_column(lp, aCol); + FREE(aCol); + return( ret ); +} + +STATIC MYBOOL del_varnameex(lprec *lp, hashelem **namelist, int items, hashtable *ht, int varnr, LLrec *varmap) +{ + int i, n; + + /* First drop hash table entries of the deleted variables */ + if(varmap != NULL) + i = firstInactiveLink(varmap); + else + i = varnr; + while(i > 0) { + if(namelist[i] != NULL) { + if(namelist[i]->name != NULL) + drophash(namelist[i]->name, namelist, ht); + } + if(varmap != NULL) + i = nextInactiveLink(varmap, i); + else + i = 0; + } + + /* Then compress the name list */ + if(varmap != NULL) { + i = firstInactiveLink(varmap); + n = nextActiveLink(varmap, i); + varnr = i; + } + else { + i = varnr; + n = i + 1; + } + while(n != 0) { + namelist[i] = namelist[n]; + if((namelist[i] != NULL) && (namelist[i]->index > varnr)) + namelist[i]->index -= n - i; + i++; + if(varmap != NULL) + n = nextActiveLink(varmap, i); + else if(n <= items) /* items has been updated for the new count */ + n++; + else + n = 0; + } + + return( TRUE ); +} +STATIC MYBOOL del_columnex(lprec *lp, LLrec *colmap) +{ + varmap_delete(lp, lp->rows+1, -1, colmap); + shift_coldata(lp, 1, -1, colmap); + if(!lp->varmap_locked) { + presolve_setOrig(lp, lp->rows, lp->columns); + if(lp->names_used) + del_varnameex(lp, lp->col_name, lp->columns, lp->colname_hashtab, 0, colmap); + } +#ifdef Paranoia + if(is_BasisReady(lp) && (lp->P1extraDim == 0) && !verify_basis(lp)) + report(lp, SEVERE, "del_columnex: Invalid basis detected\n"); +#endif + + return(TRUE); +} +MYBOOL __WINAPI del_column(lprec *lp, int colnr) +{ + MYBOOL preparecompact = (MYBOOL) (colnr < 0); + + if(preparecompact) + colnr = -colnr; + if((colnr > lp->columns) || (colnr < 1)) { + report(lp, IMPORTANT, "del_column: Column %d out of range\n", colnr); + return(FALSE); + } + /* + if(lp->matA->is_roworder) { + report(lp, IMPORTANT, "del_column: Cannot delete column while in row entry mode.\n"); + return(FALSE); + } + */ + + if((lp->var_is_free != NULL) && (lp->var_is_free[colnr] > 0)) + del_column(lp, lp->var_is_free[colnr]); /* delete corresponding split column (is always after this column) */ + + varmap_delete(lp, my_chsign(preparecompact, lp->rows+colnr), -1, NULL); + shift_coldata(lp, my_chsign(preparecompact, colnr), -1, NULL); + if(!lp->varmap_locked) { + presolve_setOrig(lp, lp->rows, lp->columns); + if(lp->names_used) + del_varnameex(lp, lp->col_name, lp->columns, lp->colname_hashtab, colnr, NULL); + } +#ifdef Paranoia + if(is_BasisReady(lp) && (lp->P1extraDim == 0) && !verify_basis(lp)) + report(lp, SEVERE, "del_column: Invalid basis detected at column %d (%d)\n", colnr, lp->columns); +#endif + + return(TRUE); +} + +void __WINAPI set_simplextype(lprec *lp, int simplextype) +{ + lp->simplex_strategy = simplextype; +} + +int __WINAPI get_simplextype(lprec *lp) +{ + return(lp->simplex_strategy); +} + +void __WINAPI set_preferdual(lprec *lp, MYBOOL dodual) +{ + if(dodual & TRUE) + lp->simplex_strategy = SIMPLEX_DUAL_DUAL; + else + lp->simplex_strategy = SIMPLEX_PRIMAL_PRIMAL; +} + +void __WINAPI set_bounds_tighter(lprec *lp, MYBOOL tighten) +{ + lp->tighten_on_set = tighten; +} +MYBOOL __WINAPI get_bounds_tighter(lprec *lp) +{ + return(lp->tighten_on_set); +} + +MYBOOL __WINAPI set_upbo(lprec *lp, int colnr, LPSREAL value) +{ + if((colnr > lp->columns) || (colnr < 1)) { + report(lp, IMPORTANT, "set_upbo: Column %d out of range\n", colnr); + return(FALSE); + } + +#ifdef DoBorderRounding + if(fabs(value) < lp->infinite) + value = my_avoidtiny(value, lp->matA->epsvalue); +#endif + value = scaled_value(lp, value, lp->rows + colnr); + if(lp->tighten_on_set) { + if(value < lp->orig_lowbo[lp->rows + colnr]) { + report(lp, IMPORTANT, "set_upbo: Upperbound must be >= lowerbound\n"); + return(FALSE); + } + if(value < lp->orig_upbo[lp->rows + colnr]) { + set_action(&lp->spx_action, ACTION_REBASE); + lp->orig_upbo[lp->rows + colnr] = value; + } + } + else + { + set_action(&lp->spx_action, ACTION_REBASE); + if(value > lp->infinite) + value = lp->infinite; + lp->orig_upbo[lp->rows + colnr] = value; + } + return(TRUE); +} + +LPSREAL __WINAPI get_upbo(lprec *lp, int colnr) +{ + LPSREAL value; + + if((colnr > lp->columns) || (colnr < 1)) { + report(lp, IMPORTANT, "get_upbo: Column %d out of range\n", colnr); + return(0); + } + + value = lp->orig_upbo[lp->rows + colnr]; + value = unscaled_value(lp, value, lp->rows + colnr); + return(value); +} + +MYBOOL __WINAPI set_lowbo(lprec *lp, int colnr, LPSREAL value) +{ + if((colnr > lp->columns) || (colnr < 1)) { + report(lp, IMPORTANT, "set_lowbo: Column %d out of range\n", colnr); + return(FALSE); + } + +#ifdef DoBorderRounding + if(fabs(value) < lp->infinite) + value = my_avoidtiny(value, lp->matA->epsvalue); +#endif + value = scaled_value(lp, value, lp->rows + colnr); + if(lp->tighten_on_set) { + if(value > lp->orig_upbo[lp->rows + colnr]) { + report(lp, IMPORTANT, "set_lowbo: Upper bound must be >= lower bound\n"); + return(FALSE); + } + if((value < 0) || (value > lp->orig_lowbo[lp->rows + colnr])) { + set_action(&lp->spx_action, ACTION_REBASE); + lp->orig_lowbo[lp->rows + colnr] = value; + } + } + else + { + set_action(&lp->spx_action, ACTION_REBASE); + if(value < -lp->infinite) + value = -lp->infinite; + lp->orig_lowbo[lp->rows + colnr] = value; + } + return(TRUE); +} + +LPSREAL __WINAPI get_lowbo(lprec *lp, int colnr) +{ + LPSREAL value; + + if((colnr > lp->columns) || (colnr < 1)) { + report(lp, IMPORTANT, "get_lowbo: Column %d out of range\n", colnr); + return(0); + } + + value = lp->orig_lowbo[lp->rows + colnr]; + value = unscaled_value(lp, value, lp->rows + colnr); + return(value); +} + +MYBOOL __WINAPI set_bounds(lprec *lp, int colnr, LPSREAL lower, LPSREAL upper) +{ + if((colnr > lp->columns) || (colnr < 1)) { + report(lp, IMPORTANT, "set_bounds: Column %d out of range\n", colnr); + return(FALSE); + } + if(fabs(upper - lower) < lp->epsvalue) { + if(lower < 0) + lower = upper; + else + upper = lower; + } + else if(lower > upper) { + report(lp, IMPORTANT, "set_bounds: Column %d upper bound must be >= lower bound\n", + colnr); + return( FALSE ); + } + + colnr += lp->rows; + + if(lower < -lp->infinite) + lower = -lp->infinite; + else if(lp->scaling_used) { + lower = scaled_value(lp, lower, colnr); +#ifdef DoBorderRounding + lower = my_avoidtiny(lower, lp->matA->epsvalue); +#endif + } + + if(upper > lp->infinite) + upper = lp->infinite; + else if(lp->scaling_used) { + upper = scaled_value(lp, upper, colnr); +#ifdef DoBorderRounding + upper = my_avoidtiny(upper, lp->matA->epsvalue); +#endif + } + + lp->orig_lowbo[colnr] = lower; + lp->orig_upbo[colnr] = upper; + set_action(&lp->spx_action, ACTION_REBASE); + + return(TRUE); +} + +MYBOOL get_bounds(lprec *lp, int column, LPSREAL *lower, LPSREAL *upper) +{ + if((column > lp->columns) || (column < 1)) { + report(lp, IMPORTANT, "get_bounds: Column %d out of range", column); + return(FALSE); + } + + if(lower != NULL) + *lower = get_lowbo(lp, column); + if(upper != NULL) + *upper = get_upbo(lp, column); + + return(TRUE); +} + +MYBOOL __WINAPI set_int(lprec *lp, int colnr, MYBOOL var_type) +{ + if((colnr > lp->columns) || (colnr < 1)) { + report(lp, IMPORTANT, "set_int: Column %d out of range\n", colnr); + return(FALSE); + } + + if((lp->var_type[colnr] & ISINTEGER) != 0) { + lp->int_vars--; + lp->var_type[colnr] &= ~ISINTEGER; + } + if(var_type) { + lp->var_type[colnr] |= ISINTEGER; + lp->int_vars++; + if(lp->columns_scaled && !is_integerscaling(lp)) + unscale_columns(lp); + } + return(TRUE); +} + +MYBOOL __WINAPI is_int(lprec *lp, int colnr) +{ + if((colnr > lp->columns) || (colnr < 1)) { + report(lp, IMPORTANT, "is_int: Column %d out of range\n", colnr); + return(FALSE); + } + + return((lp->var_type[colnr] & ISINTEGER) != 0); +} + +MYBOOL __WINAPI is_SOS_var(lprec *lp, int colnr) +{ + if((colnr > lp->columns) || (colnr < 1)) { + report(lp, IMPORTANT, "is_SOS_var: Column %d out of range\n", colnr); + return(FALSE); + } + + return((lp->var_type[colnr] & ISSOS) != 0); +} + +int __WINAPI add_SOS(lprec *lp, char *name, int sostype, int priority, int count, int *sosvars, LPSREAL *weights) +{ + SOSrec *SOS; + int k; + + if((sostype < 1) || (count < 0)) { + report(lp, IMPORTANT, "add_SOS: Invalid SOS type definition %d\n", sostype); + return( 0 ); + } + + /* Make sure SOSes of order 3 and higher are properly defined */ + if(sostype > 2) { + int j; + for(k = 0; k < count; k++) { + j = sosvars[k]; + if(!is_int(lp, j) || !is_semicont(lp, j)) { + report(lp, IMPORTANT, "add_SOS: SOS3+ members all have to be integer or semi-continuous.\n"); + return( 0 ); + } + } + } + + /* Make size in the list to handle another SOS record */ + if(lp->SOS == NULL) + lp->SOS = create_SOSgroup(lp); + + /* Create and append SOS to list */ + SOS = create_SOSrec(lp->SOS, name, sostype, priority, count, sosvars, weights); + k = append_SOSgroup(lp->SOS, SOS); + + return(k); +} + +STATIC int add_GUB(lprec *lp, char *name, int priority, int count, int *gubvars) +{ + SOSrec *GUB; + int k; + +#ifdef Paranoia + if(count < 0) { + report(lp, IMPORTANT, "add_GUB: Invalid GUB member count %d\n", count); + return(FALSE); + } +#endif + + /* Make size in the list to handle another GUB record */ + if(lp->GUB == NULL) + lp->GUB = create_SOSgroup(lp); + + /* Create and append GUB to list */ + GUB = create_SOSrec(lp->GUB, name, 1, priority, count, gubvars, NULL); + GUB->isGUB = TRUE; + k = append_SOSgroup(lp->GUB, GUB); + + return(k); +} + +MYBOOL __WINAPI set_binary(lprec *lp, int colnr, MYBOOL must_be_bin) +{ + MYBOOL status = FALSE; + + if((colnr > lp->columns) || (colnr < 1)) { + report(lp, IMPORTANT, "set_binary: Column %d out of range\n", colnr); + return( status ); + } + + status = set_int(lp, colnr, must_be_bin); + if(status && must_be_bin) + status = set_bounds(lp, colnr, 0, 1); + return( status ); +} + +MYBOOL __WINAPI is_binary(lprec *lp, int colnr) +{ + if((colnr > lp->columns) || (colnr < 1)) { + report(lp, IMPORTANT, "is_binary: Column %d out of range\n", colnr); + return(FALSE); + } + + return((MYBOOL) (((lp->var_type[colnr] & ISINTEGER) != 0) && + (get_lowbo(lp, colnr) == 0) && + (fabs(get_upbo(lp, colnr) - 1) < lp->epsprimal))); +} + +MYBOOL __WINAPI set_unbounded(lprec *lp, int colnr) +{ + if((colnr > lp->columns) || (colnr < 1)) { + report(lp, IMPORTANT, "set_unbounded: Column %d out of range\n", colnr); + return( FALSE ); + } + + return( set_bounds(lp, colnr, -lp->infinite, lp->infinite) ); +} + +MYBOOL __WINAPI is_unbounded(lprec *lp, int colnr) +{ + MYBOOL test; + + if((colnr > lp->columns) || (colnr < 1)) { + report(lp, IMPORTANT, "is_unbounded: Column %d out of range\n", colnr); + return(FALSE); + } + + test = is_splitvar(lp, colnr); + if(!test) { + colnr += lp->rows; + test = (MYBOOL) ((lp->orig_lowbo[colnr] <= -lp->infinite) && + (lp->orig_upbo[colnr] >= lp->infinite)); + } + return( test ); +} + +MYBOOL __WINAPI is_negative(lprec *lp, int colnr) +{ + if((colnr > lp->columns) || (colnr < 1)) { + report(lp, IMPORTANT, "is_negative: Column %d out of range\n", colnr); + return( FALSE ); + } + + colnr += lp->rows; + return( (MYBOOL) ((lp->orig_upbo[colnr] <= 0) && + (lp->orig_lowbo[colnr] < 0)) ); +} + +MYBOOL __WINAPI set_var_weights(lprec *lp, LPSREAL *weights) +{ + if(lp->var_priority != NULL) { + FREE(lp->var_priority); + } + if(weights != NULL) { + int n; + allocINT(lp, &lp->var_priority, lp->columns_alloc, FALSE); + for(n = 0; n < lp->columns; n++) { + lp->var_priority[n] = n+1; + } + n = sortByREAL(lp->var_priority, weights, lp->columns, 0, FALSE); + } + return(TRUE); +} + +MYBOOL __WINAPI set_var_priority(lprec *lp) +/* Experimental automatic variable ordering/priority setting */ +{ + MYBOOL status = FALSE; + + if(is_bb_mode(lp, NODE_AUTOORDER) && + (lp->var_priority == NULL) && + (SOS_count(lp) == 0)) { + + LPSREAL *rcost = NULL; + int i, j, *colorder = NULL; + + allocINT(lp, &colorder, lp->columns+1, FALSE); + + /* Create an "optimal" B&B variable ordering; this MDO-based routine + returns column indeces in an increasing order of co-dependency. + It can be argued that arranging the columns in right-to-left + MDO order should tend to minimize the consequences of choosing the + wrong variable by reducing the average B&B depth. */ + colorder[0] = lp->columns; + for(j = 1; j <= lp->columns; j++) + colorder[j] = lp->rows+j; + i = getMDO(lp, NULL, colorder, NULL, FALSE); + + /* Map to variable weight */ + allocREAL(lp, &rcost, lp->columns+1, FALSE); + for(j = lp->columns; j > 0; j--) { + i = colorder[j]-lp->rows; + rcost[i] = -j; + } + + /* Establish the MIP variable priorities */ + set_var_weights(lp, rcost+1); + + FREE(rcost); + FREE(colorder); + status = TRUE; + } + + return( status ); +} + +int __WINAPI get_var_priority(lprec *lp, int colnr) +{ + if((colnr > lp->columns) || (colnr < 1)) { + report(lp, IMPORTANT, "get_var_priority: Column %d out of range\n", colnr); + return(FALSE); + } + + if(lp->var_priority == NULL) + return(colnr); + else + return(lp->var_priority[colnr - 1]); +} + +MYBOOL __WINAPI set_semicont(lprec *lp, int colnr, MYBOOL must_be_sc) +{ + if((colnr > lp->columns) || (colnr < 1)) { + report(lp, IMPORTANT, "set_semicont: Column %d out of range\n", colnr); + return(FALSE); + } + + if(lp->sc_lobound[colnr] != 0) { + lp->sc_vars--; + lp->var_type[colnr] &= ~ISSEMI; + } + lp->sc_lobound[colnr] = must_be_sc; + if(must_be_sc) { + lp->var_type[colnr] |= ISSEMI; + lp->sc_vars++; + } + return(TRUE); +} + +MYBOOL __WINAPI is_semicont(lprec *lp, int colnr) +{ + if((colnr > lp->columns) || (colnr < 1)) { + report(lp, IMPORTANT, "is_semicont: Column %d out of range\n", colnr); + return(FALSE); + } + + return((lp->var_type[colnr] & ISSEMI) != 0); +} + +MYBOOL __WINAPI set_rh(lprec *lp, int rownr, LPSREAL value) +{ + if((rownr > lp->rows) || (rownr < 0)) { + report(lp, IMPORTANT, "set_rh: Row %d out of range\n", rownr); + return(FALSE); + } + + if(((rownr == 0) && (!is_maxim(lp))) || + ((rownr > 0) && is_chsign(lp, rownr))) /* setting of RHS of OF IS meaningful */ + value = my_flipsign(value); + if(fabs(value) > lp->infinite) { + if(value < 0) + value = -lp->infinite; + else + value = lp->infinite; + } +#ifdef DoBorderRounding + else + value = my_avoidtiny(value, lp->matA->epsvalue); +#endif + value = scaled_value(lp, value, rownr); + lp->orig_rhs[rownr] = value; + set_action(&lp->spx_action, ACTION_RECOMPUTE); + return(TRUE); +} + +LPSREAL __WINAPI get_rh(lprec *lp, int rownr) +{ + LPSREAL value; + + if((rownr > lp->rows) || (rownr < 0)) { + report(lp, IMPORTANT, "get_rh: Row %d out of range", rownr); + return( 0.0 ); + } + + value = lp->orig_rhs[rownr]; + if (((rownr == 0) && !is_maxim(lp)) || + ((rownr > 0) && is_chsign(lp, rownr))) /* setting of RHS of OF IS meaningful */ + value = my_flipsign(value); + value = unscaled_value(lp, value, rownr); + return(value); +} + +LPSREAL get_rh_upper(lprec *lp, int rownr) +{ + LPSREAL value, valueR; + + value = lp->orig_rhs[rownr]; + if(is_chsign(lp, rownr)) { + valueR = lp->orig_upbo[rownr]; + if(is_infinite(lp, valueR)) + return(lp->infinite); + value = my_flipsign(value); + value += valueR; + } + value = unscaled_value(lp, value, rownr); + return(value); +} + +LPSREAL get_rh_lower(lprec *lp, int rownr) +{ + LPSREAL value, valueR; + + value = lp->orig_rhs[rownr]; + if(is_chsign(lp, rownr)) + value = my_flipsign(value); + else { + valueR = lp->orig_upbo[rownr]; + if(is_infinite(lp, valueR)) + return(-lp->infinite); + value -= valueR; + } + value = unscaled_value(lp, value, rownr); + return(value); +} + +MYBOOL set_rh_upper(lprec *lp, int rownr, LPSREAL value) +{ + if(rownr > lp->rows || rownr < 1) { + report(lp, IMPORTANT, "set_rh_upper: Row %d out of range", rownr); + return(FALSE); + } + + /* First scale the value */ + value = scaled_value(lp, value, rownr); + + /* orig_rhs stores the upper bound assuming a < constraint; + If we have a > constraint, we must adjust the range instead */ + if(is_chsign(lp, rownr)) { + if(is_infinite(lp, value)) + lp->orig_upbo[rownr] = lp->infinite; + else { +#ifdef Paranoia + if(value + lp->orig_rhs[rownr] < 0) { + report(lp, SEVERE, "set_rh_upper: Invalid negative range in row %d\n", + rownr); + return(FALSE); + } +#endif +#ifdef DoBorderRounding + lp->orig_upbo[rownr] = my_avoidtiny(value + lp->orig_rhs[rownr], lp->epsvalue); +#else + lp->orig_upbo[rownr] = value + lp->orig_rhs[rownr]; +#endif + } + } + else { + /* If there is a constraint range, then this has to be adjusted also */ + if(!is_infinite(lp, lp->orig_upbo[rownr])) { + lp->orig_upbo[rownr] -= lp->orig_rhs[rownr] - value; + my_roundzero(lp->orig_upbo[rownr], lp->epsvalue); + if(lp->orig_upbo[rownr] < 0) { + report(lp, IMPORTANT, "set_rh_upper: Negative bound set for constraint %d made 0\n", rownr); + lp->orig_upbo[rownr] = 0; + } + } + lp->orig_rhs[rownr] = value; + } + return(TRUE); +} + +MYBOOL set_rh_lower(lprec *lp, int rownr, LPSREAL value) +{ + if(rownr > lp->rows || rownr < 1) { + report(lp, IMPORTANT, "set_rh_lower: Row %d out of range", rownr); + return(FALSE); + } + + /* First scale the value */ + value = scaled_value(lp, value, rownr); + + /* orig_rhs stores the upper bound assuming a < constraint; + If we have a < constraint, we must adjust the range instead */ + if(!is_chsign(lp, rownr)) { + if(is_infinite(lp, value)) + lp->orig_upbo[rownr] = lp->infinite; + else { +#ifdef Paranoia + if(lp->orig_rhs[rownr] - value < 0) { + report(lp, SEVERE, "set_rh_lower: Invalid negative range in row %d\n", + rownr); + return(FALSE); + } +#endif +#ifdef DoBorderRounding + lp->orig_upbo[rownr] = my_avoidtiny(lp->orig_rhs[rownr] - value, lp->epsvalue); +#else + lp->orig_upbo[rownr] = lp->orig_rhs[rownr] - value; +#endif + } + } + else { + value = my_flipsign(value); + /* If there is a constraint range, then this has to be adjusted also */ + if(!is_infinite(lp, lp->orig_upbo[rownr])) { + lp->orig_upbo[rownr] -= lp->orig_rhs[rownr] - value; + my_roundzero(lp->orig_upbo[rownr], lp->epsvalue); + if(lp->orig_upbo[rownr] < 0) { + report(lp, IMPORTANT, "set_rh_lower: Negative bound set for constraint %d made 0\n", rownr); + lp->orig_upbo[rownr] = 0; + } + } + lp->orig_rhs[rownr] = value; + } + return(TRUE); +} + +MYBOOL __WINAPI set_rh_range(lprec *lp, int rownr, LPSREAL deltavalue) +{ + if((rownr > lp->rows) || (rownr < 1)) { + report(lp, IMPORTANT, "set_rh_range: Row %d out of range", rownr); + return(FALSE); + } + + deltavalue = scaled_value(lp, deltavalue, rownr); + if(deltavalue > lp->infinite) + deltavalue = lp->infinite; + else if(deltavalue < -lp->infinite) + deltavalue = -lp->infinite; +#ifdef DoBorderRounding + else + deltavalue = my_avoidtiny(deltavalue, lp->matA->epsvalue); +#endif + + if(fabs(deltavalue) < lp->epsprimal) { + /* Conversion to EQ */ + set_constr_type(lp, rownr, EQ); + } + else if(is_constr_type(lp, rownr, EQ)) { + /* EQ with a non-zero range */ + if(deltavalue > 0) + set_constr_type(lp, rownr, GE); + else + set_constr_type(lp, rownr, LE); + lp->orig_upbo[rownr] = fabs(deltavalue); + } + else { + /* Modify GE/LE ranges */ + lp->orig_upbo[rownr] = fabs(deltavalue); + } + + return(TRUE); +} + +LPSREAL __WINAPI get_rh_range(lprec *lp, int rownr) +{ + if((rownr > lp->rows) || (rownr < 0)) { + report(lp, IMPORTANT, "get_rh_range: row %d out of range\n", rownr); + return(FALSE); + } + + if(lp->orig_upbo[rownr] >= lp->infinite) + return(lp->orig_upbo[rownr]); + else + return(unscaled_value(lp, lp->orig_upbo[rownr], rownr)); +} + +void __WINAPI set_rh_vec(lprec *lp, LPSREAL *rh) +{ + int i; + LPSREAL rhi; + + for(i = 1; i <= lp->rows; i++) { + rhi = rh[i]; +#ifdef DoBorderRounding + rhi = my_avoidtiny(rhi, lp->matA->epsvalue); +#endif + lp->orig_rhs[i] = my_chsign(is_chsign(lp, i), scaled_value(lp, rhi, i)); + } + set_action(&lp->spx_action, ACTION_RECOMPUTE); +} + +MYBOOL __WINAPI str_set_rh_vec(lprec *lp, char *rh_string) +{ + int i; + MYBOOL ret = TRUE; + LPSREAL *newrh; + char *p, *newp; + + allocREAL(lp, &newrh, lp->rows + 1, TRUE); + p = rh_string; + + for(i = 1; i <= lp->rows; i++) { + newrh[i] = (LPSREAL) strtod(p, &newp); + if(p == newp) { + report(lp, IMPORTANT, "str_set_rh_vec: Bad string %s\n", p); + lp->spx_status = DATAIGNORED; + ret = FALSE; + break; + } + else + p = newp; + } + if(!(lp->spx_status == DATAIGNORED)) + set_rh_vec(lp, newrh); + FREE(newrh); + return( ret ); +} + +void __WINAPI set_sense(lprec *lp, MYBOOL maximize) +{ + maximize = (MYBOOL) (maximize != FALSE); + if(is_maxim(lp) != maximize) { + int i; + if(is_infinite(lp, lp->bb_heuristicOF)) + lp->bb_heuristicOF = my_chsign(maximize, lp->infinite); + if(is_infinite(lp, lp->bb_breakOF)) + lp->bb_breakOF = my_chsign(maximize, -lp->infinite); + lp->orig_rhs[0] = my_flipsign(lp->orig_rhs[0]); + for(i = 1; i <= lp->columns; i++) + lp->orig_obj[i] = my_flipsign(lp->orig_obj[i]); + set_action(&lp->spx_action, ACTION_REINVERT | ACTION_RECOMPUTE); + } + if(maximize) + lp->row_type[0] = ROWTYPE_OFMAX; + else + lp->row_type[0] = ROWTYPE_OFMIN; +} + +void __WINAPI set_maxim(lprec *lp) +{ + set_sense(lp, TRUE); +} + +void __WINAPI set_minim(lprec *lp) +{ + set_sense(lp, FALSE); +} + +MYBOOL __WINAPI is_maxim(lprec *lp) +{ + return( (MYBOOL) ((lp->row_type != NULL) && + ((lp->row_type[0] & ROWTYPE_CHSIGN) == ROWTYPE_GE)) ); +} + +MYBOOL __WINAPI set_constr_type(lprec *lp, int rownr, int con_type) +{ + MYBOOL oldchsign; + + if(rownr > lp->rows+1 || rownr < 1) { + report(lp, IMPORTANT, "set_constr_type: Row %d out of range\n", rownr); + return( FALSE ); + } + + /* Prepare for a new row */ + if((rownr > lp->rows) && !append_rows(lp, rownr-lp->rows)) + return( FALSE ); + + /* Update the constraint type data */ + if(is_constr_type(lp, rownr, EQ)) + lp->equalities--; + + if((con_type & ROWTYPE_CONSTRAINT) == EQ) { + lp->equalities++; + lp->orig_upbo[rownr] = 0; + } + else if(((con_type & LE) > 0) || ((con_type & GE) > 0) || (con_type == FR)) + lp->orig_upbo[rownr] = lp->infinite; + else { + report(lp, IMPORTANT, "set_constr_type: Constraint type %d not implemented (row %d)\n", + con_type, rownr); + return( FALSE ); + } + + /* Change the signs of the row, if necessary */ + oldchsign = is_chsign(lp, rownr); + if(con_type == FR) + lp->row_type[rownr] = LE; + else + lp->row_type[rownr] = con_type; + if(oldchsign != is_chsign(lp, rownr)) { + MATrec *mat = lp->matA; + + if(mat->is_roworder) + mat_multcol(mat, rownr, -1, FALSE); + else + mat_multrow(mat, rownr, -1); + if(lp->orig_rhs[rownr] != 0) + lp->orig_rhs[rownr] *= -1; + set_action(&lp->spx_action, ACTION_RECOMPUTE); + } + if(con_type == FR) + lp->orig_rhs[rownr] = lp->infinite; + + set_action(&lp->spx_action, ACTION_REINVERT); + lp->basis_valid = FALSE; + + return( TRUE ); +} + +/* INLINE */ MYBOOL is_chsign(lprec *lp, int rownr) +{ + return( (MYBOOL) ((lp->row_type[rownr] & ROWTYPE_CONSTRAINT) == ROWTYPE_CHSIGN) ); +} + +MYBOOL __WINAPI is_constr_type(lprec *lp, int rownr, int mask) +{ + if((rownr < 0) || (rownr > lp->rows)) { + report(lp, IMPORTANT, "is_constr_type: Row %d out of range\n", rownr); + return( FALSE ); + } + return( (MYBOOL) ((lp->row_type[rownr] & ROWTYPE_CONSTRAINT) == mask)); +} + +int __WINAPI get_constr_type(lprec *lp, int rownr) +{ + if((rownr < 0) || (rownr > lp->rows)) { + report(lp, IMPORTANT, "get_constr_type: Row %d out of range\n", rownr); + return(-1); + } + return( lp->row_type[rownr] ); +} +LPSREAL __WINAPI get_constr_value(lprec *lp, int rownr, int count, LPSREAL *primsolution, int *nzindex) +{ + int i; + LPSREAL value = 0.0; + MATrec *mat = lp->matA; + + if((rownr < 0) || (rownr > get_Nrows(lp))) + return( value ); + + /* First do validation and initialization of applicable primal solution */ + if(!mat_validate(mat) || ((primsolution == NULL) && (lp->solvecount == 0))) + return( value ); + i = get_Ncolumns(lp); + if((primsolution != NULL) && (nzindex == NULL) && + ((count <= 0) || (count > i))) + count = i; + if(primsolution == NULL) { + get_ptr_variables(lp, &primsolution); + primsolution--; + nzindex = NULL; + count = i; + } + + /* Do objective or constraint, as specified */ + if(rownr == 0) { + value += get_rh(lp, 0); + if(nzindex != NULL) + for(i = 0; i < count; i++) + value += get_mat(lp, 0, nzindex[i]) * primsolution[i]; + else + for(i = 1; i <= count; i++) + value += get_mat(lp, 0, i) * primsolution[i]; + } + else { + if(nzindex != NULL) { + for(i = 0; i < count; i++) + value += get_mat(lp, rownr, nzindex[i]) * primsolution[i]; + } + else { + int j; + + for(i = mat->row_end[rownr-1]; i < mat->row_end[rownr]; i++) { + j = ROW_MAT_COLNR(i); + value += unscaled_mat(lp, ROW_MAT_VALUE(i), rownr, j) * primsolution[j]; + } + value = my_chsign(is_chsign(lp, rownr), value); + } + } + return( value ); +} + +STATIC char *get_str_constr_class(lprec *lp, int con_class) +{ + switch(con_class) { + case ROWCLASS_Unknown: return("Unknown"); + case ROWCLASS_Objective: return("Objective"); + case ROWCLASS_GeneralREAL: return("General LPSREAL"); + case ROWCLASS_GeneralMIP: return("General MIP"); + case ROWCLASS_GeneralINT: return("General INT"); + case ROWCLASS_GeneralBIN: return("General BIN"); + case ROWCLASS_KnapsackINT: return("Knapsack INT"); + case ROWCLASS_KnapsackBIN: return("Knapsack BIN"); + case ROWCLASS_SetPacking: return("Set packing"); + case ROWCLASS_SetCover: return("Set cover"); + case ROWCLASS_GUB: return("GUB"); + default: return("Error"); + } +} + +STATIC char *get_str_constr_type(lprec *lp, int con_type) +{ + switch(con_type) { + case FR: return("FR"); + case LE: return("LE"); + case GE: return("GE"); + case EQ: return("EQ"); + default: return("Error"); + } +} + +STATIC int get_constr_class(lprec *lp, int rownr) +{ + int aBIN = 0, aINT = 0, aREAL = 0, + xBIN = 0, xINT = 0, xREAL = 0; + int j, elmnr, elmend, nelm; + MYBOOL chsign; + LPSREAL a; + MATrec *mat = lp->matA; + + if((rownr < 1) || (rownr > lp->rows)) { + report(lp, IMPORTANT, "get_constr_class: Row %d out of range\n", rownr); + return( ROWCLASS_Unknown ); + } + mat_validate(mat); + + /* Tally counts of constraint variable types and coefficients */ + if(rownr == 0) { + elmnr = 1; + elmend = lp->columns; + nelm = 0; + } + else { + elmnr = mat->row_end[rownr - 1]; + elmend = mat->row_end[rownr]; + nelm = elmend - elmnr; + } + chsign = is_chsign(lp, rownr); + for(; elmnr < elmend; elmnr++) { + if(rownr == 0) { + a = lp->orig_obj[elmnr]; + if(a == 0) + continue; + j = elmnr; + } + else { + j = ROW_MAT_COLNR(elmnr); + a = ROW_MAT_VALUE(elmnr); + } + a = unscaled_mat(lp, my_chsign(chsign, a), rownr, j); + if(is_binary(lp, j)) + xBIN++; + else if((get_lowbo(lp, j) >= 0) && is_int(lp, j)) + xINT++; + else + xREAL++; /* Includes integer variables with negative lower bound */ + + if(fabs(a-1.0) < lp->epsvalue) + aBIN++; + else if((a > 0) && (fabs(floor(a+lp->epsvalue)-a) < lp->epsvalue)) + aINT++; + else + aREAL++; /* Includes negative integer-valued coefficients */ + } + + /* Get the constraint type and the RHS */ + if(rownr == 0) + return( ROWCLASS_Objective ); + j = get_constr_type(lp, rownr); + a = get_rh(lp, rownr); + + /* Determine the constraint class */ + if((aBIN == nelm) && (xBIN == nelm) && (a >= 1)) { + if(a > 1) + j = ROWCLASS_KnapsackBIN; + else if(j == EQ) + j = ROWCLASS_GUB; + else if(j == LE) + j = ROWCLASS_SetCover; + else + j = ROWCLASS_SetPacking; + } + else if((aINT == nelm) && (xINT == nelm) && (a >= 1)) + j = ROWCLASS_KnapsackINT; + else if(xBIN == nelm) + j = ROWCLASS_GeneralBIN; + else if(xINT == nelm) + j = ROWCLASS_GeneralINT; + else if((xREAL > 0) && (xINT+xBIN > 0)) + j = ROWCLASS_GeneralMIP; + else + j = ROWCLASS_GeneralREAL; + + return( j ); +} + +LPSREAL __WINAPI get_mat(lprec *lp, int rownr, int colnr) +{ + LPSREAL value; + int elmnr; + int colnr1 = colnr, rownr1 = rownr; + + if((rownr < 0) || (rownr > lp->rows)) { + report(lp, IMPORTANT, "get_mat: Row %d out of range", rownr); + return(0); + } + if((colnr < 1) || (colnr > lp->columns)) { + report(lp, IMPORTANT, "get_mat: Column %d out of range", colnr); + return(0); + } + if(rownr == 0) { + value = lp->orig_obj[colnr]; + value = my_chsign(is_chsign(lp, rownr), value); + value = unscaled_mat(lp, value, rownr, colnr); + } + else { + if(lp->matA->is_roworder) + swapINT(&colnr1, &rownr1); + elmnr = mat_findelm(lp->matA, rownr1, colnr1); + if(elmnr >= 0) { + MATrec *mat = lp->matA; + value = my_chsign(is_chsign(lp, rownr), COL_MAT_VALUE(elmnr)); + value = unscaled_mat(lp, value, rownr, colnr); + } + else + value = 0; + } + return(value); +} + +LPSREAL __WINAPI get_mat_byindex(lprec *lp, int matindex, MYBOOL isrow, MYBOOL adjustsign) +/* Note that this function does not adjust for sign-changed GT constraints! */ +{ + int *rownr, *colnr; + LPSREAL *value, result; + + mat_get_data(lp, matindex, isrow, &rownr, &colnr, &value); + if(adjustsign) + result = (*value) * (is_chsign(lp, *rownr) ? -1 : 1); + else + result = *value; + if(lp->scaling_used) + return( unscaled_mat(lp, result, *rownr, *colnr) ); + else + return( result ); +} + +static int mat_getrow(lprec *lp, int rownr, LPSREAL *row, int *colno) +{ + MYBOOL isnz; + int j, countnz = 0; + LPSREAL a; + + if((rownr == 0) || !mat_validate(lp->matA)) { + for(j = 1; j <= lp->columns; j++) { + a = get_mat(lp,rownr,j); + isnz = (a != 0); + if(colno == NULL) + row[j] = a; + else if(isnz) { + row[countnz] = a; + colno[countnz] = j; + } + if(isnz) + countnz++; + } + } + else { + MYBOOL chsign = FALSE; + int ie, i; + MATrec *mat = lp->matA; + + if(colno == NULL) + MEMCLEAR(row, lp->columns+1); + if(mat->is_roworder) { + /* Add the objective function */ + a = get_mat(lp, 0, rownr); + if(colno == NULL) { + row[countnz] = a; + if(a != 0) + countnz++; + } + else if(a != 0) { + row[countnz] = a; + colno[countnz] = 0; + countnz++; + } + } + i = mat->row_end[rownr-1]; + ie = mat->row_end[rownr]; + if(!lp->matA->is_roworder) + chsign = is_chsign(lp, rownr); + for(; i < ie; i++) { + j = ROW_MAT_COLNR(i); + a = get_mat_byindex(lp, i, TRUE, FALSE); + if(lp->matA->is_roworder) + chsign = is_chsign(lp, j); + a = my_chsign(chsign, a); + if(colno == NULL) + row[j] = a; + else { + row[countnz] = a; + colno[countnz] = j; + } + countnz++; + } + } + return( countnz ); +} + +static int mat_getcolumn(lprec *lp, int colnr, LPSREAL *column, int *nzrow) +{ + int n = 0, i, ii, ie, *rownr; + LPSREAL hold, *value; + MATrec *mat = lp->matA; + + if(nzrow == NULL) + MEMCLEAR(column, lp->rows + 1); + if(!mat->is_roworder) { + /* Add the objective function */ + hold = get_mat(lp, 0, colnr); + if(nzrow == NULL) { + column[n] = hold; + if(hold != 0) + n++; + } + else if(hold != 0) { + column[n] = hold; + nzrow[n] = 0; + n++; + } + } + + i = lp->matA->col_end[colnr - 1]; + ie = lp->matA->col_end[colnr]; + if(nzrow == NULL) + n += ie - i; + rownr = &COL_MAT_ROWNR(i); + value = &COL_MAT_VALUE(i); + for(; i < ie; + i++, rownr += matRowColStep, value += matValueStep) { + ii = *rownr; + + hold = my_chsign(is_chsign(lp, (mat->is_roworder) ? colnr : ii), *value); + hold = unscaled_mat(lp, hold, ii, colnr); + if(nzrow == NULL) + column[ii] = hold; + else if(hold != 0) { + column[n] = hold; + nzrow[n] = ii; + n++; + } + } + return( n ); +} + +int __WINAPI get_columnex(lprec *lp, int colnr, LPSREAL *column, int *nzrow) +{ + if((colnr > lp->columns) || (colnr < 1)) { + report(lp, IMPORTANT, "get_columnex: Column %d out of range\n", colnr); + return( -1 ); + } + + if(lp->matA->is_roworder) + return(mat_getrow(lp, colnr, column, nzrow)); + else + return(mat_getcolumn(lp, colnr, column, nzrow)); +} + +MYBOOL __WINAPI get_column(lprec *lp, int colnr, LPSREAL *column) +{ + return( (MYBOOL) (get_columnex(lp, colnr, column, NULL) >= 0) ); +} + +int __WINAPI get_rowex(lprec *lp, int rownr, LPSREAL *row, int *colno) +{ + if((rownr < 0) || (rownr > lp->rows)) { + report(lp, IMPORTANT, "get_rowex: Row %d out of range\n", rownr); + return( -1 ); + } + + if(rownr != 0 && lp->matA->is_roworder) + return(mat_getcolumn(lp, rownr, row, colno)); + else + return(mat_getrow(lp, rownr, row, colno)); +} + +MYBOOL __WINAPI get_row(lprec *lp, int rownr, LPSREAL *row) +{ + return((MYBOOL) (get_rowex(lp, rownr, row, NULL) >= 0) ); +} + +STATIC void set_OF_override(lprec *lp, LPSREAL *ofVector) +/* The purpose of this function is to set, or clear if NULL, the + ofVector[0..columns] as the active objective function instead of + the one stored in the A-matrix. See also lag_solve().*/ +{ + lp->obj = ofVector; +} + +MYBOOL modifyOF1(lprec *lp, int index, LPSREAL *ofValue, LPSREAL mult) +/* Adjust objective function values for primal/dual phase 1, if appropriate */ +{ + MYBOOL accept = TRUE; + + /* Primal simplex: Set user variables to zero or BigM-scaled */ + if(((lp->simplex_mode & SIMPLEX_Phase1_PRIMAL) != 0) && (abs(lp->P1extraDim) > 0)) { +#ifndef Phase1EliminateRedundant + if(lp->P1extraDim < 0) { + if(index > lp->sum + lp->P1extraDim) + accept = FALSE; + } + else +#endif + if((index <= lp->sum - lp->P1extraDim) || (mult == 0)) { + if((mult == 0) || (lp->bigM == 0)) + accept = FALSE; + else + (*ofValue) /= lp->bigM; + } + } + + /* Dual simplex: Subtract P1extraVal from objective function values */ + else if(((lp->simplex_mode & SIMPLEX_Phase1_DUAL) != 0) && (index > lp->rows)) { +#if 1 /* This may help increase sparsity of the (extended) basis matrix; + Can it introduce degeneracy in some cases? */ + if((lp->P1extraVal != 0) && (lp->orig_obj[index - lp->rows] > 0)) + *ofValue = 0; + else +#endif + { + *ofValue -= lp->P1extraVal; +#if 0 + if(is_action(lp->anti_degen, ANTIDEGEN_RHSPERTURB)) + *ofValue -= rand_uniform(lp, lp->epsperturb); +#endif + } + } + + /* Do scaling and test for zero */ + if(accept) { + (*ofValue) *= mult; + if(fabs(*ofValue) < lp->epsmachine) { + (*ofValue) = 0; + accept = FALSE; + } + } + else + (*ofValue) = 0; + + return( accept ); +} + +STATIC void set_OF_p1extra(lprec *lp, LPSREAL p1extra) +{ + int i; + LPSREAL *value; + + if(lp->spx_trace) + report(lp, DETAILED, "set_OF_p1extra: Set dual objective offset to %g at iter %.0f.\n", + p1extra, (double) get_total_iter(lp)); + lp->P1extraVal = p1extra; + if(lp->obj == NULL) + allocREAL(lp, &lp->obj, lp->columns_alloc+1, TRUE); + for(i = 1, value = lp->obj+1; i <= lp->columns; i++, value++) { + *value = lp->orig_obj[i]; + modifyOF1(lp, lp->rows + i, value, 1.0); + } +} + +STATIC void unset_OF_p1extra(lprec *lp) +{ + lp->P1extraVal = 0; + FREE(lp->obj); +} + +LPSREAL __WINAPI get_OF_active(lprec *lp, int varnr, LPSREAL mult) +{ + int colnr = varnr - lp->rows; + LPSREAL holdOF = 0; + +#ifdef Paranoia + if((colnr <= 0) || (colnr > lp->columns)) { + report(lp, SEVERE, "get_OF_active: Invalid column index %d supplied\n", colnr); + } + else +#endif + if(lp->obj == NULL) { + if(colnr > 0) + holdOF = lp->orig_obj[colnr]; + modifyOF1(lp, varnr, &holdOF, mult); + } + else if(colnr > 0) + holdOF = lp->obj[colnr] * mult; + + return( holdOF ); +} + +STATIC MYBOOL is_OF_nz(lprec *lp, int colnr) +{ + return( (MYBOOL) (lp->orig_obj[colnr] != 0) ); +} + +STATIC int singleton_column(lprec *lp, int row_nr, LPSREAL *column, int *nzlist, LPSREAL value, int *maxabs) +{ + int nz = 1; + + if(nzlist == NULL) { + MEMCLEAR(column, lp->rows + 1); + column[row_nr] = value; + } + else { + column[nz] = value; + nzlist[nz] = row_nr; + } + + if(maxabs != NULL) + *maxabs = row_nr; + return( nz ); +} + +STATIC int expand_column(lprec *lp, int col_nr, LPSREAL *column, int *nzlist, LPSREAL mult, int *maxabs) +{ + int i, ie, j, maxidx, nzcount; + LPSREAL value, maxval; + MATrec *mat = lp->matA; + LPSREAL *matValue; + int *matRownr; + + /* Retrieve a column from the user data matrix A */ + maxval = 0; + maxidx = -1; + if(nzlist == NULL) { + MEMCLEAR(column, lp->rows + 1); + i = mat->col_end[col_nr - 1]; + ie = mat->col_end[col_nr]; + matRownr = &COL_MAT_ROWNR(i); + matValue = &COL_MAT_VALUE(i); + nzcount = i; + for(; i < ie; + i++, matRownr += matRowColStep, matValue += matValueStep) { + j = *matRownr; + value = *matValue; + if(j > 0) { + value *= mult; + if(fabs(value) > maxval) { + maxval = fabs(value); + maxidx = j; + } + } + column[j] = value; + } + nzcount = i - nzcount; + + /* Get the objective as row 0, optionally adjusting the objective for phase 1 */ + if(lp->obj_in_basis) { + column[0] = get_OF_active(lp, lp->rows+col_nr, mult); + if(column[0] != 0) + nzcount++; + } + } + else { + nzcount = 0; + + /* Get the objective as row 0, optionally adjusting the objective for phase 1 */ + if(lp->obj_in_basis) { + value = get_OF_active(lp, lp->rows+col_nr, mult); + if(value != 0) { + nzcount++; + nzlist[nzcount] = 0; + column[nzcount] = value; + } + } + + /* Loop over the non-zero column entries */ + i = mat->col_end[col_nr - 1]; + ie = mat->col_end[col_nr]; + matRownr = &COL_MAT_ROWNR(i); + matValue = &COL_MAT_VALUE(i); + for(; i < ie; + i++, matRownr += matRowColStep, matValue += matValueStep) { + j = *matRownr; + value = (*matValue) * mult; + nzcount++; + nzlist[nzcount] = j; + column[nzcount] = value; + if(fabs(value) > maxval) { + maxval = fabs(value); + maxidx = nzcount; + } + } + } + + if(maxabs != NULL) + *maxabs = maxidx; + return( nzcount ); +} + + +/* Retrieve a column vector from the data matrix [1..rows, rows+1..rows+columns]; + needs __WINAPI call model since it may be called from BFPs */ +int __WINAPI obtain_column(lprec *lp, int varin, LPSREAL *pcol, int *nzlist, int *maxabs) +{ + LPSREAL value = my_chsign(lp->is_lower[varin], -1); + if(varin > lp->rows) { + varin -= lp->rows; + varin = expand_column(lp, varin, pcol, nzlist, value, maxabs); + } + else if(lp->obj_in_basis || (varin > 0)) + varin = singleton_column(lp, varin, pcol, nzlist, value, maxabs); + else + varin = get_basisOF(lp, NULL, pcol, nzlist); + + return(varin); +} + +/* GENERAL INVARIANT CALLBACK FUNCTIONS */ +MYBOOL set_callbacks(lprec *lp) +{ + /* Assign API functions to lp structure (mainly for XLIs) */ + lp->add_column = add_column; + lp->add_columnex = add_columnex; + lp->add_constraint = add_constraint; + lp->add_constraintex = add_constraintex; + lp->add_lag_con = add_lag_con; + lp->add_SOS = add_SOS; + lp->column_in_lp = column_in_lp; + lp->copy_lp = copy_lp; + lp->default_basis = default_basis; + lp->del_column = del_column; + lp->del_constraint = del_constraint; + lp->delete_lp = delete_lp; + lp->dualize_lp = dualize_lp; + lp->free_lp = free_lp; + lp->get_anti_degen = get_anti_degen; + lp->get_basis = get_basis; + lp->get_basiscrash = get_basiscrash; + lp->get_bb_depthlimit = get_bb_depthlimit; + lp->get_bb_floorfirst = get_bb_floorfirst; + lp->get_bb_rule = get_bb_rule; + lp->get_bounds_tighter = get_bounds_tighter; + lp->get_break_at_value = get_break_at_value; + lp->get_col_name = get_col_name; + lp->get_columnex = get_columnex; + lp->get_constr_type = get_constr_type; + lp->get_constr_value = get_constr_value; + lp->get_constraints = get_constraints; + lp->get_dual_solution = get_dual_solution; + lp->get_epsb = get_epsb; + lp->get_epsd = get_epsd; + lp->get_epsel = get_epsel; + lp->get_epsint = get_epsint; + lp->get_epsperturb = get_epsperturb; + lp->get_epspivot = get_epspivot; + lp->get_improve = get_improve; + lp->get_infinite = get_infinite; + lp->get_lambda = get_lambda; + lp->get_lowbo = get_lowbo; + lp->get_lp_index = get_lp_index; + lp->get_lp_name = get_lp_name; + lp->get_Lrows = get_Lrows; + lp->get_mat = get_mat; + lp->get_mat_byindex = get_mat_byindex; + lp->get_max_level = get_max_level; + lp->get_maxpivot = get_maxpivot; + lp->get_mip_gap = get_mip_gap; + lp->get_multiprice = get_multiprice; + lp->get_nameindex = get_nameindex; + lp->get_Ncolumns = get_Ncolumns; + lp->get_negrange = get_negrange; + lp->get_nonzeros = get_nonzeros; + lp->get_Norig_columns = get_Norig_columns; + lp->get_Norig_rows = get_Norig_rows; + lp->get_Nrows = get_Nrows; + lp->get_obj_bound = get_obj_bound; + lp->get_objective = get_objective; + lp->get_orig_index = get_orig_index; + lp->get_origcol_name = get_origcol_name; + lp->get_origrow_name = get_origrow_name; + lp->get_partialprice = get_partialprice; + lp->get_pivoting = get_pivoting; + lp->get_presolve = get_presolve; + lp->get_presolveloops = get_presolveloops; + lp->get_primal_solution = get_primal_solution; + lp->get_print_sol = get_print_sol; + lp->get_pseudocosts = get_pseudocosts; + lp->get_ptr_constraints = get_ptr_constraints; + lp->get_ptr_dual_solution = get_ptr_dual_solution; + lp->get_ptr_lambda = get_ptr_lambda; + lp->get_ptr_primal_solution = get_ptr_primal_solution; + lp->get_ptr_sensitivity_obj = get_ptr_sensitivity_obj; + lp->get_ptr_sensitivity_objex = get_ptr_sensitivity_objex; + lp->get_ptr_sensitivity_rhs = get_ptr_sensitivity_rhs; + lp->get_ptr_variables = get_ptr_variables; + lp->get_rh = get_rh; + lp->get_rh_range = get_rh_range; + lp->get_row = get_row; + lp->get_rowex = get_rowex; + lp->get_row_name = get_row_name; + lp->get_scalelimit = get_scalelimit; + lp->get_scaling = get_scaling; + lp->get_sensitivity_obj = get_sensitivity_obj; + lp->get_sensitivity_objex = get_sensitivity_objex; + lp->get_sensitivity_rhs = get_sensitivity_rhs; + lp->get_simplextype = get_simplextype; + lp->get_solutioncount = get_solutioncount; + lp->get_solutionlimit = get_solutionlimit; + lp->get_status = get_status; + lp->get_statustext = get_statustext; + lp->get_timeout = get_timeout; + lp->get_total_iter = get_total_iter; + lp->get_total_nodes = get_total_nodes; + lp->get_upbo = get_upbo; + lp->get_var_branch = get_var_branch; + lp->get_var_dualresult = get_var_dualresult; + lp->get_var_primalresult = get_var_primalresult; + lp->get_var_priority = get_var_priority; + lp->get_variables = get_variables; + lp->get_verbose = get_verbose; + lp->get_working_objective = get_working_objective; + lp->has_BFP = has_BFP; + lp->has_XLI = has_XLI; + lp->is_add_rowmode = is_add_rowmode; + lp->is_anti_degen = is_anti_degen; + lp->is_binary = is_binary; + lp->is_break_at_first = is_break_at_first; + lp->is_constr_type = is_constr_type; + lp->is_debug = is_debug; + lp->is_feasible = is_feasible; + lp->is_unbounded = is_unbounded; + lp->is_infinite = is_infinite; + lp->is_int = is_int; + lp->is_integerscaling = is_integerscaling; + lp->is_lag_trace = is_lag_trace; + lp->is_maxim = is_maxim; + lp->is_nativeBFP = is_nativeBFP; + lp->is_nativeXLI = is_nativeXLI; + lp->is_negative = is_negative; + lp->is_obj_in_basis = is_obj_in_basis; + lp->is_piv_mode = is_piv_mode; + lp->is_piv_rule = is_piv_rule; + lp->is_presolve = is_presolve; + lp->is_scalemode = is_scalemode; + lp->is_scaletype = is_scaletype; + lp->is_semicont = is_semicont; + lp->is_SOS_var = is_SOS_var; + lp->is_trace = is_trace; + lp->lp_solve_version = lp_solve_version; + lp->make_lp = make_lp; + lp->print_constraints = print_constraints; + lp->print_debugdump = print_debugdump; + lp->print_duals = print_duals; + lp->print_lp = print_lp; + lp->print_objective = print_objective; + lp->print_scales = print_scales; + lp->print_solution = print_solution; + lp->print_str = print_str; + lp->print_tableau = print_tableau; + lp->put_abortfunc = put_abortfunc; + lp->put_bb_nodefunc = put_bb_nodefunc; + lp->put_bb_branchfunc = put_bb_branchfunc; + lp->put_logfunc = put_logfunc; + lp->put_msgfunc = put_msgfunc; + lp->read_LP = read_LP; + lp->read_MPS = read_MPS; + lp->read_XLI = read_XLI; + lp->read_basis = read_basis; + lp->reset_basis = reset_basis; + lp->read_params = read_params; + lp->reset_params = reset_params; + lp->resize_lp = resize_lp; + lp->set_action = set_action; + lp->set_add_rowmode = set_add_rowmode; + lp->set_anti_degen = set_anti_degen; + lp->set_basisvar = set_basisvar; + lp->set_basis = set_basis; + lp->set_basiscrash = set_basiscrash; + lp->set_bb_depthlimit = set_bb_depthlimit; + lp->set_bb_floorfirst = set_bb_floorfirst; + lp->set_bb_rule = set_bb_rule; + lp->set_BFP = set_BFP; + lp->set_binary = set_binary; + lp->set_bounds = set_bounds; + lp->set_bounds_tighter = set_bounds_tighter; + lp->set_break_at_first = set_break_at_first; + lp->set_break_at_value = set_break_at_value; + lp->set_col_name = set_col_name; + lp->set_constr_type = set_constr_type; + lp->set_debug = set_debug; + lp->set_epsb = set_epsb; + lp->set_epsd = set_epsd; + lp->set_epsel = set_epsel; + lp->set_epsint = set_epsint; + lp->set_epslevel = set_epslevel; + lp->set_epsperturb = set_epsperturb; + lp->set_epspivot = set_epspivot; + lp->set_unbounded = set_unbounded; + lp->set_improve = set_improve; + lp->set_infinite = set_infinite; + lp->set_int = set_int; + lp->set_lag_trace = set_lag_trace; + lp->set_lowbo = set_lowbo; + lp->set_lp_name = set_lp_name; + lp->set_mat = set_mat; + lp->set_maxim = set_maxim; + lp->set_maxpivot = set_maxpivot; + lp->set_minim = set_minim; + lp->set_mip_gap = set_mip_gap; + lp->set_multiprice = set_multiprice; + lp->set_negrange = set_negrange; + lp->set_obj = set_obj; + lp->set_obj_bound = set_obj_bound; + lp->set_obj_fn = set_obj_fn; + lp->set_obj_fnex = set_obj_fnex; + lp->set_obj_in_basis = set_obj_in_basis; + lp->set_outputfile = set_outputfile; + lp->set_outputstream = set_outputstream; + lp->set_partialprice = set_partialprice; + lp->set_pivoting = set_pivoting; + lp->set_preferdual = set_preferdual; + lp->set_presolve = set_presolve; + lp->set_print_sol = set_print_sol; + lp->set_pseudocosts = set_pseudocosts; + lp->set_rh = set_rh; + lp->set_rh_range = set_rh_range; + lp->set_rh_vec = set_rh_vec; + lp->set_row = set_row; + lp->set_rowex = set_rowex; + lp->set_row_name = set_row_name; + lp->set_scalelimit = set_scalelimit; + lp->set_scaling = set_scaling; + lp->set_semicont = set_semicont; + lp->set_sense = set_sense; + lp->set_simplextype = set_simplextype; + lp->set_solutionlimit = set_solutionlimit; + lp->set_timeout = set_timeout; + lp->set_trace = set_trace; + lp->set_upbo = set_upbo; + lp->set_var_branch = set_var_branch; + lp->set_var_weights = set_var_weights; + lp->set_verbose = set_verbose; + lp->set_XLI = set_XLI; + lp->solve = solve; + lp->str_add_column = str_add_column; + lp->str_add_constraint = str_add_constraint; + lp->str_add_lag_con = str_add_lag_con; + lp->str_set_obj_fn = str_set_obj_fn; + lp->str_set_rh_vec = str_set_rh_vec; + lp->time_elapsed = time_elapsed; + lp->unscale = unscale; + lp->write_lp = write_lp; + lp->write_LP = write_LP; + lp->write_mps = write_mps; + lp->write_freemps = write_freemps; + lp->write_MPS = write_MPS; + lp->write_freeMPS = write_freeMPS; + lp->write_XLI = write_XLI; + lp->write_basis = write_basis; + lp->write_params = write_params; + + /* Utility functions (mainly for BFPs) */ + lp->userabort = userabort; + lp->report = report; + lp->explain = explain; + lp->set_basisvar = set_basisvar; + lp->get_lpcolumn = obtain_column; + lp->get_basiscolumn = get_basiscolumn; + lp->get_OF_active = get_OF_active; + lp->getMDO = getMDO; + lp->invert = invert; + lp->set_action = set_action; + lp->clear_action = clear_action; + lp->is_action = is_action; + + return( TRUE ); +} + +/* SUPPORT FUNCTION FOR BASIS FACTORIZATION PACKAGES */ +MYBOOL __WINAPI has_BFP(lprec *lp) +{ + return( is_nativeBFP(lp) +#if LoadInverseLib == TRUE + || (MYBOOL) (lp->hBFP != NULL) +#endif + ); +} + +MYBOOL __WINAPI is_nativeBFP(lprec *lp) +{ +#ifdef ExcludeNativeInverse + return( FALSE ); +#elif LoadInverseLib == TRUE + return( (MYBOOL) (lp->hBFP == NULL) ); +#else + return( TRUE ); +#endif +} + +MYBOOL __WINAPI set_BFP(lprec *lp, char *filename) +/* (Re)mapping of basis factorization variant methods is done here */ +{ + int result = LIB_LOADED; + + /* Release the BFP and basis if we are active */ + if(lp->invB != NULL) + bfp_free(lp); + +#if LoadInverseLib == TRUE + if(lp->hBFP != NULL) { + #ifdef WIN32 + FreeLibrary(lp->hBFP); + #else + dlclose(lp->hBFP); + #endif + lp->hBFP = NULL; + } +#endif + + if(filename == NULL) { + if(!is_nativeBFP(lp)) + return( FALSE ); +#ifndef ExcludeNativeInverse + lp->bfp_name = bfp_name; + lp->bfp_compatible = bfp_compatible; + lp->bfp_free = bfp_free; + lp->bfp_resize = bfp_resize; + lp->bfp_nonzeros = bfp_nonzeros; + lp->bfp_memallocated = bfp_memallocated; + lp->bfp_restart = bfp_restart; + lp->bfp_mustrefactorize = bfp_mustrefactorize; + lp->bfp_preparefactorization = bfp_preparefactorization; + lp->bfp_factorize = bfp_factorize; + lp->bfp_finishupdate = bfp_finishupdate; + lp->bfp_ftran_normal = bfp_ftran_normal; + lp->bfp_ftran_prepare = bfp_ftran_prepare; + lp->bfp_btran_normal = bfp_btran_normal; + lp->bfp_status = bfp_status; + lp->bfp_implicitslack = bfp_implicitslack; + lp->bfp_indexbase = bfp_indexbase; + lp->bfp_rowoffset = bfp_rowoffset; + lp->bfp_pivotmax = bfp_pivotmax; + lp->bfp_init = bfp_init; + lp->bfp_pivotalloc = bfp_pivotalloc; + lp->bfp_colcount = bfp_colcount; + lp->bfp_canresetbasis = bfp_canresetbasis; + lp->bfp_finishfactorization = bfp_finishfactorization; + lp->bfp_updaterefactstats = bfp_updaterefactstats; + lp->bfp_prepareupdate = bfp_prepareupdate; + lp->bfp_pivotRHS = bfp_pivotRHS; + lp->bfp_btran_double = bfp_btran_double; + lp->bfp_efficiency = bfp_efficiency; + lp->bfp_pivotvector = bfp_pivotvector; + lp->bfp_pivotcount = bfp_pivotcount; + lp->bfp_refactcount = bfp_refactcount; + lp->bfp_isSetI = bfp_isSetI; + lp->bfp_findredundant = bfp_findredundant; +#endif + } + else { +#if LoadInverseLib == TRUE + #ifdef WIN32 + /* Get a handle to the Windows DLL module. */ + lp->hBFP = LoadLibrary(filename); + + /* If the handle is valid, try to get the function addresses. */ + if(lp->hBFP != NULL) { + lp->bfp_compatible = (BFPbool_lpintintint *) + GetProcAddress(lp->hBFP, "bfp_compatible"); + if(lp->bfp_compatible == NULL) + result = LIB_NOINFO; + else if(lp->bfp_compatible(lp, BFPVERSION, MAJORVERSION, sizeof(LPSREAL))) { + + lp->bfp_name = (BFPchar *) + GetProcAddress(lp->hBFP, "bfp_name"); + lp->bfp_free = (BFP_lp *) + GetProcAddress(lp->hBFP, "bfp_free"); + lp->bfp_resize = (BFPbool_lpint *) + GetProcAddress(lp->hBFP, "bfp_resize"); + lp->bfp_nonzeros = (BFPint_lpbool *) + GetProcAddress(lp->hBFP, "bfp_nonzeros"); + lp->bfp_memallocated = (BFPint_lp *) + GetProcAddress(lp->hBFP, "bfp_memallocated"); + lp->bfp_restart = (BFPbool_lp *) + GetProcAddress(lp->hBFP, "bfp_restart"); + lp->bfp_mustrefactorize = (BFPbool_lp *) + GetProcAddress(lp->hBFP, "bfp_mustrefactorize"); + lp->bfp_preparefactorization = (BFPint_lp *) + GetProcAddress(lp->hBFP, "bfp_preparefactorization"); + lp->bfp_factorize = (BFPint_lpintintboolbool *) + GetProcAddress(lp->hBFP, "bfp_factorize"); + lp->bfp_finishupdate = (BFPbool_lpbool *) + GetProcAddress(lp->hBFP, "bfp_finishupdate"); + lp->bfp_ftran_normal = (BFP_lprealint *) + GetProcAddress(lp->hBFP, "bfp_ftran_normal"); + lp->bfp_ftran_prepare = (BFP_lprealint *) + GetProcAddress(lp->hBFP, "bfp_ftran_prepare"); + lp->bfp_btran_normal = (BFP_lprealint *) + GetProcAddress(lp->hBFP, "bfp_btran_normal"); + lp->bfp_status = (BFPint_lp *) + GetProcAddress(lp->hBFP, "bfp_status"); + lp->bfp_implicitslack = (BFPbool_lp *) + GetProcAddress(lp->hBFP, "bfp_implicitslack"); + lp->bfp_indexbase = (BFPint_lp *) + GetProcAddress(lp->hBFP, "bfp_indexbase"); + lp->bfp_rowoffset = (BFPint_lp *) + GetProcAddress(lp->hBFP, "bfp_rowoffset"); + lp->bfp_pivotmax = (BFPint_lp *) + GetProcAddress(lp->hBFP, "bfp_pivotmax"); + lp->bfp_init = (BFPbool_lpintintchar *) + GetProcAddress(lp->hBFP, "bfp_init"); + lp->bfp_pivotalloc = (BFPbool_lpint *) + GetProcAddress(lp->hBFP, "bfp_pivotalloc"); + lp->bfp_colcount = (BFPint_lp *) + GetProcAddress(lp->hBFP, "bfp_colcount"); + lp->bfp_canresetbasis = (BFPbool_lp *) + GetProcAddress(lp->hBFP, "bfp_canresetbasis"); + lp->bfp_finishfactorization = (BFP_lp *) + GetProcAddress(lp->hBFP, "bfp_finishfactorization"); + lp->bfp_updaterefactstats = (BFP_lp *) + GetProcAddress(lp->hBFP, "bfp_updaterefactstats"); + lp->bfp_prepareupdate = (BFPlreal_lpintintreal *) + GetProcAddress(lp->hBFP, "bfp_prepareupdate"); + lp->bfp_pivotRHS = (BFPreal_lplrealreal *) + GetProcAddress(lp->hBFP, "bfp_pivotRHS"); + lp->bfp_btran_double = (BFP_lprealintrealint *) + GetProcAddress(lp->hBFP, "bfp_btran_double"); + lp->bfp_efficiency = (BFPreal_lp *) + GetProcAddress(lp->hBFP, "bfp_efficiency"); + lp->bfp_pivotvector = (BFPrealp_lp *) + GetProcAddress(lp->hBFP, "bfp_pivotvector"); + lp->bfp_pivotcount = (BFPint_lp *) + GetProcAddress(lp->hBFP, "bfp_pivotcount"); + lp->bfp_refactcount = (BFPint_lpint *) + GetProcAddress(lp->hBFP, "bfp_refactcount"); + lp->bfp_isSetI = (BFPbool_lp *) + GetProcAddress(lp->hBFP, "bfp_isSetI"); + lp->bfp_findredundant = (BFPint_lpintrealcbintint *) + GetProcAddress(lp->hBFP, "bfp_findredundant"); + } + else + result = LIB_VERINVALID; + } + #else + /* First standardize UNIX .SO library name format. */ + char bfpname[260], *ptr; + + strcpy(bfpname, filename); + if((ptr = strrchr(filename, '/')) == NULL) + ptr = filename; + else + ptr++; + bfpname[(int) (ptr - filename)] = 0; + if(strncmp(ptr, "lib", 3)) + strcat(bfpname, "lib"); + strcat(bfpname, ptr); + if(strcmp(bfpname + strlen(bfpname) - 3, ".so")) + strcat(bfpname, ".so"); + + /* Get a handle to the module. */ + lp->hBFP = dlopen(bfpname, RTLD_LAZY); + + /* If the handle is valid, try to get the function addresses. */ + if(lp->hBFP != NULL) { + lp->bfp_compatible = (BFPbool_lpintintint *) + dlsym(lp->hBFP, "bfp_compatible"); + if(lp->bfp_compatible == NULL) + result = LIB_NOINFO; + else if(lp->bfp_compatible(lp, BFPVERSION, MAJORVERSION, sizeof(LPSREAL))) { + + lp->bfp_name = (BFPchar *) + dlsym(lp->hBFP, "bfp_name"); + lp->bfp_free = (BFP_lp *) + dlsym(lp->hBFP, "bfp_free"); + lp->bfp_resize = (BFPbool_lpint *) + dlsym(lp->hBFP, "bfp_resize"); + lp->bfp_nonzeros = (BFPint_lpbool *) + dlsym(lp->hBFP, "bfp_nonzeros"); + lp->bfp_memallocated = (BFPint_lp *) + dlsym(lp->hBFP, "bfp_memallocated"); + lp->bfp_restart = (BFPbool_lp *) + dlsym(lp->hBFP, "bfp_restart"); + lp->bfp_mustrefactorize = (BFPbool_lp *) + dlsym(lp->hBFP, "bfp_mustrefactorize"); + lp->bfp_preparefactorization = (BFPint_lp *) + dlsym(lp->hBFP, "bfp_preparefactorization"); + lp->bfp_factorize = (BFPint_lpintintboolbool *) + dlsym(lp->hBFP, "bfp_factorize"); + lp->bfp_finishupdate = (BFPbool_lpbool *) + dlsym(lp->hBFP, "bfp_finishupdate"); + lp->bfp_ftran_normal = (BFP_lprealint *) + dlsym(lp->hBFP, "bfp_ftran_normal"); + lp->bfp_ftran_prepare = (BFP_lprealint *) + dlsym(lp->hBFP, "bfp_ftran_prepare"); + lp->bfp_btran_normal = (BFP_lprealint *) + dlsym(lp->hBFP, "bfp_btran_normal"); + lp->bfp_status = (BFPint_lp *) + dlsym(lp->hBFP, "bfp_status"); + lp->bfp_implicitslack = (BFPbool_lp *) + dlsym(lp->hBFP, "bfp_implicitslack"); + lp->bfp_indexbase = (BFPint_lp *) + dlsym(lp->hBFP, "bfp_indexbase"); + lp->bfp_rowoffset = (BFPint_lp *) + dlsym(lp->hBFP, "bfp_rowoffset"); + lp->bfp_pivotmax = (BFPint_lp *) + dlsym(lp->hBFP, "bfp_pivotmax"); + lp->bfp_init = (BFPbool_lpintintchar *) + dlsym(lp->hBFP, "bfp_init"); + lp->bfp_pivotalloc = (BFPbool_lpint *) + dlsym(lp->hBFP, "bfp_pivotalloc"); + lp->bfp_colcount = (BFPint_lp *) + dlsym(lp->hBFP, "bfp_colcount"); + lp->bfp_canresetbasis = (BFPbool_lp *) + dlsym(lp->hBFP, "bfp_canresetbasis"); + lp->bfp_finishfactorization = (BFP_lp *) + dlsym(lp->hBFP, "bfp_finishfactorization"); + lp->bfp_updaterefactstats = (BFP_lp *) + dlsym(lp->hBFP, "bfp_updaterefactstats"); + lp->bfp_prepareupdate = (BFPlreal_lpintintreal *) + dlsym(lp->hBFP, "bfp_prepareupdate"); + lp->bfp_pivotRHS = (BFPreal_lplrealreal *) + dlsym(lp->hBFP, "bfp_pivotRHS"); + lp->bfp_btran_double = (BFP_lprealintrealint *) + dlsym(lp->hBFP, "bfp_btran_double"); + lp->bfp_efficiency = (BFPreal_lp *) + dlsym(lp->hBFP, "bfp_efficiency"); + lp->bfp_pivotvector = (BFPrealp_lp *) + dlsym(lp->hBFP, "bfp_pivotvector"); + lp->bfp_pivotcount = (BFPint_lp *) + dlsym(lp->hBFP, "bfp_pivotcount"); + lp->bfp_refactcount = (BFPint_lpint *) + dlsym(lp->hBFP, "bfp_refactcount"); + lp->bfp_isSetI = (BFPbool_lp *) + dlsym(lp->hBFP, "bfp_isSetI"); + lp->bfp_findredundant = (BFPint_lpintrealcbintint *) + dlsym(lp->hBFP, "bfp_findredundant"); + } + else + result = LIB_VERINVALID; + } + #endif + else + result = LIB_NOTFOUND; +#endif + /* Do validation */ + if((result != LIB_LOADED) || + ((lp->bfp_name == NULL) || + (lp->bfp_compatible == NULL) || + (lp->bfp_free == NULL) || + (lp->bfp_resize == NULL) || + (lp->bfp_nonzeros == NULL) || + (lp->bfp_memallocated == NULL) || + (lp->bfp_restart == NULL) || + (lp->bfp_mustrefactorize == NULL) || + (lp->bfp_preparefactorization == NULL) || + (lp->bfp_factorize == NULL) || + (lp->bfp_finishupdate == NULL) || + (lp->bfp_ftran_normal == NULL) || + (lp->bfp_ftran_prepare == NULL) || + (lp->bfp_btran_normal == NULL) || + (lp->bfp_status == NULL) || + (lp->bfp_implicitslack == NULL) || + (lp->bfp_indexbase == NULL) || + (lp->bfp_rowoffset == NULL) || + (lp->bfp_pivotmax == NULL) || + (lp->bfp_init == NULL) || + (lp->bfp_pivotalloc == NULL) || + (lp->bfp_colcount == NULL) || + (lp->bfp_canresetbasis == NULL) || + (lp->bfp_finishfactorization == NULL) || + (lp->bfp_updaterefactstats == NULL) || + (lp->bfp_prepareupdate == NULL) || + (lp->bfp_pivotRHS == NULL) || + (lp->bfp_btran_double == NULL) || + (lp->bfp_efficiency == NULL) || + (lp->bfp_pivotvector == NULL) || + (lp->bfp_pivotcount == NULL) || + (lp->bfp_refactcount == NULL) || + (lp->bfp_isSetI == NULL) || + (lp->bfp_findredundant == NULL) + )) { + set_BFP(lp, NULL); + if(result == LIB_LOADED) + result = LIB_NOFUNCTION; + } + } + if(filename != NULL) { + char info[LIB_STR_MAXLEN+1]; + switch(result) { + case LIB_NOTFOUND: strcpy(info, LIB_STR_NOTFOUND); + break; + case LIB_NOINFO: strcpy(info, LIB_STR_NOINFO); + break; + case LIB_NOFUNCTION: strcpy(info, LIB_STR_NOFUNCTION); + break; + case LIB_VERINVALID: strcpy(info, LIB_STR_VERINVALID); + break; + default: strcpy(info, LIB_STR_LOADED); + } + report(lp, IMPORTANT, "set_BFP: %s '%s'\n", + info, filename); + } + return( (MYBOOL) (result == LIB_LOADED)); +} + + +/* External language interface routines */ +/* DON'T MODIFY */ +lprec * __WINAPI read_XLI(char *xliname, char *modelname, char *dataname, char *options, int verbose) +{ + lprec *lp; + + lp = make_lp(0, 0); + if(lp != NULL) { + lp->source_is_file = TRUE; + lp->verbose = verbose; + if(!set_XLI(lp, xliname)) { + free_lp(&lp); + printf("read_XLI: No valid XLI package selected or available.\n"); + } + else { + if(!lp->xli_readmodel(lp, modelname, (dataname != NULL) && (*dataname != 0) ? dataname : NULL, options, verbose)) + free_lp(&lp); + } + } + return( lp ); +} + +MYBOOL __WINAPI write_XLI(lprec *lp, char *filename, char *options, MYBOOL results) +{ + return( has_XLI(lp) && mat_validate(lp->matA) && lp->xli_writemodel(lp, filename, options, results) ); +} + +MYBOOL __WINAPI has_XLI(lprec *lp) +{ + return( is_nativeXLI(lp) +#if LoadLanguageLib == TRUE + || (MYBOOL) (lp->hXLI != NULL) +#endif + ); +} + +MYBOOL __WINAPI is_nativeXLI(lprec *lp) +{ +#ifdef ExcludeNativeLanguage + return( FALSE ); +#elif LoadLanguageLib == TRUE + return( (MYBOOL) (lp->hXLI == NULL) ); +#else + return( TRUE ); +#endif +} + +MYBOOL __WINAPI set_XLI(lprec *lp, char *filename) +/* (Re)mapping of external language interface variant methods is done here */ +{ + int result = LIB_LOADED; + +#if LoadLanguageLib == TRUE + if(lp->hXLI != NULL) { + #ifdef WIN32 + FreeLibrary(lp->hXLI); + #else + dlclose(lp->hXLI); + #endif + lp->hXLI = NULL; + } +#endif + + if(filename == NULL) { + if(!is_nativeXLI(lp)) + return( FALSE ); +#ifndef ExcludeNativeLanguage + lp->xli_name = xli_name; + lp->xli_compatible = xli_compatible; + lp->xli_readmodel = xli_readmodel; + lp->xli_writemodel = xli_writemodel; +#endif + } + else { +#if LoadLanguageLib == TRUE + #ifdef WIN32 + /* Get a handle to the Windows DLL module. */ + lp->hXLI = LoadLibrary(filename); + + /* If the handle is valid, try to get the function addresses. */ + if(lp->hXLI != NULL) { + lp->xli_compatible = (XLIbool_lpintintint *) + GetProcAddress(lp->hXLI, "xli_compatible"); + if(lp->xli_compatible == NULL) + result = LIB_NOINFO; + else if(lp->xli_compatible(lp, XLIVERSION, MAJORVERSION, sizeof(LPSREAL))) { + + lp->xli_name = (XLIchar *) + GetProcAddress(lp->hXLI, "xli_name"); + lp->xli_readmodel = (XLIbool_lpcharcharcharint *) + GetProcAddress(lp->hXLI, "xli_readmodel"); + lp->xli_writemodel = (XLIbool_lpcharcharbool *) + GetProcAddress(lp->hXLI, "xli_writemodel"); + } + else + result = LIB_VERINVALID; + } + #else + /* First standardize UNIX .SO library name format. */ + char xliname[260], *ptr; + + strcpy(xliname, filename); + if((ptr = strrchr(filename, '/')) == NULL) + ptr = filename; + else + ptr++; + xliname[(int) (ptr - filename)] = 0; + if(strncmp(ptr, "lib", 3)) + strcat(xliname, "lib"); + strcat(xliname, ptr); + if(strcmp(xliname + strlen(xliname) - 3, ".so")) + strcat(xliname, ".so"); + + /* Get a handle to the module. */ + lp->hXLI = dlopen(xliname, RTLD_LAZY); + + /* If the handle is valid, try to get the function addresses. */ + if(lp->hXLI != NULL) { + lp->xli_compatible = (XLIbool_lpintintint *) + dlsym(lp->hXLI, "xli_compatible"); + if(lp->xli_compatible == NULL) + result = LIB_NOINFO; + else if(lp->xli_compatible(lp, XLIVERSION, MAJORVERSION, sizeof(LPSREAL))) { + + lp->xli_name = (XLIchar *) + dlsym(lp->hXLI, "xli_name"); + lp->xli_readmodel = (XLIbool_lpcharcharcharint *) + dlsym(lp->hXLI, "xli_readmodel"); + lp->xli_writemodel = (XLIbool_lpcharcharbool *) + dlsym(lp->hXLI, "xli_writemodel"); + } + else + result = LIB_VERINVALID; + } + #endif + else + result = LIB_NOTFOUND; +#endif + /* Do validation */ + if((result != LIB_LOADED) || + ((lp->xli_name == NULL) || + (lp->xli_compatible == NULL) || + (lp->xli_readmodel == NULL) || + (lp->xli_writemodel == NULL) + )) { + set_XLI(lp, NULL); + if(result == LIB_LOADED) + result = LIB_NOFUNCTION; + } + } + if(filename != NULL) { + char info[LIB_STR_MAXLEN+1]; + switch(result) { + case LIB_NOTFOUND: strcpy(info, LIB_STR_NOTFOUND); + break; + case LIB_NOINFO: strcpy(info, LIB_STR_NOINFO); + break; + case LIB_NOFUNCTION: strcpy(info, LIB_STR_NOFUNCTION); + break; + case LIB_VERINVALID: strcpy(info, LIB_STR_VERINVALID); + break; + default: strcpy(info, LIB_STR_LOADED); + } + report(lp, IMPORTANT, "set_XLI: %s '%s'\n", + info, filename); + } + return( (MYBOOL) (result == LIB_LOADED)); +} + + +STATIC int get_basisOF(lprec *lp, int coltarget[], LPSREAL crow[], int colno[]) +/* Fill vector of basic OF values or subtract incoming values from these. + This function is called twice during reduced cost updates when the basis + does not contain the basic OF vector as the top row. The colno[] array + is filled with the count of non-zero values and the index to those. */ +{ + int i, n = lp->rows, nz = 0; + LPSREAL *obj = lp->obj; + register LPSREAL epsvalue = lp->epsvalue; + + /* Compute offset over the specified objective indeces (step 2) */ + if(coltarget != NULL) { + register int ix, m = coltarget[0]; + register LPSREAL value; + + for(i = 1, coltarget++; i <= m; i++, coltarget++) { + ix = *coltarget; + /* Finalize the computation of the reduced costs, based on the format that + duals are computed as negatives, ref description for step 1 above */ + value = crow[ix]; + if(ix > n) + value += obj[ix - n]; +/* if(value != 0) { */ + if(fabs(value) > epsvalue) { + nz++; + if(colno != NULL) + colno[nz] = ix; + } + else + value = 0.0; + crow[ix] = value; + } + } + + /* Get the basic objective function values (step 1) */ + else { + register int *basvar = lp->var_basic; + + for(i = 1, crow++, basvar++; i <= n; + i++, crow++, basvar++) { + /* Load the objective value of the active basic variable; note that we + change the sign of the value to maintain computational compatibility with + the calculation of duals using in-basis storage of the basic OF values */ + if(*basvar <= n) + *crow = 0; + else + *crow = -obj[(*basvar) - n]; + if((*crow) != 0) { +/* if(fabs(*crow) > epsvalue) { */ + nz++; + if(colno != NULL) + colno[nz] = i; + } + } + } + if(colno != NULL) + colno[0] = nz; + return( nz ); +} + +int __WINAPI get_basiscolumn(lprec *lp, int j, int rn[], double bj[]) +/* This routine returns sparse vectors for all basis + columns, including the OF dummy (index 0) and slack columns. + NOTE that the index usage is nonstandard for lp_solve, since + the array offset is 1, not 0. */ +{ + int k = lp->bfp_rowoffset(lp), + matbase = lp->bfp_indexbase(lp); + + /* Do target index adjustment (etaPFI with matbase==0 is special case) */ + if(matbase > 0) + matbase += k - 1; + + /* Convert index of slack and user columns */ + j -= k; + if((j > 0) && !lp->bfp_isSetI(lp)) + j = lp->var_basic[j]; + + /* Process OF dummy and slack columns (always at lower bound) */ + if(j <= lp->rows) { + rn[1] = j + matbase; + bj[1] = 1.0; + k = 1; + } + /* Process user columns (negated if at lower bound) */ + else { + k = obtain_column(lp, j, bj, rn, NULL); + if(matbase != 0) + for(j = 1; j <= k; j++) + rn[j] += matbase; + } + + return( k ); +} + +MYBOOL __WINAPI get_primal_solution(lprec *lp, LPSREAL *pv) +{ + if(lp->spx_status == OPTIMAL) + ; + else if(!lp->basis_valid) { + report(lp, CRITICAL, "get_primal_solution: Not a valid basis"); + return(FALSE); + } + + MEMCOPY(pv, lp->best_solution, lp->sum + 1); + return(TRUE); +} + +MYBOOL __WINAPI get_ptr_primal_solution(lprec *lp, LPSREAL **pv) +{ + *pv = lp->best_solution; + return(TRUE); +} + +MYBOOL __WINAPI get_dual_solution(lprec *lp, LPSREAL *rc) +{ + LPSREAL *duals; + MYBOOL ret; + + if(!lp->basis_valid) { + report(lp, CRITICAL, "get_dual_solution: Not a valid basis"); + return(FALSE); + } + + ret = get_ptr_sensitivity_rhs(lp, &duals, NULL, NULL); + + if(ret) + MEMCOPY(rc, duals - 1, lp->sum + 1); + return(ret); +} + +MYBOOL __WINAPI get_ptr_dual_solution(lprec *lp, LPSREAL **rc) +{ + MYBOOL ret = lp->basis_valid; + + /* Just return availability of dual information if rc is NULL */ + if(rc == NULL) + return( ret && ((MIP_count(lp) == 0) || (lp->bb_totalnodes > 0)) ); + + if(!ret) { + report(lp, CRITICAL, "get_ptr_dual_solution: Not a valid basis"); + return(ret); + } + + /* Otherwise, get the pointer to the dual information (and optionally produce it) */ + ret = get_ptr_sensitivity_rhs(lp, rc, NULL, NULL); + if(ret) + (*rc)--; + + return(ret); +} + +MYBOOL __WINAPI get_lambda(lprec *lp, LPSREAL *lambda) +{ + if(!lp->basis_valid || (get_Lrows(lp) == 0)) { + report(lp, CRITICAL, "get_lambda: Not a valid basis"); + return(FALSE); + } + + MEMCOPY(lambda, lp->lambda+1, get_Lrows(lp)); + return(TRUE); +} + +MYBOOL __WINAPI get_ptr_lambda(lprec *lp, LPSREAL **lambda) +{ + *lambda = lp->lambda; + return(TRUE); +} + +int __WINAPI get_orig_index(lprec *lp, int lp_index) +{ + if(lp->varmap_locked) + return(lp->presolve_undo->var_to_orig[lp_index]); + else if(lp_index <= lp->presolve_undo->orig_rows) + return(lp_index); + else + return(lp_index-lp->presolve_undo->orig_rows); +} +int __WINAPI get_lp_index(lprec *lp, int orig_index) +{ + if(lp->varmap_locked) + return(lp->presolve_undo->orig_to_var[orig_index]); + else if(orig_index <= lp->presolve_undo->orig_rows) + return(orig_index); + else + return(orig_index-lp->presolve_undo->orig_rows); +} + +MYBOOL __WINAPI is_feasible(lprec *lp, LPSREAL *values, LPSREAL threshold) +/* Recommend to use threshold = lp->epspivot */ +{ + int i, j, elmnr, ie; + LPSREAL *this_rhs, dist; + LPSREAL *value; + int *rownr; + MATrec *mat = lp->matA; + + for(i = lp->rows + 1; i <= lp->sum; i++) { + if(values[i - lp->rows] < unscaled_value(lp, lp->orig_lowbo[i], i) + || values[i - lp->rows] > unscaled_value(lp, lp->orig_upbo[i], i)) { + if(!((lp->sc_lobound[i - lp->rows]>0) && (values[i - lp->rows]==0))) + return(FALSE); + } + } + + this_rhs = (LPSREAL *) mempool_obtainVector(lp->workarrays, lp->rows+1, sizeof(*this_rhs)); +/* allocREAL(lp, &this_rhs, lp->rows + 1, TRUE); */ + for(j = 1; j <= lp->columns; j++) { + elmnr = mat->col_end[j - 1]; + ie = mat->col_end[j]; + rownr = &COL_MAT_ROWNR(elmnr); + value = &COL_MAT_VALUE(elmnr); + for(; elmnr < ie; elmnr++, rownr += matRowColStep, value += matValueStep) { + this_rhs[*rownr] += unscaled_mat(lp, *value, *rownr, j); + } + } + for(i = 1; i <= lp->rows; i++) { + dist = lp->orig_rhs[i] - this_rhs[i]; + my_roundzero(dist, threshold); + if((lp->orig_upbo[i] == 0 && dist != 0) ||( dist < 0)) { + FREE(this_rhs); + return(FALSE); + } + } + mempool_releaseVector(lp->workarrays, (char *) this_rhs, FALSE); +/* FREE(this_rhs); */ + return(TRUE); +} + +int __WINAPI column_in_lp(lprec *lp, LPSREAL *testcolumn) +{ + int i, j, je, colnr = 0; + int nz, ident = 1; + MATrec *mat = lp->matA; + int *matRownr; + LPSREAL value, *matValue; + + for(nz = 0, i = 1; i <= lp->rows; i++) + if(fabs(testcolumn[i]) > lp->epsvalue) nz++; + + for(i = 1; (i <= lp->columns) && (ident); i++) { + ident = nz; + value = fabs(get_mat(lp, 0, i)-testcolumn[0]); + if(value > lp->epsvalue) + continue; + j = mat->col_end[i - 1]; + je = mat->col_end[i]; + matRownr = &COL_MAT_ROWNR(j); + matValue = &COL_MAT_VALUE(j); + for(; (j < je) && (ident >= 0); + j++, ident--, matRownr += matRowColStep, matValue += matValueStep) { + value = *matValue; + if(is_chsign(lp, *matRownr)) + value = my_flipsign(value); + value = unscaled_mat(lp, value, *matRownr, i); + value -= testcolumn[*matRownr]; + if(fabs(value) > lp->epsvalue) + break; + } + if(ident == 0) + colnr = i; + } + return( colnr ); +} + +MYBOOL __WINAPI set_lp_name(lprec *lp, char *name) +{ + if (name == NULL) { + FREE(lp->lp_name); + lp->lp_name = NULL; + } + else { + allocCHAR(lp, &lp->lp_name, (int) (strlen(name) + 1), AUTOMATIC); + strcpy(lp->lp_name, name); + } + return(TRUE); +} + +char * __WINAPI get_lp_name(lprec *lp) +{ + return((lp->lp_name != NULL) ? lp->lp_name : (char *) ""); +} + +STATIC MYBOOL init_rowcol_names(lprec *lp) +{ + if(!lp->names_used) { + lp->row_name = (hashelem **) calloc(lp->rows_alloc + 1, sizeof(*lp->row_name)); + lp->col_name = (hashelem **) calloc(lp->columns_alloc + 1, sizeof(*lp->col_name)); + lp->rowname_hashtab = create_hash_table(lp->rows_alloc + 1, 0); + lp->colname_hashtab = create_hash_table(lp->columns_alloc + 1, 1); + lp->names_used = TRUE; + } + return(TRUE); +} + +MYBOOL rename_var(lprec *lp, int varindex, char *new_name, hashelem **list, hashtable **ht) +{ + hashelem *hp; + MYBOOL newitem; + + hp = list[varindex]; + newitem = (MYBOOL) (hp == NULL); + if(newitem) + hp = puthash(new_name, varindex, list, *ht); + else if((strlen(hp->name) != strlen(new_name)) || + (strcmp(hp->name, new_name) != 0)) { + hashtable *newht, *oldht; + + allocCHAR(lp, &hp->name, (int) (strlen(new_name) + 1), AUTOMATIC); + strcpy(hp->name, new_name); + oldht = *ht; + newht = copy_hash_table(oldht, list, oldht->size); + *ht = newht; + free_hash_table(oldht); + } + return(newitem); +} + +MYBOOL __WINAPI is_use_names(lprec *lp, MYBOOL isrow) +{ + if(isrow) + return( lp->use_row_names ); + else + return( lp->use_col_names ); +} + +void __WINAPI set_use_names(lprec *lp, MYBOOL isrow, MYBOOL use_names) +{ + if(isrow) + lp->use_row_names = use_names; + else + lp->use_col_names = use_names; +} + +int __WINAPI get_nameindex(lprec *lp, char *varname, MYBOOL isrow) +{ + if(isrow) + return( find_row(lp, varname, FALSE) ); + else + return( find_var(lp, varname, FALSE) ); +} + +MYBOOL __WINAPI set_row_name(lprec *lp, int rownr, char *new_name) +{ + if((rownr < 0) || (rownr > lp->rows+1)) { + report(lp, IMPORTANT, "set_row_name: Row %d out of range", rownr); + return(FALSE); + } + + /* Prepare for a new row */ + if((rownr > lp->rows) && !append_rows(lp, rownr-lp->rows)) + return( FALSE ); + if(!lp->names_used) { + if(!init_rowcol_names(lp)) + return(FALSE); + } + rename_var(lp, rownr, new_name, lp->row_name, &lp->rowname_hashtab); + + return(TRUE); +} + +char * __WINAPI get_row_name(lprec *lp, int rownr) +{ + if((rownr < 0) || (rownr > lp->rows+1)) { + report(lp, IMPORTANT, "get_row_name: Row %d out of range", rownr); + return(NULL); + } + + if((lp->presolve_undo->var_to_orig != NULL) && lp->wasPresolved) { + if(lp->presolve_undo->var_to_orig[rownr] == 0) + rownr = -rownr; + else + rownr = lp->presolve_undo->var_to_orig[rownr]; + } + return( get_origrow_name(lp, rownr) ); +} + +char * __WINAPI get_origrow_name(lprec *lp, int rownr) +{ + MYBOOL newrow; + char *ptr; + + newrow = (MYBOOL) (rownr < 0); + rownr = abs(rownr); +#ifdef Paranoia + if(((lp->presolve_undo->var_to_orig == NULL) && newrow) || + (rownr > MAX(lp->rows, lp->presolve_undo->orig_rows))) { + report(lp, IMPORTANT, "get_origrow_name: Row %d out of range", rownr); + return(NULL); + } +#endif + + if(lp->names_used && lp->use_row_names && (lp->row_name[rownr] != NULL) && + (lp->row_name[rownr]->name != NULL)) { +#ifdef Paranoia + if(lp->row_name[rownr]->index != rownr) + report(lp, SEVERE, "get_origrow_name: Inconsistent row ordinal %d vs %d\n", + rownr, lp->row_name[rownr]->index); +#endif + ptr = lp->row_name[rownr]->name; + } + else { + if(lp->rowcol_name == NULL) + if (!allocCHAR(lp, &lp->rowcol_name, 20, FALSE)) + return(NULL); + ptr = lp->rowcol_name; + if(newrow) + sprintf(ptr, ROWNAMEMASK2, rownr); + else + sprintf(ptr, ROWNAMEMASK, rownr); + } + return(ptr); +} + +MYBOOL __WINAPI set_col_name(lprec *lp, int colnr, char *new_name) +{ + if((colnr > lp->columns+1) || (colnr < 1)) { + report(lp, IMPORTANT, "set_col_name: Column %d out of range", colnr); + } + + if((colnr > lp->columns) && !append_columns(lp, colnr-lp->columns)) + return(FALSE); + + if(!lp->names_used) + init_rowcol_names(lp); + rename_var(lp, colnr, new_name, lp->col_name, &lp->colname_hashtab); + + return(TRUE); +} + +char * __WINAPI get_col_name(lprec *lp, int colnr) +{ + if((colnr > lp->columns+1) || (colnr < 1)) { + report(lp, IMPORTANT, "get_col_name: Column %d out of range", colnr); + return(NULL); + } + + if((lp->presolve_undo->var_to_orig != NULL) && lp->wasPresolved) { + if(lp->presolve_undo->var_to_orig[lp->rows + colnr] == 0) + colnr = -colnr; + else + colnr = lp->presolve_undo->var_to_orig[lp->rows + colnr]; + } + return( get_origcol_name(lp, colnr) ); +} + +char * __WINAPI get_origcol_name(lprec *lp, int colnr) +{ + MYBOOL newcol; + char *ptr; + + newcol = (MYBOOL) (colnr < 0); + colnr = abs(colnr); +#ifdef Paranoia + if(((lp->presolve_undo->var_to_orig == NULL) && newcol) || + (colnr > MAX(lp->columns, lp->presolve_undo->orig_columns))) { + report(lp, IMPORTANT, "get_origcol_name: Column %d out of range", colnr); + return(NULL); + } +#endif + + if(lp->names_used && lp->use_col_names && (lp->col_name[colnr] != NULL) && (lp->col_name[colnr]->name != NULL)) { +#ifdef Paranoia + if(lp->col_name[colnr]->index != colnr) + report(lp, SEVERE, "get_origcol_name: Inconsistent column ordinal %d vs %d\n", + colnr, lp->col_name[colnr]->index); +#endif + ptr = lp->col_name[colnr]->name; + } + else { + if(lp->rowcol_name == NULL) + if (!allocCHAR(lp, &lp->rowcol_name, 20, FALSE)) + return(NULL); + ptr = lp->rowcol_name; + if(newcol) + sprintf(ptr, COLNAMEMASK2, colnr); + else + sprintf(ptr, COLNAMEMASK, colnr); + } + return(ptr); +} + +STATIC int MIP_count(lprec *lp) +{ + return( lp->int_vars+lp->sc_vars+SOS_count(lp) ); +} +STATIC int bin_count(lprec *lp, MYBOOL working) +{ + int i, n = 0; + if(working) { + for(i = lp->rows+1; i <= lp->sum; i++) + if(fabs(unscaled_value(lp, lp->upbo[i], i) - 1) < lp->epsvalue) + n++; + } + else { + for(i = 1; i <= lp->columns; i++) + if((fabs(get_upbo(lp, i) - 1) < lp->epsvalue) && + (fabs(get_lowbo(lp, i) - 0) < lp->epsvalue)) + n++; + } + return( n ); +} +STATIC int SOS_count(lprec *lp) +{ + if(lp->SOS == NULL) + return( 0 ); + else + return( lp->SOS->sos_count ); +} +STATIC int GUB_count(lprec *lp) +{ + if(lp->GUB == NULL) + return( 0 ); + else + return( lp->GUB->sos_count ); +} + +STATIC LPSREAL compute_violation(lprec *lp, int row_nr) +/* Returns the bound violation of a given basic variable; the return + value is negative if it is below is lower bound, it is positive + if it is greater than the upper bound, and zero otherwise. */ +{ + LPSREAL value, test; + + value = lp->rhs[row_nr]; + row_nr = lp->var_basic[row_nr]; + test = value - my_lowbound(lp->lowbo[row_nr]); + my_roundzero(test, lp->epsprimal); + if(test > 0) { + test = value - lp->upbo[row_nr]; + my_roundzero(test, lp->epsprimal); + if(test < 0) + test = 0; + } + return( test ); +} + +STATIC LPSREAL feasibilityOffset(lprec *lp, MYBOOL isdual) +{ + int i, j; + LPSREAL f, Extra; + + Extra = 0; + if(isdual) { + /* This section computes a OF offset to ensure that the dual phase 1 is + feasible. It is used to compute a primal feasible base that can be + passed to the primal simplex in phase 2. */ +#if 0 + + /* This is the legacy (v3.2-) P1extraVal logic that sets Extra to be the + smallest negative reduced cost. Note that the reduced costs are the + values of the dual slacks, which are [0..Inf> for feasibility. + If we have negative reduced costs for bounded non-basic variables, we + can simply switch the bound to obtain feasibility and possibly avoid + having to set Extra. */ + if(!isDualFeasible(lp, lp->epsprimal, NULL, NULL, &f) + Extra = f; + +#else + /* Find the most negative of the objective coefficients. We will subtract this + value from every element of the objective row, making it non-negative and + the problem therefore dual feasible. */ + for(i = 1; i <= lp->columns; i++) { + f = lp->orig_obj[i]; + if(f < Extra) + Extra = f; + } +#endif + } + + else { + /* Set Extra to be the index of the most negative of the net RHS coefficients; + this approach can be used in the primal phase 1 followed by the dual phase 2 + and when there are no ranged constraints. When there are ranged constraints, + additional artificial variables must be introduced. */ + Extra = 0; + j = 0; + Extra = lp->infinite; + for(i = 1; i <= lp->rows; i++) { + f = lp->rhs[i]; + if(f < Extra) { + Extra = f; + j = i; + } + } + Extra = j; + } + + return(Extra); + +} + +STATIC LPSREAL compute_dualslacks(lprec *lp, int target, LPSREAL **dvalues, int **nzdvalues, MYBOOL dosum) +/* Note that this function is similar to the compute_reducedcosts function in lp_price.c */ +{ + int i, varnr, + *coltarget, **nzduals, *nzvtemp = NULL; + LPSREAL d, g = 0, **duals, *vtemp = NULL; + MYBOOL localREAL = (MYBOOL) (dvalues == NULL), + localINT = (MYBOOL) (nzdvalues == NULL); + + if(is_action(lp->spx_action, ACTION_REBASE) || + is_action(lp->spx_action, ACTION_REINVERT) || !lp->basis_valid) + return( g ); + + /* Initialize */ + if(!localREAL) { + duals = dvalues; + nzduals = nzdvalues; + } + else { + duals = &vtemp; + nzduals = &nzvtemp; + } + if(localINT || (*nzduals == NULL)) + allocINT(lp, nzduals, lp->columns + 1, AUTOMATIC); + if(localREAL || (*duals == NULL)) + allocREAL(lp, duals, lp->sum + 1, AUTOMATIC); + if(target == 0) + target = SCAN_ALLVARS+ USE_NONBASICVARS; + + /* Define variable target list and compute the reduced costs */ + coltarget = (int *) mempool_obtainVector(lp->workarrays, lp->columns+1, sizeof(*coltarget)); + if(!get_colIndexA(lp, target, coltarget, FALSE)) { + mempool_releaseVector(lp->workarrays, (char *) coltarget, FALSE); + return(FALSE); + } + bsolve(lp, 0, *duals, NULL, lp->epsmachine*DOUBLEROUND, 1.0); + prod_xA(lp, coltarget, *duals, NULL, lp->epsmachine, 1.0, + *duals, *nzduals, MAT_ROUNDDEFAULT | MAT_ROUNDRC); + mempool_releaseVector(lp->workarrays, (char *) coltarget, FALSE); + + /* Compute sum or maximum infeasibility as specified */ + for(i = 1; i <= (*nzduals)[0]; i++) { + varnr = (*nzduals)[i]; + d = my_chsign(!lp->is_lower[varnr], (*duals)[varnr]); + if(d < 0) { + if(dosum) + g += -d; /* Compute sum as a positive number */ + else { + SETMIN(g, d); /* Compute gap as a negative number */ + } + } + } + + /* Clean up */ + if(localREAL) + FREE(*duals); + if(localINT) + FREE(*nzduals); + + return( g ); +} + +STATIC LPSREAL compute_feasibilitygap(lprec *lp, MYBOOL isdual, MYBOOL dosum) +{ + LPSREAL f = 0; + + /* This computes the primal feasibility gap (for use with the dual simplex phase 1) */ + if(isdual) { + int i; + LPSREAL g; + + for(i = 1; i <= lp->rows; i++) { + if(lp->rhs[i] < 0) + g = lp->rhs[i]; + else if(lp->rhs[i] > lp->upbo[lp->var_basic[i]]) + g = lp->rhs[i] - lp->upbo[lp->var_basic[i]]; + else + g = 0; + if(dosum) + f += g; + else { + SETMAX(f, g); + } + } + } + /* This computes the dual feasibility gap (for use with the primal simplex phase 1) */ + else + f = compute_dualslacks(lp, SCAN_USERVARS+USE_ALLVARS, NULL, NULL, dosum); + + return( f ); +} + +/* Find the smallest fractional value in a given row of the OF/constraint matrix */ +STATIC int row_decimals(lprec *lp, int rownr, MYBOOL intsonly, LPSREAL *intscalar) +{ + int basi, i, j, ncols = lp->columns; + LPSREAL f, /* g, */ epsvalue = lp->epsprimal; + + basi = 0; + for(j = 1; j <= ncols; j++) { + if(intsonly && !is_int(lp, j)) { + if(intsonly == TRUE) + break; + else + continue; + } + f = fabs(get_mat(lp, rownr, j)); + /* f = fmod(f, 1); */ + f -= floor (f + epsvalue); +/* + if(f <= epsvalue) + continue; + g = f; +*/ + for(i = 0; (i <= MAX_FRACSCALE) && (/* g */ f > epsvalue); i++) { + f *= 10; + /* g = fmod(f, 1); */ + f -= floor (f + epsvalue); + } + if(i > MAX_FRACSCALE) + /* i = MAX_FRACSCALE */ break; + SETMAX(basi, i); + } + if(j > ncols) + *intscalar = pow(10.0, basi); + else { + basi = -1; + *intscalar = 1; + } + return( basi ); +} + +STATIC int row_intstats(lprec *lp, int rownr, int pivcolnr, int *maxndec, + int *plucount, int *intcount, int *intval, LPSREAL *valGCD, LPSREAL *pivcolval) +{ + int jb, je, jj, nn = 0, multA, multB, intGCD = 0; + LPSREAL rowval, inthold, intfrac; + MATrec *mat = lp->matA; + + /* Do we have a valid matrix? */ + if(mat_validate(mat)) { + + /* Get smallest fractional row value */ + *maxndec = row_decimals(lp, rownr, AUTOMATIC, &intfrac); + + /* Get OF row starting and ending positions, as well as the first column index */ + if(rownr == 0) { + jb = 1; + je = lp->columns+1; + } + else { + jb = mat->row_end[rownr-1]; + je = mat->row_end[rownr]; + } + nn = je - jb; + *pivcolval = 1.0; + *plucount = 0; + *intcount = 0; + *intval = 0; + for(; jb < je; jb++) { + + if(rownr == 0) { + if(lp->orig_obj[jb] == 0) { + nn--; + continue; + } + jj = jb; + } + else + jj = ROW_MAT_COLNR(jb); + + /* Pick up the value of the pivot column and continue */ + if(jj == pivcolnr) { + if(rownr == 0) + *pivcolval = unscaled_mat(lp, lp->orig_obj[jb], 0, jb); + else + *pivcolval = get_mat_byindex(lp, jb, TRUE, FALSE); + continue; + } + if(!is_int(lp, jj)) + continue; + + /* Update the count of integer columns */ + (*intcount)++; + + /* Update the count of positive parameter values */ + if(rownr == 0) + rowval = unscaled_mat(lp, lp->orig_obj[jb], 0, jb); + else + rowval = get_mat_byindex(lp, jb, TRUE, FALSE); + if(rowval > 0) + (*plucount)++; + + /* Check if the parameter value is integer and update the row's GCD */ + rowval = fabs(rowval) * intfrac; + rowval += rowval*lp->epsmachine; + rowval = modf(rowval, &inthold); + if(rowval < lp->epsprimal) { + (*intval)++; + if(*intval == 1) + intGCD = (int) inthold; + else + intGCD = gcd(intGCD, (LLONG) inthold, &multA, &multB); + } + } + *valGCD = intGCD; + *valGCD /= intfrac; + } + + return(nn); +} + +#if 0 +LPSREAL MIP_stepOF(lprec *lp) +/* This function tries to find a non-zero minimum improvement + if the OF contains all integer variables (logic only applies if we are + looking for a single solution, not possibly several equal-valued ones). +*/ +{ + MYBOOL OFgcd; + int colnr, rownr, n, ib, ie, maxndec, + pluscount, intcount, intval; + LPSREAL value, valOF, divOF, valGCD; + MATrec *mat = lp->matA; + + value = 0; + if((lp->int_vars > 0) && (lp->solutionlimit == 1) && mat_validate(mat)) { + + /* Get statistics for integer OF variables and compute base stepsize */ + n = row_intstats(lp, 0, -1, &maxndec, &pluscount, &intcount, &intval, &valGCD, &divOF); + if((n == 0) || (maxndec < 0)) + return( value ); + OFgcd = (MYBOOL) (intval > 0); + if(OFgcd) + value = valGCD; + + /* Check non-ints in the OF to see if we can get more info */ + if(n - intcount > 0) { + int nrv = 0; + + /* See if we have equality constraints */ + ie = lp->rows; + for(ib = 1; ib <= ie; ib++) { + if(is_constr_type(lp, ib, EQ)) + break; + } + + /* If so, there may be a chance to find an improved stepsize */ + if(ib < ie) + for(colnr = 1; colnr <= lp->columns; colnr++) { + + /* Go directly to the next variable if this is an integer or + there is no row candidate to explore for hidden bounds for + real-valued variables (limit scan to one row!) */ + if(is_int(lp, colnr)) + continue; + nrv++; + /* Scan equality constraints */ + ib = mat->col_end[colnr-1]; + ie = mat->col_end[colnr]; + while(ib < ie) { + if(is_constr_type(lp, (rownr = COL_MAT_ROWNR(ib)), EQ)) { + + /* Get "child" row statistics, but break out if we don't + find enough information, i.e. no integers with coefficients of proper type */ + n = row_intstats(lp, rownr, colnr, &maxndec, &pluscount, &intcount, &intval, &valGCD, &divOF); + if((intval < n - 1) || (maxndec < 0)) { + value = 0; + break; + } + + /* We can update */ + valOF = unscaled_mat(lp, lp->orig_obj[colnr], 0, colnr); + valOF = fabs( valOF * (valGCD / divOF) ); + if(OFgcd) { + SETMIN(value, valOF); + } + else { + OFgcd = TRUE; + value = valOF; + } + } + ib++; + } + + /* No point in continuing scan if we failed in current column */ + if(value == 0) + break; + } + + /* Check if we found information for any real-valued variable; + if not, then we must set the iprovement delta to 0 */ + if(nrv == 0) + value = 0; + } + } + return( value ); +} +#else + +LPSREAL MIP_stepOF(lprec *lp) +/* This function tries to find a non-zero minimum improvement + if the OF contains all integer variables (logic only applies if we are + looking for a single solution, not possibly several equal-valued ones). */ +{ + MYBOOL OFgcd; + int colnr, rownr, n, ib, ie, + pluscount, intcount; + int intval, maxndec; + LPSREAL value = 0, valOF, divOF, valGCD; + MATrec *mat = lp->matA; + + if((lp->int_vars > 0) && (lp->solutionlimit == 1) && mat_validate(mat)) { + + /* Get statistics for integer OF variables and compute base stepsize */ + n = row_intstats(lp, 0, 0, &maxndec, &pluscount, &intcount, &intval, &valGCD, &divOF); + if((n == 0) || (maxndec < 0)) + return( value ); + OFgcd = (MYBOOL) (intval > 0); + if(OFgcd) + value = valGCD; + + /* Check non-ints in the OF to see if we can get more info */ + if(n - intcount > 0) { + int nrv = n - intcount; /* Number of real variables in the objective */ + int niv = 0; /* Number of real variables identified as integer */ + int nrows = lp->rows; + + /* See if we have equality constraints */ + for(ib = 1; ib <= nrows; ib++) { + if(is_constr_type(lp, ib, EQ)) + break; + } + + /* If so, there may be a chance to find an improved stepsize */ + if(ib < nrows) + for(colnr = 1; colnr <= lp->columns; colnr++) { + + /* Go directly to the next variable if this is an integer or + there is no row candidate to explore for hidden bounds for + real-valued variables (limit scan to one row/no recursion) */ + if((lp->orig_obj[colnr] == 0) || is_int(lp, colnr)) + continue; + + /* Scan equality constraints */ + ib = mat->col_end[colnr-1]; + ie = mat->col_end[colnr]; + while(ib < ie) { + if(is_constr_type(lp, (rownr = COL_MAT_ROWNR(ib)), EQ)) { + + /* Get "child" row statistics, but break out if we don't + find enough information, i.e. no integers with coefficients of proper type */ + n = row_intstats(lp, rownr, colnr, &maxndec, &pluscount, &intcount, &intval, &valGCD, &divOF); + if((intval < n - 1) || (maxndec < 0)) { + value = 0; + break; + } + niv++; + + /* We can update */ + valOF = unscaled_mat(lp, lp->orig_obj[colnr], 0, colnr); + valOF = fabs( valOF * (valGCD / divOF) ); + if(OFgcd) { + SETMIN(value, valOF); + } + else { + OFgcd = TRUE; + value = valOF; + } + } + ib++; + } + + /* No point in continuing scan if we failed in current column */ + if(value == 0) + break; + } + + /* Check if we found information for any real-valued variable; + if not, then we must set the improvement delta to 0 */ + if(nrv > niv) + value = 0; + } + } + return( value ); +} + +#endif + +STATIC MYBOOL isPrimalSimplex(lprec *lp) +{ + return((MYBOOL) (((lp->simplex_mode & SIMPLEX_Phase1_PRIMAL) != 0) || + ((lp->simplex_mode & SIMPLEX_Phase2_PRIMAL) != 0))); +} + +STATIC MYBOOL isPhase1(lprec *lp) +{ + return((MYBOOL) (((lp->simplex_mode & SIMPLEX_Phase1_PRIMAL) != 0) || + ((lp->simplex_mode & SIMPLEX_Phase1_DUAL) != 0))); +} + +STATIC MYBOOL isP1extra(lprec *lp) +{ + return((MYBOOL) ((lp->P1extraDim > 0) || (lp->P1extraVal != 0))); +} + +STATIC MYBOOL feasiblePhase1(lprec *lp, LPSREAL epsvalue) +{ + LPSREAL gap; + MYBOOL test; + + gap = fabs(lp->rhs[0] - lp->orig_rhs[0]); + test = (MYBOOL) (gap < epsvalue); + return( test) ; +} + +STATIC MYBOOL isDegenerateBasis(lprec *lp, int basisvar) +{ + int varindex; + + varindex = lp->var_basic[basisvar]; + if((fabs(lp->rhs[basisvar]) < lp->epsprimal) || + (fabs(lp->upbo[varindex]-lp->rhs[basisvar]) < lp->epsprimal)) + return( TRUE ); + else + return( FALSE ); +} + +STATIC int findBasicFixedvar(lprec *lp, int afternr, MYBOOL slacksonly) +{ + int varnr, delta = 1; + + if(afternr < 0) { + delta = -1; + afternr = -afternr; + } + afternr += delta; + if((afternr < 1) || (afternr > lp->rows)) + return( 0 ); + + for(; (afternr > 0) && (afternr <= lp->rows); afternr += delta) { + varnr = lp->var_basic[afternr]; + if(((varnr <= lp->rows) && is_constr_type(lp, varnr, EQ)) || + (!slacksonly && (varnr > lp->rows) && is_fixedvar(lp, varnr))) + break; + } + + if(afternr > lp->rows) + afternr = 0; + + return( afternr ); +} + +STATIC MYBOOL isBasisVarFeasible(lprec *lp, LPSREAL tol, int basis_row) +{ + int col; + LPSREAL x; + MYBOOL Ok = TRUE; + MYBOOL doSC = FALSE; + + col = lp->var_basic[basis_row]; + x = lp->rhs[basis_row]; /* The current solution of basic variables stored here! */ + if((x < -tol) || (x > lp->upbo[col]+tol)) + Ok = FALSE; + else if(doSC && (col > lp->rows) && (fabs(lp->sc_lobound[col - lp->rows]) > 0)) { + if((x > tol) && (x < fabs(lp->sc_lobound[col - lp->rows])-tol)) + Ok = FALSE; + } + return( Ok ); +} +STATIC MYBOOL isPrimalFeasible(lprec *lp, LPSREAL tol, int infeasibles[], LPSREAL *feasibilitygap) +{ + int i; + MYBOOL feasible = TRUE; + + /* This is a short-hand call to rowdual() to check for primal infeasibility */ + +#if 0 + /* Traditional indexing style */ + for(i = 1; i <= lp->rows; i++) { + feasible = isBasisVarFeasible(lp, tol, i); +#else + /* Fast array pointer style */ + LREAL *rhsptr; + int *idxptr; + + if(infeasibles != NULL) + infeasibles[0] = 0; + for(i = 1, rhsptr = lp->rhs+1, idxptr = lp->var_basic+1; + (i <= lp->rows); i++, rhsptr++, idxptr++) { + feasible = TRUE; +/* if(((*rhsptr) < lp->lowbo[*idxptr]-tol) || ((*rhsptr) > lp->upbo[*idxptr]+tol)) */ + if(((*rhsptr) < -tol) || ((*rhsptr) > lp->upbo[*idxptr]+tol)) + feasible = FALSE; +#endif + if(!feasible) { + if(infeasibles == NULL) + break; + infeasibles[0]++; + infeasibles[infeasibles[0]] = i; + } + } + + /* Compute feasibility gap (could actually do this calculation above) */ + if(feasibilitygap != NULL) { + if(feasible) + *feasibilitygap = 0.0; + else + *feasibilitygap = feasibilityOffset(lp, FALSE); + } + + return(feasible); +} + +STATIC MYBOOL isDualFeasible(lprec *lp, LPSREAL tol, int *boundflipcount, int infeasibles[], LPSREAL *feasibilitygap) +{ + int i, varnr, + n = 0, /* Number of infeasible duals corrected with bound-swaps */ + m = 0, + target = SCAN_ALLVARS+USE_NONBASICVARS; + LPSREAL f = 0; + MYBOOL feasible, islower; + + + /* The reduced costs are the values of the dual slacks, which + are [0..Inf> for feasibility. If we have negative reduced costs + for bounded non-basic variables, we can simply switch the bound + of bounded variables to obtain dual feasibility and possibly avoid + having to use dual simplex phase 1. */ + if((infeasibles != NULL) || (boundflipcount != NULL)) { + int *nzdcol = NULL; + LPSREAL d, *dcol = NULL; + + f = compute_dualslacks(lp, target, &dcol, &nzdcol, FALSE); + if(nzdcol != NULL) + for(i = 1; i <= nzdcol[0]; i++) { + varnr = nzdcol[i]; + islower = lp->is_lower[varnr]; + d = my_chsign(!islower, dcol[varnr]); + + /* Don't bother with uninteresting non-basic variables */ + if((d > -tol) || /* Positive reduced costs with a tolerance */ + my_unbounded(lp, varnr) || /* Free variables cannot change bound */ + is_fixedvar(lp, varnr)) /* Equality slack or a fixed variable ("type 3") */ + continue; + + /* Check if we have non-flippable bounds, i.e. an unbounded variable + (types 2+4), or bounded variables (type 3), and if the counter is NULL. */ + if( (boundflipcount == NULL) || + ((lp->bb_level <= 1) && (my_rangebo(lp, varnr) > fabs(lp->negrange))) || + (islower && my_infinite(lp, lp->upbo[varnr])) || + (!islower && my_infinite(lp, my_lowbo(lp, varnr))) ) { + m++; + if(infeasibles != NULL) + infeasibles[m] = varnr; + } + /* Only do bound flips if the user-provided counter is non-NULL */ + else { + lp->is_lower[varnr] = !islower; + n++; + } + } + if(infeasibles != NULL) + infeasibles[0] = m; + FREE(dcol); + FREE(nzdcol); + if(n > 0) { + set_action(&lp->spx_action, ACTION_RECOMPUTE); + if(m == 0) + f = 0; + } + } + else + f = compute_dualslacks(lp, target, NULL, NULL, FALSE); +/* f = feasibilityOffset(lp, TRUE); */ /* Safe legacy mode */ + + /* Do an extra scan to see if there are bounded variables in the OF not present in any constraint; + Most typically, presolve fixes such cases, so this is rarely encountered. */ + + varnr = lp->rows + 1; + for(i = 1; i <= lp->columns; i++, varnr++) { + if (mat_collength(lp->matA, i) == 0) { + islower = lp->is_lower[varnr]; + if((my_chsign(islower, lp->orig_obj[i]) > 0) && !SOS_is_member(lp->SOS, 0, i)) { + lp->is_lower[varnr] = !islower; + if((islower && my_infinite(lp, lp->upbo[varnr] /* lp->orig_upbo[varnr] */)) || + (!islower && my_infinite(lp, my_lowbo(lp, varnr) /* lp->orig_lowbo[varnr] */))) { + lp->spx_status = UNBOUNDED; + break; + } + /* lp->is_lower[varnr] = !islower; */ + n++; + } + } + } + + /* Return status */ + + if(boundflipcount != NULL) + *boundflipcount = n; + if(feasibilitygap != NULL) { + my_roundzero(f, tol); + *feasibilitygap = f; + } + feasible = (MYBOOL) ((f == 0) && (m == 0)); + + return(feasible); +} + +void __WINAPI default_basis(lprec *lp) +{ + int i; + + /* Set the slack variables to be basic; note that the is_basic[] array + is a helper array filled in presolve() to match var_basic[]. */ + for(i = 1; i <= lp->rows; i++) { + lp->var_basic[i] = i; + lp->is_basic[i] = TRUE; + lp->is_lower[i] = TRUE; + } + lp->var_basic[0] = TRUE; /* Set to signal that this is the default basis */ + + /* Set user variables at their lower bound, including the + dummy slack for the objective "constraint" */ + for(; i <= lp->sum; i++) { + lp->is_basic[i] = FALSE; + lp->is_lower[i] = TRUE; + } + lp->is_lower[0] = TRUE; + + set_action(&lp->spx_action, ACTION_REBASE | ACTION_REINVERT | ACTION_RECOMPUTE); + lp->basis_valid = TRUE; /* Do not re-initialize basis on entering Solve */ +} + +int __WINAPI get_basiscrash(lprec *lp) +{ + return(lp->crashmode); +} + +void __WINAPI set_basiscrash(lprec *lp, int mode) +{ + lp->crashmode = mode; +} + +MYBOOL __WINAPI set_basis(lprec *lp, int *bascolumn, MYBOOL nonbasic) /* Added by KE */ +{ + int i,s,k,n; + + /* Make sure we are consistent */ + if(lp->wasPresolved && ((lp->rows != lp->presolve_undo->orig_rows) || + (lp->columns != lp->presolve_undo->orig_columns))) + return( FALSE ); + + /* Initialize (lp->is_basic is set in preprocess); Note that as of v5 and before + it is an lp_solve convention that basic variables are at their lower bounds! + This routine provides for the a possible future case that basic variables + can be upper-bounded. */ + lp->is_lower[0] = TRUE; + for(i = 1; i <= lp->sum; i++) { + lp->is_lower[i] = TRUE; + lp->is_basic[i] = FALSE; + } + for(i = 1; i <= lp->rows; i++) + lp->var_basic[i] = FALSE; + + /* Set basic and optionally non-basic variables; + negative index means at lower bound, positive at upper bound */ + if(nonbasic) + n = lp->sum; + else + n = lp->rows; + for(i = 1; i <= n; i++) { + s = bascolumn[i]; + k = abs(s); + if(k <= 0 || k > lp->sum) + return( FALSE ); + if(i <= lp->rows) { + lp->var_basic[i] = k; + lp->is_basic[k] = TRUE; + } + else /* Remove this test if basic variables can be upper-bounded */ + if(s > 0) + lp->is_lower[k] = FALSE; + } + if(!verify_basis(lp)) + return( FALSE ); + + /* Invalidate basis */ + set_action(&lp->spx_action, ACTION_REBASE | ACTION_REINVERT | ACTION_RECOMPUTE); + lp->basis_valid = TRUE; /* Do not re-initialize basis on entering Solve */ + lp->var_basic[0] = FALSE; /* Set to signal that this is a non-default basis */ + + return( TRUE ); +} + +void __WINAPI reset_basis(lprec *lp) +{ + lp->basis_valid = FALSE; /* Causes reinversion at next opportunity */ +} + +MYBOOL __WINAPI get_basis(lprec *lp, int *bascolumn, MYBOOL nonbasic) +{ + int k, i; + + if(!lp->basis_valid || + (lp->rows != lp->presolve_undo->orig_rows) || + (lp->columns != lp->presolve_undo->orig_columns)) + return( FALSE ); + + *bascolumn = 0; + + /* First save basic variable indexes */ + for(i = 1; i <= lp->rows; i++) { + k = lp->var_basic[i]; + bascolumn[i] = my_chsign(lp->is_lower[k], k); + } + + /* Then optionally save non-basic variable indeces */ + if(nonbasic) { + for(k = 1; (k <= lp->sum) && (i <= lp->sum); k++) { + if(lp->is_basic[k]) + continue; + bascolumn[i] = my_chsign(lp->is_lower[k], k); + i++; + } + } + return( TRUE ); +} + +STATIC MYBOOL is_BasisReady(lprec *lp) +{ + return( (MYBOOL) (lp->var_basic[0] != AUTOMATIC) ); +} + +STATIC MYBOOL is_slackbasis(lprec *lp) +{ + int n = 0, err = 0; + if(lp->basis_valid) { + int i, k; + MYBOOL *used = NULL; + + allocMYBOOL(lp, &used, lp->rows+1, TRUE); + for(i = 1; i <= lp->rows; i++) { + k = lp->var_basic[i]; + if(k <= lp->rows) { + if(used[k]) + err++; + else + used[k] = TRUE; + n++; + } + } + FREE(used); + if(err > 0) + report(lp, SEVERE, "is_slackbasis: %d inconsistencies found in slack basis\n", err); + } + return( (MYBOOL) (n == lp->rows) ); +} + +STATIC MYBOOL verify_basis(lprec *lp) +{ + int i, ii, k = 0; + MYBOOL result = FALSE; + + for(i = 1; i <= lp->rows; i++) { + ii = lp->var_basic[i]; + if((ii < 1) || (ii > lp->sum) || !lp->is_basic[ii]) { + k = i; + ii = 0; + goto Done; + } + } + + ii = lp->rows; + for(i = 1; i <= lp->sum; i++) { + if(lp->is_basic[i]) + ii--; + } + result = (MYBOOL) (ii == 0); + +Done: +#if 0 /* For testing */ + if(!result) + ii = 0; +#endif + return(result); +} + +int __WINAPI set_basisvar(lprec *lp, int basisPos, int enteringCol) +{ + int leavingCol; + + leavingCol = lp->var_basic[basisPos]; + +#ifdef Paranoia + if((basisPos < 1) || (basisPos > lp->rows)) + report(lp, SEVERE, "set_basisvar: Invalid leaving basis position %d specified at iter %.0f\n", + basisPos, (double) get_total_iter(lp)); + if((leavingCol < 1) || (leavingCol > lp->sum)) + report(lp, SEVERE, "set_basisvar: Invalid leaving column %d referenced at iter %.0f\n", + leavingCol, (double) get_total_iter(lp)); + if((enteringCol < 1) || (enteringCol > lp->sum)) + report(lp, SEVERE, "set_basisvar: Invalid entering column %d specified at iter %.0f\n", + enteringCol, (double) get_total_iter(lp)); +#endif + +#ifdef ParanoiaXY + if(!lp->is_basic[leavingCol]) + report(lp, IMPORTANT, "set_basisvar: Leaving variable %d is not basic at iter %.0f\n", + leavingCol, (double) get_total_iter(lp)); + if(enteringCol > lp->rows && lp->is_basic[enteringCol]) + report(lp, IMPORTANT, "set_basisvar: Entering variable %d is already basic at iter %.0f\n", + enteringCol, (double) get_total_iter(lp)); +#endif + + lp->var_basic[0] = FALSE; /* Set to signal that this is a non-default basis */ + lp->var_basic[basisPos] = enteringCol; + lp->is_basic[leavingCol] = FALSE; + lp->is_basic[enteringCol] = TRUE; + if(lp->bb_basis != NULL) + lp->bb_basis->pivots++; + + return(leavingCol); +} + +/* Bounds updating and unloading routines; requires that the + current values for upbo and lowbo are in the original base. */ +STATIC int perturb_bounds(lprec *lp, BBrec *perturbed, MYBOOL doRows, MYBOOL doCols, MYBOOL includeFIXED) +{ + int i, ii, n = 0; + LPSREAL new_lb, new_ub, *upbo, *lowbo; + + if(perturbed == NULL) + return( n ); + + /* Map reference bounds to previous state, i.e. cumulate + perturbations in case of persistent problems */ + upbo = perturbed->upbo; + lowbo = perturbed->lowbo; + + /* Set appropriate target variable range */ + i = 1; + ii = lp->rows; + if(!doRows) + i += ii; + if(!doCols) + ii = lp->sum; + + /* Perturb (expand) finite variable bounds randomly */ + for(; i <= ii; i++) { + + /* Don't perturb regular slack variables */ + if((i <= lp->rows) && (lowbo[i] == 0) && (upbo[i] >= lp->infinite)) + continue; + + new_lb = lowbo[i]; + new_ub = upbo[i]; + + /* Don't perturb fixed variables if not specified */ + if(!includeFIXED && (new_ub == new_lb)) + continue; + + /* Lower bound for variables (consider implementing RHS here w/contentmode== AUTOMATIC) */ + if((i > lp->rows) && (new_lb < lp->infinite)) { + new_lb = rand_uniform(lp, RANDSCALE) + 1; + new_lb *= lp->epsperturb; + lowbo[i] -= new_lb; + n++; + } + + /* Upper bound */ + if(new_ub < lp->infinite) { + new_ub = rand_uniform(lp, RANDSCALE) + 1; + new_ub *= lp->epsperturb; + upbo[i] += new_ub; + n++; + } + } + + /* Make sure we start from scratch */ + set_action(&lp->spx_action, ACTION_REBASE); + + return( n ); +} + +STATIC MYBOOL impose_bounds(lprec *lp, LPSREAL *upbo, LPSREAL *lowbo) +/* Explicitly set working bounds to given vectors without pushing or popping */ +{ + MYBOOL ok; + + ok = (MYBOOL) ((upbo != NULL) || (lowbo != NULL)); + if(ok) { + if((upbo != NULL) && (upbo != lp->upbo)) + MEMCOPY(lp->upbo, upbo, lp->sum + 1); + if((lowbo != NULL) && (lowbo != lp->lowbo)) + MEMCOPY(lp->lowbo, lowbo, lp->sum + 1); + if(lp->bb_bounds != NULL) + lp->bb_bounds->UBzerobased = FALSE; + set_action(&lp->spx_action, ACTION_REBASE); + } + set_action(&lp->spx_action, ACTION_RECOMPUTE); + return( ok ); +} + +STATIC MYBOOL validate_bounds(lprec *lp, LPSREAL *upbo, LPSREAL *lowbo) +/* Check if all bounds are Explicitly set working bounds to given vectors without pushing or popping */ +{ + MYBOOL ok; + int i; + + ok = (MYBOOL) ((upbo != NULL) || (lowbo != NULL)); + if(ok) { + for(i = 1; i <= lp->sum; i++) + if((lowbo[i] > upbo[i]) || (lowbo[i] < lp->orig_lowbo[i]) || (upbo[i] > lp->orig_upbo[i])) + break; + ok = (MYBOOL) (i > lp->sum); + } + return( ok ); +} + +STATIC int unload_BB(lprec *lp) +{ + int levelsunloaded = 0; + + if(lp->bb_bounds != NULL) + while(pop_BB(lp->bb_bounds)) + levelsunloaded++; + return( levelsunloaded ); +} + + +#define LowerStorageModel 1 +#define BasisStorageModel 1 +STATIC basisrec *push_basis(lprec *lp, int *basisvar, MYBOOL *isbasic, MYBOOL *islower) +/* Save the ingoing basis and push it onto the stack */ +{ + int sum = lp->sum + 1; + basisrec *newbasis = NULL; + + newbasis = (basisrec *) calloc(sizeof(*newbasis), 1); + if((newbasis != NULL) && +#if LowerStorageModel == 0 + allocMYBOOL(lp, &newbasis->is_lower, sum, FALSE) && +#else + allocMYBOOL(lp, &newbasis->is_lower, (sum + 8) / 8, TRUE) && +#endif +#if BasisStorageModel == 0 + allocMYBOOL(lp, &newbasis->is_basic, sum, FALSE) && +#endif + allocINT(lp, &newbasis->var_basic, lp->rows + 1, FALSE)) { + + if(islower == NULL) + islower = lp->is_lower; + if(isbasic == NULL) + isbasic = lp->is_basic; + if(basisvar == NULL) + basisvar = lp->var_basic; + +#if LowerStorageModel == 0 + MEMCOPY(newbasis->is_lower, islower, sum); +#else + for(sum = 1; sum <= lp->sum; sum++) + if(islower[sum]) + set_biton(newbasis->is_lower, sum); +#endif +#if BasisStorageModel == 0 + MEMCOPY(newbasis->is_basic, isbasic, lp->sum + 1); +#endif + MEMCOPY(newbasis->var_basic, basisvar, lp->rows + 1); + + newbasis->previous = lp->bb_basis; + if(lp->bb_basis == NULL) + newbasis->level = 0; + else + newbasis->level = lp->bb_basis->level + 1; + newbasis->pivots = 0; + + lp->bb_basis = newbasis; + } + return( newbasis ); +} + +STATIC MYBOOL compare_basis(lprec *lp) +/* Compares the last pushed basis with the currently active basis */ +{ + int i, j; + MYBOOL same_basis = TRUE; + + if(lp->bb_basis == NULL) + return( FALSE ); + + /* Loop over basis variables until a mismatch (order can be different) */ + i = 1; + while(same_basis && (i <= lp->rows)) { + j = 1; + while(same_basis && (j <= lp->rows)) { + same_basis = (MYBOOL) (lp->bb_basis->var_basic[i] != lp->var_basic[j]); + j++; + } + same_basis = !same_basis; + i++; + } + /* Loop over bound status indicators until a mismatch */ + i = 1; + while(same_basis && (i <= lp->sum)) { + same_basis = (lp->bb_basis->is_lower[i] && lp->is_lower[i]); + i++; + } + + return( same_basis ); +} + +STATIC MYBOOL restore_basis(lprec *lp) +/* Restore values from the previously pushed / saved basis without popping it */ +{ + MYBOOL ok; + int i; + + ok = (MYBOOL) (lp->bb_basis != NULL); + if(ok) { + MEMCOPY(lp->var_basic, lp->bb_basis->var_basic, lp->rows + 1); +#if BasisStorageModel == 0 + MEMCOPY(lp->is_basic, lp->bb_basis->is_basic, lp->sum + 1); +#else + MEMCLEAR(lp->is_basic, lp->sum + 1); + for(i = 1; i <= lp->rows; i++) + lp->is_basic[lp->var_basic[i]] = TRUE; +#endif +#if LowerStorageModel == 0 + MEMCOPY(lp->is_lower, lp->bb_basis->is_lower, lp->sum + 1); +#else + for(i = 1; i <= lp->sum; i++) + lp->is_lower[i] = is_biton(lp->bb_basis->is_lower, i); +#endif + set_action(&lp->spx_action, ACTION_REBASE | ACTION_REINVERT); + } + return( ok ); +} + +STATIC MYBOOL pop_basis(lprec *lp, MYBOOL restore) +/* Pop / free, and optionally restore the previously "pushed" / saved basis */ +{ + MYBOOL ok; + basisrec *oldbasis; + + ok = (MYBOOL) (lp->bb_basis != NULL); + if(ok) { + oldbasis = lp->bb_basis; + if(oldbasis != NULL) { + lp->bb_basis = oldbasis->previous; + FREE(oldbasis->var_basic); +#if BasisStorageModel == 0 + FREE(oldbasis->is_basic); +#endif + FREE(oldbasis->is_lower); + FREE(oldbasis); + } + if(restore && (lp->bb_basis != NULL)) + restore_basis(lp); + } + return( ok ); +} + +STATIC int unload_basis(lprec *lp, MYBOOL restorelast) +{ + int levelsunloaded = 0; + + if(lp->bb_basis != NULL) + while(pop_basis(lp, restorelast)) + levelsunloaded++; + return( levelsunloaded ); +} + + +STATIC LPSREAL scaled_floor(lprec *lp, int colnr, LPSREAL value, LPSREAL epsscale) +{ + value = floor(value); + if(value != 0) + if(lp->columns_scaled && is_integerscaling(lp)) { + value = scaled_value(lp, value, colnr); + if(epsscale != 0) + value += epsscale*lp->epsmachine; +/* value += epsscale*lp->epsprimal; */ +/* value = restoreINT(value, lp->epsint); */ + } + return(value); +} + +STATIC LPSREAL scaled_ceil(lprec *lp, int colnr, LPSREAL value, LPSREAL epsscale) +{ + value = ceil(value); + if(value != 0) + if(lp->columns_scaled && is_integerscaling(lp)) { + value = scaled_value(lp, value, colnr); + if(epsscale != 0) + value -= epsscale*lp->epsmachine; +/* value -= epsscale*lp->epsprimal; */ +/* value = restoreINT(value, lp->epsint); */ + } + return(value); +} + +/* Branch and bound variable selection functions */ + +STATIC MYBOOL is_sc_violated(lprec *lp, int column) +{ + int varno; + LPSREAL tmpreal; + + varno = lp->rows+column; + tmpreal = unscaled_value(lp, lp->sc_lobound[column], varno); + return( (MYBOOL) ((tmpreal > 0) && /* it is an (inactive) SC variable... */ + (lp->solution[varno] < tmpreal) && /* ...and the NZ lower bound is violated */ + (lp->solution[varno] > 0)) ); /* ...and the Z lowerbound is violated */ +} +STATIC int find_sc_bbvar(lprec *lp, int *count) +{ + int i, ii, n, bestvar; + int firstsc, lastsc; + LPSREAL hold, holdINT, bestval, OFval, randval, scval; + MYBOOL reversemode, greedymode, randomizemode, + pseudocostmode, pseudocostsel; + + bestvar = 0; + if((lp->sc_vars == 0) || (*count > 0)) + return(bestvar); + + reversemode = is_bb_mode(lp, NODE_WEIGHTREVERSEMODE); + greedymode = is_bb_mode(lp, NODE_GREEDYMODE); + randomizemode = is_bb_mode(lp, NODE_RANDOMIZEMODE); + pseudocostmode = is_bb_mode(lp, NODE_PSEUDOCOSTMODE); + pseudocostsel = is_bb_rule(lp, NODE_PSEUDOCOSTSELECT) || + is_bb_rule(lp, NODE_PSEUDONONINTSELECT) || + is_bb_rule(lp, NODE_PSEUDORATIOSELECT); + + bestvar = 0; + bestval = -lp->infinite; + hold = 0; + randval = 1; + firstsc = 0; + lastsc = lp->columns; + + for(n = 1; n <= lp->columns; n++) { + ii = get_var_priority(lp, n); + i = lp->rows + ii; + if(!lp->bb_varactive[ii] && is_sc_violated(lp, ii) && !SOS_is_marked(lp->SOS, 0, ii)) { + + /* Do tallies */ + (*count)++; + lastsc = i; + if(firstsc <= 0) + firstsc = i; + scval = get_pseudorange(lp->bb_PseudoCost, ii, BB_SC); + + /* Select default pricing/weighting mode */ + if(pseudocostmode) + OFval = get_pseudonodecost(lp->bb_PseudoCost, ii, BB_SC, lp->solution[i]); + else + OFval = my_chsign(is_maxim(lp), get_mat(lp, 0, ii)); + + if(randomizemode) + randval = exp(rand_uniform(lp, 1.0)); + + /* Find the maximum pseudo-cost of a variable (don't apply pseudocostmode here) */ + if(pseudocostsel) { + if(pseudocostmode) + hold = OFval; + else + hold = get_pseudonodecost(lp->bb_PseudoCost, ii, BB_SC, lp->solution[i]); + hold *= randval; + if(greedymode) { + if(pseudocostmode) /* Override! */ + OFval = my_chsign(is_maxim(lp), get_mat(lp, 0, ii)); + hold *= OFval; + } + hold = my_chsign(reversemode, hold); + } + else + /* Find the variable with the largest sc gap (closest to the sc mean) */ + if(is_bb_rule(lp, NODE_FRACTIONSELECT)) { + hold = modf(lp->solution[i]/scval, &holdINT); + holdINT = hold-1; + if(fabs(holdINT) > hold) + hold = holdINT; + if(greedymode) + hold *= OFval; + hold = my_chsign(reversemode, hold)*scval*randval; + } + else + /* Do first or last violated sc index selection (default) */ + /* if(is_bb_rule(lp, NODE_FIRSTSELECT)) */ + { + if(reversemode) + continue; + else { + bestvar = i; + break; + } + } + + /* Select better, check for ties, and split by proximity to 0.5*sc_lobound */ + if(hold > bestval) { + if( (bestvar == 0) || + (hold > bestval+lp->epsprimal) || + (fabs(modf(lp->solution[i]/scval, &holdINT) - 0.5) < + fabs(modf(lp->solution[bestvar]/ + get_pseudorange(lp->bb_PseudoCost, bestvar-lp->rows, BB_SC), &holdINT) - 0.5)) ) { + bestval = hold; + bestvar = i; + } + } + } + } + + if(is_bb_rule(lp, NODE_FIRSTSELECT) && reversemode) + bestvar = lastsc; + + return(bestvar); +} + +STATIC int find_sos_bbvar(lprec *lp, int *count, MYBOOL intsos) +{ + int k, i, j, var; + + var = 0; + if((lp->SOS == NULL) || (*count > 0)) + return(var); + + /* Check if the SOS'es happen to already be satisified */ + i = SOS_is_satisfied(lp->SOS, 0, lp->solution); + if((i == SOS_COMPLETE) || (i == SOS_INCOMPLETE)) + return(-1); + + /* Otherwise identify a SOS variable to enter B&B */ + for(k = 0; k < lp->sos_vars; k++) { + i = lp->sos_priority[k]; +#ifdef Paranoia + if((i < 1) || (i > lp->columns)) + report(lp, SEVERE, "find_sos_bbvar: Invalid SOS variable map %d at %d\n", + i, k); +#endif + j = lp->rows + i; + if(!SOS_is_marked(lp->SOS, 0, i) && !SOS_is_full(lp->SOS, 0, i, FALSE)) { +/* if(!SOS_is_marked(lp->SOS, 0, i) && !SOS_is_full(lp->SOS, 0, i, TRUE)) { */ + if(!intsos || is_int(lp, i)) { + (*count)++; + if(var == 0) { + var = j; + break; + } + } + } + } +#ifdef Paranoia + if((var > 0) && !SOS_is_member(lp->SOS, 0, var-lp->rows)) + report(lp, SEVERE, "find_sos_bbvar: Found variable %d, which is not a SOS!\n", var); +#endif + return(var); +} + +STATIC int find_int_bbvar(lprec *lp, int *count, BBrec *BB, MYBOOL *isfeasible) +{ + int i, ii, n, k, bestvar, depthmax, *nonint = NULL; + LPSREAL hold, holdINT, bestval, OFval, randval, + *lowbo = BB->lowbo, *upbo = BB->upbo; + MYBOOL reversemode, greedymode, depthfirstmode, breadthfirstmode, + randomizemode, rcostmode, + pseudocostmode, pseudocostsel, pseudostrong, isINT, valINT; + + if((lp->int_vars == 0) || (*count > 0)) + return( 0 ); + if(lp->bb_usenode != NULL) { + i = lp->bb_usenode(lp, lp->bb_nodehandle, BB_INT); + if(i >= 0) { + if(i > 0) + (*count)++; + return( i ); + } + } + + reversemode = is_bb_mode(lp, NODE_WEIGHTREVERSEMODE); + greedymode = is_bb_mode(lp, NODE_GREEDYMODE); + randomizemode = is_bb_mode(lp, NODE_RANDOMIZEMODE); + depthfirstmode = is_bb_mode(lp, NODE_DEPTHFIRSTMODE); + breadthfirstmode = is_bb_mode(lp, NODE_BREADTHFIRSTMODE) && + (MYBOOL) (lp->bb_level <= lp->int_vars); + rcostmode = (MYBOOL) /* FALSE */ (BB->lp->solutioncount > 0) && is_bb_mode(lp, NODE_RCOSTFIXING) ; /* 5/2/08 peno disabled NODE_RCOSTFIXING because it results in non-optimal solutions with some models */ /* 15/2/8 peno enabled NODE_RCOSTFIXING again because a fix is found. See lp_simplex.c NODE__RCOSTFIXING fix */ + pseudocostmode = is_bb_mode(lp, NODE_PSEUDOCOSTMODE); + pseudocostsel = is_bb_rule(lp, NODE_PSEUDOCOSTSELECT) || + is_bb_rule(lp, NODE_PSEUDONONINTSELECT) || + is_bb_rule(lp, NODE_PSEUDORATIOSELECT); + pseudostrong = FALSE && + pseudocostsel && !rcostmode && is_bb_mode(lp, NODE_STRONGINIT); + + /* Fill list of non-ints */ + allocINT(lp, &nonint, lp->columns + 1, FALSE); + n = 0; + depthmax = -1; + if(isfeasible != NULL) + *isfeasible = TRUE; + BB->lastrcf = 0; + for(k = 1; (k <= lp->columns); k++) { + ii = get_var_priority(lp, k); + isINT = is_int(lp,ii); + i = lp->rows + ii; + + /* Tally reduced cost fixing opportunities for ranged non-basic nonINTs */ + if(!isINT) { +#ifdef UseMilpExpandedRCF + if(rcostmode) { + bestvar = rcfbound_BB(BB, i, isINT, NULL, isfeasible); + if(bestvar != FR) + BB->lastrcf++; + } +#endif + } + else { + + valINT = solution_is_int(lp, i, FALSE); + + /* Skip already fixed variables */ + if(lowbo[i] == upbo[i]) { + + /* Check for validity */ +#ifdef Paranoia + if(!valINT) { + report(lp, IMPORTANT, + "find_int_bbvar: INT var %d was fixed at %d, but computed as %g at node %.0f\n", + ii, (int) lowbo[i], lp->solution[i], (double) lp->bb_totalnodes); + lp->bb_break = TRUE; + lp->spx_status = UNKNOWNERROR; + bestvar = 0; + goto Done; + } +#endif + } + + /* The variable has not yet been fixed */ + else { + + /* Tally reduced cost fixing opportunities (also when the + variables are integer-valued at the current relaxation) */ + if(rcostmode) { + bestvar = rcfbound_BB(BB, i, isINT, NULL, isfeasible); + if(bestvar != FR) + BB->lastrcf++; + } + else + bestvar = FR; + + /* Only qualify variable as branching node if it is non-integer and + it will not be subsequently fixed via reduced cost fixing logic */ + if(!valINT && (bestvar >= FR)) { + + n++; + nonint[n] = ii; + SETMAX(depthmax, lp->bb_varactive[ii]); + } + } + + } + } + +#ifdef UseMilpSlacksRCF + /* Optionally also tally slacks */ + if(rcostmode) { + for(i = 1; (i <= lp->rows) && (BB->lastrcf == 0); i++) { + /* Skip already fixed slacks (equalities) */ + if(lowbo[i] < upbo[i]) { + bestvar = rcfbound_BB(BB, i, FALSE, NULL, isfeasible); + if(bestvar != FR) + BB->lastrcf++; + } + } + } +#endif + nonint[0] = n; + *count = n; + bestvar = 0; + if(n == 0) /* No non-integers found */ + goto Done; + + bestval = -lp->infinite; + hold = 0; + randval = 1; + + /* Sort non-ints by depth in case we have breadthfirst or depthfirst modes */ + if((lp->bb_level > 1) && (depthmax > 0) && (depthfirstmode || breadthfirstmode)) { + int *depths = NULL; + + /* Fill attribute array and make sure ordinal order breaks ties during sort */ + allocINT(lp, &depths, n + 1, FALSE); + for(i = 1; i <= n; i++) + depths[i] = (depthfirstmode ? n+1-i : i) + (n+1)*lp->bb_varactive[nonint[i]]; + hpsortex(depths, n, 1, sizeof(*nonint), depthfirstmode, compareINT, nonint); + FREE(depths); + } + + /* Do simple firstselect handling */ + if(is_bb_rule(lp, NODE_FIRSTSELECT)) { + if(reversemode) + bestvar = lp->rows + nonint[nonint[0]]; + else + bestvar = lp->rows + nonint[1]; + } + + else for(n = 1; n <= nonint[0]; n++) { + ii = nonint[n]; + i = lp->rows + ii; + + /* Do the naive detection */ + if(n == 1) + bestvar = i; + + /* Should we do a "strong" pseudo-cost initialization or an incremental update? */ + if(pseudostrong && + (MAX(lp->bb_PseudoCost->LOcost[ii].rownr, + lp->bb_PseudoCost->UPcost[ii].rownr) < lp->bb_PseudoCost->updatelimit) && + (MAX(lp->bb_PseudoCost->LOcost[ii].colnr, + lp->bb_PseudoCost->UPcost[ii].colnr) < 5*lp->bb_PseudoCost->updatelimit)) { + strongbranch_BB(lp, BB, ii, BB_INT, nonint[0]); + } + + /* Select default pricing/weighting mode */ + if(pseudocostmode) + OFval = get_pseudonodecost(lp->bb_PseudoCost, ii, BB_INT, lp->solution[i]); + else + OFval = my_chsign(is_maxim(lp), get_mat(lp, 0, ii)); + + if(randomizemode) + randval = exp(rand_uniform(lp, 1.0)); + + /* Find the maximum pseudo-cost of a variable (don't apply pseudocostmode here) */ + if(pseudocostsel) { + if(pseudocostmode) + hold = OFval; + else + hold = get_pseudonodecost(lp->bb_PseudoCost, ii, BB_INT, lp->solution[i]); + hold *= randval; + if(greedymode) { + if(pseudocostmode) /* Override! */ + OFval = my_chsign(is_maxim(lp), get_mat(lp, 0, ii)); + hold *= OFval; + } + hold = my_chsign(reversemode, hold); + } + else + /* Find the variable with the largest gap to its bounds (distance from being fixed) */ + if(is_bb_rule(lp, NODE_GAPSELECT)) { + hold = lp->solution[i]; + holdINT = hold-unscaled_value(lp, upbo[i], i); + hold -= unscaled_value(lp, lowbo[i], i); + if(fabs(holdINT) > hold) + hold = holdINT; + if(greedymode) + hold *= OFval; + hold = my_chsign(reversemode, hold)*randval; + } + else + /* Find the variable with the largest integer gap (closest to 0.5) */ + if(is_bb_rule(lp, NODE_FRACTIONSELECT)) { + hold = modf(lp->solution[i], &holdINT); + holdINT = hold-1; + if(fabs(holdINT) > hold) + hold = holdINT; + if(greedymode) + hold *= OFval; + hold = my_chsign(reversemode, hold)*randval; + } + else + /* Find the "range", most flexible variable */ + if(is_bb_rule(lp, NODE_RANGESELECT)) { + hold = unscaled_value(lp, upbo[i]-lowbo[i], i); + if(greedymode) + hold *= OFval; + hold = my_chsign(reversemode, hold)*randval; + } + + /* Select better, check for ties, and split by proximity to 0.5 */ + if(hold > bestval) { + if( (hold > bestval+lp->epsprimal) || + (fabs(modf(lp->solution[i], &holdINT) - 0.5) < + fabs(modf(lp->solution[bestvar], &holdINT) - 0.5)) ) { + bestval = hold; + bestvar = i; + } + } + } + +Done: + FREE(nonint); + return(bestvar); +} + +STATIC BBPSrec *init_pseudocost(lprec *lp, int pseudotype) +{ + int i; + LPSREAL PSinitUP, PSinitLO; + BBPSrec *newitem; + MYBOOL isPSCount; + + /* Allocate memory */ + newitem = (BBPSrec*) malloc(sizeof(*newitem)); + newitem->lp = lp; + newitem->LOcost = (MATitem*) malloc((lp->columns+1) * sizeof(*newitem->LOcost)); + newitem->UPcost = (MATitem*) malloc((lp->columns+1) * sizeof(*newitem->UPcost)); + newitem->secondary = NULL; + + /* Initialize with OF values */ + newitem->pseodotype = (pseudotype & NODE_STRATEGYMASK); + isPSCount = ((pseudotype & NODE_PSEUDONONINTSELECT) != 0); + for(i = 1; i <= lp->columns; i++) { + newitem->LOcost[i].rownr = 1; /* Actual updates */ + newitem->LOcost[i].colnr = 1; /* Attempted updates */ + newitem->UPcost[i].rownr = 1; + newitem->UPcost[i].colnr = 1; + + /* Initialize with the plain OF value as conventional usage suggests, or + override in case of pseudo-nonint count strategy */ + PSinitUP = my_chsign(is_maxim(lp), get_mat(lp, 0, i)); + PSinitLO = -PSinitUP; + if(isPSCount) { + /* Set default assumed reduction in the number of non-ints by choosing this variable; + KE changed from 0 on 30 June 2004 and made two-sided selectable. Note that the + typical value range is <0..1>, with a positive bias for an "a priori" assumed + fast-converging (low "MIP-complexity") model. Very hard models may require + negative initialized values for one or both. */ + PSinitUP = 0.1*0; +#if 0 + PSinitUP = my_chsign(PSinitUP < 0, PSinitUP); + PSinitLO = -PSinitUP; +#else + PSinitLO = PSinitUP; +#endif + } + newitem->UPcost[i].value = PSinitUP; + newitem->LOcost[i].value = PSinitLO; + } + newitem->updatelimit = lp->bb_PseudoUpdates; + newitem->updatesfinished = 0; + newitem->restartlimit = DEF_PSEUDOCOSTRESTART; + + /* Let the user get an opportunity to initialize pseudocosts */ + if(userabort(lp, MSG_INITPSEUDOCOST)) + lp->spx_status = USERABORT; + + return( newitem ); +} + +STATIC MYBOOL free_pseudoclass(BBPSrec **PseudoClass) +{ + BBPSrec *target = *PseudoClass; + + FREE(target->LOcost); + FREE(target->UPcost); + target = target->secondary; + FREE(*PseudoClass); + *PseudoClass = target; + + return( (MYBOOL) (target != NULL) ); +} + +STATIC void free_pseudocost(lprec *lp) +{ + if((lp != NULL) && (lp->bb_PseudoCost != NULL)) { + while(free_pseudoclass(&(lp->bb_PseudoCost)) ); + } +} + +MYBOOL __WINAPI set_pseudocosts(lprec *lp, LPSREAL *clower, LPSREAL *cupper, int *updatelimit) +{ + int i; + + if((lp->bb_PseudoCost == NULL) || ((clower == NULL) && (cupper == NULL))) + return(FALSE); + for(i = 1; i <= lp->columns; i++) { + if(clower != NULL) + lp->bb_PseudoCost->LOcost[i].value = clower[i]; + if(cupper != NULL) + lp->bb_PseudoCost->UPcost[i].value = cupper[i]; + } + if(updatelimit != NULL) + lp->bb_PseudoCost->updatelimit = *updatelimit; + return(TRUE); +} + +MYBOOL __WINAPI get_pseudocosts(lprec *lp, LPSREAL *clower, LPSREAL *cupper, int *updatelimit) +{ + int i; + + if((lp->bb_PseudoCost == NULL) || ((clower == NULL) && (cupper == NULL))) + return(FALSE); + for(i = 1; i <= lp->columns; i++) { + if(clower != NULL) + clower[i] = lp->bb_PseudoCost->LOcost[i].value; + if(cupper != NULL) + cupper[i] = lp->bb_PseudoCost->UPcost[i].value; + } + if(updatelimit != NULL) + *updatelimit = lp->bb_PseudoCost->updatelimit; + return(TRUE); +} + +STATIC LPSREAL get_pseudorange(BBPSrec *pc, int mipvar, int varcode) +{ + if(varcode == BB_SC) + return( unscaled_value(pc->lp, pc->lp->sc_lobound[mipvar], pc->lp->rows+mipvar) ); + else + return( 1.0 ); +} + +STATIC void update_pseudocost(BBPSrec *pc, int mipvar, int varcode, MYBOOL capupper, LPSREAL varsol) +{ + LPSREAL OFsol, uplim; + MATitem *PS; + MYBOOL nonIntSelect = is_bb_rule(pc->lp, NODE_PSEUDONONINTSELECT); + + /* Establish input values; + Note: The pseudocosts are normalized to the 0-1 range! */ + uplim = get_pseudorange(pc, mipvar, varcode); + varsol = modf(varsol/uplim, &OFsol); + + /* Set reference value according to pseudocost mode */ + if(nonIntSelect) + OFsol = pc->lp->bb_bounds->lastvarcus; /* The count of MIP infeasibilities */ + else + OFsol = pc->lp->solution[0]; /* The problem's objective function value */ + + if(isnan(varsol)) { + pc->lp->bb_parentOF = OFsol; + return; + } + + /* Point to the applicable (lower or upper) bound and increment attempted update count */ + if(capupper) { + PS = &pc->LOcost[mipvar]; + } + else { + PS = &pc->UPcost[mipvar]; + varsol = 1-varsol; + } + PS->colnr++; + + /* Make adjustment to divisor if we are using the ratio pseudo-cost approach */ + if(is_bb_rule(pc->lp, NODE_PSEUDORATIOSELECT)) + varsol *= capupper; + + /* Compute the update (consider weighting in favor of most recent) */ + mipvar = pc->updatelimit; + if(((mipvar <= 0) || (PS->rownr < mipvar)) && + (fabs(varsol) > pc->lp->epspivot)) { + /* We are interested in the change in the MIP measure (contribution to increase + or decrease, as the case may be) and not its last value alone. */ + PS->value = PS->value*PS->rownr + (pc->lp->bb_parentOF-OFsol) / (varsol*uplim); + PS->rownr++; + PS->value /= PS->rownr; + /* Check if we have enough information to restart */ + if(PS->rownr == mipvar) { + pc->updatesfinished++; + if(is_bb_mode(pc->lp, NODE_RESTARTMODE) && + (pc->updatesfinished/(2.0*pc->lp->int_vars) > + pc->restartlimit)) { + pc->lp->bb_break = AUTOMATIC; + pc->restartlimit *= 2.681; /* KE: Who can figure this one out? */ + if(pc->restartlimit > 1) + pc->lp->bb_rule -= NODE_RESTARTMODE; + report(pc->lp, NORMAL, "update_pseudocost: Restarting with updated pseudocosts\n"); + } + } + } + pc->lp->bb_parentOF = OFsol; +} + +STATIC LPSREAL get_pseudobranchcost(BBPSrec *pc, int mipvar, MYBOOL dofloor) +{ + if(dofloor) + return( pc->LOcost[mipvar].value ); + else + return( pc->UPcost[mipvar].value ); +} + +STATIC LPSREAL get_pseudonodecost(BBPSrec *pc, int mipvar, int vartype, LPSREAL varsol) +{ + LPSREAL hold, uplim; + + uplim = get_pseudorange(pc, mipvar, vartype); + varsol = modf(varsol/uplim, &hold); + if(isnan(varsol)) + varsol = 0; + + hold = pc->LOcost[mipvar].value*varsol + + pc->UPcost[mipvar].value*(1-varsol); + + return( hold*uplim ); +} + +STATIC int compute_theta(lprec *lp, int rownr, LREAL *theta, int isupbound, LPSREAL HarrisScalar, MYBOOL primal) +/* The purpose of this routine is to compute the non-basic bound state / value of + the leaving variable. Note that the incoming theta is "d" in Chvatal-terminology */ +{ + int colnr = lp->var_basic[rownr]; + register LREAL x = lp->rhs[rownr]; + LPSREAL lb = 0, /* Put lower bound here when the fully bounded version is implemented */ + ub = lp->upbo[colnr], + eps = lp->epsprimal; /* Primal feasibility tolerance */ + + /* Compute theta for the primal simplex */ + HarrisScalar *= eps; + if(primal) { + + if(*theta > 0) + x -= lb - HarrisScalar; /* A positive number */ + else if(ub < lp->infinite) + x -= ub + HarrisScalar; /* A negative number */ + else { + *theta = -lp->infinite; + return( colnr ); + } + } + /* Compute theta for the dual simplex */ + else { + + if(isupbound) + *theta = -(*theta); + + /* Current value is below or equal to its lower bound */ + if(x < lb+eps) + x -= lb - HarrisScalar; + + /* Current value is above or equal to its upper bound */ + else if(x > ub-eps) { + if(ub >= lp->infinite) { + *theta = lp->infinite * my_sign(*theta); + return( colnr ); + } + else + x -= ub + HarrisScalar; + } + } + my_roundzero(x, lp->epsmachine); + *theta = x / *theta; + +#ifdef EnforcePositiveTheta + /* Check if we have negative theta due to rounding or an internal error */ + if(*theta < 0) { + if(primal && (ub == lb)) + lp->rhs[rownr] = lb; + else +#ifdef Paranoia + if(*theta < -eps) { + report(lp, DETAILED, "compute_theta: Negative theta (%g) not allowed in base-0 version of lp_solve\n", + *theta); + } +#endif + *theta = 0; + } +#endif + + return( colnr ); +} + +STATIC MYBOOL check_degeneracy(lprec *lp, LPSREAL *pcol, int *degencount) +/* Check if the entering column Pi=Inv(B)*a is likely to produce improvement; + (cfr. Istvan Maros: CTOTSM p. 233) */ +{ + int i, ndegen; + LPSREAL *rhs, sdegen, epsmargin = lp->epsprimal; + + sdegen = 0; + ndegen = 0; + rhs = lp->rhs; + for(i = 1; i <= lp->rows; i++) { + rhs++; + pcol++; + if(fabs(*rhs) < epsmargin) { + sdegen += *pcol; + ndegen++; + } + else if(fabs((*rhs)-lp->upbo[lp->var_basic[i]]) < epsmargin) { + sdegen -= *pcol; + ndegen++; + } + } + if(degencount != NULL) + *degencount = ndegen; +/* sdegen += epsmargin*ndegen; */ + return( (MYBOOL) (sdegen <= 0) ); +} + +STATIC MYBOOL performiteration(lprec *lp, int rownr, int varin, LREAL theta, MYBOOL primal, MYBOOL allowminit, + LPSREAL *prow, int *nzprow, LPSREAL *pcol, int *nzpcol, int *boundswaps) +{ + int varout; + LPSREAL pivot, epsmargin, leavingValue, leavingUB, enteringUB; + MYBOOL leavingToUB = FALSE, enteringFromUB, enteringIsFixed, leavingIsFixed; + MYBOOL *islower = &(lp->is_lower[varin]); + MYBOOL minitNow = FALSE, minitStatus = ITERATE_MAJORMAJOR; + LREAL deltatheta = theta; + + if(userabort(lp, MSG_ITERATION)) + return( minitNow ); + +#ifdef Paranoia + if(rownr > lp->rows) { + if (lp->spx_trace) + report(lp, IMPORTANT, "performiteration: Numeric instability encountered!\n"); + lp->spx_status = NUMFAILURE; + return( FALSE ); + } +#endif + varout = lp->var_basic[rownr]; +#ifdef Paranoia + if(!lp->is_lower[varout]) + report(lp, SEVERE, "performiteration: Leaving variable %d was at its upper bound at iter %.0f\n", + varout, (double) get_total_iter(lp)); +#endif + + /* Theta is the largest change possible (strictest constraint) for the entering + variable (Theta is Chvatal's "t", ref. Linear Programming, pages 124 and 156) */ + lp->current_iter++; + + /* Test if it is possible to do a cheap "minor iteration"; i.e. set entering + variable to its opposite bound, without entering the basis - which is + obviously not possible for fixed variables! */ + epsmargin = lp->epsprimal; + enteringFromUB = !(*islower); + enteringUB = lp->upbo[varin]; + leavingUB = lp->upbo[varout]; + enteringIsFixed = (MYBOOL) (fabs(enteringUB) < epsmargin); + leavingIsFixed = (MYBOOL) (fabs(leavingUB) < epsmargin); +#if defined _PRICE_NOBOUNDFLIP + allowminit &= !ISMASKSET(lp->piv_strategy, PRICE_NOBOUNDFLIP); +#endif +#ifdef Paranoia + if(enteringUB < 0) + report(lp, SEVERE, "performiteration: Negative range for entering variable %d at iter %.0f\n", + varin, (double) get_total_iter(lp)); + if(leavingUB < 0) + report(lp, SEVERE, "performiteration: Negative range for leaving variable %d at iter %.0f\n", + varout, (double) get_total_iter(lp)); +#endif + + /* Handle batch bound swaps with the dual long-step algorithm; + Loop over specified bound swaps; update RHS and Theta for bound swaps */ + if((boundswaps != NULL) && (boundswaps[0] > 0)) { + + int i, boundvar; + LPSREAL *hold; + + /* Allocate and initialize accumulation array */ + allocREAL(lp, &hold, lp->rows + 1, TRUE); + + /* Accumulate effective bound swaps and update flag */ + for(i = 1; i <= boundswaps[0]; i++) { + boundvar = boundswaps[i]; + deltatheta = my_chsign(!lp->is_lower[boundvar], lp->upbo[boundvar]); + mat_multadd(lp->matA, hold, boundvar, deltatheta); + lp->is_lower[boundvar] = !lp->is_lower[boundvar]; + } + lp->current_bswap += boundswaps[0]; + lp->current_iter += boundswaps[0]; + + /* Solve for bound flip update vector (note that this does not + overwrite the stored update vector for the entering variable) */ + ftran(lp, hold, NULL, lp->epsmachine); + if(!lp->obj_in_basis) + hold[0] = 0; /* The correct reduced cost goes here (adjusted for bound state) ****** */ + + /* Update the RHS / basic variable values and set revised thetas */ + pivot = lp->bfp_pivotRHS(lp, 1, hold); + deltatheta = multi_enteringtheta(lp->longsteps); + theta = deltatheta; + + FREE(hold); + } + + /* Otherwise to traditional check for single bound swap */ + else if(allowminit && + !enteringIsFixed) { + +/* pivot = epsmargin; */ + pivot = lp->epsdual; +/* #define v51mode */ /* Enable this for v5.1 operation mode */ +#ifdef v51mode + if(((lp->simplex_mode & SIMPLEX_Phase1_DUAL) == 0) || + !is_constr_type(lp, rownr, EQ)) /* *** DEBUG CODE KE */ +#endif + if(enteringUB - theta < -pivot) { + +#ifndef v51mode + if(fabs(enteringUB - theta) < pivot) + minitStatus = ITERATE_MINORMAJOR; + else +#endif + minitStatus = ITERATE_MINORRETRY; + minitNow = (MYBOOL) (minitStatus != ITERATE_MAJORMAJOR); + } + } + + /* Process for traditional style single minor iteration */ + if(minitNow) { + + /* Set the new values (note that theta is set to always be positive) */ + theta = MIN(fabs(theta), enteringUB); + + /* Update the RHS / variable values and do bound-swap */ + pivot = lp->bfp_pivotRHS(lp, theta, NULL); + *islower = !(*islower); + + lp->current_bswap++; + + } + + /* Process for major iteration */ + else { + + /* Update the active pricer for the current pivot */ + updatePricer(lp, rownr, varin, lp->bfp_pivotvector(lp), prow, nzprow); + + /* Update the current basic variable values */ + pivot = lp->bfp_pivotRHS(lp, theta, NULL); + + /* See if the leaving variable goes directly to its upper bound. */ + leavingValue = lp->rhs[rownr]; + leavingToUB = (MYBOOL) (leavingValue > 0.5*leavingUB); + lp->is_lower[varout] = leavingIsFixed || !leavingToUB; + + /* Set the value of the entering varible (theta always set to be positive) */ + if(enteringFromUB) { + lp->rhs[rownr] = enteringUB - deltatheta; + *islower = TRUE; + } + else + lp->rhs[rownr] = deltatheta; + my_roundzero(lp->rhs[rownr], epsmargin); + + /* Update basis indeces */ + varout = set_basisvar(lp, rownr, varin); + + /* Finalize the update in preparation for next major iteration */ + lp->bfp_finishupdate(lp, enteringFromUB); + + } + + /* Show pivot tracking information, if specified */ + if((lp->verbose > NORMAL) && (MIP_count(lp) == 0) && + ((lp->current_iter % MAX(2, lp->rows / 10)) == 0)) + report(lp, NORMAL, "Objective value " RESULTVALUEMASK " at iter %10.0f.\n", + lp->rhs[0], (double) get_total_iter(lp)); + +#if 0 + if(verify_solution(lp, FALSE, my_if(minitNow, "MINOR", "MAJOR")) >= 0) { + if(minitNow) + pivot = get_obj_active(lp, varin); + else + pivot = get_obj_active(lp, varout); + } +#endif +#if 0 + if((lp->longsteps != NULL) && (boundswaps[0] > 0) && lp->longsteps->objcheck && + ((pivot = fabs(my_reldiff(lp->rhs[0], lp->longsteps->obj_last))) > lp->epssolution)) { + report(lp, IMPORTANT, "performiteration: Objective value gap %8.6f found at iter %6.0f (%d bound flips, %d)\n", + pivot, (double) get_total_iter(lp), boundswaps[0], enteringFromUB); + } +#endif + + if(lp->spx_trace) { + if(minitNow) + report(lp, NORMAL, "I:%5.0f - minor - %5d ignored, %5d flips from %s with THETA=%g and OBJ=%g\n", + (double) get_total_iter(lp), varout, varin, (enteringFromUB ? "UPPER" : "LOWER"), theta, lp->rhs[0]); + else + report(lp, NORMAL, "I:%5.0f - MAJOR - %5d leaves to %s, %5d enters from %s with THETA=%g and OBJ=%g\n", + (double) get_total_iter(lp), varout, (leavingToUB ? "UPPER" : "LOWER"), + varin, (enteringFromUB ? "UPPER" : "LOWER"), theta, lp->rhs[0]); + if(minitNow) { + if(!lp->is_lower[varin]) + report(lp, DETAILED, + "performiteration: Variable %d changed to its lower bound at iter %.0f (from %g)\n", + varin, (double) get_total_iter(lp), enteringUB); + else + report(lp, DETAILED, + "performiteration: Variable %d changed to its upper bound at iter %.0f (to %g)\n", + varin, (double) get_total_iter(lp), enteringUB); + } + else + report(lp, NORMAL, + "performiteration: Variable %d entered basis at iter %.0f at " RESULTVALUEMASK "\n", + varin, (double) get_total_iter(lp), lp->rhs[rownr]); + if(!primal) { + pivot = compute_feasibilitygap(lp, (MYBOOL)!primal, TRUE); + report(lp, NORMAL, "performiteration: Feasibility gap at iter %.0f is " RESULTVALUEMASK "\n", + (double) get_total_iter(lp), pivot); + } + else + report(lp, NORMAL, + "performiteration: Current objective function value at iter %.0f is " RESULTVALUEMASK "\n", + (double) get_total_iter(lp), lp->rhs[0]); + } + + return( minitStatus ); + +} /* performiteration */ + +STATIC LPSREAL get_refactfrequency(lprec *lp, MYBOOL final) +{ + COUNTER iters; + int refacts; + + /* Get numerator and divisor information */ + iters = (lp->total_iter+lp->current_iter) - (lp->total_bswap+lp->current_bswap); + refacts = lp->bfp_refactcount(lp, BFP_STAT_REFACT_TOTAL); + + /* Return frequency for different cases: + 1) Actual frequency in case final statistic is desired + 2) Dummy if we are in a B&B process + 3) Frequency with added initialization offsets which + are diluted in course of the solution process */ + if(final) + return( (LPSREAL) (iters) / MAX(1,refacts) ); + else if(lp->bb_totalnodes > 0) + return( (LPSREAL) lp->bfp_pivotmax(lp) ); + else + return( (LPSREAL) (lp->bfp_pivotmax(lp)+iters) / (1+refacts) ); +} + +#if 0 +/* INLINE */ MYBOOL is_fixedvar(lprec *lp, int variable) +{ + if((lp->bb_bounds != NULL && lp->bb_bounds->UBzerobased) || (variable <= lp->rows)) + return( (MYBOOL) (lp->upbo[variable] < lp->epsprimal) ); + else + return( (MYBOOL) (lp->upbo[variable]-lp->lowbo[variable] < lp->epsprimal) ); +} /* is_fixedvar */ +#else +MYBOOL is_fixedvar(lprec *lp, int varnr) +{ + if(lp->bb_bounds == NULL) { + if(varnr <= lp->rows) + return( (MYBOOL) (lp->orig_upbo[varnr] < lp->epsmachine) ); + else + return( (MYBOOL) (lp->orig_upbo[varnr]-lp->orig_lowbo[varnr] < lp->epsmachine) ); + } + else if((varnr <= lp->rows) || (lp->bb_bounds->UBzerobased == TRUE)) + return( (MYBOOL) (lp->upbo[varnr] < lp->epsvalue) ); + else + return( (MYBOOL) (lp->upbo[varnr]-lp->lowbo[varnr] < lp->epsvalue) ); +} +#endif + +STATIC MYBOOL solution_is_int(lprec *lp, int index, MYBOOL checkfixed) +{ +#if 1 + return( (MYBOOL) (isINT(lp, lp->solution[index]) && (!checkfixed || is_fixedvar(lp, index))) ); +#else + if(isINT(lp, lp->solution[index])) { + if(checkfixed) + return(is_fixedvar(lp, index)); + else + return(TRUE); + } + return(FALSE); +#endif +} /* solution_is_int */ + + +MYBOOL __WINAPI set_multiprice(lprec *lp, int multiblockdiv) +{ + /* See if we are resetting multiply priced column structures */ + if(multiblockdiv != lp->multiblockdiv) { + if(multiblockdiv < 1) + multiblockdiv = 1; + lp->multiblockdiv = multiblockdiv; + multi_free(&(lp->multivars)); + } + return( TRUE ); +} + +int __WINAPI get_multiprice(lprec *lp, MYBOOL getabssize) +{ + if((lp->multivars == NULL) || (lp->multivars->used == 0)) + return( 0 ); + if(getabssize) + return( lp->multivars->size ); + else + return( lp->multiblockdiv ); +} + +MYBOOL __WINAPI set_partialprice(lprec *lp, int blockcount, int *blockstart, MYBOOL isrow) +{ + int ne, i, items; + partialrec **blockdata; + + /* Determine partial target (rows or columns) */ + if(isrow) + blockdata = &(lp->rowblocks); + else + blockdata = &(lp->colblocks); + + /* See if we are resetting partial blocks */ + ne = 0; + items = IF(isrow, lp->rows, lp->columns); + if(blockcount == 1) + partial_freeBlocks(blockdata); + + /* Set a default block count if this was not specified */ + else if(blockcount <= 0) { + blockstart = NULL; + if(items < DEF_PARTIALBLOCKS*DEF_PARTIALBLOCKS) + blockcount = items / DEF_PARTIALBLOCKS + 1; + else + blockcount = DEF_PARTIALBLOCKS; + ne = items / blockcount; + if(ne * blockcount < items) + ne++; + } + + /* Fill partial block arrays; + Note: These will be modified during preprocess to reflect + presolved columns and the handling of slack variables. */ + if(blockcount > 1) { + MYBOOL isNew = (MYBOOL) (*blockdata == NULL); + + /* Provide for extra block with slack variables in the column mode */ + i = 0; + if(!isrow) + i++; + + /* (Re)-allocate memory */ + if(isNew) + *blockdata = partial_createBlocks(lp, isrow); + allocINT(lp, &((*blockdata)->blockend), blockcount+i+1, AUTOMATIC); + allocINT(lp, &((*blockdata)->blockpos), blockcount+i+1, AUTOMATIC); + + /* Copy the user-provided block start positions */ + if(blockstart != NULL) { + MEMCOPY((*blockdata)->blockend+i, blockstart, blockcount+i+1); + if(!isrow) { + blockcount++; + (*blockdata)->blockend[0] = 1; + for(i = 1; i < blockcount; i++) + (*blockdata)->blockend[i] += lp->rows; + } + } + + /* Fill the block ending positions if they were not specified */ + else { + (*blockdata)->blockend[0] = 1; + (*blockdata)->blockpos[0] = 1; + if(ne == 0) { + ne = items / blockcount; + /* Increase the block size if we have a fractional value */ + while(ne * blockcount < items) + ne++; + } + i = 1; + if(!isrow) { + (*blockdata)->blockend[i] = (*blockdata)->blockend[i-1]+lp->rows; + blockcount++; + i++; + items += lp->rows; + } + for(; i < blockcount; i++) + (*blockdata)->blockend[i] = (*blockdata)->blockend[i-1]+ne; + + /* Let the last block handle the "residual" */ + (*blockdata)->blockend[blockcount] = items+1; + } + + /* Fill starting positions (used in multiple partial pricing) */ + for(i = 1; i <= blockcount; i++) + (*blockdata)->blockpos[i] = (*blockdata)->blockend[i-1]; + + } + + /* Update block count */ + (*blockdata)->blockcount = blockcount; + + + return( TRUE ); +} /* set_partialprice */ + +void __WINAPI get_partialprice(lprec *lp, int *blockcount, int *blockstart, MYBOOL isrow) +{ + partialrec *blockdata; + + /* Determine partial target (rows or columns) */ + if(isrow) + blockdata = lp->rowblocks; + else + blockdata = lp->colblocks; + + *blockcount = partial_countBlocks(lp, isrow); + if((blockdata != NULL) && (blockstart != NULL)) { + int i = 0, k = *blockcount; + if(!isrow) + i++; + MEMCOPY(blockstart, blockdata->blockend + i, k - i); + if(!isrow) { + k -= i; + for(i = 0; i < k; i++) + blockstart[i] -= lp->rows; + } + } +} + + +/* Solution-related functions */ +STATIC MYBOOL bb_better(lprec *lp, int target, int mode) +/* Must handle four modes (logic assumes Min!): + -----|--.--|-----> + 1 ++++++----------- LHS exclusive test point is better + 2 +++++++++-------- LHS inclusive + 3 ++++++-----++++++ LHS+RHS exclusive + 4 --------+++++++++ RHS inclusive + 5 -----------++++++ RHS exclusive +*/ +{ + LPSREAL epsvalue, offset = lp->epsprimal, + refvalue = lp->infinite, testvalue = lp->solution[0]; + MYBOOL ismax = is_maxim(lp), + relgap = is_action(mode, OF_TEST_RELGAP), + fcast = is_action(target, OF_PROJECTED), + delta = is_action(target, OF_DELTA); + + if(relgap) { + epsvalue = lp->mip_relgap; + clear_action(&mode, OF_TEST_RELGAP); + } + else + epsvalue = lp->mip_absgap; + + if(delta) + clear_action(&target, OF_DELTA); + if(fcast) + clear_action(&target, OF_PROJECTED); +#ifdef Paranoia + if((mode < OF_TEST_BT) || (mode > OF_TEST_WT)) + report(lp, SEVERE, "bb_better: Passed invalid mode '%d'\n", mode); +#endif + + switch(target) { + case OF_RELAXED: refvalue = lp->real_solution; + break; + case OF_INCUMBENT: refvalue = lp->best_solution[0]; + break; + case OF_WORKING: refvalue = my_chsign(!ismax, lp->bb_workOF /* unscaled_value(lp, lp->bb_workOF, 0) */ ); + if(fcast) + testvalue = my_chsign(!ismax, lp->longsteps->obj_last) - epsvalue; + else + testvalue = my_chsign(!ismax, lp->rhs[0] /* unscaled_value(lp, lp->rhs[0], 0) */); + break; + case OF_USERBREAK: refvalue = lp->bb_breakOF; + break; + case OF_HEURISTIC: refvalue = lp->bb_heuristicOF; + break; + case OF_DUALLIMIT: refvalue = lp->bb_limitOF; + break; + default : report(lp, SEVERE, "bb_better: Passed invalid test target '%d'\n", target); + return( FALSE ); + } + + /* Adjust the test value for the desired acceptability window */ + if(delta) { + SETMAX(epsvalue, lp->bb_deltaOF - epsvalue); + } + else + epsvalue = my_chsign(target >= OF_USERBREAK, epsvalue); /* *** This seems Ok, but should be verified */ + testvalue += my_chsign(ismax, epsvalue); + + /* Compute the raw test value */ + if(relgap) + testvalue = my_reldiff(testvalue, refvalue); + else + testvalue -= refvalue; + + /* Make test value adjustment based on the selected option */ + if(mode == OF_TEST_NE) + relgap = (MYBOOL) (fabs(testvalue) >= offset); + else { + testvalue = my_chsign(mode > OF_TEST_NE, testvalue); + testvalue = my_chsign(ismax, testvalue); + relgap = (MYBOOL) (testvalue < offset); + } + return( relgap ); +} + +STATIC void construct_solution(lprec *lp, LPSREAL *target) +{ + int i, j, basi; + LPSREAL f, epsvalue = lp->epsprimal; + LPSREAL *solution; + LPSREAL *value; + int *rownr; + MATrec *mat = lp->matA; + + if(target == NULL) + solution = lp->solution; + else + solution = target; + + /* Initialize OF and slack variables. */ + for(i = 0; i <= lp->rows; i++) { +#ifdef LegacySlackDefinition + if(i == 0) + f = unscaled_value(lp, -lp->orig_rhs[i], i); + else { + j = lp->presolve_undo->var_to_orig[i]; + if(j > 0) { + f = lp->presolve_undo->fixed_rhs[j]; + f = unscaled_value(lp, f, i); + } + else + f = 0; + } +#else + f = lp->orig_rhs[i]; + if((i > 0) && !lp->is_basic[i] && !lp->is_lower[i]) +#ifdef SlackInitMinusInf + f -= my_chsign(is_chsign(lp, i), fabs(lp->upbo[i])); +#else + f -= my_chsign(is_chsign(lp, i), fabs(lp->lowbo[i] + lp->upbo[i])); +#endif + f = unscaled_value(lp, -f, i); +#endif + solution[i] = f; + } + + /* Initialize user variables to their lower bounds. */ + for(i = lp->rows+1; i <= lp->sum; i++) + solution[i] = lp->lowbo[i]; + + /* Add values of user basic variables. */ + for(i = 1; i <= lp->rows; i++) { + basi = lp->var_basic[i]; + if(basi > lp->rows) { + solution[basi] += lp->rhs[i]; + } + } + + /* 1. Adjust non-basic variables at their upper bounds, + 2. Unscale all user variables, + 3. Optionally do precision management. */ + for(i = lp->rows + 1; i <= lp->sum; i++) { + if(!lp->is_basic[i] && !lp->is_lower[i]) + solution[i] += lp->upbo[i]; + solution[i] = unscaled_value(lp, solution[i], i); +#ifdef xImproveSolutionPrecision + if(is_int(lp, i-lp->rows)) + solution[i] = restoreINT(solution[i], lp->epsint); + else + solution[i] = restoreINT(solution[i], lp->epsprimal); +#endif + } + + /* Compute the OF and slack values "in extentio" */ + for(j = 1; j <= lp->columns; j++) { + f = solution[lp->rows + j]; + if(f != 0) { + solution[0] += f * unscaled_mat(lp, lp->orig_obj[j], 0, j); + i = mat->col_end[j-1]; + basi = mat->col_end[j]; + rownr = &COL_MAT_ROWNR(i); + value = &COL_MAT_VALUE(i); + for(; i < basi; + i++, rownr += matRowColStep, value += matValueStep) + solution[*rownr] += f * unscaled_mat(lp, *value, *rownr, j); + } + } + + /* Do slack precision management and sign reversal if necessary */ + for(i = 0; i <= lp->rows; i++) { +#ifdef ImproveSolutionPrecision + my_roundzero(solution[i], epsvalue); +#endif + if(is_chsign(lp, i)) + solution[i] = my_flipsign(solution[i]); + } + + /* Record the best real-valued solution and compute a simple MIP solution limit */ + if(target == NULL) { + if(is_infinite(lp, lp->real_solution)) { + lp->bb_workOF = lp->rhs[0]; + lp->real_solution = solution[0]; + if(is_infinite(lp, lp->bb_limitOF)) + lp->bb_limitOF = lp->real_solution; + else { + if(is_maxim(lp)) { + SETMIN(lp->bb_limitOF, lp->real_solution); + } + else { + SETMAX(lp->bb_limitOF, lp->real_solution); + } + } + + /* Do MIP-related tests and computations */ + if((lp->int_vars > 0) && mat_validate(lp->matA) /* && !lp->wasPresolved */) { /* && !lp->wasPresolved uncommented by findings of William H. Patton. The code was never executed when the test was there. The code has effect in an integer model with all integer objective coeff. to cut-off optimization and thus make it faster */ + LPSREAL fixedOF = unscaled_value(lp, lp->orig_rhs[0], 0); + + /* Check if we have an all-integer OF */ + basi = lp->columns; + for(j = 1; j <= basi; j++) { + f = fabs(get_mat(lp, 0, j)) + lp->epsint / 2; + if(f > lp->epsint) { /* If coefficient is 0 then it doesn't influence OF, even it variable is not integer */ + if(!is_int(lp, j) || (fmod(f, 1) > lp->epsint)) + break; + } + } + + /* If so, we can round up the fractional OF */ + if(j > basi) { + f = my_chsign(is_maxim(lp), lp->real_solution) + fixedOF; + f = floor(f+(1-epsvalue)); + f = my_chsign(is_maxim(lp), f - fixedOF); + if(is_infinite(lp, lp->bb_limitOF)) + lp->bb_limitOF = f; + else if(is_maxim(lp)) { + SETMIN(lp->bb_limitOF, f); + } + else { + SETMAX(lp->bb_limitOF, f); + } + } + } + + /* Check that a user limit on the OF is feasible */ + if((lp->int_vars > 0) && + (my_chsign(is_maxim(lp), my_reldiff(lp->best_solution[0],lp->bb_limitOF)) < -epsvalue)) { + lp->spx_status = INFEASIBLE; + lp->bb_break = TRUE; + } + } + } + +} /* construct_solution */ + +STATIC int check_solution(lprec *lp, int lastcolumn, LPSREAL *solution, + LPSREAL *upbo, LPSREAL *lowbo, LPSREAL tolerance) +{ +/*#define UseMaxValueInCheck*/ + MYBOOL isSC; + LPSREAL test, value, hold, diff, maxdiff = 0.0, maxerr = 0.0, *matValue, +#ifdef UseMaxValueInCheck + *maxvalue = NULL, +#else + *plusum = NULL, *negsum = NULL; +#endif + int i,j,n, errlevel = IMPORTANT, errlimit = 10, *matRownr, *matColnr; + MATrec *mat = lp->matA; + + report(lp, NORMAL, " \n"); + if(MIP_count(lp) > 0) + report(lp, NORMAL, "%s solution " RESULTVALUEMASK " after %10.0f iter, %9.0f nodes (gap %.1f%%).\n", + my_if(lp->bb_break && !bb_better(lp, OF_DUALLIMIT, OF_TEST_BE) && bb_better(lp, OF_RELAXED, OF_TEST_NE), "Subopt.", "Optimal"), + solution[0], (double) lp->total_iter, (double) lp->bb_totalnodes, + 100.0*fabs(my_reldiff(solution[0], lp->bb_limitOF))); + else + report(lp, NORMAL, "Optimal solution " RESULTVALUEMASK " after %10.0f iter.\n", + solution[0], (double) lp->total_iter); + + /* Find the signed sums and the largest absolute product in the matrix (exclude the OF for speed) */ +#ifdef UseMaxValueInCheck + allocREAL(lp, &maxvalue, lp->rows + 1, FALSE); + for(i = 0; i <= lp->rows; i++) + maxvalue[i] = fabs(get_rh(lp, i)); +#else + allocREAL(lp, &plusum, lp->rows + 1, TRUE); + allocREAL(lp, &negsum, lp->rows + 1, TRUE); +#endif + n = get_nonzeros(lp); + matRownr = &COL_MAT_ROWNR(0); + matColnr = &COL_MAT_COLNR(0); + matValue = &COL_MAT_VALUE(0); + for(i = 0; i < n; i++, matRownr += matRowColStep, + matColnr += matRowColStep, + matValue += matValueStep) { + test = unscaled_mat(lp, *matValue, *matRownr, *matColnr); + test *= solution[lp->rows + (*matColnr)]; +#ifdef UseMaxValueInCheck + test = fabs(test); + if(test > maxvalue[*matRownr]) + maxvalue[*matRownr] = test; +#else + if(test > 0) + plusum[*matRownr] += test; + else + negsum[*matRownr] += test; +#endif + } + + + /* Check if solution values are within the bounds; allowing a margin for numeric errors */ + n = 0; + for(i = lp->rows + 1; i <= lp->rows+lastcolumn; i++) { + + value = solution[i]; + + /* Check for case where we are testing an intermediate solution + (variables shifted to the origin) */ + if(lowbo == NULL) + test = 0; + else + test = unscaled_value(lp, lowbo[i], i); + + isSC = is_semicont(lp, i - lp->rows); + diff = my_reldiff(value, test); + if(diff < 0) { + if(isSC && (value < test/2)) + test = 0; + SETMAX(maxerr, fabs(value-test)); + SETMAX(maxdiff, fabs(diff)); + } + if((diff < -tolerance) && !isSC) { + if(n < errlimit) + report(lp, errlevel, + "check_solution: Variable %s = " RESULTVALUEMASK " is below its lower bound " RESULTVALUEMASK "\n", + get_col_name(lp, i-lp->rows), value, test); + n++; + } + + test = unscaled_value(lp, upbo[i], i); + diff = my_reldiff(value, test); + if(diff > 0) { + SETMAX(maxerr, fabs(value-test)); + SETMAX(maxdiff, fabs(diff)); + } + if(diff > tolerance) { + if(n < errlimit) + report(lp, errlevel, + "check_solution: Variable %s = " RESULTVALUEMASK " is above its upper bound " RESULTVALUEMASK "\n", + get_col_name(lp, i-lp->rows), value, test); + n++; + } + } + + /* Check if constraint values are within the bounds; allowing a margin for numeric errors */ + for(i = 1; i <= lp->rows; i++) { + + test = lp->orig_rhs[i]; + if(is_infinite(lp, test)) + continue; + +#ifdef LegacySlackDefinition + j = lp->presolve_undo->var_to_orig[i]; + if(j != 0) { + if(is_infinite(lp, lp->presolve_undo->fixed_rhs[j])) + continue; + test += lp->presolve_undo->fixed_rhs[j]; + } +#endif + + if(is_chsign(lp, i)) { + test = my_flipsign(test); + test += fabs(upbo[i]); + } + value = solution[i]; + test = unscaled_value(lp, test, i); +#ifndef LegacySlackDefinition + value += test; +#endif +/* diff = my_reldiff(value, test); */ +#ifdef UseMaxValueInCheck + hold = maxvalue[i]; +#else + hold = plusum[i] - negsum[i]; +#endif + if(hold < lp->epsvalue) + hold = 1; + diff = my_reldiff((value+1)/hold, (test+1)/hold); + if(diff > 0) { + SETMAX(maxerr, fabs(value-test)); + SETMAX(maxdiff, fabs(diff)); + } + if(diff > tolerance) { + if(n < errlimit) + report(lp, errlevel, + "check_solution: Constraint %s = " RESULTVALUEMASK " is above its %s " RESULTVALUEMASK "\n", + get_row_name(lp, i), value, + (is_constr_type(lp, i, EQ) ? "equality of" : "upper bound"), test); + n++; + } + + test = lp->orig_rhs[i]; +#ifdef LegacySlackDefinition + j = lp->presolve_undo->var_to_orig[i]; + if(j != 0) { + if(is_infinite(lp, lp->presolve_undo->fixed_rhs[j])) + continue; + test += lp->presolve_undo->fixed_rhs[j]; + } +#endif + + value = solution[i]; + if(is_chsign(lp, i)) + test = my_flipsign(test); + else { + if(is_infinite(lp, upbo[i])) + continue; + test -= fabs(upbo[i]); +#ifndef LegacySlackDefinition + value = fabs(upbo[i]) - value; +#endif + } + test = unscaled_value(lp, test, i); +#ifndef LegacySlackDefinition + value += test; +#endif +/* diff = my_reldiff(value, test); */ +#ifdef UseMaxValueInCheck + hold = maxvalue[i]; +#else + hold = plusum[i] - negsum[i]; +#endif + if(hold < lp->epsvalue) + hold = 1; + diff = my_reldiff((value+1)/hold, (test+1)/hold); + if(diff < 0) { + SETMAX(maxerr, fabs(value-test)); + SETMAX(maxdiff, fabs(diff)); + } + if(diff < -tolerance) { + if(n < errlimit) + report(lp, errlevel, + "check_solution: Constraint %s = " RESULTVALUEMASK " is below its %s " RESULTVALUEMASK "\n", + get_row_name(lp, i), value, + (is_constr_type(lp, i, EQ) ? "equality of" : "lower bound"), test); + n++; + } + } + +#ifdef UseMaxValueInCheck + FREE(maxvalue); +#else + FREE(plusum); + FREE(negsum); +#endif + + if(n > 0) { + report(lp, IMPORTANT, "\nSeriously low accuracy found ||*|| = %g (rel. error %g)\n", + maxerr, maxdiff); + return(NUMFAILURE); + } + else { + if(maxerr > 1.0e-7) + report(lp, NORMAL, "\nMarginal numeric accuracy ||*|| = %g (rel. error %g)\n", + maxerr, maxdiff); + else if(maxerr > 1.0e-9) + report(lp, NORMAL, "\nReasonable numeric accuracy ||*|| = %g (rel. error %g)\n", + maxerr, maxdiff); + else if(maxerr > 1.0e11) + report(lp, NORMAL, "\nVery good numeric accuracy ||*|| = %g\n", maxerr); + else + report(lp, NORMAL, "\nExcellent numeric accuracy ||*|| = %g\n", maxerr); + + return(OPTIMAL); + } + +} /* check_solution */ + +STATIC void transfer_solution_var(lprec *lp, int uservar) +{ + if(lp->varmap_locked && (MYBOOL) ((lp->do_presolve & PRESOLVE_LASTMASKMODE) != PRESOLVE_NONE)) { + uservar += lp->rows; + lp->full_solution[lp->presolve_undo->orig_rows + + lp->presolve_undo->var_to_orig[uservar]] = lp->best_solution[uservar]; + } +} +STATIC void transfer_solution(lprec *lp, MYBOOL dofinal) +{ + int i, ii; + + MEMCOPY(lp->best_solution, lp->solution, lp->sum + 1); + + /* Round integer solution values to actual integers */ + if(is_integerscaling(lp) && (lp->int_vars > 0)) + for(i = 1; i <= lp->columns; i++) { + if(is_int(lp, i)) { + ii = lp->rows + i; + lp->best_solution[ii] = floor(lp->best_solution[ii] + 0.5); + } + } + + /* Transfer to full solution vector in the case of presolved eliminations */ + if(dofinal && lp->varmap_locked && + (MYBOOL) ((lp->do_presolve & PRESOLVE_LASTMASKMODE) != PRESOLVE_NONE)) { + presolveundorec *psundo = lp->presolve_undo; + + lp->full_solution[0] = lp->best_solution[0]; + for(i = 1; i <= lp->rows; i++) { + ii = psundo->var_to_orig[i]; +#ifdef Paranoia + if((ii < 0) || (ii > lp->presolve_undo->orig_rows)) + report(lp, SEVERE, "transfer_solution: Invalid mapping of row index %d to original index '%d'\n", + i, ii); +#endif + lp->full_solution[ii] = lp->best_solution[i]; + } + for(i = 1; i <= lp->columns; i++) { + ii = psundo->var_to_orig[lp->rows+i]; +#ifdef Paranoia + if((ii < 0) || (ii > lp->presolve_undo->orig_columns)) + report(lp, SEVERE, "transfer_solution: Invalid mapping of column index %d to original index '%d'\n", + i, ii); +#endif + lp->full_solution[psundo->orig_rows+ii] = lp->best_solution[lp->rows+i]; + } + } + +} + +STATIC MYBOOL construct_duals(lprec *lp) +{ + int i, n, *coltarget; + LPSREAL scale0, value, dualOF; + + if(lp->duals != NULL) + free_duals(lp); + + if(is_action(lp->spx_action, ACTION_REBASE) || + is_action(lp->spx_action, ACTION_REINVERT) || (!lp->basis_valid) || + !allocREAL(lp, &(lp->duals), lp->sum + 1, AUTOMATIC)) + return(FALSE); + + /* Initialize */ + coltarget = (int *) mempool_obtainVector(lp->workarrays, lp->columns+1, sizeof(*coltarget)); + if(!get_colIndexA(lp, SCAN_USERVARS+USE_NONBASICVARS, coltarget, FALSE)) { + mempool_releaseVector(lp->workarrays, (char *) coltarget, FALSE); + return(FALSE); + } + bsolve(lp, 0, lp->duals, NULL, lp->epsmachine*DOUBLEROUND, 1.0); + prod_xA(lp, coltarget, lp->duals, NULL, lp->epsmachine, 1.0, + lp->duals, NULL, MAT_ROUNDDEFAULT | MAT_ROUNDRC); + mempool_releaseVector(lp->workarrays, (char *) coltarget, FALSE); + + + /* The (Lagrangean) dual values are the reduced costs of the primal slacks; + when the slack is at its upper bound, change the sign. */ + n = lp->rows; + for(i = 1; i <= n; i++) { + if(lp->is_basic[i]) + lp->duals[i] = 0; + /* Added a test if variable is different from 0 because sometime you get -0 and this + is different from 0 on for example INTEL processors (ie 0 != -0 on INTEL !) PN */ + else if((is_chsign(lp, 0) == is_chsign(lp, i)) && lp->duals[i]) + lp->duals[i] = my_flipsign(lp->duals[i]); + } + if(is_maxim(lp)) { + n = lp->sum; + for(i = lp->rows + 1; i <= n; i++) + lp->duals[i] = my_flipsign(lp->duals[i]); + } + + /* If we presolved, then reconstruct the duals */ + n = lp->presolve_undo->orig_sum; + if(((lp->do_presolve & PRESOLVE_LASTMASKMODE) != PRESOLVE_NONE) && + allocREAL(lp, &(lp->full_duals), n + 1, TRUE)) { + int ix, ii = lp->presolve_undo->orig_rows; + + n = lp->sum; + for(ix = 1; ix <= n; ix++) { + i = lp->presolve_undo->var_to_orig[ix]; + if(ix > lp->rows) + i += ii; +#ifdef Paranoia + /* Check for index out of range due to presolve */ + if(i > lp->presolve_undo->orig_sum) + report(lp, SEVERE, "construct_duals: Invalid presolve variable mapping found\n"); +#endif + lp->full_duals[i] = lp->duals[ix]; + } + presolve_rebuildUndo(lp, FALSE); + } + + /* Calculate the dual OF and do scaling adjustments to the duals */ + if(lp->scaling_used) + scale0 = lp->scalars[0]; + else + scale0 = 1; + dualOF = my_chsign(is_maxim(lp), lp->orig_rhs[0]) / scale0; + for(i = 1; i <= lp->sum; i++) { + value = scaled_value(lp, lp->duals[i] / scale0, i); + my_roundzero(value, lp->epsprimal); + lp->duals[i] = value; + if(i <= lp->rows) + dualOF += value * lp->solution[i]; + } + +#if 0 + /* See if we can make use of the dual OF; + note that we do not currently adjust properly for presolve */ + if(lp->rows == lp->presolve_undo->orig_rows) + if(MIP_count(lp) > 0) { + if(is_maxim(lp)) { + SETMIN(lp->bb_limitOF, dualOF); + } + else { + SETMAX(lp->bb_limitOF, dualOF); + } + } + else if(fabs(my_reldiff(dualOF, lp->solution[0])) > lp->epssolution) + report(lp, IMPORTANT, "calculate_duals: Check for possible suboptimal solution!\n"); +#endif + + return(TRUE); +} /* construct_duals */ + +/* Calculate sensitivity duals */ +STATIC MYBOOL construct_sensitivity_duals(lprec *lp) +{ + int k,varnr, ok = TRUE; + int *workINT = NULL; + LPSREAL *pcol,a,infinite,epsvalue,from,till,objfromvalue; + + /* one column of the matrix */ + FREE(lp->objfromvalue); + FREE(lp->dualsfrom); + FREE(lp->dualstill); + if(!allocREAL(lp, &pcol, lp->rows + 1, TRUE) || + !allocREAL(lp, &lp->objfromvalue, lp->columns + 1, AUTOMATIC) || + !allocREAL(lp, &lp->dualsfrom, lp->sum + 1, AUTOMATIC) || + !allocREAL(lp, &lp->dualstill, lp->sum + 1, AUTOMATIC)) { + FREE(pcol); + FREE(lp->objfromvalue); + FREE(lp->dualsfrom); + FREE(lp->dualstill); + ok = FALSE; + } + else { + infinite=lp->infinite; + epsvalue=lp->epsmachine; + for(varnr=1; varnr<=lp->sum; varnr++) { + from=infinite; + till=infinite; + objfromvalue=infinite; + if (!lp->is_basic[varnr]) { + if (!fsolve(lp, varnr, pcol, workINT, epsvalue, 1.0, FALSE)) { /* construct one column of the tableau */ + ok = FALSE; + break; + } + /* Search for the rows(s) which first result in further iterations */ + for (k=1; k<=lp->rows; k++) { + if (fabs(pcol[k])>epsvalue) { + a = lp->rhs[k]/pcol[k]; + if((varnr > lp->rows) && (fabs(lp->solution[varnr]) <= epsvalue) && (a < objfromvalue) && (a >= lp->lowbo[varnr])) + objfromvalue = a; + if ((a<=0.0) && (pcol[k]<0.0) && (-a=0.0) && (pcol[k]>0.0) && ( aupbo[lp->var_basic[k]] < infinite) { + a = (LPSREAL) ((lp->rhs[k]-lp->upbo[lp->var_basic[k]])/pcol[k]); + if((varnr > lp->rows) && (fabs(lp->solution[varnr]) <= epsvalue) && (a < objfromvalue) && (a >= lp->lowbo[varnr])) + objfromvalue = a; + if ((a<=0.0) && (pcol[k]>0.0) && (-a=0.0) && (pcol[k]<0.0) && ( ais_lower[varnr]) { + a=from; + from=till; + till=a; + } + if ((varnr<=lp->rows) && (!is_chsign(lp, varnr))) { + a=from; + from=till; + till=a; + } + } + + if (from!=infinite) + lp->dualsfrom[varnr]=lp->solution[varnr]-unscaled_value(lp, from, varnr); + else + lp->dualsfrom[varnr]=-infinite; + if (till!=infinite) + lp->dualstill[varnr]=lp->solution[varnr]+unscaled_value(lp, till, varnr); + else + lp->dualstill[varnr]=infinite; + + if (varnr > lp->rows) { + if (objfromvalue != infinite) { + if ((!sensrejvar) || (lp->upbo[varnr] != 0.0)) { + if (!lp->is_lower[varnr]) + objfromvalue = lp->upbo[varnr] - objfromvalue; + if ((lp->upbo[varnr] < infinite) && (objfromvalue > lp->upbo[varnr])) + objfromvalue = lp->upbo[varnr]; + } + objfromvalue += lp->lowbo[varnr]; + objfromvalue = unscaled_value(lp, objfromvalue, varnr); + } + else + objfromvalue = -infinite; + lp->objfromvalue[varnr - lp->rows] = objfromvalue; + } + + } + FREE(pcol); + } + return((MYBOOL) ok); +} /* construct_sensitivity_duals */ + +/* Calculate sensitivity objective function */ +STATIC MYBOOL construct_sensitivity_obj(lprec *lp) +{ + int i, l, varnr, row_nr, ok = TRUE; + LPSREAL *OrigObj = NULL, *drow = NULL, *prow = NULL, + sign, a, min1, min2, infinite, epsvalue, from, till; + + /* objective function */ + FREE(lp->objfrom); + FREE(lp->objtill); + if(!allocREAL(lp, &drow, lp->sum + 1, TRUE) || + !allocREAL(lp, &OrigObj, lp->columns + 1, FALSE) || + !allocREAL(lp, &prow, lp->sum + 1, TRUE) || + !allocREAL(lp, &lp->objfrom, lp->columns + 1, AUTOMATIC) || + !allocREAL(lp, &lp->objtill, lp->columns + 1, AUTOMATIC)) { +Abandon: + FREE(drow); + FREE(OrigObj); + FREE(prow); + FREE(lp->objfrom); + FREE(lp->objtill); + ok = FALSE; + } + else { + int *coltarget; + + infinite=lp->infinite; + epsvalue=lp->epsmachine; + + coltarget = (int *) mempool_obtainVector(lp->workarrays, lp->columns+1, sizeof(*coltarget)); + if(!get_colIndexA(lp, SCAN_USERVARS+USE_NONBASICVARS, coltarget, FALSE)) { + mempool_releaseVector(lp->workarrays, (char *) coltarget, FALSE); + goto Abandon; + } + bsolve(lp, 0, drow, NULL, epsvalue*DOUBLEROUND, 1.0); + prod_xA(lp, coltarget, drow, NULL, epsvalue, 1.0, + drow, NULL, MAT_ROUNDDEFAULT | MAT_ROUNDRC); + + /* original (unscaled) objective function */ + get_row(lp, 0, OrigObj); + for(i = 1; i <= lp->columns; i++) { + from=-infinite; + till= infinite; + varnr = lp->rows + i; + if(!lp->is_basic[varnr]) { + /* only the coeff of the objective function of column i changes. */ + a = unscaled_mat(lp, drow[varnr], 0, i); + if(is_maxim(lp)) + a = -a; + if ((!sensrejvar) && (lp->upbo[varnr] == 0.0)) + /* ignore, because this case doesn't results in further iterations */ ; + else if(((lp->is_lower[varnr] != 0) == (is_maxim(lp) == FALSE)) && (a > -epsvalue)) + from = OrigObj[i] - a; /* less than this value gives further iterations */ + else + till = OrigObj[i] - a; /* bigger than this value gives further iterations */ + } + else { + /* all the coeff of the objective function change. Search the minimal change needed for further iterations */ + for(row_nr=1; + (row_nr<=lp->rows) && (lp->var_basic[row_nr]!=varnr); row_nr++) + /* Search on which row the variable exists in the basis */ ; + if(row_nr<=lp->rows) { /* safety test; should always be found ... */ + /* Construct one row of the tableau */ + bsolve(lp, row_nr, prow, NULL, epsvalue*DOUBLEROUND, 1.0); + prod_xA(lp, coltarget, prow, NULL, epsvalue, 1.0, + prow, NULL, MAT_ROUNDDEFAULT); + /* sign = my_chsign(is_chsign(lp, row_nr), -1); */ + sign = my_chsign(lp->is_lower[row_nr], -1); + min1=infinite; + min2=infinite; + for(l=1; l<=lp->sum; l++) /* search for the column(s) which first results in further iterations */ + if ((!lp->is_basic[l]) && (lp->upbo[l]>0.0) && + (fabs(prow[l])>epsvalue) && (drow[l]*(lp->is_lower[l] ? -1 : 1)is_lower[l] ? 1 : -1) < 0.0) { + if(a < min1) + min1 = a; + } + else { + if(a < min2) + min2 = a; + } + } + if ((lp->is_lower[varnr] == 0) == (is_maxim(lp) == FALSE)) { + a = min1; + min1 = min2; + min2 = a; + } + if (min1solution[varnr]; + if (is_maxim(lp)) { + if (a - lp->lowbo[varnr] < epsvalue) + from = -infinite; /* if variable is at lower bound then decrementing objective coefficient will not result in extra iterations because it would only extra decrease the value, but since it is at its lower bound ... */ + else if (((!sensrejvar) || (lp->upbo[varnr] != 0.0)) && (lp->lowbo[varnr] + lp->upbo[varnr] - a < epsvalue)) + till = infinite; /* if variable is at upper bound then incrementing objective coefficient will not result in extra iterations because it would only extra increase the value, but since it is at its upper bound ... */ + } + else { + if (a - lp->lowbo[varnr] < epsvalue) + till = infinite; /* if variable is at lower bound then incrementing objective coefficient will not result in extra iterations because it would only extra decrease the value, but since it is at its lower bound ... */ + else if (((!sensrejvar) || (lp->upbo[varnr] != 0.0)) && (lp->lowbo[varnr] + lp->upbo[varnr] - a < epsvalue)) + from = -infinite; /* if variable is at upper bound then decrementing objective coefficient will not result in extra iterations because it would only extra increase the value, but since it is at its upper bound ... */ + } + } + } + lp->objfrom[i]=from; + lp->objtill[i]=till; + } + mempool_releaseVector(lp->workarrays, (char *) coltarget, FALSE); + } + FREE(prow); + FREE(OrigObj); + FREE(drow); + + return((MYBOOL) ok); +} /* construct_sensitivity_obj */ + +STATIC MYBOOL refactRecent(lprec *lp) +{ + int pivcount = lp->bfp_pivotcount(lp); + if(pivcount == 0) + return( AUTOMATIC ); + else if (pivcount < 2*DEF_MAXPIVOTRETRY) + return( TRUE ); + else + return( FALSE ); +} + +STATIC MYBOOL check_if_less(lprec *lp, LPSREAL x, LPSREAL y, int variable) +{ + if(y < x-scaled_value(lp, lp->epsint, variable)) { + if(lp->bb_trace) + report(lp, NORMAL, "check_if_less: Invalid new bound %g should be < %g for %s\n", + x, y, get_col_name(lp, variable)); + return(FALSE); + } + else + return(TRUE); +} + +/* Various basis utility routines */ + +STATIC int findNonBasicSlack(lprec *lp, MYBOOL *is_basic) +{ + int i; + + for(i = lp->rows; i > 0; i--) + if(!is_basic[i]) + break; + return( i ); +} + +STATIC int findBasisPos(lprec *lp, int notint, int *var_basic) +{ + int i; + + if(var_basic == NULL) + var_basic = lp->var_basic; + for(i = lp->rows; i > 0; i--) + if(var_basic[i] == notint) + break; + return( i ); +} + +STATIC void replaceBasisVar(lprec *lp, int rownr, int var, int *var_basic, MYBOOL *is_basic) +{ + int out; + + out = var_basic[rownr]; + var_basic[rownr] = var; + is_basic[out] = FALSE; + is_basic[var] = TRUE; +} + +STATIC void free_duals(lprec *lp) +{ + FREE(lp->duals); + FREE(lp->full_duals); + FREE(lp->dualsfrom); + FREE(lp->dualstill); + FREE(lp->objfromvalue); + FREE(lp->objfrom); + FREE(lp->objtill); +} + +/* Transform RHS by adjusting for the bound state of variables; + optionally rebase upper bound, and account for this in later calls */ +STATIC void initialize_solution(lprec *lp, MYBOOL shiftbounds) +{ + int i, k1, k2, *matRownr, colnr; + LREAL theta; + LPSREAL value, *matValue, loB, upB; + MATrec *mat = lp->matA; + + /* Set bounding status indicators */ + if(lp->bb_bounds != NULL) { + if(shiftbounds == INITSOL_SHIFTZERO) { + if(lp->bb_bounds->UBzerobased) + report(lp, SEVERE, "initialize_solution: The upper bounds are already zero-based at refactorization %d\n", + lp->bfp_refactcount(lp, BFP_STAT_REFACT_TOTAL)); + lp->bb_bounds->UBzerobased = TRUE; + } + else if(!lp->bb_bounds->UBzerobased) + report(lp, SEVERE, "initialize_solution: The upper bounds are not zero-based at refactorization %d\n", + lp->bfp_refactcount(lp, BFP_STAT_REFACT_TOTAL)); + } + + /* Initialize the working RHS/basic variable solution vector */ + i = is_action(lp->anti_degen, ANTIDEGEN_RHSPERTURB) && (lp->monitor != NULL) && lp->monitor->active; + if(sizeof(*lp->rhs) == sizeof(*lp->orig_rhs) && !i) { + MEMCOPY(lp->rhs, lp->orig_rhs, lp->rows+1); + } + else if(i) { + lp->rhs[0] = lp->orig_rhs[0]; + for(i = 1; i <= lp->rows; i++) { + if(is_constr_type(lp, i, EQ)) + theta = rand_uniform(lp, lp->epsvalue); + else { + theta = rand_uniform(lp, lp->epsperturb); +/* if(lp->orig_upbo[i] < lp->infinite) + lp->orig_upbo[i] += theta; */ + } + lp->rhs[i] = lp->orig_rhs[i] + theta; + } + } + else + for(i = 0; i <= lp->rows; i++) + lp->rhs[i] = lp->orig_rhs[i]; + +/* Adjust active RHS for variables at their active upper/lower bounds */ + for(i = 1; i <= lp->sum; i++) { + + upB = lp->upbo[i]; + loB = lp->lowbo[i]; + + /* Shift to "ranged" upper bound, tantamount to defining zero-based variables */ + if(shiftbounds == INITSOL_SHIFTZERO) { + if((loB > -lp->infinite) && (upB < lp->infinite)) + lp->upbo[i] -= loB; + if(lp->upbo[i] < 0) + report(lp, SEVERE, "initialize_solution: Invalid rebounding; variable %d at refact %d, iter %.0f\n", + i, lp->bfp_refactcount(lp, BFP_STAT_REFACT_TOTAL), (double) get_total_iter(lp)); + } + + /* Use "ranged" upper bounds */ + else if(shiftbounds == INITSOL_USEZERO) { + if((loB > -lp->infinite) && (upB < lp->infinite)) + upB += loB; + } + + /* Shift upper bound back to original value */ + else if(shiftbounds == INITSOL_ORIGINAL) { + if((loB > -lp->infinite) && (upB < lp->infinite)) { + lp->upbo[i] += loB; + upB += loB; + } + continue; + } + else + report(lp, SEVERE, "initialize_solution: Invalid option value '%d'\n", + shiftbounds); + + /* Set the applicable adjustment */ + if(lp->is_lower[i]) + theta = loB; + else + theta = upB; + + + /* Check if we need to pass through the matrix; + remember that basis variables are always lower-bounded */ + if(theta == 0) + continue; + + /* Do user and artificial variables */ + if(i > lp->rows) { + + /* Get starting and ending indeces in the NZ vector */ + colnr = i - lp->rows; + k1 = mat->col_end[colnr - 1]; + k2 = mat->col_end[colnr]; + matRownr = &COL_MAT_ROWNR(k1); + matValue = &COL_MAT_VALUE(k1); + + /* Get the objective as row 0, optionally adjusting the objective for phase 1 */ + value = get_OF_active(lp, i, theta); + lp->rhs[0] -= value; + + /* Do the normal case */ + for(; k1 < k2; + k1++, matRownr += matRowColStep, matValue += matValueStep) { + lp->rhs[*matRownr] -= theta * (*matValue); + } + } + + /* Do slack variables (constraint "bounds")*/ + else { + lp->rhs[i] -= theta; + } + + } + + /* Do final pass to get the maximum value */ + i = lps_idamax(lp->rows /* +1 */, lp->rhs, 1); + lp->rhsmax = fabs(lp->rhs[i]); + + if(shiftbounds == INITSOL_SHIFTZERO) + clear_action(&lp->spx_action, ACTION_REBASE); + +} + +/* This routine recomputes the basic variables using the full inverse */ +STATIC void recompute_solution(lprec *lp, MYBOOL shiftbounds) +{ + /* Compute RHS = b - A(n)*x(n) */ + initialize_solution(lp, shiftbounds); + + /* Compute x(b) = Inv(B)*RHS (Ref. lp_solve inverse logic and Chvatal p. 121) */ + lp->bfp_ftran_normal(lp, lp->rhs, NULL); + if(!lp->obj_in_basis) { + int i, ib, n = lp->rows; + for(i = 1; i <= n; i++) { + ib = lp->var_basic[i]; + if(ib > n) + lp->rhs[0] -= get_OF_active(lp, ib, lp->rhs[i]); + } + } + + /* Round the values (should not be greater than the factor used in bfp_pivotRHS) */ + roundVector(lp->rhs, lp->rows, lp->epsvalue); + + clear_action(&lp->spx_action, ACTION_RECOMPUTE); +} + +/* This routine compares an existing basic solution to a recomputed one; + Note that the routine must provide for the possibility that the order of the + basis variables can be changed by the inversion engine. */ +STATIC int verify_solution(lprec *lp, MYBOOL reinvert, char *info) +{ + int i, ii, n, *oldmap, *newmap, *refmap = NULL; + LPSREAL *oldrhs, err, errmax; + + allocINT(lp, &oldmap, lp->rows+1, FALSE); + allocINT(lp, &newmap, lp->rows+1, FALSE); + allocREAL(lp, &oldrhs, lp->rows+1, FALSE); + + /* Get sorted mapping of the old basis */ + for(i = 0; i <= lp->rows; i++) + oldmap[i] = i; + if(reinvert) { + allocINT(lp, &refmap, lp->rows+1, FALSE); + MEMCOPY(refmap, lp->var_basic, lp->rows+1); + sortByINT(oldmap, refmap, lp->rows, 1, TRUE); + } + + /* Save old and calculate the new RHS vector */ + MEMCOPY(oldrhs, lp->rhs, lp->rows+1); + if(reinvert) + invert(lp, INITSOL_USEZERO, FALSE); + else + recompute_solution(lp, INITSOL_USEZERO); + + /* Get sorted mapping of the new basis */ + for(i = 0; i <= lp->rows; i++) + newmap[i] = i; + if(reinvert) { + MEMCOPY(refmap, lp->var_basic, lp->rows+1); + sortByINT(newmap, refmap, lp->rows, 1, TRUE); + } + + /* Identify any gap */ + errmax = 0; + ii = -1; + n = 0; + for(i = lp->rows; i > 0; i--) { + err = fabs(my_reldiff(oldrhs[oldmap[i]], lp->rhs[newmap[i]])); + if(err > lp->epsprimal) { + n++; + if(err > errmax) { + ii = i; + errmax = err; + } + } + } + err = fabs(my_reldiff(oldrhs[i], lp->rhs[i])); + if(err < lp->epspivot) { + i--; + err = 0; + } + else { + n++; + if(ii < 0) { + ii = 0; + errmax = err; + } + } + if(n > 0) { + report(lp, IMPORTANT, "verify_solution: Iter %.0f %s - %d errors; OF %g, Max @row %d %g\n", + (double) get_total_iter(lp), my_if(info == NULL, "", info), n, err, newmap[ii], errmax); + } + /* Copy old results back (not possible for inversion) */ + if(!reinvert) + MEMCOPY(lp->rhs, oldrhs, lp->rows+1); + + FREE(oldmap); + FREE(newmap); + FREE(oldrhs); + if(reinvert) + FREE(refmap); + + return( ii ); + +} + +/* Preprocessing and postprocessing functions */ +STATIC int identify_GUB(lprec *lp, MYBOOL mark) +{ + int i, j, jb, je, k, knint, srh; + LPSREAL rh, mv, tv, bv; + MATrec *mat = lp->matA; + + if((lp->equalities == 0) || !mat_validate(mat)) + return( 0 ); + + k = 0; + for(i = 1; i <= lp->rows; i++) { + + /* Check if it is an equality constraint */ + if(!is_constr_type(lp, i, EQ)) + continue; + + rh = get_rh(lp, i); + srh = my_sign(rh); + knint = 0; + je = mat->row_end[i]; + for(jb = mat->row_end[i-1]; jb < je; jb++) { + j = ROW_MAT_COLNR(jb); + + /* Check for validity of the equation elements */ + if(!is_int(lp, j)) + knint++; + if(knint > 1) + break; + + mv = get_mat_byindex(lp, jb, TRUE, FALSE); + if(fabs(my_reldiff(mv, rh)) > lp->epsprimal) + break; + + tv = mv*get_upbo(lp, j); + bv = get_lowbo(lp, j); +#if 0 /* Requires 1 as upper bound */ + if((fabs(my_reldiff(tv, rh)) > lp->epsprimal) || (bv != 0)) +#else /* Can handle any upper bound >= 1 */ + if((srh*(tv-rh) < -lp->epsprimal) || (bv != 0)) +#endif + break; + } + + /* Update GUB count and optionally mark the GUB */ + if(jb == je) { + k++; + if(mark == TRUE) + lp->row_type[i] |= ROWTYPE_GUB; + else if(mark == AUTOMATIC) + break; + } + + } + return( k ); +} + +STATIC int prepare_GUB(lprec *lp) +{ + int i, j, jb, je, k, *members = NULL; + LPSREAL rh; + char GUBname[16]; + MATrec *mat = lp->matA; + + if((lp->equalities == 0) || + !allocINT(lp, &members, lp->columns+1, TRUE) || + !mat_validate(mat)) + return( 0 ); + + for(i = 1; i <= lp->rows; i++) { + + /* Check if it has been marked as a GUB */ + if(!(lp->row_type[i] & ROWTYPE_GUB)) + continue; + + /* Pick up the GUB column indeces */ + k = 0; + je = mat->row_end[i]; + for(jb = mat->row_end[i-1], k = 0; jb < je; jb++) { + members[k] = ROW_MAT_COLNR(jb); + k++; + } + + /* Add the GUB */ + j = GUB_count(lp) + 1; + sprintf(GUBname, "GUB_%d", i); + add_GUB(lp, GUBname, j, k, members); + + /* Unmark the GUBs */ + clear_action(&(lp->row_type[i]), ROWTYPE_GUB); + + /* Standardize coefficients to 1 if necessary */ + rh = get_rh(lp, i); + if(fabs(my_reldiff(rh, 1)) > lp->epsprimal) { + set_rh(lp, i, 1); + for(jb = mat->row_end[i-1]; jb < je; jb++) { + j = ROW_MAT_COLNR(jb); + set_mat(lp, i,j, 1); + } + } + + } + FREE(members); + return(GUB_count(lp)); +} + +/* Pre- and post processing functions, i.a. splitting free variables */ +STATIC MYBOOL pre_MIPOBJ(lprec *lp) +{ +#ifdef MIPboundWithOF + if(MIP_count(lp) > 0) { + int i = 1; + while((i <= lp->rows) && !mat_equalRows(lp->matA, 0, i) && !is_constr_type(lp, i, EQ)) + i++; + if(i <= lp->rows) + lp->constraintOF = i; + } +#endif + lp->bb_deltaOF = MIP_stepOF(lp); + return( TRUE ); +} +STATIC MYBOOL post_MIPOBJ(lprec *lp) +{ +#ifdef MIPboundWithOF +/* + if(lp->constraintOF) { + del_constraint(lp, lp->rows); + if(is_BasisReady(lp) && !verify_basis(lp)) + return( FALSE ); + } +*/ +#endif + return( TRUE ); +} + +int preprocess(lprec *lp) +{ + int i, j, k, ok = TRUE, *new_index = NULL; + LPSREAL hold, *new_column = NULL; + MYBOOL scaled, primal1, primal2; + + /* do not process if already preprocessed */ + if(lp->wasPreprocessed) + return( ok ); + + /* Write model statistics and optionally initialize partial pricing structures */ + if(lp->lag_status != RUNNING) { + MYBOOL doPP; + + /* Extract the user-specified simplex strategy choices */ + primal1 = (MYBOOL) (lp->simplex_strategy & SIMPLEX_Phase1_PRIMAL); + primal2 = (MYBOOL) (lp->simplex_strategy & SIMPLEX_Phase2_PRIMAL); + + /* Initialize partial pricing structures */ + doPP = is_piv_mode(lp, PRICE_PARTIAL | PRICE_AUTOPARTIAL); +/* doPP &= (MYBOOL) (lp->columns / 2 > lp->rows); */ + if(doPP) { + i = partial_findBlocks(lp, FALSE, FALSE); + if(i < 4) + i = (int) (5 * log((LPSREAL) lp->columns / lp->rows)); + report(lp, NORMAL, "The model is %s to have %d column blocks/stages.\n", + (i > 1 ? "estimated" : "set"), i); + set_partialprice(lp, i, NULL, FALSE); + } +/* doPP &= (MYBOOL) (lp->rows / 4 > lp->columns); */ + if(doPP) { + i = partial_findBlocks(lp, FALSE, TRUE); + if(i < 4) + i = (int) (5 * log((LPSREAL) lp->rows / lp->columns)); + report(lp, NORMAL, "The model is %s to have %d row blocks/stages.\n", + (i > 1 ? "estimated" : "set"), i); + set_partialprice(lp, i, NULL, TRUE); + } + + /* Check for presence of valid pricing blocks if partial pricing + is defined, but not autopartial is not set */ + if(!doPP && is_piv_mode(lp, PRICE_PARTIAL)) { + if((lp->rowblocks == NULL) || (lp->colblocks == NULL)) { + report(lp, IMPORTANT, "Ignoring partial pricing, since block structures are not defined.\n"); + clear_action(&lp->piv_strategy, PRICE_PARTIAL); + } + } + + /* Initialize multiple pricing block divisor */ +#if 0 + if(primal1 || primal2) + lp->piv_strategy |= PRICE_MULTIPLE | PRICE_AUTOMULTIPLE; +#endif + if(is_piv_mode(lp, PRICE_MULTIPLE) && (primal1 || primal2)) { + doPP = is_piv_mode(lp, PRICE_AUTOMULTIPLE); + if(doPP) { + i = (int) (2.5*log((LPSREAL) lp->sum)); + SETMAX( i, 1); + set_multiprice(lp, i); + } + if(lp->multiblockdiv > 1) + report(lp, NORMAL, "Using %d-candidate primal simplex multiple pricing block.\n", + lp->columns / lp->multiblockdiv); + } + else + set_multiprice(lp, 1); + + report(lp, NORMAL, "Using %s simplex for phase 1 and %s simplex for phase 2.\n", + my_if(primal1, "PRIMAL", "DUAL"), my_if(primal2, "PRIMAL", "DUAL")); + i = get_piv_rule(lp); + if((i == PRICER_STEEPESTEDGE) && is_piv_mode(lp, PRICE_PRIMALFALLBACK)) + report(lp, NORMAL, "The pricing strategy is set to '%s' for the dual and '%s' for the primal.\n", + get_str_piv_rule(i), get_str_piv_rule(i-1)); + else + report(lp, NORMAL, "The primal and dual simplex pricing strategy set to '%s'.\n", + get_str_piv_rule(i)); + + report(lp, NORMAL, " \n"); + } + + /* Compute a minimum step improvement step requirement */ + pre_MIPOBJ(lp); + + /* First create extra columns for FR variables or flip MI variables */ + for (j = 1; j <= lp->columns; j++) { + +#ifdef Paranoia + if((lp->rows != lp->matA->rows) || (lp->columns != lp->matA->columns)) + report(lp, SEVERE, "preprocess: Inconsistent variable counts found\n"); +#endif + + /* First handle sign-flipping of variables: + 1) ... with a finite upper bound and a negative Inf-bound (since basis variables are lower-bounded) + 2) ... with bound assymetry within negrange limits (for stability reasons) */ + i = lp->rows + j; + hold = lp->orig_upbo[i]; +/* + if((hold <= 0) || (!is_infinite(lp, lp->negrange) && + (hold < -lp->negrange) && + (lp->orig_lowbo[i] <= lp->negrange)) ) { +*/ +#define fullybounded FALSE + if( ((hold < lp->infinite) && my_infinite(lp, lp->orig_lowbo[i])) || + (!fullybounded && !my_infinite(lp, lp->negrange) && + (hold < -lp->negrange) && (lp->orig_lowbo[i] <= lp->negrange)) ) { + /* Delete split sibling variable if one existed from before */ + if((lp->var_is_free != NULL) && (lp->var_is_free[j] > 0)) + del_column(lp, lp->var_is_free[j]); + /* Negate the column / flip to the positive range */ + mat_multcol(lp->matA, j, -1, TRUE); + if(lp->var_is_free == NULL) { + if(!allocINT(lp, &lp->var_is_free, MAX(lp->columns, lp->columns_alloc) + 1, TRUE)) + return(FALSE); + } + lp->var_is_free[j] = -j; /* Indicator UB and LB are switched, with no helper variable added */ + lp->orig_upbo[i] = my_flipsign(lp->orig_lowbo[i]); + lp->orig_lowbo[i] = my_flipsign(hold); + /* Check for presence of negative ranged SC variable */ + if(lp->sc_lobound[j] > 0) { + lp->sc_lobound[j] = lp->orig_lowbo[i]; + lp->orig_lowbo[i] = 0; + } + } + /* Then deal with -+, full-range/FREE variables by creating a helper variable */ + else if((lp->orig_lowbo[i] <= lp->negrange) && (hold >= -lp->negrange)) { + if(lp->var_is_free == NULL) { + if(!allocINT(lp, &lp->var_is_free, MAX(lp->columns,lp->columns_alloc) + 1, TRUE)) + return(FALSE); + } + if(lp->var_is_free[j] <= 0) { /* If this variable wasn't split yet ... */ + if(SOS_is_member(lp->SOS, 0, i - lp->rows)) { /* Added */ + report(lp, IMPORTANT, "preprocess: Converted negative bound for SOS variable %d to zero", + i - lp->rows); + lp->orig_lowbo[i] = 0; + continue; + } + if(new_column == NULL) { + if(!allocREAL(lp, &new_column, lp->rows + 1, FALSE) || + !allocINT(lp, &new_index, lp->rows + 1, FALSE)) { + ok = FALSE; + break; + } + } + /* Avoid precision loss by turning off unscaling and rescaling */ + /* in get_column and add_column operations; also make sure that */ + /* full scaling information is preserved */ + scaled = lp->scaling_used; + lp->scaling_used = FALSE; + k = get_columnex(lp, j, new_column, new_index); + if(!add_columnex(lp, k, new_column, new_index)) { + ok = FALSE; + break; + } + mat_multcol(lp->matA, lp->columns, -1, TRUE); + if(scaled) + lp->scalars[lp->rows+lp->columns] = lp->scalars[i]; + lp->scaling_used = (MYBOOL) scaled; + /* Only create name if we are not clearing a pre-used item, since this + variable could have been deleted by presolve but the name is required + for solution reconstruction. */ + if(lp->names_used && (lp->col_name[j] == NULL)) { + char fieldn[50]; + + sprintf(fieldn, "__AntiBodyOf(%d)__", j); + if(!set_col_name(lp, lp->columns, fieldn)) { +/* if (!set_col_name(lp, lp->columns, get_col_name(lp, j))) { */ + ok = FALSE; + break; + } + } + /* Set (positive) index to the original column's split / helper and back */ + lp->var_is_free[j] = lp->columns; + } + lp->orig_upbo[lp->rows + lp->var_is_free[j]] = my_flipsign(lp->orig_lowbo[i]); + lp->orig_lowbo[i] = 0; + + /* Negative index indicates x is split var and -var_is_free[x] is index of orig var */ + lp->var_is_free[lp->var_is_free[j]] = -j; + lp->var_type[lp->var_is_free[j]] = lp->var_type[j]; + } + /* Check for positive ranged SC variables */ + else if(lp->sc_lobound[j] > 0) { + lp->sc_lobound[j] = lp->orig_lowbo[i]; + lp->orig_lowbo[i] = 0; + } + + /* Tally integer variables in SOS'es */ + if(SOS_is_member(lp->SOS, 0, j) && is_int(lp, j)) + lp->sos_ints++; + } + + FREE(new_column); + FREE(new_index); + + /* Fill lists of GUB constraints, if appropriate */ + if((MIP_count(lp) > 0) && is_bb_mode(lp, NODE_GUBMODE) && (identify_GUB(lp, AUTOMATIC) > 0)) + prepare_GUB(lp); + + /* (Re)allocate reduced cost arrays */ + ok = allocREAL(lp, &(lp->drow), lp->sum+1, AUTOMATIC) && + allocINT(lp, &(lp->nzdrow), lp->sum+1, AUTOMATIC); + if(ok) + lp->nzdrow[0] = 0; + + /* Minimize memory usage */ + memopt_lp(lp, 0, 0, 0); + + lp->wasPreprocessed = TRUE; + + return(ok); +} + +void postprocess(lprec *lp) +{ + int i,ii,j; + LPSREAL hold; + + /* Check if the problem actually was preprocessed */ + if(!lp->wasPreprocessed) + return; + + /* Must compute duals here in case we have free variables; note that in + this case sensitivity analysis is not possible unless done here */ + if((lp->bb_totalnodes == 0) && (lp->var_is_free == NULL)) { + if(is_presolve(lp, PRESOLVE_DUALS)) + construct_duals(lp); + if(is_presolve(lp, PRESOLVE_SENSDUALS)) + if(!construct_sensitivity_duals(lp) || !construct_sensitivity_obj(lp)) + report(lp, IMPORTANT, "postprocess: Unable to allocate working memory for duals.\n"); + } + + /* Loop over all columns */ + for (j = 1; j <= lp->columns; j++) { + i = lp->rows + j; + /* Reconstruct strictly negative values */ + if((lp->var_is_free != NULL) && (lp->var_is_free[j] < 0)) { + /* Check if we have the simple case where the UP and LB are negated and switched */ + if(-lp->var_is_free[j] == j) { + mat_multcol(lp->matA, j, -1, TRUE); + hold = lp->orig_upbo[i]; + lp->orig_upbo[i] = my_flipsign(lp->orig_lowbo[i]); + lp->orig_lowbo[i] = my_flipsign(hold); + lp->best_solution[i] = my_flipsign(lp->best_solution[i]); + transfer_solution_var(lp, j); + + /* hold = lp->objfrom[j]; + lp->objfrom[j] = my_flipsign(lp->objtill[j]); + lp->objtill[j] = my_flipsign(hold); */ /* under investigation */ + + /* lp->duals[i] = my_flipsign(lp->duals[i]); + hold = lp->dualsfrom[i]; + lp->dualsfrom[i] = my_flipsign(lp->dualstill[i]); + lp->dualstill[i] = my_flipsign(hold); */ /* under investigation */ + /* Bound switch undone, so clear the status */ + lp->var_is_free[j] = 0; + /* Adjust negative ranged SC */ + if(lp->sc_lobound[j] > 0) + lp->orig_lowbo[lp->rows + j] = -lp->sc_lobound[j]; + } + /* Ignore the split / helper columns (will be deleted later) */ + } + /* Condense values of extra columns of quasi-free variables split in two */ + else if((lp->var_is_free != NULL) && (lp->var_is_free[j] > 0)) { + ii = lp->var_is_free[j]; /* Index of the split helper var */ + /* if(lp->objfrom[j] == -lp->infinite) + lp->objfrom[j] = -lp->objtill[ii]; + lp->objtill[ii] = lp->infinite; + if(lp->objtill[j] == lp->infinite) + lp->objtill[j] = my_flipsign(lp->objfrom[ii]); + lp->objfrom[ii] = -lp->infinite; */ /* under investigation */ + + ii += lp->rows; + lp->best_solution[i] -= lp->best_solution[ii]; /* join the solution again */ + transfer_solution_var(lp, j); + lp->best_solution[ii] = 0; + + /* if(lp->duals[i] == 0) + lp->duals[i] = my_flipsign(lp->duals[ii]); + lp->duals[ii] = 0; + if(lp->dualsfrom[i] == -lp->infinite) + lp->dualsfrom[i] = my_flipsign(lp->dualstill[ii]); + lp->dualstill[ii] = lp->infinite; + if(lp->dualstill[i] == lp->infinite) + lp->dualstill[i] = my_flipsign(lp->dualsfrom[ii]); + lp->dualsfrom[ii] = -lp->infinite; */ /* under investigation */ + + /* Reset to original bound */ + lp->orig_lowbo[i] = my_flipsign(lp->orig_upbo[ii]); + } + /* Adjust for semi-continuous variables */ + else if(lp->sc_lobound[j] > 0) { + lp->orig_lowbo[i] = lp->sc_lobound[j]; + } + } + + /* Remove any split column helper variables */ + del_splitvars(lp); + post_MIPOBJ(lp); + + /* Do extended reporting, if specified */ + if(lp->verbose > NORMAL) { + REPORT_extended(lp); + + } + + lp->wasPreprocessed = FALSE; +} + diff --git a/src/external/lpsolve/build/lp_solve/lp_matrix.c b/src/external/lpsolve/build/lp_solve/lp_matrix.c new file mode 100644 index 00000000..ce585e21 --- /dev/null +++ b/src/external/lpsolve/build/lp_solve/lp_matrix.c @@ -0,0 +1,3828 @@ +// Copyright(c) 2016-2018 Kjell Konis . +// Version: 5.5.2.0-17 +// Description: The lpSolveAPI package provides an R interface to 'lp_solve', +// a Mixed Integer Linear Programming (MILP) solver with support for pure +// linear, (mixed) integer/binary, semi-continuous and special ordered sets +// (SOS) models. +// License: LGPL-2 +// Repository: CRAN + +#include +#include "commonlib.h" +#include "lp_lib.h" +#include "lp_scale.h" +#include "lp_report.h" +#include "lp_price.h" +#include "lp_pricePSE.h" +#include "lp_matrix.h" + +#ifdef FORTIFY +# include "lp_fortify.h" +#endif + + +/* ------------------------------------------------------------------------- + Basic matrix routines in lp_solve v5.0+ + ------------------------------------------------------------------------- + Author: Michel Berkelaar (to lp_solve v3.2), + Kjell Eikland (v4.0 and forward) + Contact: kjell.eikland@broadpark.no + License terms: LGPL. + + Requires: lp_lib.h, lp_pricerPSE.h, lp_matrix.h + + Release notes: + v5.0.0 1 January 2004 First integrated and repackaged version. + v5.0.1 7 May 2004 Added matrix transpose function. + v5.1.0 20 July 2004 Reworked with flexible matrix storage model. + v5.2.0 10 January 2005 Added fast deletion methods. + Added data extraction to matrix method. + Changed to explicit OF storage mode. + + ------------------------------------------------------------------------- */ + +STATIC MATrec *mat_create(lprec *lp, int rows, int columns, LPSREAL epsvalue) +{ + MATrec *newmat; + + newmat = (MATrec *) calloc(1, sizeof(*newmat)); + newmat->lp = lp; + + newmat->rows_alloc = 0; + newmat->columns_alloc = 0; + newmat->mat_alloc = 0; + + inc_matrow_space(newmat, rows); + newmat->rows = rows; + inc_matcol_space(newmat, columns); + newmat->columns = columns; + inc_mat_space(newmat, 0); + + newmat->epsvalue = epsvalue; + + return( newmat ); +} + +STATIC void mat_free(MATrec **matrix) +{ + if((matrix == NULL) || (*matrix == NULL)) + return; + +#if MatrixColAccess==CAM_Record + FREE((*matrix)->col_mat); +#else /*if MatrixColAccess==CAM_Vector*/ + FREE((*matrix)->col_mat_colnr); + FREE((*matrix)->col_mat_rownr); + FREE((*matrix)->col_mat_value); +#endif + FREE((*matrix)->col_end); + FREE((*matrix)->col_tag); + +#if MatrixRowAccess==RAM_Index + FREE((*matrix)->row_mat); +#elif MatrixColAccess==CAM_Record + FREE((*matrix)->row_mat); +#else /*if MatrixRowAccess==COL_Vector*/ + FREE((*matrix)->row_mat_colnr); + FREE((*matrix)->row_mat_rownr); + FREE((*matrix)->row_mat_value); +#endif + FREE((*matrix)->row_end); + FREE((*matrix)->row_tag); + + FREE((*matrix)->colmax); + FREE((*matrix)->rowmax); + + FREE(*matrix); +} + +STATIC MYBOOL mat_memopt(MATrec *mat, int rowextra, int colextra, int nzextra) +{ + MYBOOL status = TRUE; + int matalloc, colalloc, rowalloc; + + if((mat == NULL) || +#if 0 + (++rowextra < 1) || (++colextra < 1) || (++nzextra < 1)) +#else + (rowextra < 0) || (colextra < 0) || (nzextra < 0)) +#endif + return( FALSE ); + + mat->rows_alloc = MIN(mat->rows_alloc, mat->rows + rowextra); + mat->columns_alloc = MIN(mat->columns_alloc, mat->columns + colextra); + mat->mat_alloc = MIN(mat->mat_alloc, mat->col_end[mat->columns] + nzextra); +#if 0 + rowalloc = mat->rows_alloc; + colalloc = mat->columns_alloc; + matalloc = mat->mat_alloc; +#else + rowalloc = mat->rows_alloc + 1; + colalloc = mat->columns_alloc + 1; + matalloc = mat->mat_alloc + 1; +#endif + +#if MatrixColAccess==CAM_Record + mat->col_mat = (MATitem *) realloc(mat->col_mat, matalloc * sizeof(*(mat->col_mat))); + status &= (mat->col_mat != NULL); +#else /*if MatrixColAccess==CAM_Vector*/ + status &= allocINT(mat->lp, &(mat->col_mat_colnr), matalloc, AUTOMATIC) && + allocINT(mat->lp, &(mat->col_mat_rownr), matalloc, AUTOMATIC) && + allocREAL(mat->lp, &(mat->col_mat_value), matalloc, AUTOMATIC); +#endif + status &= allocINT(mat->lp, &mat->col_end, colalloc, AUTOMATIC); + if(mat->col_tag != NULL) + status &= allocINT(mat->lp, &mat->col_tag, colalloc, AUTOMATIC); + +#if MatrixRowAccess==RAM_Index + status &= allocINT(mat->lp, &(mat->row_mat), matalloc, AUTOMATIC); +#elif MatrixColAccess==CAM_Record + mat->row_mat = (MATitem *) realloc(mat->row_mat, matalloc * sizeof(*(mat->row_mat))); + status &= (mat->row_mat != NULL); +#else /*if MatrixRowAccess==COL_Vector*/ + status &= allocINT(mat->lp, &(mat->row_mat_colnr), matalloc, AUTOMATIC) && + allocINT(mat->lp, &(mat->row_mat_rownr), matalloc, AUTOMATIC) && + allocREAL(mat->lp, &(mat->row_mat_value), matalloc, AUTOMATIC); +#endif + status &= allocINT(mat->lp, &mat->row_end, rowalloc, AUTOMATIC); + if(mat->row_tag != NULL) + status &= allocINT(mat->lp, &mat->row_tag, rowalloc, AUTOMATIC); + + if(mat->colmax != NULL) + status &= allocREAL(mat->lp, &(mat->colmax), colalloc, AUTOMATIC); + if(mat->rowmax != NULL) + status &= allocREAL(mat->lp, &(mat->rowmax), rowalloc, AUTOMATIC); + + return( status ); +} + +STATIC MYBOOL inc_mat_space(MATrec *mat, int mindelta) +{ + int spaceneeded, nz = mat_nonzeros(mat); + + if(mindelta <= 0) + mindelta = MAX(mat->rows, mat->columns) + 1; + spaceneeded = DELTA_SIZE(mindelta, nz); + SETMAX(mindelta, spaceneeded); + + if(mat->mat_alloc == 0) + spaceneeded = mindelta; + else + spaceneeded = nz + mindelta; + + if(spaceneeded >= mat->mat_alloc) { + /* Let's allocate at least MAT_START_SIZE entries */ + if(mat->mat_alloc < MAT_START_SIZE) + mat->mat_alloc = MAT_START_SIZE; + + /* Increase the size by RESIZEFACTOR each time it becomes too small */ + while(spaceneeded >= mat->mat_alloc) + mat->mat_alloc += mat->mat_alloc / RESIZEFACTOR; + +#if MatrixColAccess==CAM_Record + mat->col_mat = (MATitem *) realloc(mat->col_mat, (mat->mat_alloc) * sizeof(*(mat->col_mat))); +#else /*if MatrixColAccess==CAM_Vector*/ + allocINT(mat->lp, &(mat->col_mat_colnr), mat->mat_alloc, AUTOMATIC); + allocINT(mat->lp, &(mat->col_mat_rownr), mat->mat_alloc, AUTOMATIC); + allocREAL(mat->lp, &(mat->col_mat_value), mat->mat_alloc, AUTOMATIC); +#endif + +#if MatrixRowAccess==RAM_Index + allocINT(mat->lp, &(mat->row_mat), mat->mat_alloc, AUTOMATIC); +#elif MatrixColAccess==CAM_Record + mat->row_mat = (MATitem *) realloc(mat->row_mat, (mat->mat_alloc) * sizeof(*(mat->row_mat))); +#else /*if MatrixColAccess==CAM_Vector*/ + allocINT(mat->lp, &(mat->row_mat_colnr), mat->mat_alloc, AUTOMATIC); + allocINT(mat->lp, &(mat->row_mat_rownr), mat->mat_alloc, AUTOMATIC); + allocREAL(mat->lp, &(mat->row_mat_value), mat->mat_alloc, AUTOMATIC); +#endif + } + return(TRUE); +} + +STATIC MYBOOL inc_matrow_space(MATrec *mat, int deltarows) +{ + int rowsum, oldrowsalloc; + MYBOOL status = TRUE; + + /* Adjust lp row structures */ + if(mat->rows+deltarows >= mat->rows_alloc) { + + /* Update memory allocation and sizes */ + oldrowsalloc = mat->rows_alloc; + deltarows = DELTA_SIZE(deltarows, mat->rows); + SETMAX(deltarows, DELTAROWALLOC); + mat->rows_alloc += deltarows; + rowsum = mat->rows_alloc + 1; + + /* Update row pointers */ + status = allocINT(mat->lp, &mat->row_end, rowsum, AUTOMATIC); + mat->row_end_valid = FALSE; + } + return( status ); +} + +STATIC MYBOOL inc_matcol_space(MATrec *mat, int deltacols) +{ + int i, colsum, oldcolsalloc; + MYBOOL status = TRUE; + + /* Adjust lp column structures */ + if(mat->columns+deltacols >= mat->columns_alloc) { + + /* Update memory allocation and sizes */ + oldcolsalloc = mat->columns_alloc; + deltacols = DELTA_SIZE(deltacols, mat->columns); + SETMAX(deltacols, DELTACOLALLOC); + mat->columns_alloc += deltacols; + colsum = mat->columns_alloc + 1; + status = allocINT(mat->lp, &mat->col_end, colsum, AUTOMATIC); + + /* Update column pointers */ + if(oldcolsalloc == 0) + mat->col_end[0] = 0; + for(i = MIN(oldcolsalloc, mat->columns) + 1; i < colsum; i++) + mat->col_end[i] = mat->col_end[i-1]; + mat->row_end_valid = FALSE; + } + return( status ); +} + +STATIC int mat_collength(MATrec *mat, int colnr) +{ + return( mat->col_end[colnr] - mat->col_end[colnr-1] ); +} + +STATIC int mat_rowlength(MATrec *mat, int rownr) +{ + if(mat_validate(mat)) { + if(rownr <= 0) + return( mat->row_end[0] ); + else + return( mat->row_end[rownr] - mat->row_end[rownr-1] ); + } + else + return( 0 ); +} + +STATIC int mat_nonzeros(MATrec *mat) +{ + return( mat->col_end[mat->columns] ); +} + +STATIC MYBOOL mat_indexrange(MATrec *mat, int index, MYBOOL isrow, int *startpos, int *endpos) +{ +#ifdef Paranoia + if(isrow && ((index < 0) || (index > mat->rows))) + return( FALSE ); + else if(!isrow && ((index < 1) || (index > mat->columns))) + return( FALSE ); +#endif + + if(isrow && mat_validate(mat)) { + if(index == 0) + *startpos = 0; + else + *startpos = mat->row_end[index-1]; + *endpos = mat->row_end[index]; + } + else { + *startpos = mat->col_end[index-1]; + *endpos = mat->col_end[index]; + } + return( TRUE ); +} + +STATIC int mat_shiftrows(MATrec *mat, int *bbase, int delta, LLrec *varmap) +{ + int j, k, i, ii, thisrow, *colend, base; + MYBOOL preparecompact = FALSE; + int *rownr; + + if(delta == 0) + return( 0 ); + base = abs(*bbase); + + if(delta > 0) { + + /* Insert row by simply incrementing existing row indeces */ + if(base <= mat->rows) { + k = mat_nonzeros(mat); + rownr = &COL_MAT_ROWNR(0); + for(ii = 0; ii < k; ii++, rownr += matRowColStep) { + if(*rownr >= base) + *rownr += delta; + } + } + + /* Set defaults (actual basis set in separate procedure) */ + for(i = 0; i < delta; i++) { + ii = base + i; + mat->row_end[ii] = 0; + } + } + else if(base <= mat->rows) { + + /* Check for preparation of mass-deletion of rows */ + preparecompact = (MYBOOL) (varmap != NULL); + if(preparecompact) { + /* Create the offset array */ + int *newrowidx = NULL; + allocINT(mat->lp, &newrowidx, mat->rows+1, FALSE); + newrowidx[0] = 0; + delta = 0; + for(j = 1; j <= mat->rows; j++) { + if(isActiveLink(varmap, j)) { + delta++; + newrowidx[j] = delta; + } + else + newrowidx[j] = -1; + } + k = 0; + delta = 0; + base = mat_nonzeros(mat); + rownr = &COL_MAT_ROWNR(0); + for(i = 0; i < base; i++, rownr += matRowColStep) { + thisrow = newrowidx[*rownr]; + if(thisrow < 0) { + *rownr = -1; + delta++; + } + else + *rownr = thisrow; + } + FREE(newrowidx); + return(delta); + } + + /* Check if we should prepare for compacting later + (this is in order to speed up multiple row deletions) */ + preparecompact = (MYBOOL) (*bbase < 0); + if(preparecompact) + *bbase = my_flipsign((*bbase)); + + /* First make sure we don't cross the row count border */ + if(base-delta-1 > mat->rows) + delta = base - mat->rows - 1; + + /* Then scan over all entries shifting and updating rows indeces */ + if(preparecompact) { + k = 0; + for(j = 1, colend = mat->col_end + 1; + j <= mat->columns; j++, colend++) { + i = k; + k = *colend; + rownr = &COL_MAT_ROWNR(i); + for(; i < k; i++, rownr += matRowColStep) { + thisrow = *rownr; + if(thisrow < base) + continue; + else if(thisrow >= base-delta) + *rownr += delta; + else + *rownr = -1; + } + } + } + else { + k = 0; + ii = 0; + for(j = 1, colend = mat->col_end + 1; + j <= mat->columns; j++, colend++) { + i = k; + k = *colend; + rownr = &COL_MAT_ROWNR(i); + for(; i < k; i++, rownr += matRowColStep) { + thisrow = *rownr; + if(thisrow >= base) { + if(thisrow >= base-delta) + *rownr += delta; + else + continue; + } + if(ii != i) { + COL_MAT_COPY(ii, i); + } + ii++; + } + *colend = ii; + } + } + } + return( 0 ); +} + +/* Map-based compacting+insertion of matrix elements without changing row and column indeces. + When mat2 is NULL, a simple compacting of non-deleted rows and columns is done. */ +STATIC int mat_mapreplace(MATrec *mat, LLrec *rowmap, LLrec *colmap, MATrec *mat2) +{ + lprec *lp = mat->lp; + int i, ib, ie, ii, j, jj, jb, je, nz, *colend, *rownr, *rownr2, *indirect = NULL; + LPSREAL *value, *value2; + + /* Check if there is something to insert */ + if((mat2 != NULL) && ((mat2->col_tag == NULL) || (mat2->col_tag[0] <= 0) || (mat_nonzeros(mat2) == 0))) + return( 0 ); + + /* Create map and sort by increasing index in "mat" */ + if(mat2 != NULL) { + jj = mat2->col_tag[0]; + allocINT(lp, &indirect, jj+1, FALSE); + indirect[0] = jj; + for(i = 1; i <= jj; i++) + indirect[i] = i; + hpsortex(mat2->col_tag, jj, 1, sizeof(*indirect), FALSE, compareINT, indirect); + } + + /* Do the compacting */ + mat->row_end_valid = FALSE; + nz = mat->col_end[mat->columns]; + ie = 0; + ii = 0; + if((mat2 == NULL) || (indirect[0] == 0)) { + je = mat->columns + 1; + jj = 1; + jb = 0; + } + else { + je = indirect[0]; + jj = 0; + do { + jj++; + jb = mat2->col_tag[jj]; + } while(jb <= 0); + + } + for(j = 1, colend = mat->col_end + 1; + j <= mat->columns; j++, colend++) { + ib = ie; + ie = *colend; + + /* Always skip (condense) replacement columns */ + if(j == jb) { + jj++; + if(jj <= je) + jb = mat2->col_tag[jj]; + else + jb = mat->columns + 1; + } + + /* Only include active columns */ + else if(isActiveLink(colmap, j)) { + rownr = &COL_MAT_ROWNR(ib); + for(; ib < ie; ib++, rownr += matRowColStep) { + + /* Also make sure the row is active */ + if(isActiveLink(rowmap, *rownr)) { + if(ii != ib) { + COL_MAT_COPY(ii, ib); + } + ii++; + } + } + } + *colend = ii; + } + if(mat2 == NULL) + goto Finish; + + /* Tally non-zero insertions */ + i = 0; + for(j = 1; j <= mat2->col_tag[0]; j++) { + jj = mat2->col_tag[j]; + if((jj > 0) && isActiveLink(colmap, jj)) { + jj = indirect[j]; + je = mat2->col_end[jj]; + jb = mat2->col_end[jj-1]; + rownr2 = &COL_MAT2_ROWNR(jb); + for(; jb < je; jb++, rownr2 += matRowColStep) { + if((*rownr2 > 0) && isActiveLink(rowmap, *rownr2)) + i++; + } + } + } + + /* Make sure we have enough matrix space */ + ii = mat->col_end[mat->columns] + i; + if(mat->mat_alloc <= ii) + inc_mat_space(mat, i); + + /* Do shifting and insertion - loop from the end going forward */ + jj = indirect[0]; + jj = mat2->col_tag[jj]; + for(j = mat->columns, colend = mat->col_end + mat->columns, ib = *colend; + j > 0; j--) { + + /* Update indeces for this loop */ + ie = ib; + *colend = ii; + colend--; + ib = *colend; + + /* Insert new values */ + if(j == jj) { + /* Only include an active column */ + if(isActiveLink(colmap, j)) { + jj = indirect[0]; + jj = indirect[jj]; + rownr = &COL_MAT_ROWNR(ii-1); + value = &COL_MAT_VALUE(ii-1); + jb = mat2->col_end[jj-1]; + je = mat2->col_end[jj] - 1; + rownr2 = &COL_MAT2_ROWNR(je); + value2 = &COL_MAT2_VALUE(je); + + /* Process constraint coefficients */ + for(; je >= jb; je--, rownr2 -= matRowColStep, value2 -= matValueStep) { + i = *rownr2; + if(i == 0) { + i = -1; + break; + } + else if(isActiveLink(rowmap, i)) { + ii--; + *rownr = i; + rownr -= matRowColStep; + *value = my_chsign(is_chsign(lp, i), *value2); + value -= matValueStep; + } + } + + /* Then handle the objective */ + if(i == -1) { + lp->orig_obj[j] = my_chsign(is_maxim(lp), *value2); + rownr2 -= matRowColStep; + value2 -= matValueStep; + } + else + lp->orig_obj[j] = 0; + + } + /* Update replacement column index or break if no more candidates */ + jj = --indirect[0]; + if(jj == 0) + break; + jj = mat2->col_tag[jj]; + if(jj <= 0) + break; + } + /* Shift existing values down */ + else { + if(isActiveLink(colmap, j)) + while(ie > ib) { + ii--; + ie--; + if(ie != ii) { + COL_MAT_COPY(ii, ie); + } + } + } + } + + /* Return the delta number of non-zero elements */ +Finish: + nz -= mat->col_end[mat->columns]; + FREE(indirect); + + return( nz ); +} + +/* Routines to compact rows in matrix based on precoded entries */ +STATIC int mat_zerocompact(MATrec *mat) +{ + return( mat_rowcompact(mat, TRUE) ); +} +STATIC int mat_rowcompact(MATrec *mat, MYBOOL dozeros) +{ + int i, ie, ii, j, nn, *colend, *rownr; + LPSREAL *value; + + nn = 0; + ie = 0; + ii = 0; + for(j = 1, colend = mat->col_end + 1; + j <= mat->columns; j++, colend++) { + i = ie; + ie = *colend; + rownr = &COL_MAT_ROWNR(i); + value = &COL_MAT_VALUE(i); + for(; i < ie; + i++, rownr += matRowColStep, value += matValueStep) { + if((*rownr < 0) || (dozeros && (fabs(*value) < mat->epsvalue))) { + nn++; + continue; + } + if(ii != i) { + COL_MAT_COPY(ii, i); + } + ii++; + } + *colend = ii; + } + return( nn ); +} + +/* Routines to compact columns and their indeces based on precoded entries */ +STATIC int mat_colcompact(MATrec *mat, int prev_rows, int prev_cols) +{ + int i, ii, j, k, n_del, n_sum, *colend, *newcolend, *colnr, newcolnr; + MYBOOL deleted; + lprec *lp = mat->lp; + presolveundorec *lpundo = lp->presolve_undo; + + + n_sum = 0; + k = 0; + ii = 0; + newcolnr = 1; + for(j = 1, colend = newcolend = mat->col_end + 1; + j <= prev_cols; j++, colend++) { + n_del = 0; + i = k; + k = *colend; + for(colnr = &COL_MAT_COLNR(i); i < k; + i++, colnr += matRowColStep) { + if(*colnr < 0) { + n_del++; + n_sum++; + continue; + } + if(ii < i) { + COL_MAT_COPY(ii, i); + } + if(newcolnr < j) { + COL_MAT_COLNR(ii) = newcolnr; + } + ii++; + } + *newcolend = ii; + + deleted = (MYBOOL) (n_del > 0); +#if 1 + /* Do hoops in case there was an empty column */ + deleted |= (MYBOOL) (!lp->wasPresolved && (lpundo->var_to_orig[prev_rows+j] < 0)); + +#endif + /* Increment column variables if current column was not deleted */ + if(!deleted) { + newcolend++; + newcolnr++; + } + } + return(n_sum); +} + +STATIC int mat_shiftcols(MATrec *mat, int *bbase, int delta, LLrec *varmap) +{ + int i, ii, k, n, base; + + + k = 0; + if(delta == 0) + return( k ); + base = abs(*bbase); + + if(delta > 0) { + /* Shift pointers right */ + for(ii = mat->columns; ii > base; ii--) { + i = ii + delta; + mat->col_end[i] = mat->col_end[ii]; + } + /* Set defaults */ + for(i = 0; i < delta; i++) { + ii = base + i; + mat->col_end[ii] = mat->col_end[ii-1]; + } + } + else { + + /* Check for preparation of mass-deletion of columns */ + MYBOOL preparecompact = (MYBOOL) (varmap != NULL); + if(preparecompact) { + /* Create the offset array */ + int j, *colnr, *colend; + n = 0; + k = 0; + base = 0; + for(j = 1, colend = mat->col_end + 1; + j <= mat->columns; j++, colend++) { + i = k; + k = *colend; + if(isActiveLink(varmap, j)) { + base++; + ii = base; + } + else + ii = -1; + if(ii < 0) + n += k - i; + colnr = &COL_MAT_COLNR(i); + for(; i < k; i++, colnr += matRowColStep) + *colnr = ii; + } + return(n); + } + + /* Check if we should prepare for compacting later + (this is in order to speed up multiple column deletions) */ + preparecompact = (MYBOOL) (*bbase < 0); + if(preparecompact) + *bbase = my_flipsign((*bbase)); + + /* First make sure we don't cross the column count border */ + if(base-delta-1 > mat->columns) + delta = base - mat->columns - 1; + + /* Then scan over all entries shifting and updating column indeces */ + if(preparecompact) { + int *colnr; + n = 0; + i = mat->col_end[base-1]; + k = mat->col_end[base-delta-1]; + for(colnr = &COL_MAT_COLNR(i); i < k; + i++, colnr += matRowColStep) { + n++; + *colnr = -1; + } + k = n; + } + else { + /* Delete sparse matrix data, if required */ + if(base <= mat->columns) { + + i = mat->col_end[base-1]; /* Beginning of data to be deleted */ + ii = mat->col_end[base-delta-1]; /* Beginning of data to be shifted left */ + n = mat_nonzeros(mat); /* Total number of non-zeros */ + k = ii-i; /* Number of entries to be deleted */ + if((k > 0) && (n > i)) { + n -= ii; + COL_MAT_MOVE(i, ii, n); + } + + /* Update indexes */ + for(i = base; i <= mat->columns + delta; i++) { + ii = i - delta; + mat->col_end[i] = mat->col_end[ii] - k; + } + } + } + } + return( k ); +} + +STATIC MATrec *mat_extractmat(MATrec *mat, LLrec *rowmap, LLrec *colmap, MYBOOL negated) +{ + int *rownr, *colnr, xa, na; + LPSREAL *value; + MATrec *newmat = mat_create(mat->lp, mat->rows, mat->columns, mat->epsvalue); + + /* Initialize */ + na = mat_nonzeros(mat); + rownr = &COL_MAT_ROWNR(0); + colnr = &COL_MAT_COLNR(0); + value = &COL_MAT_VALUE(0); + + /* Loop over the indeces, picking out values in qualifying rows and colums + (note that the loop could be speeded up for dense matrices by making an + outer loop for columns and inner loop for rows) */ + for(xa = 0; xa < na; xa++, rownr += matRowColStep, colnr += matRowColStep, value += matValueStep) { + if((isActiveLink(colmap, *colnr) ^ negated) && + (isActiveLink(rowmap, *rownr) ^ negated)) + mat_setvalue(newmat, *rownr, *colnr, *value, FALSE); + } + + /* Return the populated new matrix */ + return( newmat ); +} + +STATIC MYBOOL mat_setcol(MATrec *mat, int colno, int count, LPSREAL *column, int *rowno, MYBOOL doscale, MYBOOL checkrowmode) +{ + int i, jj = 0, elmnr, orignr, newnr, firstrow; + MYBOOL *addto = NULL, isA, isNZ; + LPSREAL value, saved = 0; + lprec *lp = mat->lp; + + /* Check if we are in row order mode and should add as row instead; + the matrix will be transposed at a later stage */ + if(checkrowmode && mat->is_roworder) + return( mat_setrow(mat, colno, count, column, rowno, doscale, FALSE) ); + + /* Initialize and validate */ + isA = (MYBOOL) (mat == mat->lp->matA); + isNZ = (MYBOOL) (rowno != NULL); + if(!isNZ) + count = mat->lp->rows; + else if((count < 0) || (count > mat->rows+((mat->is_roworder) ? 0 : 1))) + return( FALSE ); + if(isNZ && (count > 0)) { + if(count > 1) + sortREALByINT(column, rowno, count, 0, TRUE); + if((rowno[0] < 0) || (rowno[count-1] > mat->rows)) + return( FALSE ); + } + + /* Capture OF definition in column mode */ + if(isA && !mat->is_roworder) { + if(isNZ && (count > 0) && (rowno[0] == 0)) { + value = column[0]; +#ifdef DoMatrixRounding + value = roundToPrecision(value, mat->epsvalue); +#endif + if(doscale) + value = scaled_mat(lp, value, 0, colno); + value = my_chsign(is_maxim(lp), value); + lp->orig_obj[colno] = value; + count--; + column++; + rowno++; + } + else if(!isNZ && (column[0] != 0)) { + value = saved = column[0]; +#ifdef DoMatrixRounding + value = roundToPrecision(value, mat->epsvalue); +#endif + if(doscale) + value = scaled_mat(lp, value, 0, colno); + value = my_chsign(is_maxim(lp), value); + lp->orig_obj[colno] = value; + column[0] = 0; + } + else + lp->orig_obj[colno] = 0; + } + + /* Optionally tally and map the new non-zero values */ + firstrow = mat->rows + 1; + if(isNZ) { + newnr = count; + if(newnr) { + firstrow = rowno[0]; + jj = rowno[newnr - 1]; + } + } + else { + newnr = 0; + if(!allocMYBOOL(lp, &addto, mat->rows + 1, TRUE)) { + return( FALSE ); + } + for(i = mat->rows; i >= 0; i--) { + if(fabs(column[i]) > mat->epsvalue) { + addto[i] = TRUE; + firstrow = i; + newnr++; + } + } + } + + /* Make sure we have enough matrix space */ + if(!inc_mat_space(mat, newnr)) { + newnr = 0; + goto Done; + } + + /* Shift existing column data and adjust position indeces */ + orignr = mat_collength(mat, colno); + elmnr = newnr - orignr; + i = mat_nonzeros(mat) - mat->col_end[colno]; + if((elmnr != 0) && (i > 0)) { + COL_MAT_MOVE(mat->col_end[colno] + elmnr, mat->col_end[colno], i); + } + if(elmnr != 0) + for(i = colno; i <= mat->columns; i++) + mat->col_end[i] += elmnr; + + /* We are now ready to copy the new data */ + jj = mat->col_end[colno-1]; + if(isNZ) { + for(i = 0; i < count; jj++, i++) { + value = column[i]; +#ifdef DoMatrixRounding + value = roundToPrecision(value, mat->epsvalue); +#endif + if(mat->is_roworder) { /* Fix following Ingmar Stein bug report 12.10.2006 */ + if(isA && doscale) + value = scaled_mat(lp, value, colno, rowno[i]); + if(isA) + value = my_chsign(is_chsign(lp, colno), value); + } + else { + if(isA && doscale) + value = scaled_mat(lp, value, rowno[i], colno); + if(isA) + value = my_chsign(is_chsign(lp, rowno[i]), value); + } + SET_MAT_ijA(jj, rowno[i], colno, value); + } + } + else { + for(i = firstrow; i <= mat->rows; i++) { + if(!addto[i]) + continue; + value = column[i]; +#ifdef DoMatrixRounding + value = roundToPrecision(value, mat->epsvalue); +#endif + if(mat->is_roworder) { /* Fix following Ingmar Stein bug report 12.10.2006 */ + if(isA && doscale) + value = scaled_mat(lp, value, colno, i); + if(isA) + value = my_chsign(is_chsign(lp, colno), value); + } + else { + if(isA && doscale) + value = scaled_mat(lp, value, i, colno); + if(isA) + value = my_chsign(is_chsign(lp, i), value); + } + SET_MAT_ijA(jj, i, colno, value); + jj++; + } + } + mat->row_end_valid = FALSE; + + /* Finish and return */ +Done: + if(saved != 0) + column[0] = saved; + FREE(addto); + return( TRUE ); + +} + +STATIC MYBOOL mat_mergemat(MATrec *target, MATrec *source, MYBOOL usecolmap) +{ + lprec *lp = target->lp; + int i, ix, iy, n, *colmap = NULL; + LPSREAL *colvalue = NULL; + + if((target->rows < source->rows) || !allocREAL(lp, &colvalue, target->rows+1, FALSE)) + return( FALSE ); + + if(usecolmap) { + n = source->col_tag[0]; + allocINT(lp, &colmap, n+1, FALSE); + for(i = 1; i <= n; i++) + colmap[i] = i; + hpsortex(source->col_tag, n, 1, sizeof(*colmap), FALSE, compareINT, colmap); + } + else + n = source->columns; + for(i = 1; i <= n; i++) { + if(!usecolmap && (mat_collength(source, i) == 0)) + continue; + if(usecolmap) { + ix = colmap[i]; + if(ix <= 0) + continue; + iy = source->col_tag[i]; + if(iy <= 0) + continue; + } + else + ix = iy = i; + mat_expandcolumn(source, ix, colvalue, NULL, FALSE); + mat_setcol(target, iy, 0, colvalue, NULL, FALSE, FALSE); + } + + FREE( colvalue ); + FREE( colmap ); + + return( TRUE ); +} + +STATIC int mat_nz_unused(MATrec *mat) +{ + return( mat->mat_alloc - mat->col_end[mat->columns] ); +} + +#if 0 +STATIC MYBOOL mat_setrow(MATrec *mat, int rowno, int count, LPSREAL *row, int *colno, MYBOOL doscale, MYBOOL checkrowmode) +{ + lprec *lp = mat->lp; + int delta; + int k, kk, i, ii, j, jj = 0, jj_j, elmnr, orignr, newnr, firstcol, rownr, colnr, matz = 0; + MYBOOL *addto = NULL, isA, isNZ; + LPSREAL value = 0.0, saved = 0; + + /* Check if we are in row order mode and should add as column instead; + the matrix will be transposed at a later stage */ + if(checkrowmode && mat->is_roworder) + return( mat_setcol(mat, rowno, count, row, colno, doscale, FALSE) ); + + /* Do initialization and validation */ + if(!mat_validate(mat)) + return( FALSE ); + isA = (MYBOOL) (mat == lp->matA); + isNZ = (MYBOOL) (colno != NULL); + if(!isNZ) + count = mat->columns; + else if((count < 0) || (count > mat->columns)) + return( FALSE ); + if(isNZ && (count > 0)) { + if(count > 1) + sortREALByINT(row, (int *) colno, count, 0, TRUE); + if((colno[0] < 1) || (colno[count-1] > mat->columns)) + return( FALSE ); + } + + /* Capture OF definition in row mode */ + if(isA && mat->is_roworder) { + lp->orig_obj[rowno] = 0; + if(isNZ && (count > 0) && (colno[0] == 0)) { + value = row[0]; + if(doscale) + value = scaled_mat(lp, value, 0, rowno); + value = my_chsign(is_maxim(lp), value); +#ifdef DoMatrixRounding + value = roundToPrecision(value, mat->epsvalue); +#endif + lp->orig_obj[rowno] = value; + count--; + row++; + colno++; + } + else if(!isNZ && (row[0] != 0)) { + value = saved = row[0]; + if(doscale) + value = scaled_mat(lp, value, 0, rowno); + value = my_chsign(is_maxim(lp), value); +#ifdef DoMatrixRounding + value = roundToPrecision(value, mat->epsvalue); +#endif + lp->orig_obj[rowno] = value; + row[0] = 0; + } + else { + lp->orig_obj[rowno] = 0; + value = 0; + } + } + + /* Optionally tally and map the new non-zero values */ + i = mat->row_end[rowno-1]; + ii = mat->row_end[rowno]; // ****** KE 20070106 - was "-1" + firstcol = mat->columns + 1; + if(isNZ) { + /* See if we can do fast in-place replacements of leading items */ + colnr = 1; /* initialise in case of an empty row */ + while((i < ii) /* && (count > 0) */ && ((colnr = ROW_MAT_COLNR(i)) == *colno) && (count > 0)) { + value = *row; // ****** KE 20080111 - Added line + if(mat->is_roworder) { + if(isA && doscale) + value = scaled_mat(lp, value, colnr, rowno); + if(isA) + value = my_chsign(is_chsign(lp, colnr), value); + } + else { + if(isA && doscale) + value = scaled_mat(lp, value, rowno, colnr); + if(isA) + value = my_chsign(is_chsign(lp, rowno), value); + } +#ifdef DoMatrixRounding + value = roundToPrecision(value, mat->epsvalue); + if(value == 0) + matz++; +#endif + ROW_MAT_VALUE(i) = value; + i++; + count--; + row++; + colno++; + } + if(i >= ii) + colnr = 0; + /* Proceed with remaining entries */ + newnr = count; + if(newnr > 0) + firstcol = colno[0]; + } + else { + newnr = 0; + kk = mat->columns; + if(i < ii) + colnr = ROW_MAT_COLNR(i); + else + colnr = 0; + for(k = 1; k <= kk; k++) { + value = row[k]; // ****** KE 20080111 - Added line + if(fabs(value) > mat->epsvalue) { + /* See if we can do fast in-place replacements of leading items */ + if((addto == NULL) && (i < ii) && (colnr == k)) { + if(mat->is_roworder) { + if(isA && doscale) + value = scaled_mat(lp, value, colnr, rowno); + if(isA) + value = my_chsign(is_chsign(lp, colnr), value); + } + else { + if(isA && doscale) + value = scaled_mat(lp, value, rowno, colnr); + if(isA) + value = my_chsign(is_chsign(lp, rowno), value); + } +#ifdef DoMatrixRounding + value = roundToPrecision(value, mat->epsvalue); + if(value == 0) + matz++; +#endif + ROW_MAT_VALUE(i) = value; + i++; + if(i < ii) + colnr = ROW_MAT_COLNR(i); + else + colnr = 0; + } + /* Otherwise update addto-list */ + else { + if(addto == NULL) { + if(!allocMYBOOL(lp, &addto, mat->columns + 1, TRUE)) + return( FALSE ); + firstcol = k; + } + addto[k] = TRUE; + newnr++; + } + } + } + } + if(newnr == 0) + if (FALSE) + return( TRUE ); + + /* Make sure we have enough matrix space */ + if((newnr > 0) && (mat_nz_unused(mat) <= newnr) && !inc_mat_space(mat, newnr)) { + newnr = 0; + goto Done; + } + + /* Pack initial entries if existing row data has a lower column + start index than the first index of the new vector */ + orignr = mat_nonzeros(mat); + /* delta = newnr - mat_rowlength(mat, rowno);*/ + kk = 0; + if(rowno == 0) + ii = 0; + else + ii = mat->row_end[rowno-1]; + + if((orignr == 0) || (ii >= orignr)) + j = firstcol; + else if(isNZ||TRUE) + j = colnr; + else + j = ROW_MAT_COLNR(ii); /* first column with a value on that row */ + + jj = mat->col_end[firstcol-1]; /* Set the index of the insertion point for the first new value */ + if(jj >= orignr) + colnr = firstcol; + else + colnr = COL_MAT_COLNR(jj); /* first column with a value starting from firstcol */ + + if((j > 0) && (j < colnr)) { + jj = elmnr = mat->col_end[j-1]; + for( ; j < colnr; j++) { + /* Shift entries in current column */ + k = mat->col_end[j]; + for( ; jj < k; jj++) { + if(COL_MAT_ROWNR(jj) != rowno) { + COL_MAT_COPY(elmnr, jj); + elmnr++; + } + } + /* Update next column start index */ + mat->col_end[j] = elmnr; + } + delta = elmnr - jj; /* The shrinkage count */ + } + else { + delta = 0; + /* Adjust for case where we simply append values - jj is initially the first column item */ + if((mat->col_end[firstcol] == orignr) && 0) + jj = orignr; + } + + /* Make sure we have sufficient space for any additional entries and move existing data down; + this ensures that we only have to relocate matrix elements up in the next stage */ + jj_j = MAX(0, newnr + delta); + if(jj_j > 0) { + if(!inc_mat_space(mat, jj_j)) { + FREE(addto); + return( FALSE ); + } + if(orignr-jj > 0) { + COL_MAT_MOVE(jj+jj_j, jj, orignr-jj); + } + jj += jj_j; + } + + /* Handle case where the matrix was empty before (or we can simply append) */ + if((delta >= 0) && (mat->col_end[firstcol] == orignr) && 0) { + if(isNZ) + elmnr = count; + else + elmnr = mat->columns; + jj_j = mat->col_end[firstcol]; + for(newnr = 0; newnr < elmnr; newnr++) { + if(isNZ) + colnr = colno[newnr]; + else + colnr = newnr + 1; + /* Update column start position if we have crossed a column */ + while(colnr > firstcol) { + mat->col_end[firstcol] = jj_j; + firstcol++; + } + if(isNZ || ((addto != NULL) && addto[colnr])) { + if(isNZ) + value = row[newnr]; + else + value = row[colnr]; + if(isA && doscale) + value = scaled_mat(lp, value, rowno, colnr); + if(isA) + value = my_chsign(is_chsign(lp, rowno), value); +#ifdef DoMatrixRounding + value = roundToPrecision(value, mat->epsvalue); + if(value == 0) + matz++; +#endif + SET_MAT_ijA(jj_j, rowno, colnr, value); + jj_j++; + /* Update last column start position */ + mat->col_end[firstcol] = jj_j; + firstcol++; + } + } + + /* Make sure we update tail empty column offsets */ + while(firstcol <= mat->columns) { + mat->col_end[firstcol] = jj_j; + firstcol++; + } + jj_j = 0; + } + + /* Start from the top of the first non-zero column of the new row */ + elmnr = orignr + jj_j; + if(jj <= elmnr) { + if(isNZ) + newnr = 0; + else + newnr = firstcol - 1; + j = jj - mat->col_end[firstcol-1]; + colnr = firstcol; + while((jj < elmnr) || (newnr < count)) { + + /* Update column start position if we have crossed a column */ + while(colnr > firstcol) { + mat->col_end[firstcol] = kk; + firstcol++; + } + + /* See if we have a row equal to or greater than the target row */ + jj_j = jj - j; + if(jj < elmnr) { + rownr = COL_MAT_ROWNR(jj); + colnr = COL_MAT_COLNR(jj); + } + else { + rownr = rowno; + if(!isNZ) /* KE added this conditional on 13.9.2006 */ + colnr = firstcol + 1; + else + colnr = mat->columns + 1; + } + + if(isNZ) { + if(newnr < count) + kk = colno[newnr]; + else + kk = mat->columns + 1; + } + else + kk = newnr + 1; + + /* Test if there is an available new item ... */ + if((isNZ && (kk > colnr)) || /* If this is not the case */ + (!isNZ && ((kk > colnr) || (!addto[kk])))) { + /* DELETE if there is an existing value */ + if(!isNZ && (kk <= colnr)) + newnr++; + if(rownr == rowno) { + kk = jj_j; + j++; + jj++; + continue; + } + /* KEEP otherwise and move entry up */ + if(!isNZ && (colnr > kk)) { + colnr = kk; + kk = jj_j; + continue; + } + } + else if((colnr > kk) || /* Existing column index > new => INSERT */ + ((colnr == kk) && (rownr >= rowno)) ) { /* Same column index, existing row >= target row => INSERT/REPLACE */ + + if(isNZ) + value = row[newnr]; + else + value = row[newnr+1]; + newnr++; + if(isA && doscale) + value = scaled_mat(lp, value, rowno, kk); + if(isA) + value = my_chsign(is_chsign(lp, rowno), value); +#ifdef DoMatrixRounding + value = roundToPrecision(value, mat->epsvalue); + if(value == 0) + matz++; +#endif + SET_MAT_ijA(jj_j, rowno, kk, value); + + /* Adjust if we have inserted an element */ + if((colnr > kk) || (rownr > rowno)) { + j--; + jj--; + } + colnr = kk; + kk = jj_j; + jj++; + continue; + } + + /* Shift the matrix element up by the active difference */ + if(jj_j != jj) { + COL_MAT_COPY(jj_j, jj); + } + kk = jj_j; + jj++; + + } + + /* Update pending / incomplete column start position */ + while(colnr > firstcol) { + mat->col_end[firstcol] = kk; + firstcol++; + } + + /* Make sure we update tail column offsets */ + jj_j = jj - j; + while(firstcol <= mat->columns) { + mat->col_end[firstcol] = jj_j; + firstcol++; + } + } + + /* Compact in the case that we added zeros and set flag for row index update */ + if(matz > 0) + mat_zerocompact(mat); + mat->row_end_valid = FALSE; + +Done: + if(saved != 0) + row[0] = saved; + FREE(addto); + return( (MYBOOL) (newnr > 0) ); + +} + +#else + +STATIC MYBOOL mat_setrow(MATrec *mat, int rowno, int count, LPSREAL *row, int *colno, MYBOOL doscale, MYBOOL checkrowmode) +{ + lprec *lp = mat->lp; + int delta, delta1; + int k, i, ii, j, jj_j, lendense, + origidx = 0, newidx, orignz, newnz, + rownr, colnr, colnr1; + MYBOOL isA, isNZ; + LPSREAL value = 0.0; + + /* Check if we are in row order mode and should add as column instead; + the matrix will be transposed at a later stage */ + if(checkrowmode && mat->is_roworder) + return( mat_setcol(mat, rowno, count, row, colno, doscale, FALSE) ); + + /* Do initialization and validation */ + if(!mat_validate(mat)) + return( FALSE ); + isA = (MYBOOL) (mat == lp->matA); + if(doscale && isA && !lp->scaling_used) + doscale = FALSE; + isNZ = (MYBOOL) (colno != NULL); + lendense = (mat->is_roworder ? lp->rows : lp->columns); + if((count < 0) || (count > lendense)) + return( FALSE ); + colnr1 = lendense + 1; + + /* Capture OF definition in row mode */ + if(isA && mat->is_roworder) { + lp->orig_obj[rowno] = 0; + if((count > 0) && (colno[0] == 0)) { + value = row[0]; + if(doscale) + value = scaled_mat(lp, value, 0, rowno); + value = my_chsign(is_maxim(lp), value); +#ifdef DoMatrixRounding + value = roundToPrecision(value, mat->epsvalue); +#endif + lp->orig_obj[rowno] = value; + if(isNZ) { + colno++; + row++; + count--; + } + } + else { + lp->orig_obj[rowno] = 0; + value = 0; + } + } + + /* Make local working data copies */ + if(!isNZ) { + LPSREAL *tmprow = NULL; + if(!allocINT(lp, &colno, lendense+1, FALSE)) + return( FALSE ); + newnz = 0; + for(i = 1; i <= lendense; i++) + if((value = row[i]) != 0) { + if((tmprow == NULL) && !allocREAL(lp, &tmprow, lendense-i+1, FALSE)) { + FREE(colno); + return( FALSE ); + } + tmprow[newnz] = value; + colno[newnz++] = i; + } + count = newnz; + row = tmprow; + } + else { + int *tmpcolno = NULL; + if(!allocINT(lp, &tmpcolno, lendense, FALSE)) + return( FALSE ); + newnz = count; + MEMCOPY(tmpcolno, colno, newnz); + colno = tmpcolno; + if(newnz > 1) + sortREALByINT(row, (int *) colno, newnz, 0, TRUE); + if((newnz > 0) && ((colno[0] < 0) || (colno[newnz-1] > lendense))) { + FREE(colno); + newnz = 0; + return( FALSE ); + } + } + + /* Make sure we have enough matrix space */ + i = mat->row_end[rowno-1]; + ii = mat->row_end[rowno]; + delta1 = delta = count - (ii-i); + colnr1 = (newnz > 0 ? colno[0] : lendense+1); + + /* Pack initial entries if existing row data has a lower column + start index than the first index of the new vector */ + orignz = mat_nonzeros(mat); + j = (i >= orignz ? colnr1 : ROW_MAT_COLNR(i)); + + /* Index of the column-top insertion point for the first new value */ + origidx = mat->col_end[colnr1-1]; + colnr = (origidx >= orignz ? colnr1 : COL_MAT_COLNR(origidx)); + + if(j < colnr) { + origidx = newidx = mat->col_end[j-1]; + for( ; j < colnr; j++) { + /* Shift entries in current column */ + jj_j = mat->col_end[j]; + for( ; origidx < jj_j; origidx++) { + if(COL_MAT_ROWNR(origidx) != rowno) { + if(newidx != origidx) { + COL_MAT_COPY(newidx, origidx); + } + newidx++; + } + } + /* Update next column start index */ + mat->col_end[j] = newidx; + } + delta = newidx - origidx; /* The first stage element shrinkage count */ + } + else { + delta = 0; + newidx = origidx; + } + + /* Make sure we have sufficient space for any additional entries and move existing data down; + this ensures that we only have to relocate matrix elements up in the next stage */ + jj_j = MAX(0, (int) newnz + delta); + + j = !((orignz == lendense) && (newnz == orignz) && (delta1 == 0)) && (jj_j > 0) && (orignz > origidx); + + if ((j) && (jj_j > delta1)) + delta1 = jj_j; + + if((delta1 > 0) && (mat_nz_unused(mat) <= delta1) && !inc_mat_space(mat, delta1)) { + newnz = 0; + goto Done; + } + + if(j) { + COL_MAT_MOVE(origidx+jj_j, origidx, orignz-origidx); + origidx += jj_j; + orignz += jj_j; + } + + /* Start from the top of the first non-zero column of the new row */ + newnz = 0; + j = origidx - mat->col_end[colnr1-1]; + k = colnr1; /* Last column for which col_end is valid/updated */ + while((colnr1 <= lendense) || (origidx < orignz)) { + + /* Get the column index of the active update item */ + if(newnz < count) + colnr1 = colno[newnz]; + else + colnr1 = lendense + 1; + + /* Get coordinate of active existing matrix entries */ + if(origidx < orignz) { + rownr = COL_MAT_ROWNR(origidx); + colnr = COL_MAT_COLNR(origidx); + } + else { + if(colnr1 > lendense) + break; + rownr = rowno; + colnr = lendense + 1; + } + + /* Update column start position if we just crossed into a column */ + jj_j = origidx - j; + i = MIN(colnr, colnr1); + for(; k < i; k++) + mat->col_end[k] = jj_j; + + /* Test if there is an available new item ... */ + if(colnr1 > colnr) { /* If this is not the case */ + /* DELETE if there is an existing value */ + if(rownr == rowno) { +ForceDelete: + j++; + delta--; + origidx++; + continue; + } + } + else if((colnr > colnr1) || /* Existing column index > new => INSERT */ + ((colnr == colnr1) && (rownr >= rowno)) ) { /* Same column index, existing row >= target row => INSERT/REPLACE */ + + value = row[newnz]; + newnz++; + if(isA && doscale) + value = scaled_mat(lp, value, rowno, colnr1); + if(isA) + value = my_chsign(is_chsign(lp, rowno), value); +#ifdef DoMatrixRounding + value = roundToPrecision(value, mat->epsvalue); + if(value == 0) { + if((colnr > colnr1) || (rownr > rowno)) + ; + else + goto ForceDelete; + } +#endif + SET_MAT_ijA(jj_j, rowno, colnr1, value); + + /* Adjust if we have inserted an element */ + if((colnr > colnr1) || (rownr > rowno)) { + j--; + origidx--; + jj_j++; + delta++; + } + origidx++; + continue; + } + + /* Shift the matrix element up by the active difference */ + if(jj_j != origidx) { + COL_MAT_COPY(jj_j, origidx); + } + origidx++; + } + + /* Update pending / incomplete column start position */ + jj_j = origidx - j; + for(; k <= lendense; k++) + mat->col_end[k] = jj_j; + mat->row_end_valid = FALSE; + +Done: + if(!isNZ) + FREE(row); + FREE(colno); + return( (MYBOOL) (newnz > 0) ); + +} /* mat_setrow */ +#endif + +STATIC int mat_appendrow(MATrec *mat, int count, LPSREAL *row, int *colno, LPSREAL mult, MYBOOL checkrowmode) +{ + int i, j, jj = 0, stcol, elmnr, orignr, newnr, firstcol; + MYBOOL *addto = NULL, isA, isNZ; + LPSREAL value, saved = 0; + lprec *lp = mat->lp; + + /* Check if we are in row order mode and should add as column instead; + the matrix will be transposed at a later stage */ + if(checkrowmode && mat->is_roworder) + return( mat_appendcol(mat, count, row, colno, mult, FALSE) ); + + /* Do initialization and validation */ + isA = (MYBOOL) (mat == lp->matA); + isNZ = (MYBOOL) (colno != NULL); + if(isNZ && (count > 0)) { + if(count > 1) + sortREALByINT(row, colno, count, 0, TRUE); + if((colno[0] < 1) || (colno[count-1] > mat->columns)) + return( 0 ); + } + /* else if((row != NULL) && !mat->is_roworder) */ + else if(!isNZ && (row != NULL) && !mat->is_roworder) + row[0] = 0; + + /* Capture OF definition in row mode */ + if(isA && mat->is_roworder) { + if(isNZ && (colno[0] == 0)) { + value = row[0]; +#ifdef DoMatrixRounding + value = roundToPrecision(value, mat->epsvalue); +#endif + value = scaled_mat(lp, value, 0, lp->columns); + value = my_chsign(is_maxim(lp), value); + lp->orig_obj[lp->columns] = value; + count--; + row++; + colno++; + } + else if(!isNZ && (row != NULL) && (row[0] != 0)) { + value = saved = row[0]; +#ifdef DoMatrixRounding + value = roundToPrecision(value, mat->epsvalue); +#endif + value = scaled_mat(lp, value, 0, lp->columns); + value = my_chsign(is_maxim(lp), value); + lp->orig_obj[lp->columns] = value; + row[0] = 0; + } + else + lp->orig_obj[lp->columns] = 0; + } + + /* Optionally tally and map the new non-zero values */ + firstcol = mat->columns + 1; + if(isNZ) { + newnr = count; + if(newnr) { + firstcol = colno[0]; + jj = colno[newnr - 1]; + } + } + else { + newnr = 0; + if(row != NULL) { + if(!allocMYBOOL(lp, &addto, mat->columns + 1, TRUE)) { + return( newnr ); + } + for(i = mat->columns; i >= 1; i--) { + if(fabs(row[i]) > mat->epsvalue) { + addto[i] = TRUE; + firstcol = i; + newnr++; + } + } + } + } + + /* Make sure we have sufficient space */ + if(!inc_mat_space(mat, newnr)) { + newnr = 0; + goto Done; + } + + /* Insert the non-zero constraint values */ + orignr = mat_nonzeros(mat) - 1; + elmnr = orignr + newnr; + + for(j = mat->columns; j >= firstcol; j--) { + stcol = mat->col_end[j] - 1; + mat->col_end[j] = elmnr + 1; + + /* Add a new non-zero entry */ + if(((isNZ) && (j == jj)) || ((addto != NULL) && (addto[j]))) { + newnr--; + if(isNZ) { + value = row[newnr]; + if(newnr) + jj = colno[newnr - 1]; + else + jj = 0; + } + else + value = row[j]; +#ifdef DoMatrixRounding + value = roundToPrecision(value, mat->epsvalue); +#endif + value *= mult; + if(isA) { + if(mat->is_roworder) + value = my_chsign(is_chsign(lp, j), value); + value = scaled_mat(lp, value, mat->rows, j); + } + SET_MAT_ijA(elmnr, mat->rows, j, value); + elmnr--; + } + + /* Shift previous column entries down */ + i = stcol - mat->col_end[j-1] + 1; + if(i > 0) { + orignr -= i; + elmnr -= i; + COL_MAT_MOVE(elmnr+1, orignr+1, i); + } + } + +Done: + if(saved != 0) + row[0] = saved; + FREE(addto); + + return( newnr ); + +} + +STATIC int mat_appendcol(MATrec *mat, int count, LPSREAL *column, int *rowno, LPSREAL mult, MYBOOL checkrowmode) +{ + int i, row, elmnr, lastnr; + LPSREAL value; + MYBOOL isA, isNZ; + lprec *lp = mat->lp; + + /* Check if we are in row order mode and should add as row instead; + the matrix will be transposed at a later stage */ + if(checkrowmode && mat->is_roworder) + return( mat_appendrow(mat, count, column, rowno, mult, FALSE) ); + + /* Make sure we have enough space */ +/* + if(!inc_mat_space(mat, mat->rows+1)) + return( 0 ); +*/ + if(column == NULL) + i = 0; + else if(rowno != NULL) + i = count; + else { + int nrows = mat->rows; + + elmnr = 0; + for(i = 1; i <= nrows; i++) + if(column[i] != 0) + elmnr++; + i = elmnr; + } + if((mat_nz_unused(mat) <= i) && !inc_mat_space(mat, i)) + return( 0 ); + + /* Do initialization and validation */ + isA = (MYBOOL) (mat == lp->matA); + isNZ = (MYBOOL) (column == NULL || rowno != NULL); + if(isNZ && (count > 0)) { + if(count > 1) + sortREALByINT(column, rowno, count, 0, TRUE); + if((rowno[0] < 0)) + return( 0 ); + } + if(rowno != NULL) + count--; + + /* Append sparse regular constraint values */ + elmnr = mat->col_end[mat->columns - 1]; + if(column != NULL) { + row = -1; + for(i = ((isNZ || !mat->is_roworder) ? 0 : 1); i <= count ; i++) { + value = column[i]; + if(fabs(value) > mat->epsvalue) { + if(isNZ) { + lastnr = row; + row = rowno[i]; + /* Check if we have come to the Lagrangean constraints */ + if(row > mat->rows) + break; + if(row <= lastnr) + return( -1 ); + } + else + row = i; +#ifdef DoMatrixRounding + value = roundToPrecision(value, mat->epsvalue); +#endif + if(mat->is_roworder) + value *= mult; + else if(isA) { + value = my_chsign(is_chsign(lp, row), value); + value = scaled_mat(lp, value, row, mat->columns); + if(!mat->is_roworder && (row == 0)) { + lp->orig_obj[mat->columns] = value; + continue; + } + } + + /* Store the item and update counters */ + SET_MAT_ijA(elmnr, row, mat->columns, value); + elmnr++; + } + } + + /* Fill dense Lagrangean constraints */ + if(get_Lrows(lp) > 0) + mat_appendcol(lp->matL, get_Lrows(lp), column+mat->rows, NULL, mult, checkrowmode); + + } + + /* Set end of data */ + mat->col_end[mat->columns] = elmnr; + + return( mat->col_end[mat->columns] - mat->col_end[mat->columns-1] ); +} + +STATIC int mat_checkcounts(MATrec *mat, int *rownum, int *colnum, MYBOOL freeonexit) +{ + int i, j, n; + int *rownr; + + if(rownum == NULL) + allocINT(mat->lp, &rownum, mat->rows + 1, TRUE); + if(colnum == NULL) + allocINT(mat->lp, &colnum, mat->columns + 1, TRUE); + + for(i = 1 ; i <= mat->columns; i++) { + j = mat->col_end[i - 1]; + n = mat->col_end[i]; + rownr = &COL_MAT_ROWNR(j); + for(; j < n; + j++, rownr += matRowColStep) { + colnum[i]++; + rownum[*rownr]++; + } + } + + n = 0; + if((mat->lp->do_presolve != PRESOLVE_NONE) && + (mat->lp->spx_trace || (mat->lp->verbose > NORMAL))) { + for(j = 1; j <= mat->columns; j++) + if(colnum[j] == 0) { + n++; + report(mat->lp, FULL, "mat_checkcounts: Variable %s is not used in any constraints\n", + get_col_name(mat->lp, j)); + } + for(i = 0; i <= mat->rows; i++) + if(rownum[i] == 0) { + n++; + report(mat->lp, FULL, "mat_checkcounts: Constraint %s empty\n", + get_row_name(mat->lp, i)); + } + } + + if(freeonexit) { + FREE(rownum); + FREE(colnum); + } + + return( n ); + +} + +STATIC MYBOOL mat_validate(MATrec *mat) +/* Routine to make sure that row mapping arrays are valid */ +{ + int i, j, je, *rownum; + int *rownr, *colnr; + + if(!mat->row_end_valid) { + + MEMCLEAR(mat->row_end, mat->rows + 1); + allocINT(mat->lp, &rownum, mat->rows + 1, TRUE); + + /* First tally row counts and then cumulate them */ + j = mat_nonzeros(mat); + rownr = &COL_MAT_ROWNR(0); + for(i = 0; i < j; i++, rownr += matRowColStep) + mat->row_end[*rownr]++; + for(i = 1; i <= mat->rows; i++) + mat->row_end[i] += mat->row_end[i - 1]; + + /* Calculate the column index for every non-zero */ + for(i = 1; i <= mat->columns; i++) { + j = mat->col_end[i - 1]; + je = mat->col_end[i]; + rownr = &COL_MAT_ROWNR(j); + colnr = &COL_MAT_COLNR(j); + for(; j < je; j++, rownr += matRowColStep, colnr += matRowColStep) { +#ifdef Paranoia + if(/*(*colnr < 0) || (*colnr > mat->columns) || (Normally violated in primal phase 1) */ + (*rownr < 0) || (*rownr > mat->rows)) { + report(mat->lp, SEVERE, "mat_validate: Matrix value storage error row %d [0..%d], column %d [1..%d]\n", + *rownr, mat->rows, *colnr, mat->columns); + mat->lp->spx_status = UNKNOWNERROR; + return(FALSE); + } +#endif + *colnr = i; + if(*rownr == 0) + mat_set_rowmap(mat, rownum[*rownr], + *rownr, i, j); + else + mat_set_rowmap(mat, mat->row_end[*rownr - 1] + rownum[*rownr], + *rownr, i, j); + rownum[*rownr]++; + } + } + + FREE(rownum); + mat->row_end_valid = TRUE; + } + + if(mat == mat->lp->matA) + mat->lp->model_is_valid = TRUE; + return( TRUE ); +} + +MYBOOL mat_get_data(lprec *lp, int matindex, MYBOOL isrow, int **rownr, int **colnr, LPSREAL **value) +{ + MATrec *mat = lp->matA; + +#if MatrixRowAccess == RAM_Index + if(isrow) + matindex = mat->row_mat[matindex]; + if(rownr != NULL) + *rownr = &COL_MAT_ROWNR(matindex); + if(colnr != NULL) + *colnr = &COL_MAT_COLNR(matindex); + if(value != NULL) + *value = &COL_MAT_VALUE(matindex); + +#else + if(isrow) { + if(rownr != NULL) + *rownr = &ROW_MAT_ROWNR(matindex); + if(colnr != NULL) + *colnr = &ROW_MAT_COLNR(matindex); + if(value != NULL) + *value = &ROW_MAT_VALUE(matindex); + } + else { + if(rownr != NULL) + *rownr = &COL_MAT_ROWNR(matindex); + if(colnr != NULL) + *colnr = &COL_MAT_COLNR(matindex); + if(value != NULL) + *value = &COL_MAT_VALUE(matindex); + } + +#endif + + return( TRUE ); +} + + +MYBOOL mat_set_rowmap(MATrec *mat, int row_mat_index, int rownr, int colnr, int col_mat_index) +{ +#if MatrixRowAccess == RAM_Index + mat->row_mat[row_mat_index] = col_mat_index; + +#elif MatrixColAccess==CAM_Record + mat->row_mat[row_mat_index].rownr = rownr; + mat->row_mat[row_mat_index].colnr = colnr; + mat->row_mat[row_mat_index].value = COL_MAT_VALUE(col_mat_index); + +#else /* if MatrixColAccess==CAM_Vector */ + mat->row_mat_rownr[row_mat_index] = rownr; + mat->row_mat_colnr[row_mat_index] = colnr; + mat->row_mat_value[row_mat_index] = COL_MAT_VALUE(col_mat_index); + +#endif + + return( TRUE ); +} + +/* Implement combined binary/linear sub-search for matrix look-up */ +int mat_findelm(MATrec *mat, int row, int column) +{ + int low, high, mid, item; + +#if 0 + if(mat->row_end_valid && (row > 0) && + (ROW_MAT_COLNR(mat->row_mat[(low = mat->row_end[row-1])]) == column)) + return(low); +#endif + + if((column < 1) || (column > mat->columns)) { + report(mat->lp, IMPORTANT, "mat_findelm: Column %d out of range\n", column); + return( -1 ); + } + if((row < 0) || (row > mat->rows)) { + report(mat->lp, IMPORTANT, "mat_findelm: Row %d out of range\n", row); + return( -1 ); + } + + low = mat->col_end[column - 1]; + high = mat->col_end[column] - 1; + if(low > high) + return( -2 ); + + /* Do binary search logic */ + mid = (low+high) / 2; + item = COL_MAT_ROWNR(mid); + while(high - low > LINEARSEARCH) { + if(item < row) { + low = mid + 1; + mid = (low+high) / 2; + item = COL_MAT_ROWNR(mid); + } + else if(item > row) { + high = mid - 1; + mid = (low+high) / 2; + item = COL_MAT_ROWNR(mid); + } + else { + low = mid; + high = mid; + } + } + + /* Do linear scan search logic */ + if((high > low) && (high - low <= LINEARSEARCH)) { + item = COL_MAT_ROWNR(low); + while((low < high) && (item < row)) { + low++; + item = COL_MAT_ROWNR(low); + } + if(item == row) + high = low; + } + + if((low == high) && (row == item)) + return( low ); + else + return( -2 ); +} + +int mat_findins(MATrec *mat, int row, int column, int *insertpos, MYBOOL validate) +{ + int low, high, mid, item, exitvalue, insvalue; + +#if 0 + if(mat->row_end_valid && (row > 0) && + (ROW_MAT_COLNR(mat->row_mat[(low = mat->row_end[row-1])]) == column)) { + insvalue = low; + exitvalue = low; + goto Done; + } +#endif + + insvalue = -1; + + if((column < 1) || (column > mat->columns)) { + if((column > 0) && !validate) { + insvalue = mat->col_end[mat->columns]; + exitvalue = -2; + goto Done; + } + report(mat->lp, IMPORTANT, "mat_findins: Column %d out of range\n", column); + exitvalue = -1; + goto Done; + } + if((row < 0) || (row > mat->rows)) { + if((row >= 0) && !validate) { + insvalue = mat->col_end[column]; + exitvalue = -2; + goto Done; + } + report(mat->lp, IMPORTANT, "mat_findins: Row %d out of range\n", row); + exitvalue = -1; + goto Done; + } + + low = mat->col_end[column - 1]; + insvalue = low; + high = mat->col_end[column] - 1; + if(low > high) { + exitvalue = -2; + goto Done; + } + + /* Do binary search logic */ + mid = (low+high) / 2; + item = COL_MAT_ROWNR(mid); + while(high - low > LINEARSEARCH) { + if(item < row) { + low = mid + 1; + mid = (low+high) / 2; + item = COL_MAT_ROWNR(mid); + } + else if(item > row) { + high = mid - 1; + mid = (low+high) / 2; + item = COL_MAT_ROWNR(mid); + } + else { + low = mid; + high = mid; + } + } + + /* Do linear scan search logic */ + if((high > low) && (high - low <= LINEARSEARCH)) { + item = COL_MAT_ROWNR(low); + while((low < high) && (item < row)) { + low++; + item = COL_MAT_ROWNR(low); + } + if(item == row) + high = low; + } + + insvalue = low; + if((low == high) && (row == item)) + exitvalue = low; + else { + if((low < mat->col_end[column]) && (COL_MAT_ROWNR(low) < row)) + insvalue++; + exitvalue = -2; + } + +Done: + if(insertpos != NULL) + (*insertpos) = insvalue; + return( exitvalue ); +} + +STATIC LPSREAL mat_getitem(MATrec *mat, int row, int column) +{ + int elmnr; + +#ifdef DirectOverrideOF + if((row == 0) && (mat == mat->lp->matA) && (mat->lp->OF_override != NULL)) + return( mat->lp->OF_override[column] ); + else +#endif + { + elmnr = mat_findelm(mat, row, column); + if(elmnr >= 0) + return( COL_MAT_VALUE(elmnr) ); + else + return( 0 ); + } +} + +STATIC MYBOOL mat_additem(MATrec *mat, int row, int column, LPSREAL delta) +{ + int elmnr; + +#ifdef DirectOverrideOF + if((row == 0) && (mat == mat->lp->matA) && (mat->lp->OF_override != NULL)) + return( mat->lp->OF_override[column] ); + else +#endif + { + elmnr = mat_findelm(mat, row, column); + if(elmnr >= 0) { + COL_MAT_VALUE(elmnr) += delta; + return( TRUE ); + } + else { + mat_setitem(mat, row, column, delta); + return( FALSE ); + } + } +} + +STATIC MYBOOL mat_setitem(MATrec *mat, int row, int column, LPSREAL value) +{ + return( mat_setvalue(mat, row, column, value, FALSE) ); +} + +STATIC void mat_multrow(MATrec *mat, int row_nr, LPSREAL mult) +{ + int i, k1, k2; + +#if 0 + if(row_nr == 0) { + k2 = mat->col_end[0]; + for(i = 1; i <= mat->columns; i++) { + k1 = k2; + k2 = mat->col_end[i]; + if((k1 < k2) && (COL_MAT_ROWNR(k1) == row_nr)) + COL_MAT_VALUE(k1) *= mult; + } + } + else if(mat_validate(mat)) { + if(row_nr == 0) + k1 = 0; + else +#else + if(mat_validate(mat)) { + if(row_nr == 0) + k1 = 0; + else +#endif + k1 = mat->row_end[row_nr-1]; + k2 = mat->row_end[row_nr]; + for(i = k1; i < k2; i++) + ROW_MAT_VALUE(i) *= mult; + } +} + +STATIC void mat_multcol(MATrec *mat, int col_nr, LPSREAL mult, MYBOOL DoObj) +{ + int i, ie; + MYBOOL isA; + +#ifdef Paranoia + if((col_nr < 1) || (col_nr > mat->columns)) { + report(mat->lp, IMPORTANT, "mult_column: Column %d out of range\n", col_nr); + return; + } +#endif + if(mult == 1.0) + return; + + isA = (MYBOOL) (mat == mat->lp->matA); + + ie = mat->col_end[col_nr]; + for(i = mat->col_end[col_nr - 1]; i < ie; i++) + COL_MAT_VALUE(i) *= mult; + if(isA) { + if(DoObj) + mat->lp->orig_obj[col_nr] *= mult; + if(get_Lrows(mat->lp) > 0) + mat_multcol(mat->lp->matL, col_nr, mult, DoObj); + } +} + +STATIC void mat_multadd(MATrec *mat, LPSREAL *lhsvector, int varnr, LPSREAL mult) +{ + int colnr; + register int ib, ie, *matRownr; + register LPSREAL *matValue; + + /* Handle case of a slack variable */ + if(varnr <= mat->lp->rows) { + lhsvector[varnr] += mult; + return; + } + + /* Do operation on the objective */ + if(mat->lp->matA == mat) + lhsvector[0] += get_OF_active(mat->lp, varnr, mult); + + /* Scan the constraint matrix target columns */ + colnr = varnr - mat->lp->rows; + ib = mat->col_end[colnr - 1]; + ie = mat->col_end[colnr]; + if(ib < ie) { + + /* Initialize pointers */ + matRownr = &COL_MAT_ROWNR(ib); + matValue = &COL_MAT_VALUE(ib); + + /* Then loop over all regular rows */ + for(; ib < ie; + ib++, matValue += matValueStep, matRownr += matRowColStep) { + lhsvector[*matRownr] += mult * (*matValue); + } + } + +} + +STATIC MYBOOL mat_setvalue(MATrec *mat, int Row, int Column, LPSREAL Value, MYBOOL doscale) +{ + int elmnr, lastelm, i, RowA = Row, ColumnA = Column; + MYBOOL isA; + + /* This function is inefficient if used to add new matrix entries in + other places than at the end of the matrix. OK for replacing existing + a non-zero value with another non-zero value */ + isA = (MYBOOL) (mat == mat->lp->matA); + if(mat->is_roworder) + swapINT(&Row, &Column); + + /* Set small numbers to zero */ + if(fabs(Value) < mat->epsvalue) + Value = 0; +#ifdef DoMatrixRounding + else + Value = roundToPrecision(Value, mat->epsvalue); +#endif + + /* Check if we need to update column space */ + if(Column > mat->columns) { + if(isA) + inc_col_space(mat->lp, ColumnA - mat->columns); + else + inc_matcol_space(mat, Column - mat->columns); + } + + /* Find out if we already have such an entry, or return insertion point */ + i = mat_findins(mat, Row, Column, &elmnr, FALSE); + if(i == -1) + return(FALSE); + + if(isA) + set_action(&mat->lp->spx_action, ACTION_REBASE | ACTION_RECOMPUTE | ACTION_REINVERT); + + if(i >= 0) { + /* there is an existing entry */ + if(fabs(Value) > mat->epsvalue) { /* we replace it by something non-zero */ + if(isA) { + Value = my_chsign(is_chsign(mat->lp, RowA), Value); + if(doscale && mat->lp->scaling_used) + Value = scaled_mat(mat->lp, Value, RowA, ColumnA); + } + COL_MAT_VALUE(elmnr) = Value; + } + else { /* setting existing non-zero entry to zero. Remove the entry */ + /* This might remove an entire column, or leave just a bound. No + nice solution for that yet */ + + /* Shift up tail end of the matrix */ + lastelm = mat_nonzeros(mat); +#if 0 + for(i = elmnr; i < lastelm ; i++) { + COL_MAT_COPY(i, i + 1); + } +#else + lastelm -= elmnr; + COL_MAT_MOVE(elmnr, elmnr + 1, lastelm); +#endif + for(i = Column; i <= mat->columns; i++) + mat->col_end[i]--; + + mat->row_end_valid = FALSE; + } + } + else if(fabs(Value) > mat->epsvalue) { + /* no existing entry. make new one only if not nearly zero */ + /* check if more space is needed for matrix */ + if(!inc_mat_space(mat, 1)) + return(FALSE); + + if(Column > mat->columns) { + i = mat->columns + 1; + if(isA) + shift_coldata(mat->lp, i, ColumnA - mat->columns, NULL); + else + mat_shiftcols(mat, &i, Column - mat->columns, NULL); + } + + /* Shift down tail end of the matrix by one */ + lastelm = mat_nonzeros(mat); +#if 1 /* Does compiler optimization work better here? */ + for(i = lastelm; i > elmnr ; i--) { + COL_MAT_COPY(i, i - 1); + } +#else + lastelm -= elmnr - 1; + COL_MAT_MOVE(elmnr + 1, elmnr, lastelm); +#endif + + /* Set new element */ + if(isA) { + Value = my_chsign(is_chsign(mat->lp, RowA), Value); + if(doscale) + Value = scaled_mat(mat->lp, Value, RowA, ColumnA); + } + SET_MAT_ijA(elmnr, Row, Column, Value); + + /* Update column indexes */ + for(i = Column; i <= mat->columns; i++) + mat->col_end[i]++; + + mat->row_end_valid = FALSE; + } + + if(isA && (mat->lp->var_is_free != NULL) && (mat->lp->var_is_free[ColumnA] > 0)) + return( mat_setvalue(mat, RowA, mat->lp->var_is_free[ColumnA], -Value, doscale) ); + return(TRUE); +} + +STATIC MYBOOL mat_appendvalue(MATrec *mat, int Row, LPSREAL Value) +{ + int *elmnr, Column = mat->columns; + + /* Set small numbers to zero */ + if(fabs(Value) < mat->epsvalue) + Value = 0; +#ifdef DoMatrixRounding + else + Value = roundToPrecision(Value, mat->epsvalue); +#endif + + /* Check if more space is needed for matrix */ + if(!inc_mat_space(mat, 1)) + return(FALSE); + +#ifdef Paranoia + /* Check valid indeces */ + if((Row < 0) || (Row > mat->rows)) { + report(mat->lp, SEVERE, "mat_appendvalue: Invalid row index %d specified\n", Row); + return(FALSE); + } +#endif + + /* Get insertion point and set value */ + elmnr = mat->col_end + Column; + SET_MAT_ijA((*elmnr), Row, Column, Value); + + /* Update column count */ + (*elmnr)++; + mat->row_end_valid = FALSE; + + return(TRUE); +} + +STATIC MYBOOL mat_equalRows(MATrec *mat, int baserow, int comprow) +{ + MYBOOL status = FALSE; + + if(mat_validate(mat)) { + int bj1 = 0, ej1, bj2 = 0, ej2; + + /* Get starting and ending positions */ + if(baserow >= 0) + bj1 = mat->row_end[baserow-1]; + ej1 = mat->row_end[baserow]; + if(comprow >= 0) + bj2 = mat->row_end[comprow-1]; + ej2 = mat->row_end[comprow]; + /* Fail if row lengths are unequal */ + if((ej1-bj1) != (ej2-bj2)) + return( status ); + + /* Compare column index and value, element by element */ + for(; bj1 < ej1; bj1++, bj2++) { + if(COL_MAT_COLNR(bj1) != COL_MAT_COLNR(bj2)) + break; +#if 1 + if(fabs(get_mat_byindex(mat->lp, bj1, TRUE, FALSE)-get_mat_byindex(mat->lp, bj2, TRUE, FALSE)) > mat->lp->epsprimal) +#else + if(fabs(COL_MAT_VALUE(bj1)-COL_MAT_VALUE(bj2)) > mat->lp->epsprimal) +#endif + break; + } + status = (MYBOOL) (bj1 == ej1); + } + return( status ); +} + +STATIC int mat_findcolumn(MATrec *mat, int matindex) +{ + int j; + + for(j = 1; j <= mat->columns; j++) { + if(matindex < mat->col_end[j]) + break; + } + return(j); +} + +STATIC int mat_expandcolumn(MATrec *mat, int colnr, LPSREAL *column, int *nzlist, MYBOOL signedA) +{ + MYBOOL isA = (MYBOOL) (mat->lp->matA == mat); + int i, ie, j, nzcount = 0; + LPSREAL *matValue; + int *matRownr; + + signedA &= isA; + + /* Retrieve a column from the user data matrix A */ + MEMCLEAR(column, mat->rows + 1); + if(isA) { + column[0] = mat->lp->orig_obj[colnr]; + if(signedA && is_chsign(mat->lp, 0)) + column[0] = -column[0]; + } + + i = mat->col_end[colnr - 1]; + ie = mat->col_end[colnr]; + matRownr = &COL_MAT_ROWNR(i); + matValue = &COL_MAT_VALUE(i); + for(; i < ie; + i++, matRownr += matRowColStep, matValue += matValueStep) { + j = *matRownr; + column[j] = *matValue; + if(signedA && is_chsign(mat->lp, j)) + column[j] = -column[j]; + nzcount++; + if(nzlist != NULL) + nzlist[nzcount] = j; + } + if(nzlist != NULL) + nzlist[0] = nzcount; + return( nzcount ); +} + +STATIC MYBOOL mat_computemax(MATrec *mat) +{ + int *rownr = &COL_MAT_ROWNR(0), + *colnr = &COL_MAT_COLNR(0), + i = 0, ie = mat->col_end[mat->columns], ez = 0; + LPSREAL *value = &COL_MAT_VALUE(0), epsmachine = mat->lp->epsmachine, absvalue; + + /* Prepare arrays */ + if(!allocREAL(mat->lp, &mat->colmax, mat->columns_alloc+1, AUTOMATIC) || + !allocREAL(mat->lp, &mat->rowmax, mat->rows_alloc+1, AUTOMATIC)) + return( FALSE ); + MEMCLEAR(mat->colmax, mat->columns+1); + MEMCLEAR(mat->rowmax, mat->rows+1); + + /* Obtain the row and column maxima in one sweep */ + mat->dynrange = mat->lp->infinite; + for(; i < ie; + i++, rownr += matRowColStep, colnr += matRowColStep, value += matValueStep) { + absvalue = fabs(*value); + SETMAX(mat->colmax[*colnr], absvalue); + SETMAX(mat->rowmax[*rownr], absvalue); + SETMIN(mat->dynrange, absvalue); + if(absvalue < epsmachine) + ez++; + } + + /* Lastly, compute the global maximum and get the dynamic range */ + for(i = 1; i <= mat->rows; i++) + SETMAX(mat->rowmax[0], mat->rowmax[i]); + mat->infnorm = mat->colmax[0] = mat->rowmax[0]; + if(mat->dynrange == 0) { + report(mat->lp, SEVERE, "%d matrix contains zero-valued coefficients.\n", ez); + mat->dynrange = mat->lp->infinite; + } + else { + mat->dynrange = mat->infnorm / mat->dynrange; + if(ez > 0) + report(mat->lp, IMPORTANT, "%d matrix coefficients below machine precision were found.\n", ez); + } + + return( TRUE ); +} + +STATIC MYBOOL mat_transpose(MATrec *mat) +{ + int i, j, nz, k; + MYBOOL status; + + status = mat_validate(mat); + if(status) { + + /* Create a column-ordered sparse element list; "column" index must be shifted */ + nz = mat_nonzeros(mat); + if(nz > 0) { +#if MatrixColAccess==CAM_Record + MATitem *newmat; + newmat = (MATitem *) malloc((mat->mat_alloc) * sizeof(*(mat->col_mat))); + j = mat->row_end[0]; + for(i = nz-1; i >= j ; i--) { + k = i-j; + newmat[k] = mat->col_mat[mat->row_mat[i]]; + newmat[k].row_nr = newmat[k].col_nr; + } + for(i = j-1; i >= 0 ; i--) { + k = nz-j+i; + newmat[k] = mat->col_mat[mat->row_mat[i]]; + newmat[k].row_nr = newmat[k].col_nr; + } + swapPTR((void **) &mat->col_mat, (void **) &newmat); + FREE(newmat); +#else /*if MatrixColAccess==CAM_Vector*/ + LPSREAL *newValue = NULL; + int *newRownr = NULL; + allocREAL(mat->lp, &newValue, mat->mat_alloc, FALSE); + allocINT(mat->lp, &newRownr, mat->mat_alloc, FALSE); + + j = mat->row_end[0]; + for(i = nz-1; i >= j ; i--) { + k = i-j; + newValue[k] = ROW_MAT_VALUE(i); + newRownr[k] = ROW_MAT_COLNR(i); + } + for(i = j-1; i >= 0 ; i--) { + k = nz-j+i; + newValue[k] = ROW_MAT_VALUE(i); + newRownr[k] = ROW_MAT_COLNR(i); + } + + swapPTR((void **) &mat->col_mat_rownr, (void **) &newRownr); + swapPTR((void **) &mat->col_mat_value, (void **) &newValue); + FREE(newValue); + FREE(newRownr); +#endif + } + + /* Transfer row start to column start position; must adjust for different offsets */ + if(mat->rows == mat->rows_alloc) + inc_matcol_space(mat, 1); + j = mat->row_end[0]; + for(i = mat->rows; i >= 1; i--) + mat->row_end[i] -= j; + mat->row_end[mat->rows] = nz; + swapPTR((void **) &mat->row_end, (void **) &mat->col_end); + + /* Swap arrays of maximum values */ + swapPTR((void **) &mat->rowmax, (void **) &mat->colmax); + + /* Swap array sizes */ + swapINT(&mat->rows, &mat->columns); + swapINT(&mat->rows_alloc, &mat->columns_alloc); + + /* Finally set current storage mode */ + mat->is_roworder = (MYBOOL) !mat->is_roworder; + mat->row_end_valid = FALSE; + } + return(status); +} + + +/* ---------------------------------------------------------------------------------- */ +/* Change-tracking routines */ +/* ---------------------------------------------------------------------------------- */ +STATIC DeltaVrec *createUndoLadder(lprec *lp, int levelitems, int maxlevels) +{ + DeltaVrec *hold; + + hold = (DeltaVrec *) malloc(sizeof(*hold)); + hold->lp = lp; + hold->activelevel = 0; + hold->tracker = mat_create(lp, levelitems, 0, 0.0); + inc_matcol_space(hold->tracker, maxlevels); + return( hold ); +} +STATIC int incrementUndoLadder(DeltaVrec *DV) +{ + DV->activelevel++; + inc_matcol_space(DV->tracker, 1); + mat_shiftcols(DV->tracker, &(DV->activelevel), 1, NULL); + DV->tracker->columns++; + return(DV->activelevel); +} +STATIC MYBOOL modifyUndoLadder(DeltaVrec *DV, int itemno, LPSREAL target[], LPSREAL newvalue) +{ + MYBOOL status; + int varindex = itemno; + LPSREAL oldvalue = target[itemno]; + +#ifndef UseMilpSlacksRCF /* Check if we should include ranged constraints */ + varindex -= DV->lp->rows; +#endif + status = mat_appendvalue(DV->tracker, varindex, oldvalue); + target[itemno] = newvalue; + return(status); +} +STATIC int countsUndoLadder(DeltaVrec *DV) +{ + if(DV->activelevel > 0) + return( mat_collength(DV->tracker, DV->activelevel) ); + else + return( 0 ); +} +STATIC int restoreUndoLadder(DeltaVrec *DV, LPSREAL target[]) +{ + int iD = 0; + + if(DV->activelevel > 0) { + MATrec *mat = DV->tracker; + int iB = mat->col_end[DV->activelevel-1], + iE = mat->col_end[DV->activelevel], + *matRownr = &COL_MAT_ROWNR(iB); + LPSREAL *matValue = &COL_MAT_VALUE(iB), + oldvalue; + + /* Restore the values */ + iD = iE-iB; + for(; iB < iE; iB++, matValue += matValueStep, matRownr += matRowColStep) { + oldvalue = *matValue; +#ifdef UseMilpSlacksRCF /* Check if we should include ranged constraints */ + target[(*matRownr)] = oldvalue; +#else + target[DV->lp->rows+(*matRownr)] = oldvalue; +#endif + } + + /* Get rid of the changes */ + mat_shiftcols(DV->tracker, &(DV->activelevel), -1, NULL); + } + + return(iD); +} +STATIC int decrementUndoLadder(DeltaVrec *DV) +{ + int deleted = 0; + + if(DV->activelevel > 0) { + deleted = mat_shiftcols(DV->tracker, &(DV->activelevel), -1, NULL); + DV->activelevel--; + DV->tracker->columns--; + } + return(deleted); +} +STATIC MYBOOL freeUndoLadder(DeltaVrec **DV) +{ + if((DV == NULL) || (*DV == NULL)) + return(FALSE); + + mat_free(&((*DV)->tracker)); + FREE(*DV); + return(TRUE); +} + +STATIC MYBOOL appendUndoPresolve(lprec *lp, MYBOOL isprimal, LPSREAL beta, int colnrDep) +{ + MATrec *mat; + + /* Point to correct undo structure */ + if(isprimal) + mat = lp->presolve_undo->primalundo->tracker; + else + mat = lp->presolve_undo->dualundo->tracker; + + /* Append the data */ + if((colnrDep > 0) && (beta != 0) && + (mat != NULL) && (mat->col_tag[0] > 0)) { + int ix = mat->col_tag[0]; +#if 0 + report(lp, NORMAL, "appendUndoPresolve: %s %g * x%d\n", + ( beta < 0 ? "-" : "+"), fabs(beta), colnrDep); +#endif + + /* Do normal user variable case */ + if(colnrDep <= lp->columns) + mat_setvalue(mat, colnrDep, ix, beta, FALSE); + + /* Handle case where a slack variable is referenced */ + else { + int ipos, jx = mat->col_tag[ix]; + mat_setvalue(mat, jx, ix, beta, FALSE); + jx = mat_findins(mat, jx, ix, &ipos, FALSE); + COL_MAT_ROWNR(ipos) = colnrDep; + } + return( TRUE ); + } + else + return( FALSE ); +} +STATIC MYBOOL addUndoPresolve(lprec *lp, MYBOOL isprimal, int colnrElim, LPSREAL alpha, LPSREAL beta, int colnrDep) +{ + int ix; + DeltaVrec **DV; + MATrec *mat; + presolveundorec *psdata = lp->presolve_undo; + + /* Point to and initialize undo structure at first call */ + if(isprimal) { + DV = &(psdata->primalundo); + if(*DV == NULL) { + *DV = createUndoLadder(lp, lp->columns+1, lp->columns); + mat = (*DV)->tracker; + mat->epsvalue = lp->matA->epsvalue; + allocINT(lp, &(mat->col_tag), lp->columns+1, FALSE); + mat->col_tag[0] = 0; + } + } + else { + DV = &(psdata->dualundo); + if(*DV == NULL) { + *DV = createUndoLadder(lp, lp->rows+1, lp->rows); + mat = (*DV)->tracker; + mat->epsvalue = lp->matA->epsvalue; + allocINT(lp, &(mat->col_tag), lp->rows+1, FALSE); + mat->col_tag[0] = 0; + } + } + mat = (*DV)->tracker; +#if 0 + report(lp, NORMAL, "addUndoPresolve: x%d = %g %s %g * x%d\n", + colnrElim, alpha, ( beta < 0 ? "-" : "+"), fabs(beta), colnrDep); +#endif + /* Add the data */ + ix = mat->col_tag[0] = incrementUndoLadder(*DV); + mat->col_tag[ix] = colnrElim; + if(alpha != 0) + mat_setvalue(mat, 0, ix, alpha, FALSE); +/* mat_appendvalue(*mat, 0, alpha);*/ + if((colnrDep > 0) && (beta != 0)) { + if(colnrDep > lp->columns) + return( appendUndoPresolve(lp, isprimal, beta, colnrDep) ); + else + mat_setvalue(mat, colnrDep, ix, beta, FALSE); + } + + return( TRUE ); +} + + + +/* ---------------------------------------------------------------------------------- */ +/* High level matrix inverse and product routines in lp_solve */ +/* ---------------------------------------------------------------------------------- */ + +/* ---------------------------------------------------------------------------------- */ +/* A brief description of the basis inverse and factorization logic in lp_solve */ +/* ---------------------------------------------------------------------------------- */ +/* + + In order to better understand the legacy code for operating with the + basis and its factorization in lp_solve I (KE) will briefly explain + the conventions and associated matrix algebra. Note that with lp_solve + version 5.5, it is also possible to direct lp_solve to use the traditional + (textbook) format by setting the obj_in_B parameter to FALSE. + + The matrix description of a linear program (as represented by lp_solve) goes + like this: + + maximize c'x + subject to r <= Ax <= b + where l <= x <= u + + The matrix A is partitioned into two column sets [B|N], where B is + a square matrix of "basis" variables containing non-fixed + variables of the linear program at any given stage and N is the + submatrix of corresponding non-basic, fixed variables. The + variables (columns) in N may be fixed at their lower or upper levels. + + Similarly, the c vector is partitioned into the basic and non-basic + parts [z|n]. + + While lp_solve stores the objective vector c in a dense format, and + the constraint matrix A in a (fairly standard) sparse format, the + column vectors passed to the factorization routine include the + objective coefficient at row index 0. (In versions of lp_solve + before v5.2, c was actually explicitly stored as the 0-th row of A). + The expanded matrix may be called the "A~" form and looks like this: + + A~ = [ c ] + [ A ] + + Linear programming involves solving linear equations based on the + square basis matrix B, which includes is a subset of columns from A~. + The implications of the common storage of c and A (e.g. A~) vs. the + inverse / factorization of B for the operations and updates performed + by the simplex routine therefore needs to be understood. As a consquence + of A~, in lp_solve B is stored in an expanded, bordered format using the + following (non-singular) representation: + + B~ = [ 1 z ] + [ 0 B ] + + Any basis inversion / factorization engine used by lp_solve must therefore + explicitly represent and handle the implications of this structure for + associated matrix operations. + + The standard matrix formula for computing the inverse of a bordered + matrix shows what the inversion of B~ actually produces: + + Inv(B~) = [ 1 -z*Inv(B) ] + [ 0 Inv(B) ] + + The A~ and B~ representations require awareness by the developer of the side + effects of the presence of the top row when doing product operations such as + b'N, btran and ftran. Note in particular z*Inv(B) in the top row of Inv(B~), + which is actually the dual solution vector of the given basis. This fact + makes a very common update in the simplex algorithm (reduced costs) returnable + as a vector simply by setting 1 at the top of a vector being pre-multiplied + with Inv(B~). + + However, if the objective vector (c) is changed, the expanded representation + requires that B / B~ be refactorized. Also, when doing FTRAN, BTRAN + and x'A-type operations, you will patently get the incorrect result + if you simply copy the operations given in textbooks. First I'll show the + results of an FTRAN operation: + + Bx = a ==> x = FTRAN(a) + + In lp_solve, this operation solves: + + [ 1 z ] [y] = [d] + [ 0 B ] [x] [a] + + Using the Inv(B~) expression earlier, the FTRAN result is therefore: + + [y] = [ 1 -z*Inv(B) ] [d] = [ d - z*Inv(B)*a ] + [x] [ 0 Inv(B) ] [a] [ Inv(B)*a ] + + As an example, the value of the dual objective can be returned at the + 0-th index by passing the active RHS vector with 0 at the 0-th position. + + Similarily, doing the left solve - performing the BTRAN calculation: + + [x y] [ 1 z ] = [d a'] + [ 0 B ] + + ... will produce the following result in lp_solve: + + [x y] = [d a'] [ 1 -z*Inv(B) ] = [ d | -d*z*Inv(B) + a'*Inv(B) ] + [ 0 Inv(B) ] + + So, if you thought you were simply computing "a'*Inv(B)", look again. + In order to produce the desired result, you have to set d to 0 before + the BTRAN operation. On the other hand, if you set d to 1 and a to 0, + then you are very conveniently on your way to obtain the reduced costs + (needs a further matrix premultiplication with non-basic variables). + + Incidentally, the BTRAN with [1 0] that yields [ 1 | -z*Inv(B) ] can + also be used as a fast way of checking the accuracy of the current + factorization. + + Equipped with this understanding, I hope that you see that + the approach in lp_solve is actually pretty convenient. It also + becomes easier to extend functionality in lp_solve by drawing on + formulas and expressions from LP literature that otherwise assume + the non-bordered syntax and representation. + + Kjell Eikland -- November 2003 + KE update -- April 2005 + KE update -- June 2005 + +*/ + +STATIC MYBOOL __WINAPI invert(lprec *lp, MYBOOL shiftbounds, MYBOOL final) +{ + MYBOOL *usedpos, resetbasis; + LPSREAL test; + int k, i, j; + int singularities, usercolB; + + /* Make sure the tags are correct */ + if(!mat_validate(lp->matA)) { + lp->spx_status = INFEASIBLE; + return(FALSE); + } + + /* Create the inverse management object at the first call to invert() */ + if(lp->invB == NULL) + lp->bfp_init(lp, lp->rows, 0, NULL); + else + lp->bfp_preparefactorization(lp); + singularities = 0; + + /* Must save spx_status since it is used to carry information about + the presence and handling of singular columns in the matrix */ + if(userabort(lp, MSG_INVERT)) + return(FALSE); + +#ifdef Paranoia + if(lp->spx_trace) + report(lp, DETAILED, "invert: Iter %10g, fact-length %7d, OF " RESULTVALUEMASK ".\n", + (double) get_total_iter(lp), lp->bfp_colcount(lp), (double) -lp->rhs[0]); +#endif + + /* Store state of pre-existing basis, and at the same time check if + the basis is I; in this case take the easy way out */ + if(!allocMYBOOL(lp, &usedpos, lp->sum + 1, TRUE)) { + lp->bb_break = TRUE; + return(FALSE); + } + usedpos[0] = TRUE; + usercolB = 0; + for(i = 1; i <= lp->rows; i++) { + k = lp->var_basic[i]; + if(k > lp->rows) + usercolB++; + usedpos[k] = TRUE; + } +#ifdef Paranoia + if(!verify_basis(lp)) + report(lp, SEVERE, "invert: Invalid basis detected (iter %g).\n", + (double) get_total_iter(lp)); +#endif + + /* Tally matrix nz-counts and check if we should reset basis + indicators to all slacks */ + resetbasis = (MYBOOL) ((usercolB > 0) && lp->bfp_canresetbasis(lp)); + k = 0; + for(i = 1; i <= lp->rows; i++) { + if(lp->var_basic[i] > lp->rows) + k += mat_collength(lp->matA, lp->var_basic[i] - lp->rows) + (is_OF_nz(lp,lp->var_basic[i] - lp->rows) ? 1 : 0); + if(resetbasis) { + j = lp->var_basic[i]; + if(j > lp->rows) + lp->is_basic[j] = FALSE; + lp->var_basic[i] = i; + lp->is_basic[i] = TRUE; + } + } + + /* Now do the refactorization */ + singularities = lp->bfp_factorize(lp, usercolB, k, usedpos, final); + + /* Do user reporting */ + if(userabort(lp, MSG_INVERT)) + goto Cleanup; + + /* Finalize factorization/inversion */ + lp->bfp_finishfactorization(lp); + + /* Recompute the RHS ( Ref. lp_solve inverse logic and Chvatal p. 121 ) */ +#ifdef DebugInv + blockWriteLREAL(stdout, "RHS-values pre invert", lp->rhs, 0, lp->rows); +#endif + recompute_solution(lp, shiftbounds); + restartPricer(lp, AUTOMATIC); +#ifdef DebugInv + blockWriteLREAL(stdout, "RHS-values post invert", lp->rhs, 0, lp->rows); +#endif + +Cleanup: + /* Check for numerical instability indicated by frequent refactorizations */ + test = get_refactfrequency(lp, FALSE); + if(test < MIN_REFACTFREQUENCY) { + test = get_refactfrequency(lp, TRUE); + report(lp, NORMAL, "invert: Refactorization frequency %.1g indicates numeric instability.\n", + test); + lp->spx_status = NUMFAILURE; + } + + FREE(usedpos); + return((MYBOOL) (singularities <= 0)); +} /* invert */ + + +STATIC MYBOOL fimprove(lprec *lp, LPSREAL *pcol, int *nzidx, LPSREAL roundzero) +{ + LPSREAL *errors, sdp; + int j; + MYBOOL Ok = TRUE; + + allocREAL(lp, &errors, lp->rows + 1, FALSE); + if(errors == NULL) { + Ok = FALSE; + return(Ok); + } + MEMCOPY(errors, pcol, lp->rows + 1); + lp->bfp_ftran_normal(lp, pcol, nzidx); + prod_Ax(lp, NULL, pcol, NULL, 0.0, -1, + errors, NULL, MAT_ROUNDDEFAULT); + lp->bfp_ftran_normal(lp, errors, NULL); + + sdp = 0; + for(j = 1; j <= lp->rows; j++) + if(fabs(errors[j])>sdp) + sdp = fabs(errors[j]); + if(sdp > lp->epsmachine) { + report(lp, DETAILED, "Iterative FTRAN correction metric %g", sdp); + for(j = 1; j <= lp->rows; j++) { + pcol[j] += errors[j]; + my_roundzero(pcol[j], roundzero); + } + } + FREE(errors); + return(Ok); +} + +STATIC MYBOOL bimprove(lprec *lp, LPSREAL *rhsvector, int *nzidx, LPSREAL roundzero) +{ + int j; + LPSREAL *errors, err, maxerr; + MYBOOL Ok = TRUE; + + allocREAL(lp, &errors, lp->sum + 1, FALSE); + if(errors == NULL) { + Ok = FALSE; + return(Ok); + } + MEMCOPY(errors, rhsvector, lp->sum + 1); + + /* Solve Ax=b for x, compute b back */ + lp->bfp_btran_normal(lp, errors, nzidx); + prod_xA(lp, NULL, errors, NULL, 0.0, 1.0, + errors, NULL, + MAT_ROUNDDEFAULT); + + /* Take difference with ingoing values, while shifting the column values + to the rows section and zeroing the columns again */ + for(j = 1; j <= lp->rows; j++) + errors[j] = errors[lp->rows+lp->var_basic[j]] - rhsvector[j]; + for(j = lp->rows; j <= lp->sum; j++) + errors[j] = 0; + + /* Solve the b errors for the iterative x adjustment */ + lp->bfp_btran_normal(lp, errors, NULL); + + /* Generate the adjustments and compute statistic */ + maxerr = 0; + for(j = 1; j <= lp->rows; j++) { + if(lp->var_basic[j]<=lp->rows) continue; + err = errors[lp->rows+lp->var_basic[j]]; + if(fabs(err)>maxerr) + maxerr = fabs(err); + } + if(maxerr > lp->epsmachine) { + report(lp, DETAILED, "Iterative BTRAN correction metric %g", maxerr); + for(j = 1; j <= lp->rows; j++) { + if(lp->var_basic[j]<=lp->rows) continue; + rhsvector[j] += errors[lp->rows+lp->var_basic[j]]; + my_roundzero(rhsvector[j], roundzero); + } + } + FREE(errors); + return(Ok); +} + +STATIC void ftran(lprec *lp, LPSREAL *rhsvector, int *nzidx, LPSREAL roundzero) +{ +#if 0 + if(is_action(lp->improve, IMPROVE_SOLUTION) && lp->bfp_pivotcount(lp)) + fimprove(lp, rhsvector, nzidx, roundzero); + else +#endif + lp->bfp_ftran_normal(lp, rhsvector, nzidx); +} + +STATIC void btran(lprec *lp, LPSREAL *rhsvector, int *nzidx, LPSREAL roundzero) +{ +#if 0 + if(is_action(lp->improve, IMPROVE_SOLUTION) && lp->bfp_pivotcount(lp)) + bimprove(lp, rhsvector, nzidx, roundzero); + else +#endif + lp->bfp_btran_normal(lp, rhsvector, nzidx); +} + +STATIC MYBOOL fsolve(lprec *lp, int varin, LPSREAL *pcol, int *nzidx, LPSREAL roundzero, LPSREAL ofscalar, MYBOOL prepareupdate) +/* Was setpivcol in versions earlier than 4.0.1.8 - KE */ +{ + MYBOOL ok = TRUE; + + if(varin > 0) + obtain_column(lp, varin, pcol, nzidx, NULL); + + /* Solve, adjusted for objective function scalar */ + pcol[0] *= ofscalar; + if(prepareupdate) + lp->bfp_ftran_prepare(lp, pcol, nzidx); + else + ftran(lp, pcol, nzidx, roundzero); + + return(ok); + +} /* fsolve */ + + +STATIC MYBOOL bsolve(lprec *lp, int row_nr, LPSREAL *rhsvector, int *nzidx, LPSREAL roundzero, LPSREAL ofscalar) +{ + MYBOOL ok = TRUE; + + if(row_nr >= 0) /* Note that row_nr == 0 returns the [1, 0...0 ] vector */ + row_nr = obtain_column(lp, row_nr, rhsvector, nzidx, NULL); + + /* Solve, adjusted for objective function scalar */ + rhsvector[0] *= ofscalar; + btran(lp, rhsvector, nzidx, roundzero); + + return(ok); + +} /* bsolve */ + + +/* Vector compression and expansion routines */ +STATIC MYBOOL vec_compress(LPSREAL *densevector, int startpos, int endpos, LPSREAL epsilon, + LPSREAL *nzvector, int *nzindex) +{ + int n; + + if((densevector == NULL) || (nzindex == NULL) || (startpos > endpos)) + return( FALSE ); + + n = 0; + densevector += startpos; + while(startpos <= endpos) { + if(fabs(*densevector) > epsilon) { /* Apply zero-threshold */ + if(nzvector != NULL) /* Only produce index if no nzvector is given */ + nzvector[n] = *densevector; + n++; + nzindex[n] = startpos; + } + startpos++; + densevector++; + } + nzindex[0] = n; + return( TRUE ); +} + +STATIC MYBOOL vec_expand(LPSREAL *nzvector, int *nzindex, LPSREAL *densevector, int startpos, int endpos) +{ + int i, n; + + n = nzindex[0]; + i = nzindex[n]; + densevector += endpos; + while(endpos >= startpos) { /* Loop from behind to allow densevector == nzvector */ + if(endpos == i) { + n--; + *densevector = nzvector[n]; + i = nzindex[n]; + } + else + *densevector = 0; + endpos--; + densevector--; + } + return( TRUE ); +} + + +/* ----------------------------------------------------------------------- */ +/* Sparse matrix product routines and utility */ +/* ----------------------------------------------------------------------- */ + +STATIC MYBOOL get_colIndexA(lprec *lp, int varset, int *colindex, MYBOOL append) +{ + int i, varnr, P1extraDim, vb, ve, n, nrows = lp->rows, nsum = lp->sum; + MYBOOL omitfixed, omitnonfixed; + LPSREAL v; + + /* Find what variable range to scan - default is {SCAN_USERVARS} */ + /* First determine the starting position; add from the top, going down */ + P1extraDim = abs(lp->P1extraDim); + vb = nrows + 1; + if(varset & SCAN_ARTIFICIALVARS) + vb = nsum - P1extraDim + 1; + if(varset & SCAN_USERVARS) + vb = nrows + 1; + if(varset & SCAN_SLACKVARS) + vb = 1; + + /* Then determine the ending position, add from the bottom, going up */ + ve = nsum; + if(varset & SCAN_SLACKVARS) + ve = nrows; + if(varset & SCAN_USERVARS) + ve = nsum - P1extraDim; + if(varset & SCAN_ARTIFICIALVARS) + ve = nsum; + + /* Adjust for partial pricing */ + if(varset & SCAN_PARTIALBLOCK) { + SETMAX(vb, partial_blockStart(lp, FALSE)); + SETMIN(ve, partial_blockEnd(lp, FALSE)); + } + + /* Determine exclusion columns */ + omitfixed = (MYBOOL) ((varset & OMIT_FIXED) != 0); + omitnonfixed = (MYBOOL) ((varset & OMIT_NONFIXED) != 0); + if(omitfixed && omitnonfixed) + return(FALSE); + + /* Scan the target colums */ + if(append) + n = colindex[0]; + else + n = 0; + for(varnr = vb; varnr <= ve; varnr++) { + + /* Skip gap in the specified column scan range (possibly user variables) */ + if(varnr > nrows) { + if((varnr <= nsum-P1extraDim) && !(varset & SCAN_USERVARS)) + continue; +#if 1 + /* Skip empty columns */ + if(/*(lp->P1extraVal == 0) &&*/ + (mat_collength(lp->matA, varnr-nrows) == 0)) + continue; +#endif + } + + /* Find if the variable is in the scope - default is {�} */ + i = lp->is_basic[varnr]; + if((varset & USE_BASICVARS) > 0 && (i)) + ; + else if((varset & USE_NONBASICVARS) > 0 && (!i)) + ; + else + continue; + + v = lp->upbo[varnr]; + if((omitfixed && (v == 0)) || + (omitnonfixed && (v != 0))) + continue; + + /* Append to list */ + n++; + colindex[n] = varnr; + } + colindex[0] = n; + + return(TRUE); +} + +STATIC int prod_Ax(lprec *lp, int *coltarget, LPSREAL *input, int *nzinput, + LPSREAL roundzero, LPSREAL ofscalar, + LPSREAL *output, int *nzoutput, int roundmode) +/* prod_Ax is only used in fimprove; note that it is NOT VALIDATED/verified as of 20030801 - KE */ +{ + int j, colnr, ib, ie, vb, ve; + MYBOOL localset, localnz = FALSE, isRC; + MATrec *mat = lp->matA; + LPSREAL sdp; + LPSREAL *value; + int *rownr; + + /* Find what variable range to scan - default is {SCAN_USERVARS} */ + /* Define default column target if none was provided */ + isRC = (MYBOOL) ((roundmode & MAT_ROUNDRC) != 0); + localset = (MYBOOL) (coltarget == NULL); + if(localset) { + int varset = SCAN_SLACKVARS | SCAN_USERVARS | + USE_BASICVARS | OMIT_FIXED; + if(isRC && is_piv_mode(lp, PRICE_PARTIAL) && !is_piv_mode(lp, PRICE_FORCEFULL)) + varset |= SCAN_PARTIALBLOCK; + coltarget = (int *) mempool_obtainVector(lp->workarrays, lp->sum+1, sizeof(*coltarget)); + if(!get_colIndexA(lp, varset, coltarget, FALSE)) { + mempool_releaseVector(lp->workarrays, (char *) coltarget, FALSE); + return(FALSE); + } + } + localnz = (MYBOOL) (nzinput == NULL); + if(localnz) { + nzinput = (int *) mempool_obtainVector(lp->workarrays, lp->rows+1, sizeof(*nzinput)); + vec_compress(input, 0, lp->rows, lp->matA->epsvalue, NULL, nzinput); + } + + /* Scan the columns */ + vb = 1; + ve = coltarget[0]; + for(vb = 1; vb <= coltarget[0]; vb++) { + colnr = coltarget[vb]; + j = lp->is_basic[colnr]; + + /* Perform the multiplication */ + sdp = ofscalar*input[j]; + if(colnr <= lp->rows) /* A slack variable is in the basis */ + output[colnr] += sdp; + else { /* A normal variable is in the basis */ + colnr -= lp->rows; + ib = mat->col_end[colnr - 1]; + ie = mat->col_end[colnr]; + rownr = &COL_MAT_ROWNR(ib); + value = &COL_MAT_VALUE(ib); + for(; ib < ie; + ib++, rownr += matRowColStep, value += matValueStep) { + output[*rownr] += (*value)*sdp; + } + } + } + roundVector(output+1, lp->rows-1, roundzero); + + /* Clean up and return */ + if(localset) + mempool_releaseVector(lp->workarrays, (char *) coltarget, FALSE); + if(localnz) + mempool_releaseVector(lp->workarrays, (char *) nzinput, FALSE); + + return(TRUE); +} + +STATIC int prod_xA(lprec *lp, int *coltarget, + LPSREAL *input, int *nzinput, LPSREAL roundzero, LPSREAL ofscalar, + LPSREAL *output, int *nzoutput, int roundmode) +/* Note that the dot product xa is stored at the active column index of A, i.e. of a. + This means that if the basis only contains non-slack variables, output may point to + the same vector as input, without overwriting the [0..rows] elements. */ +{ + int colnr, rownr, varnr, ib, ie, vb, ve, nrows = lp->rows; + MYBOOL localset, localnz = FALSE, includeOF, isRC; + REALXP vmax; + register REALXP v; + int inz, *rowin, countNZ = 0; + MATrec *mat = lp->matA; + register LPSREAL *matValue; + register int *matRownr; + + /* Clean output area (only necessary if we are returning the full vector) */ + isRC = (MYBOOL) ((roundmode & MAT_ROUNDRC) != 0); + if(nzoutput == NULL) { + if(input == output) + MEMCLEAR(output+nrows+1, lp->columns); + else + MEMCLEAR(output, lp->sum+1); + } + + /* Find what variable range to scan - default is {SCAN_USERVARS} */ + /* Define default column target if none was provided */ + localset = (MYBOOL) (coltarget == NULL); + if(localset) { + int varset = SCAN_SLACKVARS | SCAN_USERVARS | + USE_NONBASICVARS | OMIT_FIXED; + if(isRC && is_piv_mode(lp, PRICE_PARTIAL) && !is_piv_mode(lp, PRICE_FORCEFULL)) + varset |= SCAN_PARTIALBLOCK; + coltarget = (int *) mempool_obtainVector(lp->workarrays, lp->sum+1, sizeof(*coltarget)); + if(!get_colIndexA(lp, varset, coltarget, FALSE)) { + mempool_releaseVector(lp->workarrays, (char *) coltarget, FALSE); + return(FALSE); + } + } +/*#define UseLocalNZ*/ +#ifdef UseLocalNZ + localnz = (MYBOOL) (nzinput == NULL); + if(localnz) { + nzinput = (int *) mempool_obtainVector(lp->workarrays, nrows+1, sizeof(*nzinput)); + vec_compress(input, 0, nrows, lp->matA->epsvalue, NULL, nzinput); + } +#endif + includeOF = (MYBOOL) (((nzinput == NULL) || (nzinput[1] == 0)) && + (input[0] != 0) && lp->obj_in_basis); + + /* Scan the target colums */ + vmax = 0; + ve = coltarget[0]; + for(vb = 1; vb <= ve; vb++) { + + varnr = coltarget[vb]; + + if(varnr <= nrows) { + v = input[varnr]; + } + else { + colnr = varnr - nrows; + v = 0; + ib = mat->col_end[colnr - 1]; + ie = mat->col_end[colnr]; + if(ib < ie) { + + /* Do dense input vector version */ +#ifdef UseLocalNZ + if(localnz || (nzinput == NULL)) { +#else + if(nzinput == NULL) { +#endif + /* Do the OF */ + if(includeOF) +#ifdef DirectArrayOF + v += input[0] * lp->obj[colnr] * ofscalar; +#else + v += input[0] * get_OF_active(lp, varnr, ofscalar); +#endif + + /* Initialize pointers */ + matRownr = &COL_MAT_ROWNR(ib); + matValue = &COL_MAT_VALUE(ib); + + /* Do extra loop optimization based on target window overlaps */ +#ifdef UseLocalNZ + if((ib < ie) + && (colnr <= *nzinput) + && (COL_MAT_ROWNR(ie-1) >= nzinput[colnr]) + && (*matRownr <= nzinput[*nzinput]) + ) +#endif +#ifdef NoLoopUnroll + /* Then loop over all regular rows */ + for(; ib < ie; ib++) { + v += input[*matRownr] * (*matValue); + matValue += matValueStep; + matRownr += matRowColStep; + } +#else + /* Prepare for simple loop unrolling */ + if(((ie-ib) % 2) == 1) { + v += input[*matRownr] * (*matValue); + ib++; + matValue += matValueStep; + matRownr += matRowColStep; + } + + /* Then loop over remaining pairs of regular rows */ + while(ib < ie) { + v += input[*matRownr] * (*matValue); + v += input[*(matRownr+matRowColStep)] * (*(matValue+matValueStep)); + ib += 2; + matValue += 2*matValueStep; + matRownr += 2*matRowColStep; + } +#endif + } + /* Do sparse input vector version */ + else { + + /* Do the OF */ + if(includeOF) +#ifdef DirectArrayOF + v += input[0] * lp->obj[colnr] * ofscalar; +#else + v += input[0] * get_OF_active(lp, varnr, ofscalar); +#endif + + /* Initialize pointers */ + inz = 1; + rowin = nzinput+inz; + matRownr = &COL_MAT_ROWNR(ib); + matValue = &COL_MAT_VALUE(ib); + ie--; + + /* Then loop over all non-OF rows */ + while((inz <= *nzinput) && (ib <= ie)) { + + /* Try to synchronize at right */ + while((*rowin > *matRownr) && (ib < ie)) { + ib++; + matValue += matValueStep; + matRownr += matRowColStep; + } + /* Try to synchronize at left */ + while((*rowin < *matRownr) && (inz < *nzinput)) { + inz++; + rowin++; + } + /* Perform dot product operation if there was a match */ + if(*rowin == *matRownr) { + v += input[*rowin] * (*matValue); + /* Step forward at left */ + inz++; + rowin++; + } + } + } + } + if((roundmode & MAT_ROUNDABS) != 0) { + my_roundzero(v, roundzero); + } + } + + /* Special handling of small reduced cost values */ + if(!isRC || (my_chsign(lp->is_lower[varnr], v) < 0)) { + SETMAX(vmax, fabs((LPSREAL) v)); + } + if(v != 0) { + countNZ++; + if(nzoutput != NULL) + nzoutput[countNZ] = varnr; + } + output[varnr] = (LPSREAL) v; + } + + /* Compute reduced cost if this option is active */ + if(isRC && !lp->obj_in_basis) + countNZ = get_basisOF(lp, coltarget, output, nzoutput); + + /* Check if we should do relative rounding */ + if((roundmode & MAT_ROUNDREL) != 0) { + if((roundzero > 0) && (nzoutput != NULL)) { + ie = 0; + if(isRC) { + SETMAX(vmax, MAT_ROUNDRCMIN); /* Make sure we don't use very small values */ + } + vmax *= roundzero; + for(ib = 1; ib <= countNZ; ib++) { + rownr = nzoutput[ib]; + if(fabs(output[rownr]) < vmax) + output[rownr] = 0; + else { + ie++; + nzoutput[ie] = rownr; + } + } + countNZ = ie; + } + } + + /* Clean up and return */ + if(localset) + mempool_releaseVector(lp->workarrays, (char *) coltarget, FALSE); + if(localnz) + mempool_releaseVector(lp->workarrays, (char *) nzinput, FALSE); + + if(nzoutput != NULL) + *nzoutput = countNZ; + return(countNZ); +} + +STATIC MYBOOL prod_xA2(lprec *lp, int *coltarget, + LPSREAL *prow, LPSREAL proundzero, int *nzprow, + LPSREAL *drow, LPSREAL droundzero, int *nzdrow, + LPSREAL ofscalar, int roundmode) +{ + int varnr, colnr, ib, ie, vb, ve, nrows = lp->rows; + MYBOOL includeOF, isRC; + REALXP dmax, pmax; + register REALXP d, p; + MATrec *mat = lp->matA; + LPSREAL value; + register LPSREAL *matValue; + register int *matRownr; + MYBOOL localset; + + /* Find what variable range to scan - default is {SCAN_USERVARS} */ + /* First determine the starting position; add from the top, going down */ + localset = (MYBOOL) (coltarget == NULL); + if(localset) { + int varset = SCAN_SLACKVARS + SCAN_USERVARS + /*SCAN_ALLVARS +*/ + /*SCAN_PARTIALBLOCK+*/ + USE_NONBASICVARS+OMIT_FIXED; + coltarget = (int *) mempool_obtainVector(lp->workarrays, lp->sum+1, sizeof(*coltarget)); + if(!get_colIndexA(lp, varset, coltarget, FALSE)) { + mempool_releaseVector(lp->workarrays, (char *) coltarget, FALSE); + return(FALSE); + } + } + + /* Initialize variables */ + isRC = (MYBOOL) ((roundmode & MAT_ROUNDRC) != 0); + pmax = 0; + dmax = 0; + if(nzprow != NULL) + *nzprow = 0; + if(nzdrow != NULL) + *nzdrow = 0; + includeOF = (MYBOOL) (((prow[0] != 0) || (drow[0] != 0)) && + lp->obj_in_basis); + + /* Scan the target colums */ + ve = coltarget[0]; + for(vb = 1; vb <= ve; vb++) { + + varnr = coltarget[vb]; + + if(varnr <= nrows) { + p = prow[varnr]; + d = drow[varnr]; + } + else { + + colnr = varnr - nrows; + + p = 0; + d = 0; + ib = mat->col_end[colnr - 1]; + ie = mat->col_end[colnr]; + + if(ib < ie) { + + /* Do the OF */ + if(includeOF) { +#ifdef DirectArrayOF + value = lp->obj[colnr] * ofscalar; +#else + value = get_OF_active(lp, varnr, ofscalar); +#endif + p += prow[0] * value; + d += drow[0] * value; + } + + /* Then loop over all regular rows */ + matRownr = &COL_MAT_ROWNR(ib); + matValue = &COL_MAT_VALUE(ib); +#ifdef NoLoopUnroll + for( ; ib < ie; ib++) { + p += prow[*matRownr] * (*matValue); + d += drow[*matRownr] * (*matValue); + matValue += matValueStep; + matRownr += matRowColStep; + } +#else + /* Prepare for simple loop unrolling */ + if(((ie-ib) % 2) == 1) { + p += prow[*matRownr] * (*matValue); + d += drow[*matRownr] * (*matValue); + ib++; + matValue += matValueStep; + matRownr += matRowColStep; + } + + /* Then loop over remaining pairs of regular rows */ + while(ib < ie) { + p += prow[*matRownr] * (*matValue); + p += prow[*(matRownr+matRowColStep)] * (*(matValue+matValueStep)); + d += drow[*matRownr] * (*matValue); + d += drow[*(matRownr+matRowColStep)] * (*(matValue+matValueStep)); + ib += 2; + matValue += 2*matValueStep; + matRownr += 2*matRowColStep; + } +#endif + + } + if((roundmode & MAT_ROUNDABS) != 0) { + my_roundzero(p, proundzero); + my_roundzero(d, droundzero); + } + } + + SETMAX(pmax, fabs((LPSREAL) p)); + prow[varnr] = (LPSREAL) p; + if((nzprow != NULL) && (p != 0)) { + (*nzprow)++; + nzprow[*nzprow] = varnr; + } + + /* Special handling of reduced cost rounding */ + if(!isRC || (my_chsign(lp->is_lower[varnr], d) < 0)) { + SETMAX(dmax, fabs((LPSREAL) d)); + } + drow[varnr] = (LPSREAL) d; + if((nzdrow != NULL) && (d != 0)) { + (*nzdrow)++; + nzdrow[*nzdrow] = varnr; + } + } + + /* Compute reduced cost here if this option is active */ + if((drow != 0) && !lp->obj_in_basis) + get_basisOF(lp, coltarget, drow, nzdrow); + + /* Check if we should do relative rounding */ + if((roundmode & MAT_ROUNDREL) != 0) { + if((proundzero > 0) && (nzprow != NULL)) { + ie = 0; + pmax *= proundzero; + for(ib = 1; ib <= *nzprow; ib++) { + varnr = nzprow[ib]; + if(fabs(prow[varnr]) < pmax) + prow[varnr] = 0; + else { + ie++; + nzprow[ie] = varnr; + } + } + *nzprow = ie; + } + if((droundzero > 0) && (nzdrow != NULL)) { + ie = 0; + if(isRC) { + SETMAX(dmax, MAT_ROUNDRCMIN); /* Make sure we don't use very small values */ + } + dmax *= droundzero; + for(ib = 1; ib <= *nzdrow; ib++) { + varnr = nzdrow[ib]; + if(fabs(drow[varnr]) < dmax) + drow[varnr] = 0; + else { + ie++; + nzdrow[ie] = varnr; + } + } + *nzdrow = ie; + } + } + + /* Clean up and return */ + if(localset) + mempool_releaseVector(lp->workarrays, (char *) coltarget, FALSE); + return( TRUE ); +} + +STATIC void bsolve_xA2(lprec *lp, int* coltarget, + int row_nr1, LPSREAL *vector1, LPSREAL roundzero1, int *nzvector1, + int row_nr2, LPSREAL *vector2, LPSREAL roundzero2, int *nzvector2, int roundmode) +{ + LPSREAL ofscalar = 1.0; + + /* Clear and initialize first vector */ + if(nzvector1 == NULL) + MEMCLEAR(vector1, lp->sum + 1); + else + MEMCLEAR(vector1, lp->rows + 1); + vector1[row_nr1] = 1; +/* workINT[0] = 1; + workINT[1] = row_nr1; */ + + if(vector2 == NULL) { + lp->bfp_btran_normal(lp, vector1, NULL); + prod_xA(lp, coltarget, vector1, NULL, roundzero1, ofscalar*0, + vector1, nzvector1, roundmode); + } + else { + + /* Clear and initialize second vector */ + if(nzvector2 == NULL) + MEMCLEAR(vector2, lp->sum + 1); + else + MEMCLEAR(vector2, lp->rows + 1); + if(lp->obj_in_basis || (row_nr2 > 0)) { + vector2[row_nr2] = 1; +/* workINT[2] = 1; + workINT[3] = row_nr2; */ + } + else + get_basisOF(lp, NULL, vector2, nzvector2); + + /* A double BTRAN equation solver process is implemented "in-line" below in + order to save time and to implement different rounding for the two */ + lp->bfp_btran_double(lp, vector1, NULL, vector2, NULL); + + /* Multiply solution vectors with matrix values */ + prod_xA2(lp, coltarget, vector1, roundzero1, nzvector1, + vector2, roundzero2, nzvector2, + ofscalar, roundmode); + } +} + diff --git a/src/external/lpsolve/build/lp_solve/lp_mipbb.c b/src/external/lpsolve/build/lp_solve/lp_mipbb.c new file mode 100644 index 00000000..1a893f0c --- /dev/null +++ b/src/external/lpsolve/build/lp_solve/lp_mipbb.c @@ -0,0 +1,1439 @@ + +/* + Mixed integer programming optimization drivers for lp_solve v5.0+ + ---------------------------------------------------------------------------------- + Author: Michel Berkelaar (to lp_solve v3.2) + Kjell Eikland (v4.0 and forward) + Contact: + License terms: LGPL. + + Requires: string.h, float.h, commonlib.h, lp_lib.h, lp_report.h, + lp_simplex.h + + Release notes: + v5.0.0 31 January 2004 New unit isolating B&B routines. + v5.0.1 01 February 2004 Complete rewrite into non-recursive version. + v5.0.2 05 April 2004 Expanded pseudocosting with options for MIP fraction + counts and "cost/benefit" ratio (KE special!). + Added GUB functionality based on SOS structures. + v5.0.3 1 May 2004 Changed routine names to be more intuitive. + v5.0.4 15 May 2004 Added functinality to pack bounds in order to + conserve memory in B&B-processing large MIP models. + v5.1.0 25 July 2004 Added functions for dynamic cut generation. + v5.2.0 15 December 2004 Added functions for reduced cost variable fixing + and converted to delta-model of B&B bound storage. + ---------------------------------------------------------------------------------- +*/ + +#include +#include +#include "commonlib.h" +#include "lp_lib.h" +#include "lp_scale.h" +#include "lp_report.h" +#include "lp_simplex.h" +#include "lp_mipbb.h" + +#ifdef FORTIFY +# include "lp_fortify.h" +#endif + + +/* Allocation routine for the BB record structure */ +STATIC BBrec *create_BB(lprec *lp, BBrec *parentBB, MYBOOL dofullcopy) +{ + BBrec *newBB; + + newBB = (BBrec *) calloc(1, sizeof(*newBB)); + if(newBB != NULL) { + + if(parentBB == NULL) { + allocREAL(lp, &newBB->upbo, lp->sum + 1, FALSE); + allocREAL(lp, &newBB->lowbo, lp->sum + 1, FALSE); + MEMCOPY(newBB->upbo, lp->orig_upbo, lp->sum + 1); + MEMCOPY(newBB->lowbo, lp->orig_lowbo, lp->sum + 1); + } + else if(dofullcopy) { + allocREAL(lp, &newBB->upbo, lp->sum + 1, FALSE); + allocREAL(lp, &newBB->lowbo, lp->sum + 1, FALSE); + MEMCOPY(newBB->upbo, parentBB->upbo, lp->sum + 1); + MEMCOPY(newBB->lowbo, parentBB->lowbo, lp->sum + 1); + } + else { + newBB->upbo = parentBB->upbo; + newBB->lowbo = parentBB->lowbo; + } + newBB->contentmode = dofullcopy; + + newBB->lp = lp; + + /* Set parent by default, but not child */ + newBB->parent = parentBB; + + } + return( newBB ); +} + + +/* Pushing and popping routines for the B&B structure */ + +STATIC BBrec *push_BB(lprec *lp, BBrec *parentBB, int varno, int vartype, int varcus) +/* Push ingoing bounds and B&B data onto the stack */ +{ + BBrec *newBB; + + /* Do initialization and updates */ + if(parentBB == NULL) + parentBB = lp->bb_bounds; + newBB = create_BB(lp, parentBB, FALSE); + if(newBB != NULL) { + + newBB->varno = varno; + newBB->vartype = vartype; + newBB->lastvarcus = varcus; + incrementUndoLadder(lp->bb_lowerchange); + newBB->LBtrack++; + incrementUndoLadder(lp->bb_upperchange); + newBB->UBtrack++; + + /* Adjust variable fixing/bound tightening based on the last reduced cost */ + if((parentBB != NULL) && (parentBB->lastrcf > 0)) { + MYBOOL isINT; + int k, ii, nfixed = 0, ntighten = 0; + LPSREAL deltaUL; + + for(k = 1; k <= lp->nzdrow[0]; k++) { + ii = lp->nzdrow[k]; +#ifdef UseMilpSlacksRCF /* Check if we should include ranged constraints */ + isINT = FALSE; +#else + if(ii <= lp->rows) + continue; + isINT = is_int(lp, ii-lp->rows); +#endif +#ifndef UseMilpExpandedRCF /* Don't include non-integers if it is not defined */ + if(!isINT) + continue; +#endif + switch(abs(rcfbound_BB(newBB, ii, isINT, &deltaUL, NULL))) { + case LE: SETMIN(deltaUL, newBB->upbo[ii]); + SETMAX(deltaUL, newBB->lowbo[ii]); + modifyUndoLadder(lp->bb_upperchange, ii, newBB->upbo, deltaUL); + break; + case GE: SETMAX(deltaUL, newBB->lowbo[ii]); + SETMIN(deltaUL, newBB->upbo[ii]); + modifyUndoLadder(lp->bb_lowerchange, ii, newBB->lowbo, deltaUL); + break; + default: continue; + } + if(newBB->upbo[ii] == newBB->lowbo[ii]) + nfixed++; + else + ntighten++; + } + if(lp->bb_trace) { + report(lp, DETAILED, + "push_BB: Used reduced cost to fix %d variables and tighten %d bounds\n", + nfixed, ntighten); + } + } + + /* Handle case where we are pushing at the end */ + if(parentBB == lp->bb_bounds) + lp->bb_bounds = newBB; + /* Handle case where we are pushing in the middle */ + else + newBB->child = parentBB->child; + if(parentBB != NULL) + parentBB->child = newBB; + + lp->bb_level++; + if(lp->bb_level > lp->bb_maxlevel) + lp->bb_maxlevel = lp->bb_level; + + if(!initbranches_BB(newBB)) + newBB = pop_BB(newBB); + else if(MIP_count(lp) > 0) { + if( (lp->bb_level <= 1) && (lp->bb_varactive == NULL) && + (!allocINT(lp, &lp->bb_varactive, lp->columns+1, TRUE) || + !initcuts_BB(lp)) ) + newBB = pop_BB(newBB); + if(varno > 0) { + lp->bb_varactive[varno-lp->rows]++; + } + } + } + return( newBB ); +} + +STATIC MYBOOL free_BB(BBrec **BB) +{ + MYBOOL parentreturned = FALSE; + + if((BB != NULL) && (*BB != NULL)) { + BBrec *parent = (*BB)->parent; + + if((parent == NULL) || (*BB)->contentmode) { + FREE((*BB)->upbo); + FREE((*BB)->lowbo); + } + FREE((*BB)->varmanaged); + FREE(*BB); + + parentreturned = (MYBOOL) (parent != NULL); + if(parentreturned) + *BB = parent; + + } + return( parentreturned ); +} + +STATIC BBrec *pop_BB(BBrec *BB) +/* Pop / free the previously "pushed" / saved bounds */ +{ + int k; + BBrec *parentBB; + lprec *lp = BB->lp; + + if(BB == NULL) + return( BB ); + + /* Handle case where we are popping the end of the chain */ + parentBB = BB->parent; + if(BB == lp->bb_bounds) { + lp->bb_bounds = parentBB; + if(parentBB != NULL) + parentBB->child = NULL; + } + /* Handle case where we are popping inside or at the beginning of the chain */ + else { + if(parentBB != NULL) + parentBB->child = BB->child; + if(BB->child != NULL) + BB->child->parent = parentBB; + } + + /* Unwind other variables */ + if(lp->bb_upperchange != NULL) { + restoreUndoLadder(lp->bb_upperchange, BB->upbo); + for(; BB->UBtrack > 0; BB->UBtrack--) { + decrementUndoLadder(lp->bb_upperchange); + restoreUndoLadder(lp->bb_upperchange, BB->upbo); + } + } + if(lp->bb_lowerchange != NULL) { + restoreUndoLadder(lp->bb_lowerchange, BB->lowbo); + for(; BB->LBtrack > 0; BB->LBtrack--) { + decrementUndoLadder(lp->bb_lowerchange); + restoreUndoLadder(lp->bb_lowerchange, BB->lowbo); + } + } + lp->bb_level--; + k = BB->varno - lp->rows; + if(lp->bb_level == 0) { + if(lp->bb_varactive != NULL) { + FREE(lp->bb_varactive); + freecuts_BB(lp); + } + if(lp->int_vars+lp->sc_vars > 0) + free_pseudocost(lp); + pop_basis(lp, FALSE); + lp->rootbounds = NULL; + } + else + lp->bb_varactive[k]--; + + /* Undo SOS/GUB markers */ + if(BB->isSOS && (BB->vartype != BB_INT)) + SOS_unmark(lp->SOS, 0, k); + else if(BB->isGUB) + SOS_unmark(lp->GUB, 0, k); + + /* Undo the SC marker */ + if(BB->sc_canset) + lp->sc_lobound[k] *= -1; + + /* Pop the associated basis */ +#if 1 + /* Original version that does not restore previous basis */ + pop_basis(lp, FALSE); +#else + /* Experimental version that restores previous basis */ + pop_basis(lp, BB->isSOS); +#endif + + /* Finally free the B&B object */ + free_BB(&BB); + + /* Return the parent BB */ + return( parentBB ); +} + +/* Here are heuristic routines to see if we need bother with branching further + + 1. A probing routine to see of the best OF can be better than incumbent + 2. A presolve routine to fix other variables and detect infeasibility + + THIS IS INACTIVE CODE, PLACEHOLDERS FOR FUTURE DEVELOPMENT!!! */ +STATIC LPSREAL probe_BB(BBrec *BB) +{ + int i, ii; + LPSREAL coefOF, sum = 0; + lprec *lp = BB->lp; + + /* Loop over all ints to see if the best possible solution + stands any chance of being better than the incumbent solution */ + if(lp->solutioncount == 0) + return( lp->infinite ); + for(i = 1; i <= lp->columns; i++) { + if(!is_int(lp, i)) + continue; + ii = lp->rows + i; + coefOF = lp->obj[i]; + if(coefOF < 0) { + if(is_infinite(lp, BB->lowbo[ii])) + return( lp->infinite ); + sum += coefOF * (lp->solution[ii]-BB->lowbo[ii]); + } + else { + if(is_infinite(lp, BB->upbo[ii])) + return( lp->infinite ); + sum += coefOF * (BB->upbo[ii] - lp->solution[ii]); + } + } + return( sum ); +} + +STATIC LPSREAL presolve_BB(BBrec *BB) +{ + return( 0 ); +} + +/* Node and branch management routines */ +STATIC MYBOOL initbranches_BB(BBrec *BB) +{ + LPSREAL new_bound, temp; + int k; + lprec *lp = BB->lp; + + /* Create and initialize local bounds and basis */ + BB->nodestatus = NOTRUN; + BB->noderesult = lp->infinite; + push_basis(lp, NULL, NULL, NULL); + + /* Set default number of branches at the current B&B branch */ + if(BB->vartype == BB_REAL) + BB->nodesleft = 1; + + else { + /* The default is a binary up-low branching */ + BB->nodesleft = 2; + + /* Initialize the MIP status code pair and set reference values */ + k = BB->varno - lp->rows; + BB->lastsolution = lp->solution[BB->varno]; + + /* Determine if we must process in the B&B SOS mode */ + BB->isSOS = (MYBOOL) ((BB->vartype == BB_SOS) || SOS_is_member(lp->SOS, 0, k)); +#ifdef Paranoia + if((BB->vartype == BB_SOS) && !SOS_is_member(lp->SOS, 0, k)) + report(lp, SEVERE, "initbranches_BB: Inconsistent identification of SOS variable %s (%d)\n", + get_col_name(lp, k), k); +#endif + + /* Check if we have a GUB-member variable that needs a triple-branch */ + BB->isGUB = (MYBOOL) ((BB->vartype == BB_INT) && SOS_can_activate(lp->GUB, 0, k)); + if(BB->isGUB) { + /* Obtain variable index list from applicable GUB - now the first GUB is used, + but we could also consider selecting the longest */ + BB->varmanaged = SOS_get_candidates(lp->GUB, -1, k, TRUE, BB->upbo, BB->lowbo); + BB->nodesleft++; + } + + + /* Set local pruning info, automatic, or user-defined strategy */ + if(BB->vartype == BB_SOS) { + if(!SOS_can_activate(lp->SOS, 0, k)) { + BB->nodesleft--; + BB->isfloor = TRUE; + } + else + BB->isfloor = (MYBOOL) (BB->lastsolution == 0); + } + + /* First check if the user wishes to select the branching direction */ + else if(lp->bb_usebranch != NULL) + BB->isfloor = (MYBOOL) lp->bb_usebranch(lp, lp->bb_branchhandle, k); + + /* Otherwise check if we should do automatic branching */ + else if(get_var_branch(lp, k) == BRANCH_AUTOMATIC) { + new_bound = modf(BB->lastsolution/get_pseudorange(lp->bb_PseudoCost, k, BB->vartype), &temp); + if(isnan(new_bound)) + new_bound = 0; + else if(new_bound < 0) + new_bound += 1.0; + BB->isfloor = (MYBOOL) (new_bound <= 0.5); + + /* Set direction by OF value; note that a zero-value in + the OF gives priority to floor_first = TRUE */ + if(is_bb_mode(lp, NODE_GREEDYMODE)) { + if(is_bb_mode(lp, NODE_PSEUDOCOSTMODE)) + BB->sc_bound = get_pseudonodecost(lp->bb_PseudoCost, k, BB->vartype, BB->lastsolution); + else + BB->sc_bound = mat_getitem(lp->matA, 0, k); + new_bound -= 0.5; + BB->sc_bound *= new_bound; + BB->isfloor = (MYBOOL) (BB->sc_bound > 0); + } + /* Set direction by pseudocost (normally used in tandem with NODE_PSEUDOxxxSELECT) */ + else if(is_bb_mode(lp, NODE_PSEUDOCOSTMODE)) { + BB->isfloor = (MYBOOL) (get_pseudobranchcost(lp->bb_PseudoCost, k, TRUE) > + get_pseudobranchcost(lp->bb_PseudoCost, k, FALSE)); + if(is_maxim(lp)) + BB->isfloor = !BB->isfloor; + } + + /* Check for reversal */ + if(is_bb_mode(lp, NODE_BRANCHREVERSEMODE)) + BB->isfloor = !BB->isfloor; + } + else + BB->isfloor = (MYBOOL) (get_var_branch(lp, k) == BRANCH_FLOOR); + + /* SC logic: If the current SC variable value is in the [0..NZLOBOUND> range, then + + UP: Set lower bound to NZLOBOUND, upper bound is the original + LO: Fix the variable by setting upper/lower bound to zero + + ... indicate that the variable is B&B-active by reversing sign of sc_lobound[]. */ + new_bound = fabs(lp->sc_lobound[k]); + BB->sc_bound = new_bound; + BB->sc_canset = (MYBOOL) (new_bound != 0); + + /* Must make sure that we handle fractional lower bounds properly; + also to ensure that we do a full binary tree search */ + new_bound = unscaled_value(lp, new_bound, BB->varno); + if(is_int(lp, k) && ((new_bound > 0) && + (BB->lastsolution > floor(new_bound)))) { + if(BB->lastsolution < ceil(new_bound)) + BB->lastsolution += 1; + modifyUndoLadder(lp->bb_lowerchange, BB->varno, BB->lowbo, + scaled_floor(lp, BB->varno, BB->lastsolution, 1)); + } + } + + /* Now initialize the brances and set to first */ + return( fillbranches_BB(BB) ); +} + +STATIC MYBOOL fillbranches_BB(BBrec *BB) +{ + int K, k; + LPSREAL ult_upbo, ult_lowbo; + LPSREAL new_bound, SC_bound, intmargin = BB->lp->epsprimal; + lprec *lp = BB->lp; + MYBOOL OKstatus = FALSE; + + if(lp->bb_break || userabort(lp, MSG_MILPSTRATEGY)) + return( OKstatus ); + + K = BB->varno; + if(K > 0) { + + /* Shortcut variables */ + k = BB->varno - lp->rows; + ult_upbo = lp->orig_upbo[K]; + ult_lowbo = lp->orig_lowbo[K]; + SC_bound = unscaled_value(lp, BB->sc_bound, K); + + /* First, establish the upper bound to be applied (when isfloor == TRUE) + --------------------------------------------------------------------- */ +/*SetUB:*/ + BB->UPbound = lp->infinite; + + /* Handle SC-variables for the [0-LoBound> range */ + if((SC_bound > 0) && (fabs(BB->lastsolution) < SC_bound-intmargin)) { + new_bound = 0; + } + /* Handle pure integers (non-SOS, non-SC) */ + else if(BB->vartype == BB_INT) { +#if 1 + if(((ult_lowbo >= 0) && + ((floor(BB->lastsolution) < /* Skip cases where the lower bound becomes violated */ + unscaled_value(lp, MAX(ult_lowbo, fabs(lp->sc_lobound[k])), K)-intmargin))) || + ((ult_upbo <= 0) && /* Was ((ult_lowbo < 0) && */ + ((floor(BB->lastsolution) > /* Skip cases where the upper bound becomes violated */ + unscaled_value(lp, MIN(ult_upbo, -fabs(lp->sc_lobound[k])), K)-intmargin)))) { +#else + if((floor(BB->lastsolution) < /* Skip cases where the lower bound becomes violated */ + unscaled_value(lp, MAX(ult_lowbo, fabs(lp->sc_lobound[k])), K)-intmargin)) { +#endif + BB->nodesleft--; + goto SetLB; + } + new_bound = scaled_floor(lp, K, BB->lastsolution, 1); + } + else if(BB->isSOS) { /* Handle all SOS variants */ + new_bound = ult_lowbo; + if(is_int(lp, k)) + new_bound = scaled_ceil(lp, K, unscaled_value(lp, new_bound, K), -1); + } + else /* Handle all other variable incarnations */ + new_bound = BB->sc_bound; + + /* Check if the new bound might conflict and possibly make adjustments */ + if(new_bound < BB->lowbo[K]) + new_bound = BB->lowbo[K] - my_avoidtiny(new_bound-BB->lowbo[K], intmargin); + if(new_bound < BB->lowbo[K]) { +#ifdef Paranoia + debug_print(lp, + "fillbranches_BB: New upper bound value %g conflicts with old lower bound %g\n", + new_bound, BB->lowbo[K]); +#endif + BB->nodesleft--; + goto SetLB; + } +#ifdef Paranoia + /* Do additional consistency checking */ + else if(!check_if_less(lp, new_bound, BB->upbo[K], K)) { + BB->nodesleft--; + goto SetLB; + } +#endif + /* Bound (at least near) feasible */ + else { + /* Makes a difference with models like QUEEN + (note consistent use of epsint for scaled integer variables) */ + if(fabs(new_bound - BB->lowbo[K]) < intmargin*SCALEDINTFIXRANGE) + new_bound = BB->lowbo[K]; + } + + BB->UPbound = new_bound; + + + /* Next, establish the lower bound to be applied (when isfloor == FALSE) + --------------------------------------------------------------------- */ +SetLB: + BB->LObound = -lp->infinite; + + /* Handle SC-variables for the [0-LoBound> range */ + if((SC_bound > 0) && (fabs(BB->lastsolution) < SC_bound)) { + if(is_int(lp, k)) + new_bound = scaled_ceil(lp, K, SC_bound, 1); + else + new_bound = BB->sc_bound; + } + /* Handle pure integers (non-SOS, non-SC, but Ok for GUB!) */ + else if(BB->vartype == BB_INT) { + if(((ceil(BB->lastsolution) == BB->lastsolution)) || /* Skip branch 0 if the current solution is integer */ + (ceil(BB->lastsolution) > /* Skip cases where the upper bound becomes violated */ + unscaled_value(lp, ult_upbo, K)+intmargin) || + (BB->isSOS && (BB->lastsolution == 0))) { /* Don't branch 0 since this is handled in SOS logic */ + BB->nodesleft--; + goto Finish; + } + new_bound = scaled_ceil(lp, K, BB->lastsolution, 1); + } + else if(BB->isSOS) { /* Handle all SOS variants */ + if(SOS_is_member_of_type(lp->SOS, k, SOS3)) + new_bound = scaled_floor(lp, K, 1, 1); + else { + new_bound = ult_lowbo; + if(is_int(lp, k)) + new_bound = scaled_floor(lp, K, unscaled_value(lp, new_bound, K), 1); + /* If we have a high-order SOS (SOS3+) and this variable is "intermediate" + between members previously lower-bounded at a non-zero level, then we should + set this and similar neighbouring variables at non-zero lowbo-values (remember + that SOS3+ members are all either integers or semi-continuous). Flag this + situation and prune tree, since we cannot lower-bound. */ + if((lp->SOS->maxorder > 2) && (BB->lastsolution == 0) && + SOS_is_member_of_type(lp->SOS, k, SOSn)) { + BB->isSOS = AUTOMATIC; + } + } + } + else /* Handle all other variable incarnations */ + new_bound = BB->sc_bound; + + /* Check if the new bound might conflict and possibly make adjustments */ + if(new_bound > BB->upbo[K]) + new_bound = BB->upbo[K] + my_avoidtiny(new_bound-BB->upbo[K], intmargin); + if(new_bound > BB->upbo[K]) { +#ifdef Paranoia + debug_print(lp, + "fillbranches_BB: New lower bound value %g conflicts with old upper bound %g\n", + new_bound, BB->upbo[K]); +#endif + BB->nodesleft--; + goto Finish; + } +#ifdef Paranoia + /* Do additional consistency checking */ + else if(!check_if_less(lp, BB->lowbo[K], new_bound, K)) { + BB->nodesleft--; + goto Finish; + } +#endif + /* Bound (at least near-)feasible */ + else { + /* Makes a difference with models like QUEEN + (note consistent use of lp->epsprimal for scaled integer variables) */ + if(fabs(BB->upbo[K]-new_bound) < intmargin*SCALEDINTFIXRANGE) + new_bound = BB->upbo[K]; + } + + BB->LObound = new_bound; + + /* Prepare for the first branch by making sure we are pointing correctly */ +Finish: + if(BB->nodesleft > 0) { + + /* Make sure the change tracker levels are "clean" for the B&B */ + if(countsUndoLadder(lp->bb_upperchange) > 0) { + incrementUndoLadder(lp->bb_upperchange); + BB->UBtrack++; + } + if(countsUndoLadder(lp->bb_lowerchange) > 0) { + incrementUndoLadder(lp->bb_lowerchange); + BB->LBtrack++; + } + + /* Do adjustments */ + if((BB->vartype != BB_SOS) && (fabs(BB->LObound-BB->UPbound) < intmargin)) { + BB->nodesleft--; + if(fabs(BB->lowbo[K]-BB->LObound) < intmargin) + BB->isfloor = FALSE; + else if(fabs(BB->upbo[K]-BB->UPbound) < intmargin) + BB->isfloor = TRUE; + else + report(BB->lp, IMPORTANT, "fillbranches_BB: Inconsistent equal-valued bounds for %s\n", + get_col_name(BB->lp, k)); + } + if((BB->nodesleft == 1) && + ((BB->isfloor && (BB->UPbound >= lp->infinite)) || + (!BB->isfloor && (BB->LObound <= -lp->infinite)))) + BB->isfloor = !BB->isfloor; + /* Header initialization */ + BB->isfloor = !BB->isfloor; + while(!OKstatus && /* !userabort(lp, -1) */ lp->spx_status != TIMEOUT && !lp->bb_break && (BB->nodesleft > 0)) + OKstatus = nextbranch_BB( BB ); + } + + /* Set an SC variable active, if necessary */ + if(BB->sc_canset) + lp->sc_lobound[k] *= -1; + + } + else { + BB->nodesleft--; + OKstatus = TRUE; + } + + return( OKstatus ); +} + +STATIC MYBOOL nextbranch_BB(BBrec *BB) +{ + int k; + lprec *lp = BB->lp; + MYBOOL OKstatus = FALSE; + + /* Undo the most recently imposed B&B bounds using the data + in the last level of change tracker; this code handles changes + to both upper and lower bounds */ + if(BB->nodessolved > 0) { + restoreUndoLadder(lp->bb_upperchange, BB->upbo); + restoreUndoLadder(lp->bb_lowerchange, BB->lowbo); + } + + if(lp->bb_break || userabort(lp, MSG_MILPSTRATEGY)) { + /* Handle the special case of B&B restart; + (typically used with the restart after pseudocost initialization) */ + if((lp->bb_level == 1) && (lp->bb_break == AUTOMATIC)) { + lp->bb_break = FALSE; + OKstatus = TRUE; + } + return( OKstatus ); + } + + if(BB->nodesleft > 0) { + + /* Step and update remaining branch count */ + k = BB->varno - lp->rows; + BB->isfloor = !BB->isfloor; + BB->nodesleft--; + + /* Special SOS handling: + 1) Undo and set new marker for k, + 2) In case that previous branch was ceiling restore upper bounds of the + non-k variables outside of the SOS window set to 0 */ + if(BB->isSOS && (BB->vartype != BB_INT)) { + + /* First undo previous marker */ + if((BB->nodessolved > 0) || ((BB->nodessolved == 0) && (BB->nodesleft == 0))) { + if(BB->isfloor) { + if((BB->nodesleft == 0) && (lp->orig_lowbo[BB->varno] != 0)) + return( OKstatus ); + } + SOS_unmark(lp->SOS, 0, k); + } + + /* Set new SOS marker */ + if(BB->isfloor) { + SOS_set_marked(lp->SOS, 0, k, (MYBOOL) (BB->UPbound != 0)); + /* Do case of high-order SOS where intervening variables need to be set */ + if(BB->isSOS == AUTOMATIC) { + +/* SOS_fix_list(lp->SOS, 0, k, BB->lowbo, NULL, AUTOMATIC, lp->bb_lowerchange); */ + } + } + else { + SOS_set_marked(lp->SOS, 0, k, TRUE); + if(SOS_fix_unmarked(lp->SOS, 0, k, BB->upbo, 0, TRUE, + NULL, lp->bb_upperchange) < 0) + return( OKstatus ); + } + } + + /* Special GUB handling (three branches): + 1) Undo and set new marker for k, + 2) Restore upper bounds of the left/right/all non-k variables + set to 0 in the previous branch + 3) Set new upper bounds for the non-k variables (k is set later) */ + else if(BB->isGUB) { + + /* First undo previous marker */ + if(BB->nodessolved > 0) + SOS_unmark(lp->GUB, 0, k); + + /* Make sure we take floor bound twice */ + if((BB->nodesleft == 0) && !BB->isfloor) + BB->isfloor = !BB->isfloor; + + /* Handle two floor instances; + (selected variable and left/right halves of non-selected variables at 0) */ + SOS_set_marked(lp->GUB, 0, k, (MYBOOL) !BB->isfloor); + if(BB->isfloor) { + if(SOS_fix_list(lp->GUB, 0, k, BB->upbo, + BB->varmanaged, (MYBOOL) (BB->nodesleft > 0), lp->bb_upperchange) < 0) + return( OKstatus ); + } + /* Handle one ceil instance; + (selected variable at 1, all other at 0) */ + else { + if(SOS_fix_unmarked(lp->GUB, 0, k, BB->upbo, 0, TRUE, + NULL, lp->bb_upperchange) < 0) + return( OKstatus ); + } + } + + OKstatus = TRUE; + + } + /* Initialize simplex status variables */ + if(OKstatus) { + lp->bb_totalnodes++; + BB->nodestatus = NOTRUN; + BB->noderesult = lp->infinite; + } + return( OKstatus ); +} + + +/* Cut generation and management routines */ +STATIC MYBOOL initcuts_BB(lprec *lp) +{ + return( TRUE ); +} + +STATIC int updatecuts_BB(lprec *lp) +{ + return( 0 ); +} + +STATIC MYBOOL freecuts_BB(lprec *lp) +{ + if(lp->bb_cuttype != NULL) + FREE(lp->bb_cuttype); + return( TRUE ); +} + +/* B&B solver routines */ +STATIC int solve_LP(lprec *lp, BBrec *BB) +{ + int tilted, restored, status; + LPSREAL testOF, *upbo = BB->upbo, *lowbo = BB->lowbo; + BBrec *perturbed = NULL; + + if(lp->bb_break) + return(PROCBREAK); + +#ifdef Paranoia + debug_print(lp, "solve_LP: Starting solve for iter %.0f, B&B node level %d.\n", + (double) lp->total_iter, lp->bb_level); + if(lp->bb_trace && + !validate_bounds(lp, upbo, lowbo)) + report(lp, SEVERE, "solve_LP: Inconsistent bounds at iter %.0f, B&B node level %d.\n", + (double) lp->total_iter, lp->bb_level); +#endif + + /* Copy user-specified entering bounds into lp_solve working bounds */ + impose_bounds(lp, upbo, lowbo); + + /* Restore previously pushed / saved basis for this level if we are in + the B&B mode and it is not the first call of the binary tree */ + if(BB->nodessolved > 1) + restore_basis(lp); + + /* Solve and possibly handle degeneracy cases via bound relaxations */ + status = RUNNING; + tilted = 0; + restored = 0; + + while(status == RUNNING) { + + /* Copy user-specified entering bounds into lp_solve working bounds and run */ + status = spx_run(lp, (MYBOOL) (tilted+restored > 0)); + lp->bb_status = status; + lp->spx_perturbed = FALSE; + + if(tilted < 0) + break; + + else if((status == OPTIMAL) && (tilted > 0)) { + if(lp->spx_trace) + report(lp, DETAILED, "solve_LP: Restoring relaxed bounds at level %d.\n", + tilted); + + /* Restore original pre-perturbed problem bounds, and solve again using the basis + found for the perturbed problem; also make sure we rebase and recompute. */ + free_BB(&perturbed); + if((perturbed == NULL) || (perturbed == BB)) { + perturbed = NULL; + impose_bounds(lp, upbo, lowbo); + } + else + impose_bounds(lp, perturbed->upbo, perturbed->lowbo); + set_action(&lp->spx_action, ACTION_REBASE | ACTION_RECOMPUTE); + BB->UBzerobased = FALSE; + if(lp->bb_totalnodes == 0) + lp->real_solution = lp->infinite; + status = RUNNING; + tilted--; + restored++; + lp->spx_perturbed = TRUE; + } + + else if(((lp->bb_level <= 1) || is_anti_degen(lp, ANTIDEGEN_DURINGBB)) && + (((status == LOSTFEAS) && is_anti_degen(lp, ANTIDEGEN_LOSTFEAS)) || + ((status == INFEASIBLE) && is_anti_degen(lp, ANTIDEGEN_INFEASIBLE)) || + ((status == NUMFAILURE) && is_anti_degen(lp, ANTIDEGEN_NUMFAILURE)) || + ((status == DEGENERATE) && is_anti_degen(lp, ANTIDEGEN_STALLING)))) { + /* Allow up to .. consecutive relaxations for non-B&B phases */ + if((tilted <= DEF_MAXRELAX) && /* Conventional recovery case,... */ + !((tilted == 0) && (restored > DEF_MAXRELAX))) { /* but not iterating infeasibility */ + + /* Create working copy of ingoing bounds if this is the first perturbation */ + if(tilted == 0) + perturbed = BB; + perturbed = create_BB(lp, perturbed, TRUE); + + /* Perturb/shift variable bounds; also make sure we rebase and recompute + (no refactorization is necessary, since the basis is unchanged) */ +#if 1 + perturb_bounds(lp, perturbed, TRUE, TRUE, TRUE); +#else + perturb_bounds(lp, perturbed, TRUE, TRUE, FALSE); +#endif + impose_bounds(lp, perturbed->upbo, perturbed->lowbo); + set_action(&lp->spx_action, ACTION_REBASE | ACTION_RECOMPUTE); + BB->UBzerobased = FALSE; + status = RUNNING; + tilted++; + lp->perturb_count++; + lp->spx_perturbed = TRUE; + if(lp->spx_trace) + report(lp, DETAILED, "solve_LP: Starting bound relaxation #%d ('%s')\n", + tilted, get_statustext(lp, status)); + } + else { + if(lp->spx_trace) + report(lp, DETAILED, "solve_LP: Relaxation limit exceeded in resolving infeasibility\n"); + while((perturbed != NULL) && (perturbed != BB)) + free_BB(&perturbed); + perturbed = NULL; + } + } + } + + /* Handle the different simplex outcomes */ + if(status != OPTIMAL) { + if(lp->bb_level <= 1) + lp->bb_parentOF = lp->infinite; + if((status == USERABORT) || (status == TIMEOUT)) { + /* Construct the last feasible solution, if available */ + if((lp->solutioncount == 0) && + /* + 30/01/08 added MIP_count test because in following situation thing were wrong: + - The model contains integers + - A break at first is set + - A timeout is set + - The timeout occurs before a first integer solution is found + - When the timeout occurs, the simplex algorithm is in phase 2 and has a feasible (but non-integer) solution, but not optimal yet. + If above situation occurs then a (sub-optimal) solution was returned while no integer + solution isn't found yet at this time + */ + (MIP_count(lp) == 0) && + ((lp->simplex_mode & (SIMPLEX_Phase2_PRIMAL | SIMPLEX_Phase2_DUAL)) > 0)) { + lp->solutioncount++; + construct_solution(lp, NULL); + transfer_solution(lp, TRUE); + } + /* Return messages */ + report(lp, NORMAL, "\nlp_solve optimization was stopped %s.\n", + ((status == USERABORT) ? "by the user" : "due to time-out")); + } + else if(BB->varno == 0) + report(lp, NORMAL, "The model %s\n", + (status == UNBOUNDED) ? "is UNBOUNDED" : + ((status == INFEASIBLE) ? "is INFEASIBLE" : "FAILED")); + else { +#ifdef Paranoia + if((status != FATHOMED) && (status != INFEASIBLE)) + report(lp, SEVERE, "spx_solve: Invalid return code %d during B&B\n", status); +#endif + /* If we fathomed a node due to an inferior OF having been detected, return infeasible */ + if(status == FATHOMED) + lp->spx_status = INFEASIBLE; + } + } + + else { /* ... there is a good solution */ + construct_solution(lp, NULL); + if((lp->bb_level <= 1) && (restored > 0)) + report(lp, DETAILED, "%s numerics encountered; validate accuracy\n", + (restored == 1) ? "Difficult" : "Severe"); + /* Handle case where a user bound on the OF was found to + have been set too aggressively, giving an infeasible model */ + if(lp->spx_status != OPTIMAL) + status = lp->spx_status; + + else if((lp->bb_totalnodes == 0) && (MIP_count(lp) > 0)) { + if(lp->lag_status != RUNNING) { + report(lp, NORMAL, "\nRelaxed solution " RESULTVALUEMASK " after %10.0f iter is B&B base.\n", + lp->solution[0], (double) lp->total_iter); + report(lp, NORMAL, " \n"); + } + if((lp->usermessage != NULL) && (lp->msgmask & MSG_LPOPTIMAL)) { + LPSREAL *best_solution = lp->best_solution; + + /* transfer_solution(lp, TRUE); */ + lp->best_solution = lp->solution; + lp->usermessage(lp, lp->msghandle, MSG_LPOPTIMAL); + lp->best_solution = best_solution; + } + set_var_priority(lp); + } + + /* Check if we have a numeric problem (an earlier version of this code used the + absolute difference, but it is not robust for large-valued OFs) */ + testOF = my_chsign(is_maxim(lp), my_reldiff(lp->solution[0], lp->real_solution)); + if(testOF < -lp->epsprimal) { + report(lp, DETAILED, "solve_LP: A MIP subproblem returned a value better than the base.\n"); + status = INFEASIBLE; + lp->spx_status = status; + set_action(&lp->spx_action, ACTION_REBASE | ACTION_REINVERT | ACTION_RECOMPUTE); + } + else if(testOF < 0) /* Avoid problems later (could undo integer roundings, but usually Ok) */ + lp->solution[0] = lp->real_solution; + + } + + /* status can have the following values: + OPTIMAL, SUBOPTIMAL, TIMEOUT, USERABORT, PROCFAIL, UNBOUNDED and INFEASIBLE. */ + + return( status ); +} /* solve_LP */ + +STATIC BBrec *findself_BB(BBrec *BB) +{ + int varno = BB->varno, vartype = BB->vartype; + + BB = BB->parent; + while((BB != NULL) && (BB->vartype != vartype) && (BB->varno != varno)) + BB = BB->parent; + return( BB ); +} + +/* Function to determine the opportunity for variable fixing and bound + tightening based on a previous best MILP solution and a variable's + reduced cost at the current relaxation - inspired by Wolsley */ +STATIC int rcfbound_BB(BBrec *BB, int varno, MYBOOL isINT, LPSREAL *newbound, MYBOOL *isfeasible) +{ + int i = FR; + lprec *lp = BB->lp; + LPSREAL deltaRC, rangeLU, deltaOF, lowbo, upbo; + + /* Make sure we only accept non-basic variables */ + if(lp->is_basic[varno]) + return( i ); + + /* Make sure we only accept non-fixed variables */ + lowbo = BB->lowbo[varno]; + upbo = BB->upbo[varno]; + rangeLU = upbo - lowbo; + + if(rangeLU > lp->epsprimal) { +#if 1 /* v5.5 problematic - Gap between current node and the current best bound */ + deltaOF = lp->rhs[0] - lp->bb_workOF; +#elif 0 /* v6 less aggressive - Gap between current best bound and the relaxed problem */ + deltaOF = my_chsign(is_maxim(lp), lp->real_solution) - lp->bb_workOF; +#else /* v6 more aggressive - Gap between current node and the relaxed problem */ + deltaOF = my_chsign(is_maxim(lp), lp->real_solution) - lp->rhs[0]; +#endif + + deltaRC = my_chsign(!lp->is_lower[varno], lp->drow[varno]); + /* Protect against divisions with tiny numbers and stray sign + reversals of the reduced cost */ + if(deltaRC < lp->epspivot) + return( i ); + deltaRC = deltaOF / deltaRC; /* Should always be a positive number! */ +#ifdef Paranoia + if(deltaRC <= 0) + report(lp, SEVERE, "rcfbound_BB: A negative bound fixing level was encountered after node %.0f\n", + (double) lp->bb_totalnodes); +#endif + + /* Check if bound implied by the reduced cost is less than existing range */ + if(deltaRC < rangeLU + lp->epsint) { + if(lp->is_lower[varno]) { + if(isINT) + deltaRC = scaled_floor(lp, varno, unscaled_value(lp, deltaRC, varno)+lp->epsprimal, 1); + upbo = lowbo + deltaRC; + deltaRC = upbo; + i = LE; /* Sets the upper bound */ + } + else { + if(isINT) + deltaRC = scaled_ceil(lp, varno, unscaled_value(lp, deltaRC, varno)+lp->epsprimal, 1); + lowbo = upbo - deltaRC; + deltaRC = lowbo; + i = GE; /* Sets the lower bound */ + } + + /* Check and set feasibility status */ + if((isfeasible != NULL) && (upbo - lowbo < -lp->epsprimal)) + *isfeasible = FALSE; + + /* Flag that we can fix the variable by returning the relation code negated */ + else if(fabs(upbo - lowbo) < lp->epsprimal) + i = -i; + if(newbound != NULL) { + my_roundzero(deltaRC, lp->epsprimal); + *newbound = deltaRC; + } + } + + } + return( i ); +} + + +STATIC MYBOOL findnode_BB(BBrec *BB, int *varno, int *vartype, int *varcus) +{ + int countsossc, countnint, k, reasonmsg = MSG_NONE; + LPSREAL varsol; + MYBOOL is_better = FALSE, is_equal = FALSE, is_feasible = TRUE; + lprec *lp = BB->lp; + + /* Initialize result and return variables */ + *varno = 0; + *vartype = BB_REAL; + *varcus = 0; + countnint = 0; + BB->nodestatus = lp->spx_status; + BB->noderesult = lp->solution[0]; + + /* If this solution is worse than the best so far, this branch dies. + If we can only have integer OF values, and we only need the first solution + then the OF must be at least (unscaled) 1 better than the best so far */ + if((lp->bb_limitlevel != 1) && (MIP_count(lp) > 0)) { + + /* Check that we don't have a limit on the recursion level; two versions supported: + 1) Absolute B&B level (bb_limitlevel > 0), and + 2) B&B level relative to the "B&B order" (bb_limitlevel < 0). */ + countsossc = lp->sos_vars + lp->sc_vars; + if((lp->bb_limitlevel > 0) && (lp->bb_level > lp->bb_limitlevel+countsossc)) + return( FALSE ); + else if((lp->bb_limitlevel < 0) && + (lp->bb_level > 2*(lp->int_vars+countsossc)*abs(lp->bb_limitlevel))) { + if(lp->bb_limitlevel == DEF_BB_LIMITLEVEL) + report(lp, IMPORTANT, "findnode_BB: Default B&B limit reached at %d; optionally change strategy or limit.\n\n", + lp->bb_level); + return( FALSE ); + } + + /* First initialize or update pseudo-costs from previous optimal solution */ + if(BB->varno == 0) { + varsol = lp->infinite; + if((lp->int_vars+lp->sc_vars > 0) && (lp->bb_PseudoCost == NULL)) + lp->bb_PseudoCost = init_pseudocost(lp, get_bb_rule(lp)); + } + else { + varsol = lp->solution[BB->varno]; + if( ((lp->int_vars > 0) && (BB->vartype == BB_INT)) || + ((lp->sc_vars > 0) && (BB->vartype == BB_SC) && !is_int(lp, BB->varno-lp->rows)) ) + update_pseudocost(lp->bb_PseudoCost, BB->varno-lp->rows, BB->vartype, BB->isfloor, varsol); + } + + /* Make sure we don't have numeric problems (typically due to integer scaling) */ + if((lp->bb_totalnodes > 0) && !bb_better(lp, OF_RELAXED, OF_TEST_WE)) { + if(lp->bb_trace) + report(lp, IMPORTANT, "findnode_BB: Simplex failure due to loss of numeric accuracy\n"); + lp->spx_status = NUMFAILURE; + return( FALSE ); + } + + /* Abandon this branch if the solution is "worse" than a heuristically + determined limit or the previous best MIP solution */ + if(((lp->solutioncount == 0) && !bb_better(lp, OF_HEURISTIC, OF_TEST_BE)) || + ((lp->solutioncount > 0) && + (!bb_better(lp, OF_INCUMBENT | OF_DELTA, OF_TEST_BE | OF_TEST_RELGAP) || + !bb_better(lp, OF_INCUMBENT | OF_DELTA, OF_TEST_BE)))) { + return( FALSE ); + } + + /* Collect violated SC variables (since they can also be real-valued); the + approach is to get them out of the way, since a 0-value is assumed to be "cheap" */ + if(lp->sc_vars > 0) { + *varno = find_sc_bbvar(lp, &countnint); + if(*varno > 0) + *vartype = BB_SC; + } + + /* Look among SOS variables if no SC candidate was found */ + if((SOS_count(lp) > 0) && (*varno == 0)) { + *varno = find_sos_bbvar(lp, &countnint, FALSE); + if(*varno < 0) + *varno = 0; + else if(*varno > 0) + *vartype = BB_SOS; + } + + /* Then collect INTS that are not integer valued, and verify bounds */ + if((lp->int_vars > 0) && (*varno == 0)) { + *varno = find_int_bbvar(lp, &countnint, BB, &is_feasible); + if(*varno > 0) { + *vartype = BB_INT; + if((countnint == 1) && !is_feasible) { + BB->lastrcf = 0; + return( FALSE ); + } + } + } + +#if 1 /* peno */ + /* Check if we have reached the depth limit for any individual variable + (protects against infinite recursions of mainly integer variables) */ + k = *varno-lp->rows; + if((*varno > 0) && (lp->bb_limitlevel != 0) && (lp->bb_varactive[k] >= abs(lp->bb_limitlevel) /* abs(DEF_BB_LIMITLEVEL) */)) { + /* if(!is_action(lp->nomessage, NOMSG_BBLIMIT)) {*/ +/* + report(lp, IMPORTANT, "findnode_BB: Reached B&B depth limit %d for variable %d; will not dive further.\n\n", + lp->bb_varactive[k], k); +*/ + /* set_action(&lp->nomessage, NOMSG_BBLIMIT); */ + /* } */ + return( FALSE ); + } +#endif + + /* Check if the current MIP solution is optimal; equal or better */ + if(*varno == 0) { + is_better = (MYBOOL) (lp->solutioncount == 0) || bb_better(lp, OF_INCUMBENT | OF_DELTA, OF_TEST_BT); +#if 1 + is_better &= bb_better(lp, OF_INCUMBENT | OF_DELTA, OF_TEST_BT | OF_TEST_RELGAP); +#else + /* Check if we can determine clear improvement */ + is_better = (MYBOOL) (lp->solutioncount == 0) || + (MYBOOL) ((lp->bb_deltaOF > 0) && + (my_chsign(is_maxim(lp), lp->solution[0]-lp->best_solution[0]) < 0)); + + /* Apply gap-based improvement testing if the current solution is not clearly better */ + + if(!is_better) { + is_better = bb_better(lp, OF_INCUMBENT | OF_DELTA, OF_TEST_BT); + is_better |= bb_better(lp, OF_INCUMBENT | OF_DELTA, OF_TEST_BT | OF_TEST_RELGAP); + } +#endif + is_equal = !is_better; + + if(is_equal) { + if((lp->solutionlimit <= 0) || (lp->solutioncount < lp->solutionlimit)) { + lp->solutioncount++; + SETMIN(lp->bb_solutionlevel, lp->bb_level); + reasonmsg = MSG_MILPEQUAL; + } + } + + /* Current solution is better */ + else if(is_better) { + + /* Update grand total solution count and check if we should go from + depth-first to best-first variable selection mode */ + if(lp->bb_varactive != NULL) { + lp->bb_varactive[0]++; + if((lp->bb_varactive[0] == 1) && + is_bb_mode(lp, NODE_DEPTHFIRSTMODE) && is_bb_mode(lp, NODE_DYNAMICMODE)) + lp->bb_rule &= !NODE_DEPTHFIRSTMODE; + } + + if(lp->bb_trace || + ((lp->verbose >= NORMAL) && (lp->print_sol == FALSE) && (lp->lag_status != RUNNING))) { + report(lp, IMPORTANT, + "%s solution " RESULTVALUEMASK " after %10.0f iter, %9.0f nodes (gap %.1f%%)\n", + (lp->bb_improvements == 0) ? "Feasible" : "Improved", + lp->solution[0], (double) lp->total_iter, (double) lp->bb_totalnodes, + 100.0*fabs(my_reldiff(lp->solution[0], lp->bb_limitOF))); + } + if(MIP_count(lp) > 0) { + if(lp->bb_improvements == 0) + reasonmsg = MSG_MILPFEASIBLE; + else + reasonmsg = MSG_MILPBETTER; + } + + lp->bb_status = FEASFOUND; + lp->bb_solutionlevel = lp->bb_level; + lp->solutioncount = 1; + lp->bb_improvements++; + lp->bb_workOF = lp->rhs[0]; + + if(lp->bb_breakfirst || + (!is_infinite(lp, lp->bb_breakOF) && bb_better(lp, OF_USERBREAK, OF_TEST_BE))) + lp->bb_break = TRUE; + } + } + } + else { + is_better = TRUE; + lp->solutioncount = 1; + } + + /* Transfer the successful solution vector */ + if(is_better || is_equal) { +#ifdef ParanoiaMIP + if((lp->bb_level > 0) && + (check_solution(lp, lp->columns, lp->solution, + lp->orig_upbo, lp->orig_lowbo, lp->epssolution) != OPTIMAL)) { + lp->solutioncount = 0; + lp->spx_status = NUMFAILURE; + lp->bb_status = lp->spx_status; + lp->bb_break = TRUE; + return( FALSE ); + } +#endif + transfer_solution(lp, (MYBOOL) ((lp->do_presolve & PRESOLVE_LASTMASKMODE) != PRESOLVE_NONE)); + if((MIP_count(lp) > 0) && (lp->bb_totalnodes > 0)) { + if ((!construct_duals(lp)) || + (is_presolve(lp, PRESOLVE_SENSDUALS) && + (!construct_sensitivity_duals(lp) || !construct_sensitivity_obj(lp)) + ) + ) { + } + } + if((reasonmsg != MSG_NONE) && (lp->msgmask & reasonmsg) && (lp->usermessage != NULL)) + lp->usermessage(lp, lp->msghandle, reasonmsg); + + if(lp->print_sol != FALSE) { + print_objective(lp); + print_solution(lp, 1); + } + } + + /* Do tracing and determine if we have arrived at the estimated lower MIP limit */ + *varcus = countnint; + if(MIP_count(lp) > 0) { + if((countnint == 0) && (lp->solutioncount == 1) && (lp->solutionlimit == 1) && + (bb_better(lp, OF_DUALLIMIT, OF_TEST_BE) || bb_better(lp, OF_USERBREAK, OF_TEST_BE | OF_TEST_RELGAP))) { + lp->bb_break = (MYBOOL) (countnint == 0); + return( FALSE ); + } + else if(lp->bb_level > 0) { +#ifdef MIPboundWithOF + if((lp->constraintOF > 0) && (countnint == 0)) + set_rh(lp, lp->constraintOF, lp->solution[0] + my_chsign(!is_maxim(lp), lp->bb_deltaOF)); +#endif + if(lp->spx_trace) + report(lp, DETAILED, "B&B level %5d OPT %16s value " RESULTVALUEMASK "\n", + lp->bb_level, (*varno) ? " " : "INT", lp->solution[0]); + } + return( (MYBOOL) (*varno > 0)); + } + else + return( FALSE ); + +} + +STATIC int solve_BB(BBrec *BB) +{ + int K, status; + lprec *lp = BB->lp; + + /* Protect against infinite recursions do to integer rounding effects */ + status = PROCFAIL; + + /* Shortcut variables, set default bounds */ + K = BB->varno; + + /* Load simple MIP bounds */ + if(K > 0) { + + /* Update cuts, if specified */ + updatecuts_BB(lp); + + /* BRANCH_FLOOR: Force the variable to be smaller than the B&B upper bound */ + if(BB->isfloor) + modifyUndoLadder(lp->bb_upperchange, K, BB->upbo, BB->UPbound); + + /* BRANCH_CEILING: Force the variable to be greater than the B&B lower bound */ + else + modifyUndoLadder(lp->bb_lowerchange, K, BB->lowbo, BB->LObound); + + /* Update MIP node count */ + BB->nodessolved++; + + } + + /* Solve! */ + status = solve_LP(lp, BB); + + /* Do special feasibility assessment of high order SOS'es */ +#if 1 + if((status == OPTIMAL) && (BB->vartype == BB_SOS) && !SOS_is_feasible(lp->SOS, 0, lp->solution)) + status = INFEASIBLE; +#endif + + return( status ); +} + +/* Routine to compute a "strong" pseudo-cost update for a node */ +STATIC MYBOOL strongbranch_BB(lprec *lp, BBrec *BB, int varno, int vartype, int varcus) +{ + MYBOOL success = FALSE; + int i; + BBrec *strongBB; + + /* Create new B&B level and solve each of the branches */ + lp->is_strongbranch = TRUE; + push_basis(lp, lp->var_basic, lp->is_basic, lp->is_lower); + strongBB = push_BB(lp, BB, lp->rows+varno, vartype, varcus); + if(strongBB == BB) + return( success ); + + do { + + /* Solve incremental problem to local optimality */ + lp->bb_strongbranches++; +/* set_action(&lp->spx_action, ACTION_REBASE | ACTION_RECOMPUTE); */ + if(solve_BB(strongBB) == OPTIMAL) { + + /* Update result indicator*/ + success |= 1 << strongBB->isfloor; + + /* Compute new count of non-ints */ + strongBB->lastvarcus = 0; + for(i = 1; i <= lp->columns; i++) { + if(is_int(lp, i) && !solution_is_int(lp, lp->rows+i, FALSE)) + strongBB->lastvarcus++; + } + + /* Perform the pseudo-cost update */ + update_pseudocost(lp->bb_PseudoCost, varno, strongBB->vartype, strongBB->isfloor, + lp->solution[strongBB->varno]); + } + } + while(nextbranch_BB(strongBB)); + + strongBB = pop_BB(strongBB); + if(strongBB != BB) + report(lp, SEVERE, "strongbranch_BB: Invalid bound settings restored for variable %d\n", + varno); + pop_basis(lp, TRUE); + set_action(&lp->spx_action, ACTION_REBASE | ACTION_REINVERT | ACTION_RECOMPUTE); + + lp->is_strongbranch = FALSE; + + return( success ); +} + +/* Future functions */ +STATIC MYBOOL pre_BB(lprec *lp) +{ + return( TRUE ); +} +STATIC MYBOOL post_BB(lprec *lp) +{ + return( TRUE ); +} + +/* This is the non-recursive B&B driver routine - beautifully simple, yet so subtle! */ +STATIC int run_BB(lprec *lp) +{ + BBrec *currentBB; + int varno, vartype, varcus, prevsolutions; + int status = NOTRUN; + + /* Initialize */ + pre_BB(lp); + prevsolutions = lp->solutioncount; +#ifdef UseMilpSlacksRCF /* Check if we should include ranged constraints */ + varno = lp->sum; +#else + varno = lp->columns; +#endif + lp->bb_upperchange = createUndoLadder(lp, varno, 2*MIP_count(lp)); + lp->bb_lowerchange = createUndoLadder(lp, varno, 2*MIP_count(lp)); + lp->rootbounds = currentBB = push_BB(lp, NULL, 0, BB_REAL, 0); + + /* Perform the branch & bound loop */ + while(lp->bb_level > 0) { + status = solve_BB(currentBB); + +#if 0 + if((lp->bb_level == 1) && (MIP_count(lp) > 0)) { + if(status == RUNNING) + ; + + /* Check if there was an integer solution of an aborted model */ + else if((status == SUBOPTIMAL) && (lp->solutioncount == 1) && + findnode_BB(currentBB, &varno, &vartype, &varcus)) + status = USERABORT; + } +#endif + + if((status == OPTIMAL) && findnode_BB(currentBB, &varno, &vartype, &varcus)) + currentBB = push_BB(lp, currentBB, varno, vartype, varcus); + + else while((lp->bb_level > 0) && !nextbranch_BB(currentBB)) + currentBB = pop_BB(currentBB); + + } + + /* Finalize */ + freeUndoLadder(&(lp->bb_upperchange)); + freeUndoLadder(&(lp->bb_lowerchange)); + + /* Check if we should adjust status */ + if(lp->solutioncount > prevsolutions) { + if((status == PROCBREAK) || (status == USERABORT) || (status == TIMEOUT) || userabort(lp, -1)) + status = SUBOPTIMAL; + else + status = OPTIMAL; + if(lp->bb_totalnodes > 0) + lp->spx_status = OPTIMAL; + } + post_BB(lp); + return( status ); +} + diff --git a/src/external/lpsolve/build/lp_solve/lp_params.c b/src/external/lpsolve/build/lp_solve/lp_params.c new file mode 100644 index 00000000..ef961376 --- /dev/null +++ b/src/external/lpsolve/build/lp_solve/lp_params.c @@ -0,0 +1,700 @@ +// Copyright(c) 2016-2018 Kjell Konis . +// Version: 5.5.2.0-17 +// Description: The lpSolveAPI package provides an R interface to 'lp_solve', +// a Mixed Integer Linear Programming (MILP) solver with support for pure +// linear, (mixed) integer/binary, semi-continuous and special ordered sets +// (SOS) models. +// License: LGPL-2 +// Repository: CRAN + +#include +#include +#include +#include + +#include "commonlib.h" +#include "lp_lib.h" +#include "lp_report.h" +#include "ini.h" + +typedef int (__WINAPI fn_int_get_function)(lprec *lp); +typedef long (__WINAPI fn_long_get_function)(lprec *lp); +typedef MYBOOL (__WINAPI fn_MYBOOL_get_function)(lprec *lp); +typedef LPSREAL (__WINAPI fn_REAL_get_function)(lprec *lp); +typedef void (__WINAPI fn_int_set_function)(lprec *lp, int value); +typedef void (__WINAPI fn_long_set_function)(lprec *lp, long value); +typedef void (__WINAPI fn_MYBOOL_set_function)(lprec *lp, MYBOOL value); +typedef void (__WINAPI fn_REAL_set_function)(lprec *lp, LPSREAL value); + +#define intfunction 1 +#define longfunction 2 +#define MYBOOLfunction 3 +#define REALfunction 4 + +#define setvalues(values, basemask) values, sizeof(values) / sizeof(*values), basemask +#define setNULLvalues NULL, 0, 0 +#define setvalue(value) value, #value +#define setintfunction(get_function, set_function) { get_function }, { set_function }, intfunction +#define setlongfunction(get_function, set_function) { (fn_int_get_function *) get_function }, {(fn_int_set_function *) set_function }, longfunction +#define setMYBOOLfunction(get_function, set_function) { (fn_int_get_function *) get_function }, { (fn_int_set_function *) set_function }, MYBOOLfunction +#define setREALfunction(get_function, set_function) {(fn_int_get_function *) get_function }, { (fn_int_set_function *) set_function }, REALfunction + +#define WRITE_COMMENTED 0 +#define WRITE_ACTIVE 1 + +struct _values { + int value; + char *svalue; +}; + +struct _functions { + char *par; /* name of parameter in ini file */ + union { + fn_int_get_function *int_get_function; /* set via setintfunction */ + fn_long_get_function *long_get_function; /* set via setlongfunction */ + fn_MYBOOL_get_function *MYBOOL_get_function; /* set via setMYBOOLfunction */ + fn_REAL_get_function *REAL_get_function; /* set via setREALfunction */ + } get_function; + union { + fn_int_set_function *int_set_function; /* set via setintfunction */ + fn_long_set_function *long_set_function; /* set via setlongfunction */ + fn_MYBOOL_set_function *MYBOOL_set_function; /* set via setMYBOOLfunction */ + fn_REAL_set_function *REAL_set_function; /* set via setREALfunction */ + } set_function; + int type; /* set via set*function */ + struct _values *values; /* set via setvalues to a structure of _values */ + int elements; /* or via setNULLvalues if the value is shown as is */ + unsigned int basemask; + int mask; /* WRITE_ACTIVE or WRITE_COMMENTED */ +}; + +static struct _values anti_degen[] = +{ + { setvalue(ANTIDEGEN_NONE) }, + { setvalue(ANTIDEGEN_FIXEDVARS) }, + { setvalue(ANTIDEGEN_COLUMNCHECK) }, + { setvalue(ANTIDEGEN_STALLING) }, + { setvalue(ANTIDEGEN_NUMFAILURE) }, + { setvalue(ANTIDEGEN_LOSTFEAS) }, + { setvalue(ANTIDEGEN_INFEASIBLE) }, + { setvalue(ANTIDEGEN_DYNAMIC) }, + { setvalue(ANTIDEGEN_DURINGBB) }, + { setvalue(ANTIDEGEN_RHSPERTURB) }, + { setvalue(ANTIDEGEN_BOUNDFLIP) }, +}; + +static struct _values basiscrash[] = +{ + { setvalue(CRASH_NONE) }, + /* { setvalue(CRASH_NONBASICBOUNDS) }, */ /* not yet implemented */ + { setvalue(CRASH_MOSTFEASIBLE) }, + { setvalue(CRASH_LEASTDEGENERATE) }, +}; + +static struct _values bb_floorfirst[] = +{ + { setvalue(BRANCH_CEILING) }, + { setvalue(BRANCH_FLOOR) }, + { setvalue(BRANCH_AUTOMATIC) }, +}; + +static struct _values bb_rule[] = +{ + { setvalue(NODE_FIRSTSELECT) }, + { setvalue(NODE_GAPSELECT) }, + { setvalue(NODE_RANGESELECT) }, + { setvalue(NODE_FRACTIONSELECT) }, + { setvalue(NODE_PSEUDOCOSTSELECT) }, + { setvalue(NODE_PSEUDONONINTSELECT) }, + { setvalue(NODE_PSEUDORATIOSELECT) }, + { setvalue(NODE_USERSELECT) }, + { setvalue(NODE_WEIGHTREVERSEMODE) }, + { setvalue(NODE_BRANCHREVERSEMODE) }, + { setvalue(NODE_GREEDYMODE) }, + { setvalue(NODE_PSEUDOCOSTMODE) }, + { setvalue(NODE_DEPTHFIRSTMODE) }, + { setvalue(NODE_RANDOMIZEMODE) }, + { setvalue(NODE_GUBMODE) }, + { setvalue(NODE_DYNAMICMODE) }, + { setvalue(NODE_RESTARTMODE) }, + { setvalue(NODE_BREADTHFIRSTMODE) }, + { setvalue(NODE_AUTOORDER) }, + { setvalue(NODE_RCOSTFIXING) }, + { setvalue(NODE_STRONGINIT) }, +}; + +static struct _values improve[] = +{ + { setvalue(IMPROVE_NONE) }, + { setvalue(IMPROVE_SOLUTION) }, + { setvalue(IMPROVE_DUALFEAS) }, + { setvalue(IMPROVE_THETAGAP) }, + { setvalue(IMPROVE_BBSIMPLEX) }, +}; + +static LPSREAL __WINAPI get_mip_gap_abs(lprec *lp) +{ + return(get_mip_gap(lp, TRUE)); +} + +static LPSREAL __WINAPI get_mip_gap_rel(lprec *lp) +{ + return(get_mip_gap(lp, FALSE)); +} + +static void __WINAPI set_mip_gap_abs(lprec *lp, LPSREAL mip_gap) +{ + set_mip_gap(lp, TRUE, mip_gap); +} + +static void __WINAPI set_mip_gap_rel(lprec *lp, LPSREAL mip_gap) +{ + set_mip_gap(lp, FALSE, mip_gap); +} + +static struct _values pivoting[] = +{ + { setvalue(PRICER_FIRSTINDEX) }, + { setvalue(PRICER_DANTZIG) }, + { setvalue(PRICER_DEVEX) }, + { setvalue(PRICER_STEEPESTEDGE) }, + { setvalue(PRICE_PRIMALFALLBACK) }, + { setvalue(PRICE_MULTIPLE) }, + { setvalue(PRICE_PARTIAL) }, + { setvalue(PRICE_ADAPTIVE) }, + { setvalue(PRICE_RANDOMIZE) }, + { setvalue(PRICE_AUTOPARTIAL) }, + { setvalue(PRICE_LOOPLEFT) }, + { setvalue(PRICE_LOOPALTERNATE) }, + { setvalue(PRICE_HARRISTWOPASS) }, + { setvalue(PRICE_TRUENORMINIT) }, +}; + +static struct _values presolving[] = +{ + { setvalue(PRESOLVE_NONE) }, + { setvalue(PRESOLVE_ROWS) }, + { setvalue(PRESOLVE_COLS) }, + { setvalue(PRESOLVE_LINDEP) }, + { setvalue(PRESOLVE_AGGREGATE) }, + { setvalue(PRESOLVE_SPARSER) }, + { setvalue(PRESOLVE_SOS) }, + { setvalue(PRESOLVE_REDUCEMIP) }, + { setvalue(PRESOLVE_KNAPSACK) }, + { setvalue(PRESOLVE_ELIMEQ2) }, + { setvalue(PRESOLVE_IMPLIEDFREE) }, + { setvalue(PRESOLVE_REDUCEGCD) }, + { setvalue(PRESOLVE_PROBEFIX) }, + { setvalue(PRESOLVE_PROBEREDUCE) }, + { setvalue(PRESOLVE_ROWDOMINATE) }, + { setvalue(PRESOLVE_COLDOMINATE) }, + { setvalue(PRESOLVE_MERGEROWS) }, + { setvalue(PRESOLVE_IMPLIEDSLK) }, + { setvalue(PRESOLVE_COLFIXDUAL) }, + { setvalue(PRESOLVE_BOUNDS) }, + { setvalue(PRESOLVE_DUALS) }, + { setvalue(PRESOLVE_SENSDUALS) }, +}; + +static char *STRLWR(char *str) +{ + char *ptr; + + for(ptr = str; *ptr; ptr++) + *ptr = (char) tolower((unsigned char) *ptr); + + return(str); +} + +static char *STRUPR(char *str) +{ + char *ptr; + + for(ptr = str; *ptr; ptr++) + *ptr = (char) toupper((unsigned char) *ptr); + + return(str); +} + +static void __WINAPI set_presolve1(lprec *lp, int do_presolve) +{ + set_presolve(lp, do_presolve, get_presolveloops(lp)); +} + +static void __WINAPI set_presolve2(lprec *lp, int maxloops) +{ + set_presolve(lp, get_presolve(lp), maxloops); +} + +static struct _values print_sol[] = +{ + { FALSE, "0" }, + { TRUE, "1" }, + { setvalue(AUTOMATIC) }, +}; + +static struct _values scaling[] = +{ + { setvalue(SCALE_NONE) }, + { setvalue(SCALE_EXTREME) }, + { setvalue(SCALE_RANGE) }, + { setvalue(SCALE_MEAN) }, + { setvalue(SCALE_GEOMETRIC) }, + { setvalue(SCALE_CURTISREID) }, + { setvalue(SCALE_QUADRATIC) }, + { setvalue(SCALE_LOGARITHMIC) }, + { setvalue(SCALE_USERWEIGHT) }, + { setvalue(SCALE_POWER2) }, + { setvalue(SCALE_EQUILIBRATE) }, + { setvalue(SCALE_INTEGERS) }, + { setvalue(SCALE_DYNUPDATE) }, + { setvalue(SCALE_ROWSONLY) }, + { setvalue(SCALE_COLSONLY) }, +}; + +static struct _values simplextype[] = +{ + { setvalue(SIMPLEX_PRIMAL_PRIMAL) }, + { setvalue(SIMPLEX_DUAL_PRIMAL) }, + { setvalue(SIMPLEX_PRIMAL_DUAL) }, + { setvalue(SIMPLEX_DUAL_DUAL) }, +}; + +static struct _values verbose[] = +{ + { setvalue(NEUTRAL) }, + { setvalue(CRITICAL) }, + { setvalue(SEVERE) }, + { setvalue(IMPORTANT) }, + { setvalue(NORMAL) }, + { setvalue(DETAILED) }, + { setvalue(FULL) }, +}; + +static struct _functions functions[] = +{ + /* solve options */ + { "ANTI_DEGEN", setintfunction(get_anti_degen, set_anti_degen), setvalues(anti_degen, ~0), WRITE_ACTIVE }, + { "BASISCRASH", setintfunction(get_basiscrash, set_basiscrash), setvalues(basiscrash, ~0), WRITE_ACTIVE }, + { "IMPROVE", setintfunction(get_improve, set_improve), setvalues(improve, ~0), WRITE_ACTIVE }, + { "MAXPIVOT", setintfunction(get_maxpivot, set_maxpivot), setNULLvalues, WRITE_ACTIVE }, + { "NEGRANGE", setREALfunction(get_negrange, set_negrange), setNULLvalues, WRITE_ACTIVE }, + { "PIVOTING", setintfunction(get_pivoting, set_pivoting), setvalues(pivoting, PRICER_LASTOPTION), WRITE_ACTIVE }, + { "PRESOLVE", setintfunction(get_presolve, set_presolve1), setvalues(presolving, ~0), WRITE_ACTIVE }, + { "PRESOLVELOOPS", setintfunction(get_presolveloops, set_presolve2), setNULLvalues, WRITE_ACTIVE }, + { "SCALELIMIT", setREALfunction(get_scalelimit, set_scalelimit), setNULLvalues, WRITE_ACTIVE }, + { "SCALING", setintfunction(get_scaling, set_scaling), setvalues(scaling, SCALE_CURTISREID), WRITE_ACTIVE }, + { "SIMPLEXTYPE", setintfunction(get_simplextype, set_simplextype), setvalues(simplextype, ~0), WRITE_ACTIVE }, + { "OBJ_IN_BASIS", setMYBOOLfunction(is_obj_in_basis, set_obj_in_basis), setNULLvalues, WRITE_COMMENTED }, + + /* B&B options */ + { "BB_DEPTHLIMIT", setintfunction(get_bb_depthlimit, set_bb_depthlimit), setNULLvalues, WRITE_ACTIVE }, + { "BB_FLOORFIRST", setintfunction(get_bb_floorfirst, set_bb_floorfirst), setvalues(bb_floorfirst, ~0), WRITE_ACTIVE }, + { "BB_RULE", setintfunction(get_bb_rule, set_bb_rule), setvalues(bb_rule, NODE_STRATEGYMASK), WRITE_ACTIVE }, + { "BREAK_AT_FIRST", setMYBOOLfunction(is_break_at_first, set_break_at_first), setNULLvalues, WRITE_COMMENTED }, + { "BREAK_AT_VALUE", setREALfunction(get_break_at_value, set_break_at_value), setNULLvalues, WRITE_COMMENTED }, + { "MIP_GAP_ABS", setREALfunction(get_mip_gap_abs, set_mip_gap_abs), setNULLvalues, WRITE_ACTIVE }, + { "MIP_GAP_REL", setREALfunction(get_mip_gap_rel, set_mip_gap_rel), setNULLvalues, WRITE_ACTIVE }, + { "EPSINT", setREALfunction(get_epsint, set_epsint), setNULLvalues, WRITE_ACTIVE }, + + /* tolerances, values */ + { "EPSB", setREALfunction(get_epsb, set_epsb), setNULLvalues, WRITE_ACTIVE }, + { "EPSD", setREALfunction(get_epsd, set_epsd), setNULLvalues, WRITE_ACTIVE }, + { "EPSEL", setREALfunction(get_epsel, set_epsel), setNULLvalues, WRITE_ACTIVE }, + { "EPSPERTURB", setREALfunction(get_epsperturb, set_epsperturb), setNULLvalues, WRITE_ACTIVE }, + { "EPSPIVOT", setREALfunction(get_epspivot, set_epspivot), setNULLvalues, WRITE_ACTIVE }, + { "INFINITE", setREALfunction(get_infinite, set_infinite), setNULLvalues, WRITE_ACTIVE }, + + /* read-only options */ + { "DEBUG", setMYBOOLfunction(is_debug, set_debug), setNULLvalues, WRITE_COMMENTED }, + { "OBJ_BOUND", setREALfunction(get_obj_bound, set_obj_bound), setNULLvalues, WRITE_COMMENTED }, + { "PRINT_SOL", setintfunction(get_print_sol, set_print_sol), setvalues(print_sol, ~0), WRITE_COMMENTED }, + { "TIMEOUT", setlongfunction(get_timeout, set_timeout), setNULLvalues, WRITE_COMMENTED }, + { "TRACE", setMYBOOLfunction(is_trace, set_trace), setNULLvalues, WRITE_COMMENTED }, + { "VERBOSE", setintfunction(get_verbose, set_verbose), setvalues(verbose, ~0), WRITE_COMMENTED }, +}; + +static void write_params1(lprec *lp, FILE *fp, char *header, int newline) +{ + int ret = 0, ret2, i, j, k, value, value2, elements, majorversion, minorversion, release, build; + unsigned int basemask; + LPSREAL a = 0; + char buf[4096], par[20]; + + ini_writeheader(fp, header, newline); + lp_solve_version(&majorversion, &minorversion, &release, &build); + sprintf(buf, "lp_solve version %d.%d settings\n", majorversion, minorversion); + ini_writecomment(fp, buf); + for(i = 0; i < sizeof(functions) / sizeof(*functions); i++) { + switch(functions[i].type) { + case intfunction: + if(functions[i].get_function.int_get_function == NULL) + continue; + ret = functions[i].get_function.int_get_function(lp); + break; + case longfunction: + if(functions[i].get_function.long_get_function == NULL) + continue; + ret = functions[i].get_function.long_get_function(lp); + break; + case MYBOOLfunction: + if(functions[i].get_function.MYBOOL_get_function == NULL) + continue; + ret = (int) functions[i].get_function.MYBOOL_get_function(lp); + break; + case REALfunction: + if(functions[i].get_function.REAL_get_function == NULL) + continue; + a = functions[i].get_function.REAL_get_function(lp); + break; + } + buf[0] = 0; + if(functions[i].values == NULL) { + switch(functions[i].type) { + case intfunction: + case longfunction: + case MYBOOLfunction: + sprintf(buf, "%d", ret); + break; + case REALfunction: + sprintf(buf, "%g", a); + break; + } + } + else { + elements = functions[i].elements; + basemask = functions[i].basemask; + for(j = 0; j < elements; j++) { + value = functions[i].values[j].value; + ret2 = ret; + if(((unsigned int) value) < basemask) + ret2 &= basemask; + if(value == 0) { + if(ret2 == 0) { + if(*buf) + strcat(buf, " + "); + strcat(buf, functions[i].values[j].svalue); + } + } + else if((ret2 & value) == value) { + for(k = 0; k < elements; k++) { + value2 = functions[i].values[k].value; + if((k != j) && (value2 > value) && ((value2 & value) == value) && ((ret2 & value2) == value2)) + break; + } + if(k == elements) { + if(*buf) + strcat(buf, " + "); + strcat(buf, functions[i].values[j].svalue); + } + } + } + } + if(functions[i].mask & WRITE_ACTIVE) + par[0] = 0; + else + strcpy(par, ";"); + strcat(par, functions[i].par); + ini_writedata(fp, STRLWR(par), buf); + } +} + +static void readoptions(char *options, char **header) +{ + char *ptr1, *ptr2; + + if(options != NULL) { + ptr1 = options; + while(*ptr1) { + ptr2 = strchr(ptr1, '-'); + if(ptr2 == NULL) + break; + ptr2++; + if(tolower((unsigned char) *ptr2) == 'h') { + for(++ptr2; (*ptr2) && (isspace(*ptr2)); ptr2++); + for(ptr1 = ptr2; (*ptr1) && (!isspace(*ptr1)); ptr1++); + *header = (char *) calloc(1 + (int) (ptr1 - ptr2), 1); + memcpy(*header, ptr2, (int) (ptr1 - ptr2)); + } + } + } + + if(*header == NULL) + *header = strdup("Default"); +} + +MYBOOL __WINAPI write_params(lprec *lp, char *filename, char *options) +{ + int k, ret, params_written; + FILE *fp, *fp0; + int state = 0, looping, newline; + char buf[4096], *filename0, *ptr1, *ptr2, *header = NULL; + + readoptions(options, &header); + + k = (int) strlen(filename); + filename0 = (char *) malloc(k + 1 + 1); + strcpy(filename0, filename); + ptr1 = strrchr(filename0, '.'); + ptr2 = strrchr(filename0, '\\'); + if((ptr1 == NULL) || ((ptr2 != NULL) && (ptr1 < ptr2))) + ptr1 = filename0 + k; + memmove(ptr1 + 1, ptr1, k + 1 - (int) (ptr1 - filename0)); + ptr1[0] = '_'; + if(rename(filename, filename0)) { + switch(errno) { + case ENOENT: /* File or path specified by oldname not found */ + FREE(filename0); + filename0 = NULL; + break; + case EACCES: /* File or directory specified by newname already exists or could not be created (invalid path); or oldname is a directory and newname specifies a different path. */ + FREE(filename0); + FREE(header); + return(FALSE); + break; + } + } + + if((fp = ini_create(filename)) == NULL) + ret = FALSE; + else { + params_written = FALSE; + newline = TRUE; + if(filename0 != NULL) { + fp0 = ini_open(filename0); + if(fp0 == NULL) { + rename(filename0, filename); + FREE(filename0); + FREE(header); + return(FALSE); + } + looping = TRUE; + while(looping) { + switch(ini_readdata(fp0, buf, sizeof(buf), TRUE)) { + case 0: /* End of file */ + looping = FALSE; + break; + case 1: /* header */ + ptr1 = strdup(buf); + STRUPR(buf); + ptr2 = strdup(header); + STRUPR(ptr2); + if(strcmp(buf, ptr2) == 0) { + write_params1(lp, fp, ptr1, newline); + params_written = TRUE; + newline = TRUE; + state = 1; + } + else { + state = 0; + ini_writeheader(fp, ptr1, newline); + newline = TRUE; + } + FREE(ptr2); + FREE(ptr1); + break; + case 2: /* data */ + if(state == 0) { + ini_writedata(fp, NULL, buf); + newline = (*buf != 0); + } + break; + } + } + ini_close(fp0); + } + + if(!params_written) + write_params1(lp, fp, header, newline); + + ini_close(fp); + ret = TRUE; + } + + if(filename0 != NULL) { + remove(filename0); + FREE(filename0); + } + + FREE(header); + + return( (MYBOOL) ret ); +} + + +MYBOOL __WINAPI read_params(lprec *lp, char *filename, char *options) +{ + int ret, looping, line; + FILE *fp; + hashtable *hashfunctions, *hashparameters; + hashelem *hp; + int i, j, elements, n, intvalue, state = 0; + LPSREAL REALvalue; + char buf[4096], *header = NULL, *ptr, *ptr1, *ptr2; + + if((fp = ini_open(filename)) == NULL) + ret = FALSE; + else { + /* create hashtable of all callable commands to find them quickly */ + hashfunctions = create_hash_table(sizeof(functions) / sizeof(*functions), 0); + for (n = 0, i = 0; i < (int) (sizeof(functions)/sizeof(*functions)); i++) { + puthash(functions[i].par, i, NULL, hashfunctions); + if(functions[i].values != NULL) + n += functions[i].elements; + } + /* create hashtable of all arguments to find them quickly */ + hashparameters = create_hash_table(n, 0); + for (n = 0, i = 0; i < (int) (sizeof(functions)/sizeof(*functions)); i++) { + if(functions[i].values != NULL) { + elements = functions[i].elements; + for(j = 0; j < elements; j++) + if((strcmp(functions[i].values[j].svalue, "0") != 0) && + (strcmp(functions[i].values[j].svalue, "1") != 0)) + puthash(functions[i].values[j].svalue, j, NULL, hashparameters); + } + } + + readoptions(options, &header); + + STRUPR(header); + ret = looping = TRUE; + line = 0; + while((ret) && (looping)) { + line++; + switch(ini_readdata(fp, buf, sizeof(buf), FALSE)) { + case 0: /* End of file */ + looping = FALSE; + break; + case 1: /* header */ + switch(state) { + case 0: + STRUPR(buf); + if(strcmp(buf, header) == 0) + state = 1; + break; + case 1: + looping = FALSE; + break; + } + break; + case 2: /* data */ + if(state == 1) { + for(ptr = buf; (*ptr) && (isspace(*ptr)); ptr++); + } + else + ptr = NULL; + if((ptr != NULL) && (*ptr)) { + STRUPR(buf); + ptr = strchr(buf, '='); + if(ptr == NULL) { + report(lp, IMPORTANT, "read_params: No equal sign on line %d\n", line); + ret = FALSE; + } + else { + *ptr = 0; + for(ptr1 = buf; isspace(*ptr1); ptr1++); + for(ptr2 = ptr - 1; (ptr2 >= ptr1) && (isspace(*ptr2)); ptr2--); + if(ptr2 <= ptr1) { + report(lp, IMPORTANT, "read_params: No parameter name before equal sign on line %d\n", line); + ret = FALSE; + } + else { + ptr2[1] = 0; + hp = findhash(ptr1, hashfunctions); + if(hp == NULL) { + report(lp, IMPORTANT, "read_params: Unknown parameter name (%s) before equal sign on line %d\n", ptr1, line); + ret = FALSE; + } + else { + i = hp->index; + ptr1 = ++ptr; + intvalue = 0; + REALvalue = 0; + if(functions[i].values == NULL) { + switch(functions[i].type) { + case intfunction: + case longfunction: + case MYBOOLfunction: + intvalue = strtol(ptr1, &ptr2, 10); + while((*ptr2) && (isspace(*ptr2))) + ptr2++; + if(*ptr2) { + report(lp, IMPORTANT, "read_params: Invalid integer value on line %d\n", line); + ret = FALSE; + } + break; + case REALfunction: + REALvalue = strtod(ptr1, &ptr2); + while((*ptr2) && (isspace(*ptr2))) + ptr2++; + if(*ptr2) { + report(lp, IMPORTANT, "read_params: Invalid real value on line %d\n", line); + ret = FALSE; + } + break; + } + } + else { + while(ret) { + ptr = strchr(ptr1, '+'); + if(ptr == NULL) + ptr = ptr1 + strlen(ptr1); + for(; isspace(*ptr1); ptr1++); + for(ptr2 = ptr - 1; (ptr2 >= ptr1) && (isspace(*ptr2)); ptr2--); + if(ptr2 <= ptr1) + break; + else { + ptr2[1] = 0; + hp = findhash(ptr1, hashparameters); + if (hp == NULL) { + report(lp, IMPORTANT, "read_params: Invalid parameter name (%s) on line %d\n", ptr1, line); + ret = FALSE; + } + else { + j = hp->index; + if((j >= functions[i].elements) || + (strcmp(functions[i].values[j].svalue, ptr1))) { + report(lp, IMPORTANT, "read_params: Inappropriate parameter name (%s) on line %d\n", ptr1, line); + ret = FALSE; + } + else { + intvalue += functions[i].values[j].value; + } + } + ptr1 = ptr + 1; + } + } + } + if(ret) { + switch(functions[i].type) { + case intfunction: + functions[i].set_function.int_set_function(lp, intvalue); + break; + case longfunction: + functions[i].set_function.long_set_function(lp, intvalue); + break; + case MYBOOLfunction: + functions[i].set_function.MYBOOL_set_function(lp, (MYBOOL) intvalue); + break; + case REALfunction: + functions[i].set_function.REAL_set_function(lp, REALvalue); + break; + } + } + } + } + } + } + break; + } + } + + FREE(header); + free_hash_table(hashfunctions); + free_hash_table(hashparameters); + + ini_close(fp); + } + + return( (MYBOOL) ret ); +} diff --git a/src/external/lpsolve/build/lp_solve/lp_presolve.c b/src/external/lpsolve/build/lp_solve/lp_presolve.c new file mode 100644 index 00000000..0a98e421 --- /dev/null +++ b/src/external/lpsolve/build/lp_solve/lp_presolve.c @@ -0,0 +1,5901 @@ + +/* ------------------------------------------------------------------------- + Presolve routines for lp_solve v5.0+ + ------------------------------------------------------------------------- + Author: Kjell Eikland + Contact: kjell.eikland@broadpark.no + License terms: LGPL. + + Requires: lp_lib.h, lp_presolve, lp_crash.h, lp_scale.h, lp_report.h + + Release notes: + v1.0.0 1 January 2003 Initial crude version used with lp_solve v4. + v5.0.0 1 January 2004 Significantly expanded and repackaged + presolve routines for lp_solve v5 release. + v5.0.1 1 April 2004 Added reference to new crash module + v5.1.0 20 August 2004 Reworked infeasibility detection. + Added encapsulation of presolve undo logic. + v5.1.1 10 September 2004 Added variable bound tightening based on + full-constraint information, as well as + variable fixing by duality. + v5.2.0 1 January 2005 Fixes to bound fixing handling. + Added fast batch compression after presolve. + Restructured calls by adding presolve wrapper. + Major optimization of identification logic + along with bug fixes. + Enabled storage of eliminated matrix data. + Added function to report on constraint classes. + v5.5.0 1 June 2005 Added implied slack presolve, restructured + looping logic to be more modular, and made + active row/column selection logic faster. + v5.5.1 18 June 2005 Finished sparsity-enhancing logic and added + initial version of column aggregation code. + ------------------------------------------------------------------------- */ + +#include +#include "commonlib.h" +#include "lp_lib.h" +#include "lp_presolve.h" +#include "lp_crash.h" +#include "lp_scale.h" +#include "lp_report.h" + +#ifdef FORTIFY +# include "lp_fortify.h" +#endif + + +#define presolve_setstatus(one, two) presolve_setstatusex(one, two, __LINE__, __FILE__) +STATIC int presolve_setstatusex(presolverec *psdata, int status, int lineno, char *filename) +{ + if((status == INFEASIBLE) || (status == UNBOUNDED)) { + report(psdata->lp, +#ifdef Paranoia + NORMAL, +#else + DETAILED, +#endif + "presolve_setstatus: Status set to '%s' on code line %d, file '%s'\n", + (status == INFEASIBLE ? "INFEASIBLE" : "UNBOUNDED"), lineno, (filename == NULL ? "Unknown" : filename)); + } + return( status ); +} + +STATIC MYBOOL presolve_statuscheck(presolverec *psdata, int *status) +{ + if(*status == RUNNING) { + lprec *lp = psdata->lp; + if(!mat_validate(lp->matA)) + *status = MATRIXERROR; + else if(userabort(lp, -1)) + *status = lp->spx_status; + } + return( (MYBOOL) (*status == RUNNING) ); +} + +STATIC MYBOOL presolve_createUndo(lprec *lp) +{ + if(lp->presolve_undo != NULL) + presolve_freeUndo(lp); + lp->presolve_undo = (presolveundorec *) calloc(1, sizeof(presolveundorec)); + lp->presolve_undo->lp = lp; + if(lp->presolve_undo == NULL) + return( FALSE ); + return( TRUE ); +} +STATIC MYBOOL inc_presolve_space(lprec *lp, int delta, MYBOOL isrows) +{ + int i, ii, + oldrowcolalloc, rowcolsum, oldrowalloc, oldcolalloc; + presolveundorec *psundo = lp->presolve_undo; + + if(psundo == NULL) { + presolve_createUndo(lp); + psundo = lp->presolve_undo; + } + + /* Set constants */ + oldrowalloc = lp->rows_alloc-delta; + oldcolalloc = lp->columns_alloc-delta; + oldrowcolalloc = lp->sum_alloc-delta; + rowcolsum = lp->sum_alloc + 1; + + /* Reallocate lp memory */ + if(isrows) + allocREAL(lp, &psundo->fixed_rhs, lp->rows_alloc+1, AUTOMATIC); + else + allocREAL(lp, &psundo->fixed_obj, lp->columns_alloc+1, AUTOMATIC); + allocINT(lp, &psundo->var_to_orig, rowcolsum, AUTOMATIC); + allocINT(lp, &psundo->orig_to_var, rowcolsum, AUTOMATIC); + + /* Fill in default values, where appropriate */ + if(isrows) + ii = oldrowalloc+1; + else + ii = oldcolalloc+1; + for(i = oldrowcolalloc+1; i < rowcolsum; i++, ii++) { + psundo->var_to_orig[i] = 0; + psundo->orig_to_var[i] = 0; + if(isrows) + psundo->fixed_rhs[ii] = 0; + else + psundo->fixed_obj[ii] = 0; + } + + return(TRUE); +} +STATIC MYBOOL presolve_setOrig(lprec *lp, int orig_rows, int orig_cols) +{ + presolveundorec *psundo = lp->presolve_undo; + + if(psundo == NULL) + return( FALSE ); + psundo->orig_rows = orig_rows; + psundo->orig_columns = orig_cols; + psundo->orig_sum = orig_rows + orig_cols; + if(lp->wasPresolved) + presolve_fillUndo(lp, orig_rows, orig_cols, FALSE); + return( TRUE ); +} +STATIC MYBOOL presolve_fillUndo(lprec *lp, int orig_rows, int orig_cols, MYBOOL setOrig) +{ + int i; + presolveundorec *psundo = lp->presolve_undo; + + for(i = 0; i <= orig_rows; i++) { + psundo->var_to_orig[i] = i; + psundo->orig_to_var[i] = i; + psundo->fixed_rhs[i] = 0; + } + for(i = 1; i <= orig_cols; i++) { + psundo->var_to_orig[orig_rows + i] = i; + psundo->orig_to_var[orig_rows + i] = i; + psundo->fixed_obj[i] = 0; + } + if(setOrig) + presolve_setOrig(lp, orig_rows, orig_cols); + + return( TRUE ); +} +STATIC MYBOOL presolve_rebuildUndo(lprec *lp, MYBOOL isprimal) +{ + int ik, ie, ix, j, k, *colnrDep; + LPSREAL hold, *value, *slacks, *solution; + presolveundorec *psdata = lp->presolve_undo; + MATrec *mat = NULL; + + /* Point to and initialize undo structure at first call */ + if(isprimal) { + if(psdata->primalundo != NULL) + mat = psdata->primalundo->tracker; + if(mat == NULL) + return( FALSE ); + solution = lp->full_solution + lp->presolve_undo->orig_rows; + slacks = lp->full_solution; + } + else { + if(psdata->dualundo != NULL) + mat = psdata->dualundo->tracker; + if(mat == NULL) + return( FALSE ); + solution = lp->full_duals; + slacks = lp->full_duals + lp->presolve_undo->orig_rows; + } + if(mat == NULL) + return( FALSE ); + + /* Loop backward over the undo chain */ + for(j = mat->col_tag[0]; j > 0; j--) { + ix = mat->col_tag[j]; + ik = mat->col_end[j-1]; + ie = mat->col_end[j]; + colnrDep = &COL_MAT_ROWNR(ik); + value = &COL_MAT_VALUE(ik); + hold = 0; + k = 0; + for(; ik < ie; ik++, colnrDep += matRowColStep, value += matValueStep) { + + /* Constant term */ + if(*colnrDep == 0) + hold += *value; + + /* Special case with dependence on a slack variable */ + else if(isprimal && (*colnrDep > lp->presolve_undo->orig_columns)) { + k = (*colnrDep) - lp->presolve_undo->orig_columns; + hold -= (*value) * slacks[k]; + slacks[k] = 0; + } + else if(!isprimal && (*colnrDep > lp->presolve_undo->orig_rows)) { + k = (*colnrDep) - lp->presolve_undo->orig_rows; + hold -= (*value) * slacks[k]; + slacks[k] = 0; + } + + /* Dependence on other user variable */ + else + hold -= (*value) * solution[*colnrDep]; + + *value = 0; + } + if(fabs(hold) > lp->epsvalue) + solution[ix] = hold; + } + + return( TRUE ); +} +STATIC MYBOOL presolve_freeUndo(lprec *lp) +{ + presolveundorec *psundo = lp->presolve_undo; + + if(psundo == NULL) + return( FALSE ); + FREE(psundo->orig_to_var); + FREE(psundo->var_to_orig); + FREE(psundo->fixed_rhs); + FREE(psundo->fixed_obj); + if(psundo->deletedA != NULL) + freeUndoLadder(&(psundo->deletedA)); + if(psundo->primalundo != NULL) + freeUndoLadder(&(psundo->primalundo)); + if(psundo->dualundo != NULL) + freeUndoLadder(&(psundo->dualundo)); + FREE(lp->presolve_undo); + return( TRUE ); +} + +STATIC void presolve_storeDualUndo(presolverec *psdata, int rownr, int colnr) +{ + lprec *lp = psdata->lp; + MYBOOL firstdone = FALSE; + int ix, iix, item; + LPSREAL Aij = get_mat(lp, rownr, colnr); + MATrec *mat = lp->matA; + + if(presolve_collength(psdata, colnr) == 0) + return; + + /* Add undo information for the dual of the deleted constraint */ + item = 0; + for(ix = presolve_nextrow(psdata, colnr, &item); ix >= 0; + ix = presolve_nextrow(psdata, colnr, &item)) { + iix = COL_MAT_ROWNR(ix); + if(iix == rownr) + continue; + if(!firstdone) + firstdone = addUndoPresolve(lp, FALSE, rownr, get_mat(lp, 0, colnr)/Aij, + get_mat_byindex(lp, ix, FALSE, TRUE)/Aij, iix); + else + appendUndoPresolve(lp, FALSE, get_mat_byindex(lp, ix, FALSE, TRUE)/Aij, iix); + } +} + +/* ----------------------------------------------------------------------------- */ +/* Presolve debugging routines */ +/* ----------------------------------------------------------------------------- */ +STATIC MYBOOL presolve_SOScheck(presolverec *psdata) +{ + MYBOOL status = TRUE; + lprec *lp = psdata->lp; + int *list, i, j, n, k, nk, colnr, nSOS = SOS_count(lp), nerr = 0; + SOSrec *SOS; + + if(nSOS == 0) + return( status ); + + /* For each SOS and each member check validity */ + for(i = 1; i<= nSOS; i++) { + SOS = lp->SOS->sos_list[i-1]; + list = SOS->members; + n = list[0]; + for(j = 1; j<= n; j++) { + colnr = list[j]; + /* Check valid range */ + if((colnr < 1) || (colnr > lp->columns)) { + nerr++; + report(lp, IMPORTANT, "presolve_SOScheck: A - Column index %d is outside of valid range\n", + colnr); + } + /* Check for deletion */ + if(!isActiveLink(psdata->cols->varmap, colnr)) { + nerr++; + report(lp, IMPORTANT, "presolve_SOScheck: B - Column index %d has been marked for deletion\n", + colnr); + } + /* Check if sorted member array is Ok */ + if(SOS_member_index(lp->SOS, i, colnr) != j) { + nerr++; + report(lp, IMPORTANT, "presolve_SOScheck: C - Column index %d not found in fast search array\n", + colnr); + } + /* Check for variable membership in this SOS record of the sparse storage */ + k = lp->SOS->memberpos[colnr-1]; + nk = lp->SOS->memberpos[colnr]; + while((k < nk) && (lp->SOS->membership[k] != i)) + k++; + if(k >= nk) { + nerr++; + report(lp, IMPORTANT, "presolve_SOScheck: D - Column index %d was not found in sparse array\n", + colnr); + } + } + } + + /* Check that all members in the sparse array can be validated as SOS members */ + for(colnr = 1; colnr <= lp->columns; colnr++) { + k = lp->SOS->memberpos[colnr-1]; + nk = lp->SOS->memberpos[colnr]; + for(; k < nk; k++) { + if(!SOS_is_member(lp->SOS, lp->SOS->membership[k], colnr)) { + nerr++; + report(lp, IMPORTANT, "presolve_SOScheck: E - Sparse array did not indicate column index %d as member of SOS %d\n", + colnr, lp->SOS->membership[k]); + } + } + } + status = (MYBOOL) (nerr == 0); + if(!status) + report(lp, IMPORTANT, "presolve_SOScheck: There were %d errors\n", + nerr); + + + return( status ); +} + +/* ----------------------------------------------------------------------------- */ +/* Presolve routines for tightening the model */ +/* ----------------------------------------------------------------------------- */ + +INLINE LPSREAL presolve_roundrhs(lprec *lp, LPSREAL value, MYBOOL isGE) +{ +#ifdef DoPresolveRounding + LPSREAL eps = PRESOLVE_EPSVALUE*1000, + /* LPSREAL eps = PRESOLVE_EPSVALUE*pow(10.0,MAX(0,log10(1+fabs(value)))), */ + testout = my_precision(value, eps); +#if 1 + if(my_chsign(isGE, value-testout) < 0) + value = testout; +#elif 0 + if(my_chsign(isGE, value-testout) < 0) + value = testout; + else if(value != testout) + value += my_chsign(isGE, (value-testout)/2); + /* value = testout + my_chsign(isGE, (value-testout)/2); */ +#else + if(testout != value) + value += my_chsign(isGE, eps*1000); /* BASE OPTION */ +#endif + +#endif + return( value ); +} + +INLINE LPSREAL presolve_roundval(lprec *lp, LPSREAL value) +{ +#ifdef DoPresolveRounding + /* value = my_precision(value, PRESOLVE_EPSVALUE*MAX(1,log10(1+fabs(value)))); */ + value = my_precision(value, PRESOLVE_EPSVALUE); /* BASE OPTION */ +#endif + return( value ); +} + +INLINE MYBOOL presolve_mustupdate(lprec *lp, int colnr) +{ +#if 0 + return( my_infinite(lp, get_lowbo(lp, colnr)) || + my_infinite(lp, get_upbo(lp, colnr)) ); +#else + return( my_infinite(lp, lp->orig_lowbo[lp->rows+colnr]) || + my_infinite(lp, lp->orig_upbo[lp->rows+colnr]) ); +#endif +} + +INLINE LPSREAL presolve_sumplumin(lprec *lp, int item, psrec *ps, MYBOOL doUpper) +{ + LPSREAL *plu = (doUpper ? ps->pluupper : ps->plulower), + *neg = (doUpper ? ps->negupper : ps->neglower); + + if(fabs(plu[item]) >= lp->infinite) + return( plu[item] ); + else if(fabs(neg[item]) >= lp->infinite) + return( neg[item] ); + else + return( plu[item]+neg[item] ); +} + +INLINE void presolve_range(lprec *lp, int rownr, psrec *ps, LPSREAL *loValue, LPSREAL *hiValue) +{ + *loValue = presolve_sumplumin(lp, rownr, ps, FALSE); + *hiValue = presolve_sumplumin(lp, rownr, ps, TRUE); +} + +STATIC void presolve_rangeorig(lprec *lp, int rownr, psrec *ps, LPSREAL *loValue, LPSREAL *hiValue, LPSREAL delta) +{ + delta = my_chsign(is_chsign(lp, rownr), lp->presolve_undo->fixed_rhs[rownr] + delta); + *loValue = presolve_sumplumin(lp, rownr, ps, FALSE) + delta; + *hiValue = presolve_sumplumin(lp, rownr, ps, TRUE) + delta; +} + +STATIC MYBOOL presolve_rowfeasible(presolverec *psdata, int rownr, MYBOOL userowmap) +{ + lprec *lp = psdata->lp; + MYBOOL status = TRUE; + int contype, origrownr = rownr; + LPSREAL LHS, RHS, value; + + /* Optionally loop across all active rows in the provided map (debugging) */ + if(userowmap) + rownr = firstActiveLink(psdata->rows->varmap); + + /* Now do once for ingoing rownr or loop across rowmap */ + while((status == TRUE) && (rownr != 0)) { + + /* Check the lower bound */ + value = presolve_sumplumin(lp, rownr, psdata->rows, TRUE); + LHS = get_rh_lower(lp, rownr); + if(value < LHS-lp->epssolution) { + contype = get_constr_type(lp, rownr); + report(lp, NORMAL, "presolve_rowfeasible: Lower bound infeasibility in %s row %s (%g << %g)\n", + get_str_constr_type(lp, contype), get_row_name(lp, rownr), value, LHS); + if(rownr != origrownr) + report(lp, NORMAL, " ... Input row base used for testing was %s\n", + get_row_name(lp, origrownr)); + status = FALSE; + } + + /* Check the upper bound */ + value = presolve_sumplumin(lp, rownr, psdata->rows, FALSE); + RHS = get_rh_upper(lp, rownr); + if(value > RHS+lp->epssolution) { + contype = get_constr_type(lp, rownr); + report(lp, NORMAL, "presolve_rowfeasible: Upper bound infeasibility in %s row %s (%g >> %g)\n", + get_str_constr_type(lp, contype), get_row_name(lp, rownr), value, RHS); + status = FALSE; + } + if(userowmap) + rownr = nextActiveLink(psdata->rows->varmap, rownr); + else + rownr = 0; + } + return( status ); +} + +STATIC MYBOOL presolve_debugmap(presolverec *psdata, char *caption) +{ + lprec *lp = psdata->lp; + MATrec *mat = lp->matA; + int colnr, ix, ie, nx, jx, je, *cols, *rows, n; + int nz = mat->col_end[lp->columns] - 1; + MYBOOL status = FALSE; + + for(colnr = 1; colnr <= lp->columns; colnr++) { + rows = psdata->cols->next[colnr]; + if(!isActiveLink(psdata->cols->varmap, colnr)) { + if(rows != NULL) { + report(lp, SEVERE, "presolve_debugmap: Inactive column %d is non-empty\n", + colnr); + goto Done; + } + else + continue; + } + if(rows == NULL) + report(lp, SEVERE, "presolve_debugmap: Active column %d is empty\n", + colnr); + je = *rows; + rows++; + for(jx = 1; jx <= je; jx++, rows++) { + if((*rows < 0) || (*rows > nz)) { + report(lp, SEVERE, "presolve_debugmap: NZ index %d for column %d out of range (index %d<=%d)\n", + *rows, colnr, jx, je); + goto Done; + } + cols = psdata->rows->next[COL_MAT_ROWNR(*rows)]; + ie = cols[0]; + n = 0; + for(ix = 1; ix <= ie; ix++) { + nx = cols[ix]; + if((nx < 0) || (nx > nz)) { + report(lp, SEVERE, "presolve_debugmap: NZ index %d for column %d to row %d out of range\n", + nx, colnr, jx); + goto Done; + } + } + } + } + status = TRUE; +Done: + if(!status && (caption != NULL)) + report(lp, SEVERE, "...caller was '%s'\n", caption); + return( status ); +} + +STATIC MYBOOL presolve_validate(presolverec *psdata, MYBOOL forceupdate) +{ + int i, ie, j, je, k, rownr, *items; + LPSREAL upbound, lobound, value; + lprec *lp = psdata->lp; + MATrec *mat = lp->matA; + MYBOOL status = mat->row_end_valid && !forceupdate; + + if(status) + return( status ); + else if(!mat->row_end_valid) + status = mat_validate(mat); + else + status = forceupdate; + if(status) { + + /* First update rows... */ + for(i = 1; i <= lp->rows; i++) { + + psdata->rows->plucount[i] = 0; + psdata->rows->negcount[i] = 0; + psdata->rows->pluneg[i] = 0; + + if(!isActiveLink(psdata->rows->varmap, i)) { + FREE(psdata->rows->next[i]); + } + else { + /* Create next column pointers by row */ + k = mat_rowlength(mat, i); + allocINT(lp, &(psdata->rows->next[i]), k+1, AUTOMATIC); + items = psdata->rows->next[i]; + je = mat->row_end[i]; + k = 0; + for(j = mat->row_end[i-1]; j < je; j++) + if(isActiveLink(psdata->cols->varmap, ROW_MAT_COLNR(j))) { + k++; + items[k] = j; + } + items[0] = k; + } + } + + /* ...then update columns */ + for(j = 1; j <= lp->columns; j++) { + + psdata->cols->plucount[j] = 0; + psdata->cols->negcount[j] = 0; + psdata->cols->pluneg[j] = 0; + + if(!isActiveLink(psdata->cols->varmap, j)) { + FREE(psdata->cols->next[j]); + } + else { + upbound = get_upbo(lp, j); + lobound = get_lowbo(lp, j); + if(is_semicont(lp, j) && (upbound > lobound)) { + if(lobound > 0) + lobound = 0; + else if(upbound < 0) + upbound = 0; + } + + /* Create next row pointers by column */ + k = mat_collength(mat, j); + allocINT(lp, &(psdata->cols->next[j]), k+1, AUTOMATIC); + items = psdata->cols->next[j]; + ie = mat->col_end[j]; + k = 0; + for(i = mat->col_end[j-1]; i < ie; i++) { + rownr = COL_MAT_ROWNR(i); + if(isActiveLink(psdata->rows->varmap, rownr)) { + k++; + items[k] = i; + + /* Cumulate counts */ + value = COL_MAT_VALUE(i); + if(my_chsign(is_chsign(lp, rownr), value) > 0) { + psdata->rows->plucount[rownr]++; + psdata->cols->plucount[j]++; + } + else { + psdata->rows->negcount[rownr]++; + psdata->cols->negcount[j]++; + } + if((lobound < 0) && (upbound >= 0)) { + psdata->rows->pluneg[rownr]++; + psdata->cols->pluneg[j]++; + } + } + } + items[0] = k; + } + } +#ifdef Paranoia + presolve_debugmap(psdata, "presolve_validate"); +#endif + } + return( status ); +} + +STATIC MYBOOL presolve_rowtallies(presolverec *psdata, int rownr, int *plu, int *neg, int *pluneg) +{ + LPSREAL value; + lprec *lp = psdata->lp; + MATrec *mat = lp->matA; + int ix, jx, ib = 0; + MYBOOL chsign = is_chsign(lp, rownr); + + /* Initialize */ + *plu = 0; + *neg = 0; + *pluneg = 0; + + /* Loop over still active row members */ + for(ix = presolve_nextcol(psdata, rownr, &ib); ix >= 0; ix = presolve_nextcol(psdata, rownr, &ib)) { + + /* Get matrix column and value */ + jx = ROW_MAT_COLNR(ix); + value = ROW_MAT_VALUE(ix); + + /* Cumulate counts */ + if(my_chsign(chsign, value) > 0) + (*plu)++; + else + (*neg)++; + if((get_lowbo(lp, jx) < 0) && (get_upbo(lp, jx) >= 0)) + (*pluneg)++; + } + return( TRUE ); +} +STATIC MYBOOL presolve_debugrowtallies(presolverec *psdata) +{ + lprec *lp = psdata->lp; + int i, plu, neg, pluneg, nerr = 0; + + for(i = 1; i <= lp->rows; i++) + if(isActiveLink(psdata->rows->varmap, i) && + presolve_rowtallies(psdata, i, &plu, &neg, &pluneg)) { + if((psdata->rows->plucount[i] != plu) || + (psdata->rows->negcount[i] != neg) || + (psdata->rows->pluneg[i] != pluneg)) { + nerr++; + report(lp, SEVERE, "presolve_debugrowtallies: Detected inconsistent count for row %d\n", i); + } + } + return( (MYBOOL) (nerr == 0) ); +} + +STATIC int presolve_debugcheck(lprec *lp, LLrec *rowmap, LLrec *colmap) +{ + int i, j, errc = 0; + + /* Validate constraint bounds */ + for(i = 1; i < lp->rows; i++) { + if((rowmap != NULL) && !isActiveLink(rowmap, i)) + continue; + /* Check if we have a negative range */ + if(lp->orig_upbo[i] < 0) { + errc++; + report(lp, SEVERE, "presolve_debugcheck: Detected negative range %g for row %d\n", + lp->orig_upbo[i], i); + } + } + /* Validate variables */ + for(j = 1; j < lp->columns; j++) { + if((colmap != NULL) && !isActiveLink(colmap, j)) + continue; + i = lp->rows+j; + /* Check if we have infeasible bounds */ + if(lp->orig_lowbo[i] > lp->orig_upbo[i]) { + errc++; + report(lp, SEVERE, "presolve_debugcheck: Detected UB < LB for column %d\n", + j); + } + } + /* Return total number of errors */ + return( errc ); +} + +STATIC MYBOOL presolve_candeletevar(presolverec *psdata, int colnr) +{ + lprec *lp = psdata->lp; + int usecount = SOS_memberships(lp->SOS, colnr); + + return( (MYBOOL) ((lp->SOS == NULL) || (usecount == 0) || + (/*is_presolve(lp, PRESOLVE_SOS) &&*/ + (((lp->SOS->sos1_count == lp->SOS->sos_count)) || + (usecount == SOS_is_member_of_type(lp->SOS, colnr, SOS1))))) ); +} + +STATIC int presolve_rowlengthex(presolverec *psdata, int rownr) +{ + int j1 = psdata->rows->plucount[rownr] + psdata->rows->negcount[rownr]; +#ifdef Paranoia + int j2 = presolve_rowlength(psdata, rownr); + + if(j1 != j2) { + report(psdata->lp, SEVERE, "presolve_rowlengthex: Expected row length %d, but found %d in row %s\n", + j2, j1, get_row_name(psdata->lp, rownr)); + j1 = -j1; + } +#endif + + return( j1 ); +} +STATIC int presolve_rowlengthdebug(presolverec *psdata) +{ + int rownr, n = 0; + + for(rownr = firstActiveLink(psdata->rows->varmap); rownr != 0; + rownr = nextActiveLink(psdata->rows->varmap, rownr)) + n += presolve_rowlengthex(psdata, rownr); + return( n ); +} + +INLINE int presolve_nextrecord(psrec *ps, int recnr, int *previtem) +{ + int *nzlist = ps->next[recnr], nzcount = nzlist[0], status = -1; + + /* Check if we simply wish the last active column */ + if(previtem == NULL) { + if(nzlist != NULL) + status = nzlist[*nzlist]; + return( status ); + } + + /* Step to next */ +#ifdef Paranoia + else if((*previtem < 0) || (*previtem > nzcount)) + return( status ); +#endif + (*previtem)++; + + /* Set the return values */ + if(*previtem > nzcount) + (*previtem) = 0; + else + status = nzlist[*previtem]; + + return( status ); +} +INLINE int presolve_nextcol(presolverec *psdata, int rownr, int *previtem) +/* Find the first active (non-eliminated) nonzero column in rownr after prevcol */ +{ + return( presolve_nextrecord(psdata->rows, rownr, previtem) ); +} +INLINE int presolve_lastcol(presolverec *psdata, int rownr) +{ + return( presolve_nextrecord(psdata->rows, rownr, NULL) ); +} +INLINE int presolve_nextrow(presolverec *psdata, int colnr, int *previtem) +/* Find the first active (non-eliminated) nonzero row in colnr after prevrow */ +{ + return( presolve_nextrecord(psdata->cols, colnr, previtem) ); +} +INLINE int presolve_lastrow(presolverec *psdata, int colnr) +{ + return( presolve_nextrecord(psdata->cols, colnr, NULL) ); +} + +INLINE void presolve_adjustrhs(presolverec *psdata, int rownr, LPSREAL fixdelta, LPSREAL epsvalue) +{ + lprec *lp = psdata->lp; + + lp->orig_rhs[rownr] -= fixdelta; + if(epsvalue > 0) +#if 1 + my_roundzero(lp->orig_rhs[rownr], epsvalue); +#else + lp->orig_rhs[rownr] = presolve_roundrhs(lp, lp->orig_rhs[rownr], FALSE); +#endif + lp->presolve_undo->fixed_rhs[rownr] += fixdelta; +} + +STATIC int presolve_shrink(presolverec *psdata, int *nConRemove, int *nVarRemove) +{ + SOSgroup *SOS = psdata->lp->SOS; + int status = RUNNING, countR = 0, countC = 0, + i, ix, n, *list; + LPSREAL fixValue; + + /* Remove empty rows */ + list = psdata->rows->empty; + if(list != NULL) { + n = list[0]; + for(i = 1; i <= n; i++) + if(isActiveLink(psdata->rows->varmap, list[i])) { + presolve_rowremove(psdata, list[i], FALSE); + countR++; + } + if(nConRemove != NULL) + (*nConRemove) += countR; + list[0] = 0; + } + + /* Fix and remove empty columns (unless they are in a SOS) */ + list = psdata->cols->empty; + if(list != NULL) { + n = list[0]; + for(i = 1; i <= n; i++) { + ix = list[i]; + if(isActiveLink(psdata->cols->varmap, ix)) { + if(presolve_colfixdual(psdata, ix, &fixValue, &status)) { + if(!presolve_colfix(psdata, ix, fixValue, TRUE, nVarRemove)) { + status = presolve_setstatus(psdata, INFEASIBLE); + break; + } + presolve_colremove(psdata, ix, FALSE); + countC++; + } + else if(SOS_is_member(SOS, 0, ix)) + report(psdata->lp, DETAILED, "presolve_shrink: Empty column %d is member of a SOS\n", ix); + } + } + list[0] = 0; + } + + return( status ); +} + +STATIC void presolve_rowremove(presolverec *psdata, int rownr, MYBOOL allowcoldelete) +{ + lprec *lp = psdata->lp; + MATrec *mat = lp->matA; + int ix, ie, nx, jx, je, *cols, *rows, n, colnr; + +#ifdef Paranoia + if((rownr < 1) || (rownr > lp->rows)) + report(lp, SEVERE, "presolve_rowremove: Row %d out of range\n", rownr); +#endif + + /* Remove this row for each column that is active in the row */ + cols = psdata->rows->next[rownr]; + ie = *cols; + cols++; + for(ix = 1; ix <= ie; ix++, cols++) { + n = 0; + colnr = ROW_MAT_COLNR(*cols); + rows = psdata->cols->next[colnr]; + je = rows[0]; + /* See if we can narrow the search window */ + jx = je / 2; + if((jx > 5) && (rownr >= COL_MAT_ROWNR(rows[jx]))) + n = jx-1; + else + jx = 1; + /* Do the compression loop */ + for(; jx <= je; jx++) { + nx = rows[jx]; + if(COL_MAT_ROWNR(nx) != rownr) { + n++; + rows[n] = nx; + } + } + rows[0] = n; + + /* Make sure we delete columns that have become empty */ +#if 1 + if((n == 0) && allowcoldelete) { + int *list = psdata->cols->empty; + n = ++list[0]; + list[n] = colnr; + } +#endif + + } + FREE(psdata->rows->next[rownr]); + + removeLink(psdata->rows->varmap, rownr); + switch(get_constr_type(lp, rownr)) { + case LE: removeLink(psdata->LTmap, rownr); + break; + case EQ: removeLink(psdata->EQmap, rownr); + break; + } + if(isActiveLink(psdata->INTmap, rownr)) + removeLink(psdata->INTmap, rownr); +} + +STATIC int presolve_colremove(presolverec *psdata, int colnr, MYBOOL allowrowdelete) +{ + lprec *lp = psdata->lp; + +#ifdef Paranoia + if((colnr < 1) || (colnr > lp->columns)) + report(lp, SEVERE, "presolve_colremove: Column %d out of range\n", colnr); + if(!isActiveLink(psdata->cols->varmap, colnr) || !presolve_candeletevar(psdata, colnr)) + colnr = -1; + else +#endif + { + MATrec *mat = lp->matA; + int ix, ie, nx, jx, je, *cols, *rows, n, rownr; + + /* Remove this column for each row that is active in the column */ + rows = psdata->cols->next[colnr]; + je = *rows; + rows++; + for(jx = 1; jx <= je; jx++, rows++) { + n = 0; + rownr = COL_MAT_ROWNR(*rows); + cols = psdata->rows->next[rownr]; + ie = cols[0]; + /* See if we can narrow the search window */ + ix = ie / 2; + if((ix > 5) && (colnr >= ROW_MAT_COLNR(cols[ix]))) + n = ix-1; + else + ix = 1; + /* Do the compression loop */ + for(; ix <= ie; ix++) { + nx = cols[ix]; + if(ROW_MAT_COLNR(nx) != colnr) { + n++; + cols[n] = nx; + } + } + cols[0] = n; + + /* Make sure we delete rows that become empty */ +#if 1 + if((n == 0) && allowrowdelete) { + int *list = psdata->rows->empty; + n = ++list[0]; + list[n] = rownr; + } +#endif + + } + FREE(psdata->cols->next[colnr]); + + /* Update other counts */ + if(SOS_is_member(lp->SOS, 0, colnr)) { + if(lp->sos_priority != NULL) { + lp->sos_vars--; + if(is_int(lp, colnr)) + lp->sos_ints--; + } + SOS_member_delete(lp->SOS, 0, colnr); + clean_SOSgroup(lp->SOS, TRUE); + if(SOS_count(lp) == 0) + free_SOSgroup(&(lp->SOS)); + } + + /* Finally remove the column from the active column list */ + colnr = removeLink(psdata->cols->varmap, colnr); + } + return( colnr ); +} + +STATIC int presolve_redundantSOS(presolverec *psdata, int *nb, int *nSum) +{ + lprec *lp = psdata->lp; + int i, ii, k, kk, j, nrows = lp->rows, *fixed = NULL, + iBoundTighten = 0, status = RUNNING; + SOSrec *SOS; + + /* Is there anything to do? */ + i = ii = SOS_count(lp); + if(ii == 0) + return( status ); + + /* Allocate working member list */ + if(!allocINT(lp, &fixed, lp->columns+1, FALSE) ) + return( lp->spx_status ); + + /* Check if we have SOS'es that are already satisfied or fixable/satisfiable */ + while(i > 0) { + SOS = lp->SOS->sos_list[i-1]; + kk = SOS->members[0]; + fixed[0] = 0; + for(k = 1; k <= kk; k++) { + j = SOS->members[k]; + if((get_lowbo(lp, j) > 0) && !is_semicont(lp, j)) { + fixed[++fixed[0]] = k; + /* Abort if we have identified SOS infeasibility */ + if(fixed[0] > SOS->type) { + status = presolve_setstatus(psdata, INFEASIBLE); + goto Done; + } + } + } + /* If there were an exact number of non-zero SOS members, check their sequentiality */ + if(fixed[0] == SOS->type) { + /* Check sequentiality of members with non-zero lower bounds */ + for(k = 2; k <= fixed[0]; k++) { + if(fixed[k] != fixed[k-1]+1) { + status = presolve_setstatus(psdata, INFEASIBLE); + goto Done; + } + } + /* Fix other member variables to zero, if necessary */ + for(k = kk; k > 0; k--) { + j = SOS->members[k]; + if((get_lowbo(lp, j) > 0) && !is_semicont(lp, j)) + continue; + if(!presolve_colfix(psdata, j, 0.0, AUTOMATIC, &iBoundTighten)) { + status = presolve_setstatus(psdata, INFEASIBLE); + goto Done; + } + } + /* Remove the SOS */ + delete_SOSrec(lp->SOS, i /* , FALSE */); + } + /* Otherwise, try to fix variables outside the SOS type window */ + else if(fixed[0] > 0) { + for(k = kk; k > 0; k--) { + if((k > fixed[fixed[0]]-SOS->type) && /* After leading entries */ + (k < fixed[1]+SOS->type)) /* Before trailing entries */ + continue; + j = SOS->members[k]; + SOS_member_delete(lp->SOS, i, j); + /* if(get_upbo(lp, j) - get_lowbo(lp, j) < lp->epsprimal) */ + if(is_fixedvar(lp, nrows+j)) + continue; + if(!presolve_colfix(psdata, j, 0.0, AUTOMATIC, &iBoundTighten)) { + status = presolve_setstatus(psdata, INFEASIBLE); + goto Done; + } + } + } + i--; + } + + /* Update the sparse member map if there were SOS deletions; + Remember that delete_SOSrec() above specified deferred updating! */ + i = SOS_count(lp); + if((i < ii) || (iBoundTighten > 0)) { + SOS_member_updatemap(lp->SOS); + } + + /* Update tag orders */ + for(; i > 0; i--) + lp->SOS->sos_list[i-1]->tagorder = i; + +Done: + FREE(fixed); + (*nb) += iBoundTighten; + (*nSum) += iBoundTighten; + + return( status ); +} + +STATIC MYBOOL presolve_fixSOS1(presolverec *psdata, int colnr, LPSREAL fixvalue, int *nr, int *nv) +{ + lprec *lp = psdata->lp; + int i, k, j; + SOSrec *SOS; + LPSREAL newvalue; + MYBOOL *fixed = NULL, status = FALSE; + + /* Allocate working member list */ + if(!allocMYBOOL(lp, &fixed, lp->columns+1, TRUE) ) + return(FALSE); + + /* Fix variables in SOS's where colnr is a member */ + i = SOS_count(lp); + while(i > 0) { + /* Set next SOS target (note that colnr has been tested earlier as not being a member of a higher order SOS) */ + SOS = lp->SOS->sos_list[i-1]; + if(SOS_is_member(lp->SOS, i, colnr)) { + for(k = SOS->members[0]; k > 0; k--) { + j = SOS->members[k]; + if(fixed[j]) + continue; + if(j == colnr) { + fixed[j] = TRUE; + newvalue = fixvalue; + } + else { + fixed[j] = AUTOMATIC; + newvalue = 0.0; + } + /* If it is a member of a higher order SOS then just change bounds */ + if(!presolve_candeletevar(psdata, j)) { + set_bounds(lp, j, newvalue, newvalue); + fixed[j] = TRUE | AUTOMATIC; + psdata->forceupdate = TRUE; + } + /* Otherwise fix it in preparation for removal */ + else if(!presolve_colfix(psdata, j, newvalue, TRUE, nv)) + goto Done; + } + } + i--; + } + + /* Delete SOS'es or SOS member variables where we can */ + k = i = SOS_count(lp); + while(i > 0) { + /* Set next SOS target */ + SOS = lp->SOS->sos_list[i-1]; + if(SOS_is_member(lp->SOS, i, colnr)) { + /* Always delete SOS1's */ + if(SOS->type == SOS1) + delete_SOSrec(lp->SOS, i /* , FALSE */); + /* Only delete leading or trailing SOS members in higher-order SOS'es that are fixed at 0; + (note that this section of the code will never be called in the current setup) */ + else { + /* First the leading entries... */ + for(j = 1; j <= SOS->members[0]; j++) { + if(fixed[SOS->members[j]] == AUTOMATIC) + SOS_member_delete(lp->SOS, i, SOS->members[j]); + } + /* ...then trailing entries */ + for(j = SOS->members[0]; j > 0; j--) { + if(fixed[SOS->members[j]] == AUTOMATIC) + SOS_member_delete(lp->SOS, i, SOS->members[j]); + } + } + } + i--; + } + + /* Update the sparse member map if there were SOS deletions; delete_SOSrec() above + specified deferred updating */ + i = SOS_count(lp); + if(i < k) + SOS_member_updatemap(lp->SOS); + + /* Delete the variables that have been fixed */ + k = 0; + for(j = lp->columns; j > 0; j--) { + if((fixed[j] == TRUE) || (fixed[j] == AUTOMATIC)) { + presolve_colremove(psdata, j, TRUE); + k++; + } + } + + /* Update tag orders */ + i = SOS_count(lp); + for(; i > 0; i--) + lp->SOS->sos_list[i-1]->tagorder = i; + + status = TRUE; + +Done: + FREE(fixed); + return( status ); +} + +STATIC void presolve_setEQ(presolverec *psdata, int rownr) +{ + lprec *lp = psdata->lp; + + if(is_constr_type(lp, rownr, LE)) + removeLink(psdata->LTmap, rownr); + setLink(psdata->EQmap, rownr); + set_constr_type(lp, rownr, EQ); + psdata->dv_lobo[rownr] = -lp->infinite; + psdata->dv_upbo[rownr] = lp->infinite; +} + +STATIC MYBOOL presolve_singletonbounds(presolverec *psdata, int rownr, int colnr, LPSREAL *lobound, LPSREAL *upbound, LPSREAL *aval) +{ + lprec *lp = psdata->lp; + LPSREAL coeff_a, epsvalue = psdata->epsvalue; + MYBOOL isneg; + + /* Compute row singleton variable range */ + if(is_constr_type(lp, rownr, EQ) && (fabs(*lobound) < epsvalue)) + *lobound = *upbound = 0; + else { + if(aval == NULL) + coeff_a = get_mat(lp, rownr, colnr); + else + coeff_a = *aval; + isneg = (MYBOOL) (coeff_a < 0); + if(*lobound > -lp->infinite) + *lobound /= coeff_a; + else if(isneg) + *lobound = -(*lobound); + if(*upbound < lp->infinite) + *upbound /= coeff_a; + else if(isneg) + *upbound = -(*upbound); + if(isneg) + swapREAL(lobound, upbound); + } + + /* Check against bound - handle SC variables specially */ + if(is_semicont(lp, colnr)) { + coeff_a = get_lowbo(lp, colnr); + if(coeff_a > 0) { + SETMAX(*lobound, 0.0); + SETMIN(*upbound, get_upbo(lp, colnr)); + } + else { + coeff_a = get_upbo(lp, colnr); + if(coeff_a > 0) { + SETMAX(*lobound, get_lowbo(lp, colnr)); + SETMIN(*upbound, 0.0); + } + } + } + else { + SETMAX(*lobound, get_lowbo(lp, colnr)); + SETMIN(*upbound, get_upbo(lp, colnr)); + } + + /* Return with consistency status */ +#ifdef DoPresolveRelativeTest + isneg = (MYBOOL) (my_reldiff(*upbound, *lobound) >= - epsvalue); +#else + isneg = (MYBOOL) (*upbound >= *lobound - epsvalue); +#endif + if(!isneg) { + /* Attempt bound-related error correction */ + if(fabs(my_reldiff(*lobound, get_upbo(lp, colnr))) < PRESOLVE_BOUNDSLACK*epsvalue) + *lobound = get_upbo(lp, colnr); + else if(fabs(my_reldiff(*upbound, get_lowbo(lp, colnr))) < PRESOLVE_BOUNDSLACK*epsvalue) + *upbound = get_lowbo(lp, colnr); +#ifdef DoPresolveRelativeTest + isneg = (MYBOOL) (my_reldiff(*upbound, *lobound) >= - epsvalue); +#else + isneg = (MYBOOL) (*upbound >= *lobound - epsvalue); +#endif + if(!isneg) + report(lp, NORMAL, "presolve_singletonbounds: Singleton variable %s in row %s infeasibility (%g << %g)\n", + get_col_name(lp, colnr), get_row_name(lp, rownr), *lobound, *upbound); + } + return( isneg ); +} + +STATIC MYBOOL presolve_altsingletonvalid(presolverec *psdata, int rownr, int colnr, LPSREAL reflotest, LPSREAL refuptest) +{ + lprec *lp = psdata->lp; + LPSREAL coeff_bl, coeff_bu, epsvalue = psdata->epsvalue; + + coeff_bl = get_rh_lower(lp, rownr); + coeff_bu = get_rh_upper(lp, rownr); + + /* Check base data validity */ +#ifdef DoPresolveRelativeTest + if((my_reldiff(refuptest, reflotest) < -epsvalue) || +#else + if((reflotest > refuptest + epsvalue) || +#endif + !presolve_singletonbounds(psdata, rownr, colnr, &coeff_bl, &coeff_bu, NULL)) + return( FALSE ); + + /* Base data is Ok, now check against against each other */ + epsvalue = MAX(reflotest-coeff_bu, coeff_bl-refuptest) / epsvalue; + if(epsvalue > PRESOLVE_BOUNDSLACK) { + report(lp, NORMAL, "presolve_altsingletonvalid: Singleton variable %s in row %s infeasible (%g)\n", + get_col_name(lp, colnr), get_row_name(lp, rownr), MAX(reflotest-coeff_bu, coeff_bl-refuptest)); + return( FALSE ); + } + else + return( TRUE ); +} + +STATIC MYBOOL presolve_multibounds(presolverec *psdata, int rownr, int colnr, + LPSREAL *lobound, LPSREAL *upbound, LPSREAL *aval, MYBOOL *rowbinds) +{ + lprec *lp = psdata->lp; + MYBOOL rowbindsvar = FALSE, status = FALSE; + LPSREAL coeff_a, LHS, RHS, netX, Xupper, Xlower, epsvalue = psdata->epsvalue; + + /* Get variable bounds for netting */ + LHS = *lobound; + RHS = *upbound; + Xlower = get_lowbo(lp, colnr); + Xupper = get_upbo(lp, colnr); + + /* Identify opportunity for bound tightening */ + if(aval == NULL) + coeff_a = get_mat(lp, rownr, colnr); + else + coeff_a = *aval; + + netX = presolve_sumplumin(lp, rownr, psdata->rows, TRUE); + if(!my_infinite(lp, LHS) && !my_infinite(lp, netX)) { + if(coeff_a > 0) { + LHS -= netX-coeff_a*Xupper; + LHS /= coeff_a; + if(LHS > Xlower + epsvalue) { + Xlower = presolve_roundrhs(lp, LHS, TRUE); + status = TRUE; + } + else if(LHS > Xlower - epsvalue) + rowbindsvar = TRUE; + } + else { + LHS -= netX-coeff_a*Xlower; + LHS /= coeff_a; + if(LHS < Xupper - epsvalue) { + Xupper = presolve_roundrhs(lp, LHS, FALSE); + status = AUTOMATIC; + } + else if(LHS < Xupper + epsvalue) + rowbindsvar = AUTOMATIC; + } + } + + netX = presolve_sumplumin(lp, rownr, psdata->rows, FALSE); + if(!my_infinite(lp, RHS) && !my_infinite(lp, netX)) { + if(coeff_a < 0) { + if(!my_infinite(lp, Xupper)) { + RHS -= netX-coeff_a*Xupper; + RHS /= coeff_a; + if(RHS > Xlower + epsvalue) { + Xlower = presolve_roundrhs(lp, RHS, TRUE); + status |= TRUE; + } + else if(RHS > Xlower - epsvalue) + rowbindsvar |= TRUE; + } + } + else if(!my_infinite(lp, Xlower)) { + RHS -= netX-coeff_a*Xlower; + RHS /= coeff_a; + if(RHS < Xupper - epsvalue) { + Xupper = presolve_roundrhs(lp, RHS, FALSE); + status |= AUTOMATIC; + } + else if(RHS < Xupper + epsvalue) + rowbindsvar |= AUTOMATIC; + } + } + + *lobound = Xlower; + *upbound = Xupper; + if(rowbinds != NULL) + *rowbinds = rowbindsvar; + + return(status); +} + +STATIC MYBOOL isnz_origobj(lprec *lp, int colnr) +{ + return( (MYBOOL) (lp->orig_obj[colnr] != 0) ); +} + +STATIC MYBOOL presolve_testrow(presolverec *psdata, int lastrow) +{ + if(psdata->forceupdate) { + presolve_updatesums(psdata); + psdata->forceupdate = FALSE; + } + if(!presolve_rowfeasible(psdata, 0, TRUE)) + return( FALSE ); + else + return( TRUE ); +} + +STATIC MYBOOL presolve_coltighten(presolverec *psdata, int colnr, LPSREAL LOnew, LPSREAL UPnew, int *count) +{ + lprec *lp = psdata->lp; + int elmnr, elmend, k, oldcount = 0, newcount = 0, deltainf; + LPSREAL LOold, UPold, Value, margin = psdata->epsvalue; + MATrec *mat = lp->matA; + LPSREAL *value; + int *rownr; + + /* Attempt correction of marginally equal, but inconsistent input values */ + Value = UPnew - LOnew; + if((Value <= -margin) && (Value > -lp->epsprimal)) { + if(fabs(fmod(UPnew, 1.0)) < margin) + LOnew = UPnew; + else + UPnew = LOnew; + } + + /* Check if there is anything to do */ + LOold = get_lowbo(lp, colnr); + UPold = get_upbo(lp, colnr); +#ifdef Paranoia + if(((LOold > LOnew) && !is_semicont(lp, colnr)) || (UPold < UPnew)) { + report(lp, SEVERE, "presolve_coltighten: Inconsistent new bounds requested for column %d\n", colnr); + return( FALSE ); + } +#endif + if(count != NULL) + newcount = *count; + oldcount = newcount; + + /* Modify inf-count */ + deltainf = 0; + if((UPold < lp->infinite) || (LOold > -lp->infinite)) + deltainf -= 1; + if((UPnew < lp->infinite) || (LOnew > -lp->infinite)) + deltainf += 1; + if(isnz_origobj(lp, colnr)) + psdata->rows->infcount[0] += deltainf; + elmnr = mat->col_end[colnr-1]; + elmend = mat->col_end[colnr]; + rownr = &COL_MAT_ROWNR(elmnr); + for(; elmnr < elmend; elmnr++, rownr += matRowColStep) { + k = *rownr; + if(isActiveLink(psdata->rows->varmap, k)) + psdata->rows->infcount[k] += deltainf; + } + + /* Look for opportunity to tighten upper variable bound */ + if((UPnew < lp->infinite) && (UPnew+margin < UPold)) { + if(is_int(lp, colnr)) + UPnew = floor(UPnew+margin); + if(UPold < lp->infinite) { + /* First do OF */ + k = 0; + Value = my_chsign(is_chsign(lp, k), lp->orig_obj[colnr]); + if((Value > 0) && (psdata->rows->pluupper[k] < lp->infinite)) + psdata->rows->pluupper[k] += (UPnew-UPold)*Value; + else if((Value < 0) && (psdata->rows->negupper[k] < lp->infinite)) + psdata->rows->negupper[k] += (LOnew-LOold)*Value; + psdata->rows->infcount[k] += deltainf; + + /* Then scan the constraint rows */ + elmnr = mat->col_end[colnr-1]; + elmend = mat->col_end[colnr]; + rownr = &COL_MAT_ROWNR(elmnr); + value = &COL_MAT_VALUE(elmnr); + for(; elmnr < elmend; + elmnr++, rownr += matRowColStep, value += matValueStep) { + k = *rownr; + if(!isActiveLink(psdata->rows->varmap, k)) + continue; + Value = my_chsign(is_chsign(lp, k), *value); + if((Value > 0) && (psdata->rows->pluupper[k] < lp->infinite)) + psdata->rows->pluupper[k] += (UPnew-UPold)*Value; + else if((Value < 0) && (psdata->rows->negupper[k] < lp->infinite)) + psdata->rows->negupper[k] += (LOnew-LOold)*Value; + } + } + else + psdata->forceupdate = TRUE; + if(UPnew < UPold) { + UPold = UPnew; + newcount++; + } + } + + /* Look for opportunity to tighten lower variable bound */ + if((LOnew > -lp->infinite) && (LOnew-margin > LOold)) { + if(is_int(lp, colnr)) + LOnew = ceil(LOnew-margin); + if(LOold > -lp->infinite) { + /* First do OF */ + k = 0; + Value = my_chsign(is_chsign(lp, k), lp->orig_obj[colnr]); + if((Value > 0) && (psdata->rows->plulower[k] > -lp->infinite)) + psdata->rows->plulower[k] += (LOnew-LOold)*Value; + else if((Value < 0) && (psdata->rows->neglower[k] > -lp->infinite)) + psdata->rows->neglower[k] += (UPnew-UPold)*Value; + + /* Then scan the constraint rows */ + elmnr = mat->col_end[colnr-1]; + elmend = mat->col_end[colnr]; + rownr = &COL_MAT_ROWNR(elmnr); + value = &COL_MAT_VALUE(elmnr); + for(; elmnr < elmend; + elmnr++, rownr += matRowColStep, value += matValueStep) { + k = *rownr; + if(!isActiveLink(psdata->rows->varmap, k)) + continue; + Value = my_chsign(is_chsign(lp, k), *value); + if((Value > 0) && (psdata->rows->plulower[k] > -lp->infinite)) + psdata->rows->plulower[k] += (LOnew-LOold)*Value; + else if((Value < 0) && (psdata->rows->neglower[k] > -lp->infinite)) + psdata->rows->neglower[k] += (UPnew-UPold)*Value; + } + } + else + psdata->forceupdate = TRUE; + if(LOnew > LOold) { + LOold = LOnew; + newcount++; + } + } + + /* Now set the new variable bounds, if they are tighter */ + if(newcount > oldcount) { + UPnew = presolve_roundval(lp, UPnew); + LOnew = presolve_roundval(lp, LOnew); + if(LOnew > UPnew) { + if(LOnew-UPnew < margin) { + LOnew = UPnew; + } + else { + report(lp, NORMAL, "presolve_coltighten: Found column %s with LB %g > UB %g\n", + get_col_name(lp, colnr), LOnew, UPnew); + return( FALSE ); + } + } + if(lp->spx_trace || (lp->verbose > DETAILED)) + report(lp, NORMAL, "presolve_coltighten: Replaced bounds on column %s to [%g ... %g]\n", + get_col_name(lp, colnr), LOnew, UPnew); + set_bounds(lp, colnr, LOnew, UPnew); + } + if(count != NULL) + *count = newcount; + + return( TRUE ); +} + +STATIC int presolve_rowtighten(presolverec *psdata, int rownr, int *tally, MYBOOL intsonly) +{ + lprec *lp = psdata->lp; + MYBOOL rowbinds; + int item = 0, jx, jjx, ix, idxn = 0, *idxbound = NULL, status = RUNNING; + LPSREAL *newbound = NULL, RHlo = get_rh_lower(lp, rownr), RHup = get_rh_upper(lp, rownr), + VARlo, VARup, Aval; + MATrec *mat = lp->matA; + + jx = presolve_rowlength(psdata, rownr); + allocREAL(lp, &newbound, 2*jx, TRUE); + allocINT (lp, &idxbound, 2*jx, TRUE); + + /* Identify bound tightening for each active variable in the constraint */ + for(jx = presolve_nextcol(psdata, rownr, &item); jx >= 0; + jx = presolve_nextcol(psdata, rownr, &item)) { + jjx = ROW_MAT_COLNR(jx); + Aval = ROW_MAT_VALUE(jx); + Aval = my_chsign(rownr, Aval); + + VARlo = RHlo; + VARup = RHup; + presolve_multibounds(psdata, rownr,jjx, &VARlo, &VARup, &Aval, &rowbinds); + if(rowbinds & TRUE) { + idxbound[idxn] = -jjx; + newbound[idxn] = VARlo; + idxn++; + } + if(rowbinds & AUTOMATIC) { + idxbound[idxn] = jjx; + newbound[idxn] = VARup; + idxn++; + } + } + + /* Loop over the bounds identified for tightening and perform update */ + ix = 0; + while(ix < idxn) { + jjx = idxbound[ix]; + jx = abs(jjx); + + /* Skip free variables and non-ints, if specified */ + if(is_unbounded(lp, jx) || + (intsonly && !is_int(lp, jx))) + continue; + + VARlo = get_lowbo(lp, jx); + VARup = get_upbo(lp, jx); + /* while((ix < idxn) && (jx == abs(jjx))) { */ + while((ix < idxn) && (jx == abs((jjx = idxbound[ix])))) { + if(jjx < 0) + VARlo = newbound[ix]; + else + VARup = newbound[ix]; + ix++; + } + if(!presolve_coltighten(psdata, jx, VARlo, VARup, tally)) { + status = presolve_setstatus(psdata, INFEASIBLE); + break; + } + } + + FREE(newbound); + FREE(idxbound); + + return(status); +} + +STATIC void set_dv_bounds(presolverec *psdata, int rownr, LPSREAL lowbo, LPSREAL upbo) +{ + psdata->dv_lobo[rownr] = lowbo; + psdata->dv_upbo[rownr] = upbo; +} +STATIC LPSREAL get_dv_lower(presolverec *psdata, int rownr) +{ + return( psdata->dv_lobo[rownr] ); +} + +STATIC LPSREAL get_dv_upper(presolverec *psdata, int rownr) +{ + return( psdata->dv_upbo[rownr] ); +} + +STATIC MYBOOL presolve_rowfix(presolverec *psdata, int rownr, LPSREAL newvalue, MYBOOL remove, int *tally) +{ + lprec *lp = psdata->lp; + int i, ix, ie; + MYBOOL isneg, lofinite, upfinite, doupdate = FALSE, chsign = is_chsign(lp, rownr); + LPSREAL lobound, upbound, lovalue, upvalue, + Value, fixvalue, fixprod, mult; + MATrec *mat = lp->matA; + psrec *ps = psdata->cols; + + /* Set "fixed" value in case we are deleting a variable */ + upbound = get_dv_upper(psdata, rownr); + lobound = get_dv_lower(psdata, rownr); + if(remove) { + if(upbound-lobound < psdata->epsvalue) { + if((newvalue > lobound) && (newvalue < upbound)) + fixvalue = newvalue; + else + fixvalue = lobound; + } + else { + if(my_infinite(lp, newvalue) && (get_rh(lp, rownr) == 0)) + fixvalue = ((lobound <= 0) && (upbound >= 0) ? 0 : MIN(upbound, lobound)); + else + fixvalue = newvalue; + } + set_dv_bounds(psdata, rownr, fixvalue, fixvalue); + if(fixvalue != 0) + addUndoPresolve(lp, FALSE, rownr, fixvalue, 0, 0); + mult = -1; + } + else { + mult = 1; + fixvalue = 0; + } + + /* Loop over rows to update statistics */ + ix = mat->row_end[rownr - 1]; + ie = mat->row_end[rownr]; + for(; ix < ie; ix++) { + + /* Retrieve row data and adjust RHS if we are deleting a variable */ + i = ROW_MAT_COLNR(ix); + Value = ROW_MAT_VALUE(ix); + if(Value == 0) + continue; + + if(remove && (fixvalue != 0)) { + fixprod = Value*fixvalue; + lp->orig_obj[i] -= fixprod; + my_roundzero(lp->orig_obj[i], psdata->epsvalue); + lp->presolve_undo->fixed_obj[i] += fixprod; + } + + /* Prepare for further processing */ + Value = my_chsign(chsign, Value); + isneg = (MYBOOL) (Value < 0); + + /* Reduce row variable counts if we are removing the variable */ + if(!isActiveLink(ps->varmap, i)) + continue; + if(remove) { + if(isneg) { + ps->negcount[i]--; + } + else { + ps->plucount[i]--; + } + if((lobound < 0) && (upbound >= 0)) { + ps->pluneg[i]--; + } + } + + /* Compute associated constraint contribution values */ + upfinite = (MYBOOL) (upbound < lp->infinite); + lofinite = (MYBOOL) (lobound > -lp->infinite); + if(upfinite || lofinite) { + if(remove) + ps->infcount[i]--; + else + ps->infcount[i]++; + } + upvalue = my_if(upfinite, Value*upbound, my_chsign(isneg, lp->infinite)); + lovalue = my_if(lofinite, Value*lobound, my_chsign(isneg, -lp->infinite)); + + /* Cumulate effective upper column bound (only bother with non-finite bound) */ + if(isneg) { + if((ps->negupper[i] < lp->infinite) && lofinite) { + ps->negupper[i] += mult*lovalue; + ps->negupper[i] = presolve_roundrhs(lp, ps->negupper[i], FALSE); + } + else if(remove && !lofinite) + doupdate = TRUE; + else + ps->negupper[i] = lp->infinite; + } + else { + if((ps->pluupper[i] < lp->infinite) && upfinite) { + ps->pluupper[i] += mult*upvalue; + ps->pluupper[i] = presolve_roundrhs(lp, ps->pluupper[i], FALSE); + } + else if(remove && !upfinite) + doupdate = TRUE; + else + ps->pluupper[i] = lp->infinite; + } + + /* Cumulate effective lower column bound (only bother with non-finite bound) */ + if(isneg) { + if((ps->neglower[i] > -lp->infinite) && upfinite) { + ps->neglower[i] += mult*upvalue; + ps->neglower[i] = presolve_roundrhs(lp, ps->neglower[i], TRUE); + } + else if(remove && !upfinite) + doupdate = TRUE; + else + ps->neglower[i] = -lp->infinite; + } + else { + if((ps->plulower[i] > -lp->infinite) && lofinite) { + ps->plulower[i] += mult*lovalue; + ps->plulower[i] = presolve_roundrhs(lp, ps->plulower[i], TRUE); + } + else if(remove && !lofinite) + doupdate = TRUE; + else + ps->plulower[i] = -lp->infinite; + } + + /* Validate consistency of eliminated singleton */ + if(remove && ((i == 0) || (ps->next[i][0] == 1)) && !psdata->forceupdate) { + presolve_range(lp, i, ps, &lovalue, &upvalue); + Value = get_mat(lp, 0, i); + if((upvalue < Value) || + (lovalue > Value)) { + report(lp, IMPORTANT, "presolve: Row %s (%g << %g) infeasibility in column %s (OF=%g)\n", + get_row_name(lp, rownr), lovalue, upvalue, get_col_name(lp, i), Value); + return( FALSE ); + } + } + } + if(remove) { + psdata->forceupdate |= doupdate; + if(tally != NULL) + (*tally)++; + } + return( TRUE ); +} + + +STATIC int presolve_colsingleton(presolverec *psdata, int i, int j, int *count) +{ + lprec *lp = psdata->lp; + LPSREAL RHlow, RHup, LObound, UPbound, Value; + +#ifdef Paranoia + if(!isActiveLink(psdata->cols->varmap, j)) + report(lp, SEVERE, "presolve_colsingleton: Nothing to do, column %d was eliminated earlier\n", + j); +#endif + + Value = get_mat(lp,i,j); + if(Value == 0) + return( RUNNING ); + + /* Initialize and identify semicontinuous variable */ + LObound = get_lowbo(lp, j); + UPbound = get_upbo(lp, j); + if(is_semicont(lp, j) && (UPbound > LObound)) { + if(LObound > 0) + LObound = 0; + else if(UPbound < 0) + UPbound = 0; + } + + /* Get singleton variable bounds */ + RHlow = get_rh_lower(lp, i); + RHup = get_rh_upper(lp, i); + if(!presolve_singletonbounds(psdata, i,j, &RHlow, &RHup, &Value)) + return( presolve_setstatus(psdata, INFEASIBLE) ); + + if(presolve_coltighten(psdata, j, RHlow, RHup, count)) + return( RUNNING ); + else + return( presolve_setstatus(psdata, INFEASIBLE) ); +} + +STATIC MYBOOL presolve_colfix(presolverec *psdata, int colnr, LPSREAL newvalue, MYBOOL remove, int *tally) +{ + lprec *lp = psdata->lp; + int i, ix, ie; + MYBOOL isneg, lofinite, upfinite, doupdate = FALSE, doOF = TRUE; + LPSREAL lobound, upbound, lovalue, upvalue, + Value, fixvalue, mult; + MATrec *mat = lp->matA; + psrec *ps = psdata->rows; + LPSREAL *value; + int *rownr; + + /* Set "fixed" value in case we are deleting a variable */ + upbound = get_upbo(lp, colnr); + lobound = get_lowbo(lp, colnr); + if(remove) { + if(upbound-lobound < psdata->epsvalue) { + if((newvalue > lobound) && (newvalue < upbound)) + fixvalue = newvalue; + else + fixvalue = lobound; + } + else { + if(my_infinite(lp, newvalue) && (get_mat(lp, 0, colnr) == 0)) + fixvalue = ((lobound <= 0) && (upbound >= 0) ? 0 : MIN(upbound, lobound)); + else + fixvalue = newvalue; + } +#if 1 /* Fast normal version */ + set_bounds(lp, colnr, fixvalue, fixvalue); +#else /* Slower version that can be used for debugging/control purposes */ + presolve_coltighten(psdata, colnr, fixvalue, fixvalue, NULL); + lobound = fixvalue; + upbound = fixvalue; +#endif + if(fixvalue != 0) + addUndoPresolve(lp, TRUE, colnr, fixvalue, 0, 0); + mult = -1; + } + else { + mult = 1; + fixvalue = 0; + } + + /* Adjust semi-continuous variable bounds to zero-base */ + if(is_semicont(lp, colnr) && (upbound > lobound)) { + if(lobound > 0) + lobound = 0; + else if(upbound < 0) + upbound = 0; + } + + /* Loop over rows to update statistics */ + ix = mat->col_end[colnr - 1]; + ie = mat->col_end[colnr]; + rownr = &COL_MAT_ROWNR(ix); + value = &COL_MAT_VALUE(ix); + for(; doOF || (ix < ie); + ix++, rownr += matRowColStep, value += matValueStep) { + + /* Retrieve row data and adjust RHS if we are deleting a variable */ +Restart: + if(doOF) { + i = 0; + Value = lp->orig_obj[colnr]; + } + else { + i = *rownr; + Value = *value; + if(!isActiveLink(ps->varmap, i)) + continue; + } + if(Value == 0) + goto BlockEnd; + + if(remove && (fixvalue != 0)) + presolve_adjustrhs(psdata, i, Value*fixvalue, psdata->epsvalue); + + /* Prepare for further processing */ + Value = my_chsign(is_chsign(lp, i), Value); + isneg = (MYBOOL) (Value < 0); + + /* Reduce row variable counts if we are removing the variable */ + if(remove == TRUE) { + if(isneg) { + ps->negcount[i]--; + } + else { + ps->plucount[i]--; + } + if((lobound < 0) && (upbound >= 0)) { + ps->pluneg[i]--; + } + } + + /* Compute associated constraint contribution values */ + upfinite = (MYBOOL) (upbound < lp->infinite); + lofinite = (MYBOOL) (lobound > -lp->infinite); + if(upfinite || lofinite) { + if(remove) + ps->infcount[i]--; + else + ps->infcount[i]++; + } + upvalue = my_if(upfinite, Value*upbound, my_chsign(isneg, lp->infinite)); + lovalue = my_if(lofinite, Value*lobound, my_chsign(isneg, -lp->infinite)); + + /* Cumulate effective upper row bound (only bother with non-finite bound) */ + if(isneg) { + if((ps->negupper[i] < lp->infinite) && lofinite) { + ps->negupper[i] += mult*lovalue; + ps->negupper[i] = presolve_roundrhs(lp, ps->negupper[i], FALSE); + } + else if(remove && !lofinite) + doupdate = TRUE; + else + ps->negupper[i] = lp->infinite; + } + else { + if((ps->pluupper[i] < lp->infinite) && upfinite) { + ps->pluupper[i] += mult*upvalue; + ps->pluupper[i] = presolve_roundrhs(lp, ps->pluupper[i], FALSE); + } + else if(remove && !upfinite) + doupdate = TRUE; + else + ps->pluupper[i] = lp->infinite; + } + + /* Cumulate effective lower row bound (only bother with non-finite bound) */ + if(isneg) { + if((ps->neglower[i] > -lp->infinite) && upfinite) { + ps->neglower[i] += mult*upvalue; + ps->neglower[i] = presolve_roundrhs(lp, ps->neglower[i], TRUE); + } + else if(remove && !upfinite) + doupdate = TRUE; + else + ps->neglower[i] = -lp->infinite; + } + else { + if((ps->plulower[i] > -lp->infinite) && lofinite) { + ps->plulower[i] += mult*lovalue; + ps->plulower[i] = presolve_roundrhs(lp, ps->plulower[i], TRUE); + } + else if(remove && !lofinite) + doupdate = TRUE; + else + ps->plulower[i] = -lp->infinite; + } + + /* Validate consistency of eliminated singleton */ + if(remove && ((i == 0) || (ps->next[i][0] == 1)) && !psdata->forceupdate) { + if(i == 0) { + lovalue = get_rh_lower(lp, i); + upvalue = get_rh_upper(lp, i); + report(lp, DETAILED, "presolve_colfix: Objective determined by presolve as %18g\n", + (is_maxim(lp) ? upvalue : lovalue)); + } + else { + presolve_range(lp, i, ps, &lovalue, &upvalue); +#if 1 + Value = 0; +#else + Value = MAX(fabs(upvalue), fabs(lovalue)); + Value = psdata->epsvalue * MAX(1, Value); +#endif + if((upvalue < get_rh_lower(lp, i)-Value) || + (lovalue > get_rh_upper(lp, i)+Value)) { + report(lp, NORMAL, "presolve_colfix: Variable %s (%g << %g) infeasibility in row %s (%g << %g)\n", + get_col_name(lp, colnr), lovalue, upvalue, + get_row_name(lp, i), get_rh_lower(lp,i), get_rh_upper(lp, i)); + return( FALSE ); + } + } + } +BlockEnd: + if(doOF) { + doOF = FALSE; + if(ix < ie) + goto Restart; + } + + } + if(remove) { + psdata->forceupdate |= doupdate; + if(tally != NULL) + (*tally)++; + } + return( TRUE ); +} + +/* Delete the columns of the specified row, but make sure we don't delete SOS variables. + Note that we cannot use presolve_nextcol() here, since the variables are deleted. */ +STATIC int presolve_rowfixzero(presolverec *psdata, int rownr, int *nv) +{ + lprec *lp = psdata->lp; + MATrec *mat = lp->matA; + int ix, jx, ib = mat->row_end[rownr-1]; + for(ix = mat->row_end[rownr]-1; ix >= ib; ix--) { + jx = ROW_MAT_COLNR(ix); + if(isActiveLink(psdata->cols->varmap, jx)) { + if(!presolve_colfix(psdata, jx, 0.0, TRUE, nv)) + return( presolve_setstatus(psdata, INFEASIBLE) ); + if(presolve_candeletevar(psdata, jx)) + presolve_colremove(psdata, jx, TRUE); + } + } +#ifdef xxParanoia + if(!presolve_debugrowtallies(psdata)) + return( INFEASIBLE ); +#endif + return( RUNNING ); +} + +/* Function to find if a variable can be fixed based on considering the dual */ +STATIC MYBOOL presolve_colfixdual(presolverec *psdata, int colnr, LPSREAL *fixValue, int *status) +{ + lprec *lp = psdata->lp; + MYBOOL hasOF, isMI, isDualFREE = TRUE; + int i, ix, ie, *rownr, signOF; + LPSREAL *value, loX, upX, eps = psdata->epsvalue; + MATrec *mat = lp->matA; + + /* First check basic variable range */ + loX = get_lowbo(lp, colnr); + upX = get_upbo(lp, colnr); + if(((loX < 0) && (upX > 0)) || + (fabs(upX-loX) < lp->epsvalue) || + SOS_is_member_of_type(lp->SOS, colnr, SOSn)) + return( FALSE ); + isMI = (MYBOOL) (upX <= 0); + + /* Retrieve OF (standard form assuming maximization) */ + ix = mat->col_end[colnr - 1]; + ie = mat->col_end[colnr]; + rownr = &COL_MAT_ROWNR(ix); + value = &COL_MAT_VALUE(ix); + hasOF = isnz_origobj(lp, colnr); + if(hasOF) + signOF = my_sign(lp->orig_obj[colnr]); + else + signOF = 0; + + /* Loop over all constraints involving active variable (standard form with LE constraints)*/ + for(; (ix < ie) && isDualFREE; + ix++, rownr += matRowColStep, value += matValueStep) { + i = *rownr; + if(!isActiveLink(psdata->rows->varmap, i)) + continue; + if(presolve_rowlength(psdata, i) == 1) { + LPSREAL val = my_chsign(is_chsign(lp, i), *value), + loR = get_rh_lower(lp, i), + upR = get_rh_upper(lp, i); + if(!presolve_singletonbounds(psdata, i, colnr, &loR, &upR, &val)) { + *status = presolve_setstatus(psdata, INFEASIBLE); + return( FALSE ); + } + if(loR > loX + psdata->epsvalue) + loX = presolve_roundrhs(lp, loR, TRUE); + if(upR < upX - psdata->epsvalue) + upX = presolve_roundrhs(lp, upR, FALSE); + continue; + } + else + isDualFREE = my_infinite(lp, get_rh_range(lp, i)) || /* Explicitly free */ + ((presolve_sumplumin(lp, i, psdata->rows, TRUE)-eps <= get_rh_upper(lp, i)) && /* Implicitly free */ + (presolve_sumplumin(lp, i, psdata->rows, FALSE)+eps >= get_rh_lower(lp, i))); + if(isDualFREE) { + if(signOF == 0) /* Test on the basis of identical signs in the constraints */ + signOF = my_sign(*value); + else /* Test on the basis of constraint sign equal to OF sign */ + isDualFREE = (MYBOOL) (signOF == my_sign(*value)); + } + } + + /* Set fixing value if we were successful */ + if(isDualFREE) { + if(signOF == 0) { + SETMAX(loX, 0); + *fixValue = MIN(loX, upX); + } + else if(signOF > 0) { + if(my_infinite(lp, loX)) + isDualFREE = FALSE; + else { + if(is_int(lp, colnr)) + *fixValue = ceil(loX-PRESOLVE_EPSVALUE); + else + *fixValue = loX; + } + } + else { + if(my_infinite(lp, upX)) + isDualFREE = FALSE; + else { + if(is_int(lp, colnr) && (upX != 0)) + *fixValue = floor(upX+PRESOLVE_EPSVALUE); + else + *fixValue = upX; + } + } + if((*fixValue != 0) && SOS_is_member(lp->SOS, 0, colnr)) + return( FALSE ); + + } + + return( isDualFREE ); +} + +#if 0 +STATIC MYBOOL presolve_probefix01(presolverec *psdata, int colnr, LPSREAL *fixvalue) +{ + lprec *lp = psdata->lp; + int i, ix, item; + LPSREAL loLim, absvalue, epsvalue = psdata->epsvalue; + MATrec *mat = lp->matA; + MYBOOL chsign, canfix = FALSE; + + if(!is_binary(lp, colnr)) + return( canfix ); + + /* Loop over all active rows to search for fixing opportunity */ + item = 0; + for(ix = presolve_nextrow(psdata, colnr, &item); + (ix >= 0) && !canfix; + ix = presolve_nextrow(psdata, colnr, &item)) { + i = COL_MAT_ROWNR(ix); + *fixvalue = COL_MAT_VALUE(ix); + chsign = is_chsign(lp, i); + + /* First check the lower bound of the normalized constraint */ + loLim = presolve_sumplumin(lp, i, psdata->rows, chsign); + loLim = my_chsign(chsign, loLim); + absvalue = fabs(*fixvalue); + canfix = (MYBOOL) ((loLim + absvalue > lp->orig_rhs[i]+epsvalue*MAX(1, absvalue))); + + /* If we were unsuccessful in fixing above, try the upper bound + of the normalized constraint - if it is finite */ + if(!canfix && !my_infinite(lp, get_rh_range(lp, i))) { + loLim = presolve_sumplumin(lp, i, psdata->rows, (MYBOOL) !chsign); + loLim = my_chsign(!chsign, loLim); + *fixvalue = -(*fixvalue); + canfix = (MYBOOL) ((loLim + absvalue > get_rh_range(lp, i)-lp->orig_rhs[i]+epsvalue*MAX(1, absvalue))); + } + } + + /* Check if we were successful in identifying fixing opportunity */ + if(canfix) { + if(*fixvalue < 0) + *fixvalue = 1; + else + *fixvalue = 0; + } + return( canfix ); +} +#else +STATIC MYBOOL presolve_probefix01(presolverec *psdata, int colnr, LPSREAL *fixvalue) +{ + lprec *lp = psdata->lp; + int i, ix, item; + LPSREAL loLim, upLim, range, absvalue, epsvalue = psdata->epsvalue, tolgap; + MATrec *mat = lp->matA; + MYBOOL chsign, status = FALSE; + + if(!is_binary(lp, colnr)) + return( status ); + + /* Loop over all active rows to search for fixing opportunity. The logic is that if a + constraint gets violated by setting a variable at one of its bounds, then it can be + fixed at its opposite bound. */ + item = 0; + + for(ix = presolve_nextrow(psdata, colnr, &item); (ix >= 0); ix = presolve_nextrow(psdata, colnr, &item)) { + i = COL_MAT_ROWNR(ix); + *fixvalue = COL_MAT_VALUE(ix); + absvalue = fabs(*fixvalue); + SETMIN(absvalue, 100); + tolgap = epsvalue*MAX(1, absvalue); + chsign = is_chsign(lp, i); + + /* Get the constraint value limits based on variable bounds, normalized to LE constraint */ + loLim = presolve_sumplumin(lp, i, psdata->rows, FALSE); + upLim = presolve_sumplumin(lp, i, psdata->rows, TRUE); + if(chsign) { + loLim = my_chsign(chsign, loLim); + upLim = my_chsign(chsign, upLim); + swapREAL(&loLim, &upLim); + } + + /* Check the upper constraint bound for possible violation if the value were to be fixed at 1 */ + if(loLim + *fixvalue > lp->orig_rhs[i]+tolgap) { + if(*fixvalue < 0) + presolve_setstatus(psdata, INFEASIBLE); + *fixvalue = 0; + break; + } + + /* Check the lower constraint bound for possible violation if the value were to be fixed at 1 */ + range = get_rh_range(lp, i); + if(!my_infinite(lp, range) && + (upLim + *fixvalue < lp->orig_rhs[i]-range-tolgap)) { + if(*fixvalue > 0) + presolve_setstatus(psdata, INFEASIBLE); + *fixvalue = 0; + break; + } + + /* Check if we have to fix the value at 1 to avoid constraint infeasibility */ + if(psdata->rows->infcount[i] >= 1) + continue; + if(((*fixvalue < 0) && (upLim + *fixvalue >= loLim-tolgap) && (upLim > lp->orig_rhs[i]+tolgap)) || + ((*fixvalue > 0) && (loLim + *fixvalue <= upLim+tolgap) && (loLim < lp->orig_rhs[i]-range-tolgap) && !my_infinite(lp, range))) { + *fixvalue = 1; + break; + } + } + status = (MYBOOL) (ix >= 0); + + /* Returns TRUE if fixing opportunity was identified */ + return( status ); +} +#endif + +STATIC int presolve_probetighten01(presolverec *psdata, int colnr) +{ + lprec *lp = psdata->lp; + MYBOOL chsign; + int i, ix, item, n = 0; + LPSREAL upLim, value, absvalue, epsvalue = psdata->epsvalue; + MATrec *mat = lp->matA; + +#if 0 /* Handled in calling routine */ + if(!is_binary(lp, colnr)) + return( n ); +#endif + + /* Loop over all active rows and do coefficient tightening for qualifying constraints */ + item = 0; + for(ix = presolve_nextrow(psdata, colnr, &item); ix >= 0; + ix = presolve_nextrow(psdata, colnr, &item)) { + i = COL_MAT_ROWNR(ix); + value = COL_MAT_VALUE(ix); + chsign = is_chsign(lp, i); + upLim = presolve_sumplumin(lp, i, psdata->rows, (MYBOOL) !chsign); + upLim = my_chsign(chsign, upLim); + + /* Does this constraint qualify for coefficient tightening? */ + absvalue = fabs(value); + if(upLim - absvalue < lp->orig_rhs[i]-epsvalue*MAX(1, absvalue)) { + LPSREAL delta = lp->orig_rhs[i] - upLim; + lp->orig_rhs[i] = upLim; + upLim = value - my_chsign(value < 0, delta); + COL_MAT_VALUE(ix) = upLim; + if(my_sign(value) != my_sign(upLim)) { + if(chsign) { + psdata->rows->negcount[i]--; + psdata->rows->plucount[i]++; + } + else { + psdata->rows->negcount[i]++; + psdata->rows->plucount[i]--; + } + } + n++; + } + } + return( n ); +} + +STATIC int presolve_mergerows(presolverec *psdata, int *nRows, int *nSum) +{ + lprec *lp = psdata->lp; + MYBOOL candelete; + int status = RUNNING, item1, item2, + firstix, RT1, RT2, i, ix, iix, j, jjx, n = 0; + LPSREAL Value1, Value2, bound; + MATrec *mat = lp->matA; + + for(i = lastActiveLink(psdata->rows->varmap); (i > 0) && (status == RUNNING); ) { + + /* First scan for rows with identical row lengths */ + ix = prevActiveLink(psdata->rows->varmap, i); + if(ix == 0) + break; + + /* Don't bother about empty rows or row singletons, since they are + handled by PRESOLVE_ROWS */ + j = presolve_rowlength(psdata, i); + if(j <= 1) { + i = ix; + continue; + } + +#if 0 + /* Enable this to scan all rows back */ + RT2 = lp->rows; + + /* Check abort since this section can be pretty "expensive" */ + if(!presolve_statuscheck(psdata, &status)) + return( status ); +#else + RT2 = 2+1; +#endif + firstix = ix; + for(RT1 = 0; (ix > 0) && (RT1 < RT2) && (status == RUNNING); + ix = prevActiveLink(psdata->rows->varmap, ix), RT1++) { + candelete = FALSE; + if(presolve_rowlength(psdata, ix) != j) + continue; + + /* Check if the beginning columns are identical; if not, continue */ + item1 = 0; + iix = presolve_nextcol(psdata, ix, &item1); + item2 = 0; + jjx = presolve_nextcol(psdata, i, &item2); + + if(ROW_MAT_COLNR(iix) != ROW_MAT_COLNR(jjx)) + continue; + + /* We have a candidate row; check if the entries have a fixed non-zero ratio */ + Value1 = get_mat_byindex(lp, iix, TRUE, FALSE); + Value2 = get_mat_byindex(lp, jjx, TRUE, FALSE); + bound = Value1 / Value2; + Value1 = bound; + + /* Loop over remaining entries */ + jjx = presolve_nextcol(psdata, i, &item2); + for(; (jjx >= 0) && (Value1 == bound); + jjx = presolve_nextcol(psdata, i, &item2)) { + iix = presolve_nextcol(psdata, ix, &item1); + if(ROW_MAT_COLNR(iix) != ROW_MAT_COLNR(jjx)) + break; + Value1 = get_mat_byindex(lp, iix, TRUE, FALSE); + Value2 = get_mat_byindex(lp, jjx, TRUE, FALSE); + + /* If the ratio is different from the reference value we have a mismatch */ + Value1 = Value1 / Value2; + if(bound == lp->infinite) + bound = Value1; + else if(fabs(Value1 - bound) > psdata->epsvalue) + break; + } + + /* Check if we found a match (we traversed all active columns without a break) */ + if(jjx < 0) { + + /* Get main reference values */ + Value1 = lp->orig_rhs[ix]; + Value2 = lp->orig_rhs[i] * bound; + + /* First check for inconsistent equalities */ + if((fabs(Value1 - Value2) > psdata->epsvalue) && + ((get_constr_type(lp, ix) == EQ) && (get_constr_type(lp, i) == EQ))) { + report(lp, NORMAL, "presolve_mergerows: Inconsistent equalities %d and %d found\n", + ix, i); + status = presolve_setstatus(psdata, INFEASIBLE); + } + + else { + + /* Update lower and upper bounds */ + if(is_chsign(lp, i) != is_chsign(lp, ix)) + bound = -bound; + + Value1 = get_rh_lower(lp, i); + if(Value1 <= -lp->infinite) + Value1 *= my_sign(bound); + else + Value1 *= bound; + my_roundzero(Value1, lp->epsdual); /* Extra rounding tolerance *** */ + + Value2 = get_rh_upper(lp, i); + if(Value2 >= lp->infinite) + Value2 *= my_sign(bound); + else + Value2 *= bound; + my_roundzero(Value2, lp->epsdual); /* Extra rounding tolerance *** */ + + if((bound < 0)) + swapREAL(&Value1, &Value2); + + bound = get_rh_lower(lp, ix); + if(Value1 > bound + psdata->epsvalue) + set_rh_lower(lp, ix, Value1); + else + Value1 = bound; + bound = get_rh_upper(lp, ix); + if(Value2 < bound - psdata->epsvalue) + set_rh_upper(lp, ix, Value2); + else + Value2 = bound; + + /* Check results and make equality if appropriate */ + if(fabs(Value2-Value1) < psdata->epsvalue) + presolve_setEQ(psdata, ix); + else if(Value2 < Value1) { + status = presolve_setstatus(psdata, INFEASIBLE); + } + + /* Verify if we can continue */ + candelete = (MYBOOL) (status == RUNNING); + if(!candelete) { + report(lp, NORMAL, "presolve: Range infeasibility found involving rows %s and %s\n", + get_row_name(lp, ix), get_row_name(lp, i)); + } + } + } + /* Perform i-row deletion if authorized */ + if(candelete) { + presolve_rowremove(psdata, i, TRUE); + n++; + break; + } + } + i = firstix; + } + (*nRows) += n; + (*nSum) += n; + + return( status ); +} + +STATIC MYBOOL presolve_reduceGCD(presolverec *psdata, int *nn, int *nb, int *nsum) +{ + lprec *lp = psdata->lp; + MYBOOL status = TRUE; + int i, jx, je, in = 0, ib = 0; + LLONG GCDvalue; + LPSREAL *Avalue, Rvalue, epsvalue = psdata->epsvalue; + MATrec *mat = lp->matA; + + for(i = firstActiveLink(psdata->INTmap); i != 0; i = nextActiveLink(psdata->INTmap, i)) { + + /* Obtain the row GCD */ + jx = mat->row_end[i - 1]; + je = mat->row_end[i]; + Rvalue = ROW_MAT_VALUE(jx); + GCDvalue = abs((int) Rvalue); + jx++; + if(jx < je) + for(; (jx < je) && (GCDvalue > 1); jx++) { + Rvalue = fabs(ROW_MAT_VALUE(jx)); + GCDvalue = gcd((LLONG) Rvalue, GCDvalue, NULL, NULL); + } + + /* Reduce the coefficients, if possible */ + if(GCDvalue > 1) { + jx = mat->row_end[i - 1]; + je = mat->row_end[i]; + for(; jx < je; jx++) { + Avalue = &ROW_MAT_VALUE(jx); + *Avalue /= GCDvalue; + in++; + } + Rvalue = (lp->orig_rhs[i] / GCDvalue) + epsvalue; + lp->orig_rhs[i] = floor(Rvalue); + Rvalue = fabs(lp->orig_rhs[i]-Rvalue); + if(is_constr_type(lp, i, EQ) && (Rvalue > epsvalue)) { + report(lp, NORMAL, "presolve_reduceGCD: Infeasible equality constraint %d\n", i); + status = FALSE; + break; + } + if(!my_infinite(lp, lp->orig_upbo[i])) + lp->orig_upbo[i] = floor(lp->orig_upbo[i] / GCDvalue); + ib++; + } + } + if(status && (in > 0)) + report(lp, DETAILED, "presolve_reduceGCD: Did %d constraint coefficient reductions.\n", in); + + (*nn) += in; + (*nb) += ib; + (*nsum) += in + ib; + + return( status ); +} + +STATIC int presolve_knapsack(presolverec *psdata, int *nn) +{ + lprec *lp = psdata->lp; + int m, n, i, ix, j, jx, colnr, *rownr = NULL, + status = RUNNING; + LPSREAL *colOF = lp->orig_obj, value, *ratio = NULL; + LLrec *map = psdata->EQmap; + MATrec *mat = lp->matA; + + /* Check if it is worth trying */ + m = mat->row_end[0]; + if((map->count == 0) || (m < 2)) + return( status ); + + /* Get the OF row */ + allocINT(lp, &rownr, map->count+1, FALSE); + allocREAL(lp, &ratio, map->count+1, FALSE); + + /* Loop over each row trying to find equal entries in the OF */ + rownr[0] = 0; + for(i = firstActiveLink(map); i != 0; i = nextActiveLink(map, i)) { + if(get_rh(lp, i) <= 0) + continue; + jx = mat->row_end[i]; + n = 0; + for(j = mat->row_end[i-1]; j < jx; j++, n++) { + colnr = ROW_MAT_COLNR(j); + value = ROW_MAT_VALUE(j); + if(colOF[colnr] == 0) + break; + if(n == 0) { + ratio[0] = colOF[colnr] / value; + } + else if(fabs(value * ratio[0] - colOF[colnr]) > psdata->epsvalue) { + n = -1; + break; + } + } + /* Register row if we were successful (and row long enough) */ + if(n >= 2) { + ix = ++rownr[0]; + rownr[ix] = i; + ratio[ix] = ratio[0]; + } + } + n = rownr[0]; + if(n == 0) + goto Finish; + + /* Process the identified rows, eliminating the OF value */ + for(ix = 1; ix <= n; ix++) { + i = rownr[ix]; + jx = mat->row_end[i]; + for(j = mat->row_end[i-1]; j < jx; j++) { + colnr = ROW_MAT_COLNR(j); + colOF[colnr] = 0; + } + } + + /* Update key mapper structures */ + j = lp->columns; + psdata->cols->varmap = cloneLink(psdata->cols->varmap, j+n, TRUE); + psdata->forceupdate = TRUE; + + /* Finally, add helper columns */ + for(ix = 1; ix <= n; ix++) { + i = rownr[ix]; + rownr[0] = 0; + colOF[0] = my_chsign(is_maxim(lp), ratio[ix]); + rownr[1] = i; + colOF[1] = -1; + value = get_rh(lp, i); +/* j = get_constr_type(lp, i); */ + add_columnex(lp, 2, colOF, rownr); + set_bounds(lp, lp->columns, value, value); +/* presolve_setEQ(psdata, i); */ + set_rh(lp, i, 0); + appendLink(psdata->cols->varmap, j+ix); + } + presolve_validate(psdata, TRUE); + + /* Clean up before returning */ +Finish: + FREE(rownr); + FREE(ratio); + (*nn) += n; + + return( status ); +} + +STATIC MYBOOL presolve_invalideq2(lprec *lp, presolverec *psdata) +{ + int jx, jjx, i = 0, item; + MATrec *mat = lp->matA; + MYBOOL error = FALSE; + + do { + + if(i == 0) + i = firstActiveLink(psdata->EQmap); + else + i = nextActiveLink(psdata->EQmap, i); + if(i == 0) + return( error ); + + /* Get the row index of the first 2-element equality */ + for(; i > 0; i = nextActiveLink(psdata->EQmap, i)) + if(presolve_rowlength(psdata, i) == 2) + break; + if(i == 0) + return( error ); + + /* Get the first column */ + item = 0; + jx = presolve_nextcol(psdata, i, &item); + if(jx < 0) + error = TRUE; + jx = ROW_MAT_COLNR(jx); + + /* Get the second column */ + jjx = presolve_nextcol(psdata, i, &item); + if(jjx < 0) + error = AUTOMATIC; + } while(!error); + + return( error ); +} + +/* Callback to obtain the non-zero rows of equality constraints */ +int BFP_CALLMODEL presolve_getcolumnEQ(lprec *lp, int colnr, LPSREAL nzvalues[], int nzrows[], int mapin[]) +{ + int i, ib, ie, nn = 0; + MATrec *mat = lp->matA; + + ib = mat->col_end[colnr-1]; + ie = mat->col_end[colnr]; + for(; ib < ie; ib++) { + i = COL_MAT_ROWNR(ib); + if(!is_constr_type(lp, i, EQ) || /* It has to be an equality constraint */ + (mapin[i] == 0)) /* And it should not already have been deleted */ + continue; + if(nzvalues != NULL) { + nzrows[nn] = mapin[i]; + nzvalues[nn] = COL_MAT_VALUE(ib); + } + nn++; + } + return( nn ); +} +STATIC int presolve_singularities(presolverec *psdata, int *nn, int *nr, int *nv, int *nSum) +{ + lprec *lp = psdata->lp; + int i, j, n, *rmapin = NULL, *rmapout = NULL, *cmapout = NULL; + + if(lp->bfp_findredundant(lp, 0, NULL, NULL, NULL) == 0) + return( 0 ); + + /* Create condensed row map */ + allocINT(lp, &rmapin, lp->rows+1, TRUE); + allocINT(lp, &rmapout, psdata->EQmap->count+1, FALSE); + allocINT(lp, &cmapout, lp->columns+1, FALSE); + n = 0; + for(i = firstActiveLink(psdata->EQmap); i != 0; i = nextActiveLink(psdata->EQmap, i)) { + n++; + rmapout[n] = i; + rmapin[i] = n; + } + rmapout[0] = n; + n = 0; + for(i = firstActiveLink(psdata->cols->varmap); i != 0; i = nextActiveLink(psdata->cols->varmap, i)) { + n++; + cmapout[n] = i; + } + cmapout[0] = n; + + /* Do the rank-revealing factorization */ + n = lp->bfp_findredundant(lp, psdata->EQmap->count, presolve_getcolumnEQ, rmapin, cmapout); + + /* Delete the redundant rows */ + for(i = 1; i <= n; i++) { + j = rmapin[i]; + j = rmapout[j]; + presolve_rowremove(psdata, j, TRUE); + } + (*nn) += n; + (*nr) += n; + (*nSum) += n; + + /* Clean up */ + FREE(rmapout); + FREE(rmapin); + FREE(cmapout); + + return( n ); +} + +STATIC int presolve_elimeq2(presolverec *psdata, int *nn, int *nr, int *nc, int *nSum) +{ + lprec *lp = psdata->lp; + int n, i, jx, jjx, k, item, *plucount, *negcount, colplu, colneg, + iCoeffChanged = 0, iRowsRemoved = 0, iVarsFixed = 0, nrows = lp->rows, + status = RUNNING, *colindex = NULL; + MYBOOL freshupdate; + LPSREAL Coeff1, Coeff2, Value1, Value2, lobound, upbound, bound, test, product, + *colvalue = NULL, *delvalue = NULL, *colitem; + MATrec *mat = lp->matA, *rev = NULL; + DeltaVrec *DV = NULL; + LLrec *EQ2 = NULL; + + /* See if there is anything to do */ + if(psdata->EQmap->count == 0) { + (*nSum) = 0; + return( status ); + } + + /* Tally counts */ + createLink(lp->rows, &EQ2, NULL); + if((EQ2 == NULL) || !allocREAL(lp, &colvalue, nrows+1, FALSE) || + !allocREAL(lp, &delvalue, nrows+1, FALSE)) + goto Finish; + for(i = firstActiveLink(psdata->EQmap); i > 0; i = nextActiveLink(psdata->EQmap, i)) { + if(presolve_rowlength(psdata, i) == 2) + appendLink(EQ2, i); + } + if(EQ2->count == 0) + goto Finish; + n = 0; + + /* Do the elimination loop for all identified 2-element equalities */ + for(i = firstActiveLink(EQ2); i > 0; i = nextActiveLink(EQ2, i)) { + + /* Check if the constraint has been modified by a previous elimination */ + if(presolve_rowlength(psdata, i) != 2) + continue; + + /* Get the column indeces of NZ-values of the "pivot" row */ + item = 0; + jx = presolve_nextcol(psdata, i, &item); /* Eliminated variable coefficient b */ +#ifdef Paranoia + if(jx < 0) + report(lp, SEVERE, "presolve_elimeq2: No qualifying %dst column was found in row %s (ostensible length %d)\n", + 1, get_row_name(lp, i), presolve_rowlength(psdata, i)); +#endif + Coeff2 = ROW_MAT_VALUE(jx); + jx = ROW_MAT_COLNR(jx); + jjx = presolve_nextcol(psdata, i, &item); /* Non-eliminated variable coefficient a */ +#ifdef Paranoia + if(jjx < 0) + report(lp, SEVERE, "presolve_elimeq2: No qualifying %dnd column was found in row %s (ostensible length %d)\n", + 2, get_row_name(lp, i), presolve_rowlength(psdata, i)); +#endif + Coeff1 = ROW_MAT_VALUE(jjx); + jjx = ROW_MAT_COLNR(jjx); + + /* Check if at least one of the coefficients is large enough to preserve stability; + use opposing maximum column values for stability testing. */ + if((fabs(Coeff1) < psdata->epspivot*mat->colmax[jx]) && + ((fabs(Coeff1) != 1) && (fabs(Coeff2) != 1)) && + (fabs(Coeff2) < psdata->epspivot*mat->colmax[jjx])) + continue; + + /* Cannot eliminate a variable if both are SOS members or SC variables */ + if((is_semicont(lp, jx) && is_semicont(lp, jjx)) || + (SOS_is_member(lp->SOS, 0, jx) && SOS_is_member(lp->SOS, 0, jjx))) + continue; + + /* First check if we are allowed to swap; set swap "blockers" */ + k = 0; + if(!is_int(lp, jx) && is_int(lp, jjx)) + k += 1; + else if(!is_semicont(lp, jx) && is_semicont(lp, jjx)) + k += 2; + else if(!SOS_is_member(lp->SOS, 0, jx) && SOS_is_member(lp->SOS, 0, jjx)) + k += 4; + + /* If there were no blockers, determine if we MUST swap the variable to be eliminated */ + if(k == 0) { + if(is_int(lp, jx) && !is_int(lp, jjx)) + k += 8; + else if(is_semicont(lp, jx) && !is_semicont(lp, jjx)) + k += 16; + else if(SOS_is_member(lp->SOS, 0, jx) && !SOS_is_member(lp->SOS, 0, jjx)) + k += 32; + + /* If we are not forced to swap, decide if it otherwise makes sense - high order */ + if(k == 0) { + if((fabs(Coeff2) < psdata->epspivot*mat->colmax[jjx]) && + (fabs(Coeff1) > psdata->epspivot*mat->colmax[jx])) + k += 64; + else if(presolve_collength(psdata, jx) > presolve_collength(psdata, jjx)) + k += 128; + } + + /* If we are not forced to swap, decide if it otherwise makes sense - low order */ + if(k == 0) { + Value2 = Coeff1/Coeff2; +#ifdef DualFeasibilityLogicEQ2 + if((Value2*lp->orig_obj[jx] < 0) && + (Value2*lp->orig_obj[jjx] > 0)) /* Seek increased dual feasibility */ + k += 256; +#endif +#ifdef DivisorIntegralityLogicEQ2 + if((fabs(modf(Coeff2, &Value2)) >= lp->epsvalue) && /* Seek integrality of result */ + (fabs(modf(Coeff1, &Value2)) < lp->epsvalue)) + k += 512; + else if((fabs(fabs(Coeff2)-1) >= lp->epsvalue) && /* Seek integrality of divisor */ + (fabs(fabs(Coeff1)-1) < lp->epsvalue)) + k += 1024; +#endif + } + + } + else + k = 0; + + /* Perform variable index swap if indicated */ + if(k != 0) { + swapINT(&jx, &jjx); + swapREAL(&Coeff1, &Coeff2); + } + + Value1 = lp->orig_rhs[i]/Coeff2; /* Delta constant term */ + Value2 = Coeff1/Coeff2; /* Delta variable term */ + upbound = lp->orig_upbo[lp->rows+jx]; + lobound = lp->orig_lowbo[lp->rows+jx]; + if(lp->spx_trace) { + report(lp, DETAILED, "Row %3d : Elim %g %s - %d\n", i, Coeff2, get_col_name(lp, jx), jx); + report(lp, DETAILED, " Keep %g %s - %d\n", Coeff1, get_col_name(lp, jjx), jjx); + } + + /* Get the coefficient vectors of the independent (jjx) and dependent (jx) columns; + the dependent column will be deleted and reconstructed during postsolve. */ + freshupdate = (MYBOOL) ((colindex == NULL) || (colindex[jjx] == 0)); + if(freshupdate) + mat_expandcolumn(mat, jjx, colvalue, NULL, TRUE); + else + mat_expandcolumn(rev, colindex[jjx], colvalue, NULL, FALSE); + if((colindex == NULL) || (colindex[jx] == 0)) + mat_expandcolumn(mat, jx, delvalue, NULL, TRUE); + else + mat_expandcolumn(rev, colindex[jx], delvalue, NULL, FALSE); + + /* Add variable reconstruction information */ + addUndoPresolve(lp, TRUE, jx, Value1, Value2, jjx); + + /* If possible, tighten the bounds of the uneliminated variable based + on the bounds of the eliminated variable. Also handle roundings + and attempt precision management. */ + bound = lobound; + k = nrows+jjx; + if(bound > -lp->infinite) { + bound = (lp->orig_rhs[i] - Coeff2*bound) / Coeff1; + if(Value2 > 0) { + test = lp->orig_upbo[k]; + if(bound < test - psdata->epsvalue) { + if(is_int(lp, jjx)) + lp->orig_upbo[k] = floor(bound + lp->epsint); + else + lp->orig_upbo[k] = presolve_roundrhs(lp, bound, FALSE); + } + } + else { + test = lp->orig_lowbo[k]; + if(bound > test + psdata->epsvalue) { + if(is_int(lp, jjx)) + lp->orig_lowbo[k] = ceil(bound - lp->epsint); + else + lp->orig_lowbo[k] = presolve_roundrhs(lp, bound, TRUE); + } + } + } + bound = upbound; + if(bound < lp->infinite) { + bound = (lp->orig_rhs[i] - Coeff2*bound) / Coeff1; + if(Value2 < 0) { + test = lp->orig_upbo[k]; + if(bound < test - psdata->epsvalue) { + if(is_int(lp, jjx)) + lp->orig_upbo[k] = floor(bound + lp->epsint); + else + lp->orig_upbo[k] = presolve_roundrhs(lp, bound, FALSE); + } + } + else { + test = lp->orig_lowbo[k]; + if(bound > test + psdata->epsvalue) { + if(is_int(lp, jjx)) + lp->orig_lowbo[k] = ceil(bound - lp->epsint); + else + lp->orig_lowbo[k] = presolve_roundrhs(lp, bound, TRUE); + } + } + } + +#ifdef Eq2Reldiff + test = 2*lp->epsvalue; +#else + test = psdata->epsvalue; +#endif + if(/*(lp->orig_upbo[k] < lp->orig_lowbo[k]) ||*/ +#ifdef Eq2Reldiff + (fabs(my_reldiff(lp->orig_upbo[k],lp->orig_lowbo[k])) < test)) { +#else + (fabs(lp->orig_upbo[k] - lp->orig_lowbo[k]) < test)) { +#endif + my_roundzero(lp->orig_lowbo[k], test); + lp->orig_upbo[k] = lp->orig_lowbo[k]; + } + else { + my_roundzero(lp->orig_upbo[k], test); + my_roundzero(lp->orig_lowbo[k], test); + } + + if(/*(upbound < lobound) ||*/ +#ifdef Eq2Reldiff + (fabs(my_reldiff(upbound, lobound)) < test)) { +#else + (fabs(upbound - lobound) < test)) { +#endif + my_roundzero(lobound, test); + lp->orig_upbo[nrows+jx] = lobound; + upbound = lobound; + } + + /* Loop over the non-zero rows of the column (jx) to be eliminated; + substitute jx-variable by updating rhs and jjx coefficients */ + colitem = colvalue; + plucount = psdata->rows->plucount; + negcount = psdata->rows->negcount; + colplu = 0; + colneg = 0; + /* Count of non-zeros in the independent column jjx */ + item = presolve_collength(psdata, jjx) - 1; + if(isnz_origobj(lp, jjx)) + item++; + for(k = 0; k <= nrows; k++, colitem++) { + + bound = delvalue[k]; + if((k == i) || (bound == 0) || + ((k > 0) && !isActiveLink(psdata->rows->varmap, k))) + continue; + + /* Do constraint and nz-count updates for the substituted variable */ + product = bound*Value1; + + /* "Raw"/unsigned data */ + presolve_adjustrhs(psdata, k, my_chsign(is_chsign(lp, k), product), test); + + /* Change back to signed part */ + if(*colitem != 0) { + if(*colitem > 0) { + colplu--; + plucount[k]--; + } + else { + colneg--; + negcount[k]--; + } + if((lobound < 0) && (upbound >= 0)) { + psdata->cols->pluneg[jjx]--; + psdata->rows->pluneg[k]--; + } + item--; + } + (*colitem) -= bound*Value2; + iCoeffChanged++; + + /* Update counts */ + if(fabs(*colitem) >= mat->epsvalue) { + if(*colitem > 0) { + colplu++; + plucount[k]++; + } + else { + colneg++; + negcount[k]++; + } + if((lobound < 0) && (upbound >= 0)) { + psdata->cols->pluneg[jjx]++; + psdata->rows->pluneg[k]++; + } + item++; + } + else { + *colitem = 0; + } + + /* Also reduce count if the row contains the deleted variable */ + if(bound > 0) + plucount[k]--; + else + negcount[k]--; + } + psdata->cols->plucount[jjx] += colplu; + psdata->cols->negcount[jjx] += colneg; + + /* Save the new column */ + if(rev == NULL) { + DV = createUndoLadder(lp, nrows, lp->columns / RESIZEFACTOR); + rev = DV->tracker; + rev->epsvalue = mat->epsvalue; + allocINT(lp, &(rev->col_tag), mat->columns_alloc+1, FALSE); + allocINT(lp, &colindex, lp->columns+1, TRUE); + rev->col_tag[0] = 0; + } + n = rev->col_tag[0] = incrementUndoLadder(DV); + mat_setcol(rev, n, 0, colvalue, NULL, FALSE, FALSE); + rev->col_tag[n] = jjx; + + /* Save index to updated vector, but specially handle case where we have + the same independent variable for multiple equations! */ + if(!freshupdate) + rev->col_tag[colindex[jjx]] *= -1; + colindex[jjx] = n; + + /* Delete the column dependent variable */ + jx = presolve_colremove(psdata, jx, FALSE); + iVarsFixed++; + + /* Check if we have been lucky enough to have eliminated the independent + variable via substitution of the dependent variable */ + if(item == 0) { +#ifdef Paranoia + report(lp, DETAILED, "presolve_elimeq2: Was able to remove variables %d and %d in row %s\n", + jx, jjx, get_row_name(lp, i)); +#endif + if(presolve_colfix(psdata, jjx, 0.0, TRUE, nc)) + jjx = presolve_colremove(psdata, jjx, FALSE); + } + + /* Delete the row */ + presolve_rowremove(psdata, i, FALSE); + iRowsRemoved++; + } + + /* Perform the column updates collected above */ + if(n > 0) { + mat_mapreplace(mat, psdata->rows->varmap, psdata->cols->varmap, rev); + presolve_validate(psdata, TRUE); +#ifdef PresolveForceUpdateMax + mat_computemax(mat /* , FALSE */); +#endif + psdata->forceupdate = TRUE; + } + + /* Free work arrays */ +Finish: + if(DV != NULL) + freeUndoLadder(&DV); + freeLink(&EQ2); + FREE(colvalue); + FREE(delvalue); + FREE(colindex); + + /* Update counters */ + (*nn) += iCoeffChanged; + (*nr) += iRowsRemoved; + (*nc) += iVarsFixed; + (*nSum) += iCoeffChanged + iRowsRemoved + iVarsFixed; + + return( status ); +} + +STATIC MYBOOL presolve_impliedfree(lprec *lp, presolverec *psdata, int colnr) +{ + int i, ix, ie; + LPSREAL Tlower, Tupper; + MYBOOL status, rowbinds, isfree = FALSE; + MATrec *mat = lp->matA; + + if(my_infinite(lp, get_lowbo(lp, colnr)) && my_infinite(lp, get_upbo(lp, colnr))) + return( TRUE ); + + ie = mat->col_end[colnr]; + for(ix = mat->col_end[colnr-1]; (isfree != (TRUE | AUTOMATIC)) && (ix < ie); ix++) { + i = COL_MAT_ROWNR(ix); + if(!isActiveLink(psdata->rows->varmap, i)) + continue; + Tlower = get_rh_lower(lp, i); + Tupper = get_rh_upper(lp, i); + status = presolve_multibounds(psdata, i, colnr, &Tlower, &Tupper, NULL, &rowbinds); + isfree = isfree | status | rowbinds; + } + + return( (MYBOOL) (isfree == (TRUE | AUTOMATIC)) ); +} + +STATIC MYBOOL presolve_impliedcolfix(presolverec *psdata, int rownr, int colnr, MYBOOL isfree) +{ + lprec *lp = psdata->lp; + MYBOOL signflip, undoadded = FALSE; + MATrec *mat = lp->matA; + int jx, i, ib, ie = mat->row_end[rownr]; + LPSREAL varLo = 0, varHi = 0, varRange, conRange = 0, matValue = 0, dual, RHS = lp->orig_rhs[rownr], + pivot, matAij = mat_getitem(mat, rownr, colnr), *vecOF = lp->orig_obj; + + /* We cannot have semi-continuous or non-qualifying integers */ + if(is_semicont(lp, colnr) || is_SOS_var(lp, colnr)) + return( FALSE ); + if(is_int(lp, colnr)) { + if(!isActiveLink(psdata->INTmap, rownr) || !is_presolve(lp, PRESOLVE_KNAPSACK)) + return( FALSE ); + /* colnr must have a coefficient equal to the smallest in the row */ + varRange = lp->infinite; + i = 0; + pivot = 0; + for(ib = presolve_nextcol(psdata, rownr, &i); i != 0; ib = presolve_nextcol(psdata, rownr, &i)) { + jx = ROW_MAT_COLNR(ib); + dual = fabs(ROW_MAT_VALUE(ib)); + /* Check if we have the target column and save the pivot value */ + if(jx == colnr) { + /* Always accept unit coefficient */ + if(fabs(dual - 1) < psdata->epsvalue) + break; + pivot = dual; + /* Otherwise continue scan */ + } + /* Cannot accept case where result can be fractional */ + else if((pivot > dual + psdata->epsvalue) || + ((pivot > 0) && (fabs(fmod(dual, pivot)) > psdata->epsvalue))) + return( FALSE ); + } + } + + /* Ascertain that the pivot value is large enough to preserve stability */ + pivot = matAij; + if(fabs(pivot) < psdata->epspivot*mat->colmax[colnr]) + return( FALSE ); + + /* Must ascertain that the row variables are not SOS'es; this is because + the eliminated variable will be a function of another variable. */ + if(SOS_count(lp) > 0) { + for(ib = mat->row_end[rownr-1]; ib < ie; ib++) + if(SOS_is_member(lp->SOS, 0, ROW_MAT_COLNR(ib))) + return( FALSE ); + } + + /* Calculate the dual value */ + dual = vecOF[colnr]/pivot; + + /* Here we have free variable in an equality constraint; this means we can + can adjust the OF for the deleted variable and also delete the constraint. */ + if(isfree && is_constr_type(lp, rownr, EQ)) { + matValue = RHS/pivot; + if(matValue != 0) + undoadded = addUndoPresolve(lp, TRUE, colnr, matValue, 0.0, 0); + } + + else { + + /* IMPLIEDFREE: For simplicity, ensure that we can keep the slack based at 0, + and not its upper bound. Effectively, we consider the constraint + an equality, using the information of the sign of the dual. + IMPLIEDSLK: Since we already have an equality constraint, we wish to make sure + that the ensuing inequality constraint will have an RHS that is + non-infinite. */ + if(isfree) { + SETMIN(RHS, presolve_sumplumin(lp, rownr, psdata->rows, TRUE)); + matValue = presolve_sumplumin(lp, rownr, psdata->rows, FALSE); + conRange = get_rh_lower(lp, rownr); + conRange = RHS - MAX(matValue, conRange); + signflip = (MYBOOL) ((dual > 0) && + !my_infinite(lp, conRange)); + } + else { + varLo = get_lowbo(lp, colnr); + varLo *= (my_infinite(lp, varLo) ? my_sign(pivot) : pivot); + varHi = get_upbo(lp, colnr); + varHi *= (my_infinite(lp, varHi) ? my_sign(pivot) : pivot); + if(pivot < 0) + swapREAL(&varHi, &varLo); + signflip = my_infinite(lp, varLo); + } + if(signflip) { + mat_multrow(mat, rownr, -1); + RHS -= conRange; + RHS = -RHS; + lp->orig_rhs[rownr] = RHS; + pivot = -pivot; + dual = -dual; + if(!isfree) { + varLo = -varLo; + varHi = -varHi; + swapREAL(&varHi, &varLo); + } + } + matValue = RHS/pivot; + + /* Prepare for deleting free or implied free variable in inequality constraint. + Different strategies need to be used: + + ACTUAL: Find the proper constraint bound and store undo information for + recovering the value of the implied free variable. The constraint + is then deleted. We have to adjust the objective function if the + OF coefficient for the implied free variable is non-zero. + IMPLIED: Convert the constraint to an inequality at the proper bound. + For given models, the new equality constraint can later provide + an implied slack, which means that a further variable is eliminated, + and the constraint again becomes an inequality constraint. + + Note that this version only implements the ACTUAL mode */ + if(isfree) { + /* Add undo information connecting the deleted variable to the RHS */ + if(matValue != 0) + undoadded = addUndoPresolve(lp, TRUE, colnr, matValue, 0.0, 0); + /* Add undo information for the dual of the deleted constraint */ + if(dual != 0) + addUndoPresolve(lp, FALSE, rownr, dual, 0.0, 0); + } + + /* Prepare for deleting implied slack variable. The following two cases are + handled: + + 1. Equality constraint: Convert the constraint to an inequality constraint + that is possibly ranged + 2. Other constraints: Expand existing slack variable / constraint + range, if required. */ + else { + if(my_infinite(lp, varHi)) + varRange = lp->infinite; +#ifdef Paranoia + else if(my_infinite(lp, varLo)) { + report(lp, SEVERE, "presolve_impliedcolfix: Negative infinite limit for variable %d\n", colnr); + varRange = lp->infinite; + } +#endif + else + varRange = my_precision(fabs(varHi - varLo) + lp->epsvalue, psdata->epsvalue); + presolve_adjustrhs(psdata, rownr, varLo, psdata->epsvalue); + + /* Handle case 1 of an equality constraint */ + if(is_constr_type(lp, rownr, EQ)) { + /* Make sure we actually have a ranged constraint */ + if(varRange > 0) { + set_constr_type(lp, rownr, LE); + if(!my_infinite(lp, varRange)) + lp->orig_upbo[rownr] = varRange; + setLink(psdata->LTmap, rownr); + removeLink(psdata->EQmap, rownr); + } + } + /* Handle case 2 of an inequality constraint (UNDER CONSTRUCTION!)*/ + else { + if(!my_infinite(lp, lp->orig_upbo[rownr])) { + if(my_infinite(lp, varRange)) + lp->orig_upbo[rownr] = lp->infinite; + else + lp->orig_upbo[rownr] += varHi - varLo; + } + } + /* Update counts */ + if(matAij > 0) + psdata->rows->plucount[rownr]--; + else + psdata->rows->negcount[rownr]--; + if(my_sign(varLo) != my_sign(varHi)) + psdata->rows->pluneg[rownr]--; + + /* Add undo information for the deleted variable; note that we cannot link the + deleted variable to the slack, since it may not be available during undo. + We really should have a mini LP to compute this allocation ex-post. */ + if(RHS != 0) + undoadded = addUndoPresolve(lp, TRUE, colnr, RHS/pivot, 0.0, 0); + } + } + + /* Update the OF constant */ + if(dual != 0) { + presolve_adjustrhs(psdata, 0, dual * RHS, 0); +/* lp->orig_rhs[0] -= dual * RHS; */ + vecOF[colnr] = 0; + } + + /* Do affine transformation with the constraint row */ + i = 0; + for(ib = presolve_nextcol(psdata, rownr, &i); ib >= 0; + ib = presolve_nextcol(psdata, rownr, &i)) { + + /* Get the constraint element */ + jx = ROW_MAT_COLNR(ib); + if(jx == colnr) + continue; + matValue = ROW_MAT_VALUE(ib); + + /* Adjust OF for the variable to be deleted */ + if(dual != 0) + vecOF[jx] -= dual * matValue; + + /* Add reconstruction/undo parameters for the deleted variable */ + if(!undoadded) + undoadded = addUndoPresolve(lp, TRUE, colnr, 0.0, matValue/pivot, jx); + else + appendUndoPresolve(lp, TRUE, matValue/pivot, jx); + } + + return( TRUE ); +} + +STATIC psrec *presolve_initpsrec(lprec *lp, int size) +{ + psrec *ps = (psrec *) calloc(1, sizeof(*ps)); + + createLink(size, &ps->varmap, NULL); + fillLink(ps->varmap); + + size++; + + allocINT(lp, &ps->empty, size, FALSE); + ps->empty[0] = 0; + + allocREAL(lp, &ps->pluupper, size, FALSE); + allocREAL(lp, &ps->negupper, size, FALSE); + allocREAL(lp, &ps->plulower, size, FALSE); + allocREAL(lp, &ps->neglower, size, FALSE); + allocINT(lp, &ps->infcount, size, FALSE); + + ps->next = (int **) calloc(size, sizeof(*(ps->next))); + + allocINT(lp, &ps->plucount, size, TRUE); + allocINT(lp, &ps->negcount, size, TRUE); + allocINT(lp, &ps->pluneg, size, TRUE); + + ps->allocsize = size; + + return( ps ); +} +STATIC void presolve_freepsrec(psrec **ps) +{ + FREE((*ps)->plucount); + FREE((*ps)->negcount); + FREE((*ps)->pluneg); + FREE((*ps)->infcount); + + if((*ps)->next != NULL) { + int i, n = (*ps)->allocsize; + for(i = 0; i < n; i++) + FREE((*ps)->next[i]); + FREE((*ps)->next); + } + + FREE((*ps)->plulower); + FREE((*ps)->neglower); + FREE((*ps)->pluupper); + FREE((*ps)->negupper); + + FREE((*ps)->empty); + + freeLink(&(*ps)->varmap); + + FREE(*ps); +} + +STATIC presolverec *presolve_init(lprec *lp) +{ + int k, i, ix, ixx, colnr, + ncols = lp->columns, + nrows = lp->rows; + LPSREAL hold; + MATrec *mat = lp->matA; + presolverec *psdata = NULL; + + /* Optimize memory usage if we have a very large model; + this is to reduce the risk of out-of-memory situations. */ + ix = get_nonzeros(lp); + ixx = lp->matA->mat_alloc; + if((ixx - ix > MAT_START_SIZE) && ((ixx - ix) * 20 > ixx)) + mat_memopt(lp->matA, nrows / 20, ncols / 20, ix / 20); + + psdata = (presolverec *) calloc(1, sizeof(*psdata)); + + psdata->lp = lp; + psdata->rows = presolve_initpsrec(lp, nrows); + psdata->cols = presolve_initpsrec(lp, ncols); + + psdata->epsvalue = PRESOLVE_EPSVALUE; + psdata->epspivot = PRESOLVE_EPSPIVOT; + psdata->forceupdate = TRUE; + + /* Save incoming primal bounds */ + k = lp->sum + 1; + allocREAL(lp, &psdata->pv_lobo, k, FALSE); + MEMCOPY(psdata->pv_lobo, lp->orig_lowbo, k); + allocREAL(lp, &psdata->pv_upbo, k, FALSE); + MEMCOPY(psdata->pv_upbo, lp->orig_upbo, k); + + /* Create and initialize dual value (Langrangean and slack) limits */ + allocREAL(lp, &psdata->dv_lobo, k, FALSE); + allocREAL(lp, &psdata->dv_upbo, k, FALSE); + for(i = 0; i <= nrows; i++) { + psdata->dv_lobo[i] = (is_constr_type(lp, i, EQ) ? -lp->infinite : 0); + psdata->dv_upbo[i] = lp->infinite; + } + k--; + for(; i <= k; i++) { + psdata->dv_lobo[i] = 0; + psdata->dv_upbo[i] = lp->infinite; + } + + /* Create NZ count and sign arrays, and do general initialization of row bounds */ + createLink(nrows, &psdata->EQmap, NULL); + createLink(nrows, &psdata->LTmap, NULL); + createLink(nrows, &psdata->INTmap, NULL); + for(i = 1; i <= nrows; i++) { + switch (get_constr_type(lp, i)) { + case LE: appendLink(psdata->LTmap, i); + break; + case EQ: appendLink(psdata->EQmap, i); + break; + } + k = mat_rowlength(mat, i); + if((lp->int_vars > 0) && (k > 0)) + appendLink(psdata->INTmap, i); + } + + /* Seek to reduce set of sum(INT*INT) rows (mainly for GCD coefficient reductions) */ + if(psdata->INTmap->count > 0) + for(i = 1; i <= nrows; i++) { + if(!isActiveLink(psdata->INTmap, i)) + continue; + /* Disqualify if there is a non-int variable, otherwise find smallest absolute fractional row value */ + ix = mat->row_end[i - 1]; + ixx = mat->row_end[i]; + colnr = 0; + for(; ix < ixx; ix++) { + if(!is_int(lp, ROW_MAT_COLNR(ix))) { + removeLink(psdata->INTmap, i); + break; + } + hold = fabs(ROW_MAT_VALUE(ix)); + hold = fmod(hold, 1); + /* Adjust colnr to be a decimal scalar */ + for(k = 0; (k <= MAX_FRACSCALE) && (hold+psdata->epsvalue < 1); k++) + hold *= 10; + if(k > MAX_FRACSCALE) { + removeLink(psdata->INTmap, i); + break; + } + SETMAX(colnr, k); + } + if(!isActiveLink(psdata->INTmap, i)) + continue; + hold = pow(10.0, colnr); + /* Also disqualify if the RHS is fractional after scaling */ + if(fabs(fmod(lp->orig_rhs[i] * hold, 1)) > psdata->epsvalue) { + removeLink(psdata->INTmap, i); + continue; + } + /* We have an all-int constraint, see if we should scale it up */ + if(k > 0) { + ix = mat->row_end[i - 1]; + for(; ix < ixx; ix++) { + ROW_MAT_VALUE(ix) *= hold; + } + lp->orig_rhs[i] *= hold; + if(!my_infinite(lp, lp->orig_upbo[i])) + lp->orig_upbo[i] *= hold; /* KE: Fix due to Andy Loto - 20070619 */ + } + } + + /* Do the real tallying and ordering work */ + presolve_validate(psdata, TRUE); + + return( psdata ); +} + +STATIC void presolve_free(presolverec **psdata) +{ + presolve_freepsrec(&(*psdata)->rows); + presolve_freepsrec(&(*psdata)->cols); + FREE((*psdata)->dv_lobo); + FREE((*psdata)->dv_upbo); + FREE((*psdata)->pv_lobo); + FREE((*psdata)->pv_upbo); + freeLink(&(*psdata)->EQmap); + freeLink(&(*psdata)->LTmap); + freeLink(&(*psdata)->INTmap); + FREE(*psdata); +} + +STATIC int presolve_makefree(presolverec *psdata) +{ + lprec *lp = psdata->lp; + int i, ix, j, nn = 0; + LPSREAL Xlower, Xupper, losum, upsum, lorhs, uprhs, freeinf = lp->infinite / 10; + MATrec *mat = lp->matA; + LLrec *colLL = NULL; + + /* First see if we can relax ranged constraints */ + for(i = firstActiveLink(psdata->rows->varmap); i != 0; i = nextActiveLink(psdata->rows->varmap, i)) { + if(is_constr_type(lp, i, EQ)) + continue; + presolve_range(lp, i, psdata->rows, &losum, &upsum); + lorhs = get_rh_lower(lp, i); + uprhs = get_rh_upper(lp, i); + + /* Look for opportunity to relax constraint bounds */ + if(presolve_rowlength(psdata, i) > 1) { + if((is_constr_type(lp, i, GE) && (upsum <= uprhs)) || + (is_constr_type(lp, i, LE) && (losum >= lorhs))) + set_rh_range(lp, i, lp->infinite); + } + } + + /* Collect columns available for bound relaxation (find implied free variables) + (consider sorting the list in decending order of column lengths or do call to + COLAMD to maximize impact) */ + createLink(lp->columns, &colLL, NULL); + for(j = firstActiveLink(psdata->cols->varmap); j != 0; j = nextActiveLink(psdata->cols->varmap, j)) + if(presolve_impliedfree(lp, psdata, j)) + appendLink(colLL, j); + + /* Find what columns to relax (ideally one per row) */ + if(colLL->count > 0) { + LLrec *rowLL = NULL; + MYBOOL canfree; + + /* Create row tracker */ + createLink(lp->rows, &rowLL, NULL); + fillLink(rowLL); + + /* Loop over all column candidates */ + for(j = firstActiveLink(colLL); (j > 0) && (rowLL->count > 0); j = nextActiveLink(colLL, j)) { + + /* Verify that the variable is applicable */ + canfree = TRUE; + for(ix = mat->col_end[j-1]; canfree && (ix < mat->col_end[j]); ix++) + canfree = isActiveLink(rowLL, COL_MAT_ROWNR(ix)); + + /* If so, then open the bounds and update the row availability mapper */ + if(canfree) { + nn++; + Xlower = get_lowbo(lp, j); + Xupper = get_upbo(lp, j); + if(Xlower >= 0) + set_bounds(lp, j, 0, freeinf); + else if(Xupper <= 0) + set_bounds(lp, j, -freeinf, 0); + else +/* set_bounds(lo, j, -freeinf, freeinf); */ + set_unbounded(lp, j); + for(ix = mat->col_end[j-1]; ix < mat->col_end[j]; ix++) + removeLink(rowLL, COL_MAT_ROWNR(ix)); + } + } + freeLink(&rowLL); + } + + /* Free list and return */ + freeLink(&colLL); + return( nn ); +} + +STATIC MYBOOL presolve_updatesums(presolverec *psdata) +{ + lprec *lp = psdata->lp; + int j; + + /* Initialize row accumulation arrays */ + MEMCLEAR(psdata->rows->pluupper, lp->rows + 1); + MEMCLEAR(psdata->rows->negupper, lp->rows + 1); + MEMCLEAR(psdata->rows->plulower, lp->rows + 1); + MEMCLEAR(psdata->rows->neglower, lp->rows + 1); + MEMCLEAR(psdata->rows->infcount, lp->rows + 1); + + /* Loop over active columns */ + for(j = firstActiveLink(psdata->cols->varmap); j != 0; + j = nextActiveLink(psdata->cols->varmap, j)) { + presolve_colfix(psdata, j, lp->infinite, FALSE, NULL); + } + +#ifdef UseDualPresolve + /* Initialize column accumulation arrays */ + MEMCLEAR(psdata->cols->pluupper, lp->columns + 1); + MEMCLEAR(psdata->cols->negupper, lp->columns + 1); + MEMCLEAR(psdata->cols->plulower, lp->columns + 1); + MEMCLEAR(psdata->cols->neglower, lp->columns + 1); + MEMCLEAR(psdata->cols->infcount, lp->columns + 1); + + /* Loop over active rows */ + for(j = firstActiveLink(psdata->rows->varmap); j != 0; + j = nextActiveLink(psdata->rows->varmap, j)) { + presolve_rowfix(psdata, j, lp->infinite, FALSE, NULL); + } +#endif + + return( TRUE ); +} + +STATIC MYBOOL presolve_finalize(presolverec *psdata) +{ + lprec *lp = psdata->lp; + MYBOOL compactvars = FALSE; + int ke, n; + + /* Save eliminated rows and columns for restoration purposes */ +#ifdef SavePresolveEliminated + psdata->deletedA = mat_extractmat(lp->matA, rowmap, colmap, TRUE); + if(!mat_validate(psdata->deletedA)) + report(lp, SEVERE, "presolve_finalize: Could not validate matrix with undo data\n"); +#endif + + /* Check if OF columns are to be deleted */ + lp->presolve_undo->OFcolsdeleted = FALSE; + for(n = firstInactiveLink(psdata->cols->varmap); (n != 0) && !lp->presolve_undo->OFcolsdeleted; + n = nextInactiveLink(psdata->cols->varmap, n)) + lp->presolve_undo->OFcolsdeleted = (MYBOOL) (lp->orig_obj[n] != 0); + + /* Delete eliminated columns */ + ke = lastInactiveLink(psdata->cols->varmap); + n = countInactiveLink(psdata->cols->varmap); + if((n > 0) && (ke > 0)) { + del_columnex(lp, psdata->cols->varmap); + mat_colcompact(lp->matA, lp->presolve_undo->orig_rows, + lp->presolve_undo->orig_columns); + compactvars = TRUE; + } + + /* Delete eliminated rows */ + ke = lastInactiveLink(psdata->rows->varmap); + n = countInactiveLink(psdata->rows->varmap); + if((n > 0) && (ke > 0)) { + del_constraintex(lp, psdata->rows->varmap); + mat_rowcompact(lp->matA, TRUE); + compactvars = TRUE; + } + else if(psdata->nzdeleted > 0) + mat_zerocompact(lp->matA); + + /* Do compacting and updating of variable maps */ + if(compactvars) + varmap_compact(lp, lp->presolve_undo->orig_rows, + lp->presolve_undo->orig_columns); + + /* Reduce memory usage of postsolve matrices */ + if(lp->presolve_undo->primalundo != NULL) + mat_memopt(lp->presolve_undo->primalundo->tracker, 0, 0, 0); + if(lp->presolve_undo->dualundo != NULL) + mat_memopt(lp->presolve_undo->dualundo->tracker, 0, 0, 0); + + /* Round near-zero objective function coefficients and RHS values */ + ke = lp->columns; + for(n = 1; n <= ke; n++) + my_roundzero(lp->orig_obj[n], lp->epsvalue); + ke = lp->rows; + for(n = 1; n <= ke; n++) + my_roundzero(lp->orig_rhs[n], lp->epsvalue); + + /* Update the SOS sparse mapping */ + if(SOS_count(lp) > 0) + SOS_member_updatemap(lp->SOS); + + /* Validate matrix and reconstruct row indexation */ + return(mat_validate(lp->matA)); +} + +STATIC MYBOOL presolve_debugdump(lprec *lp, presolverec *psdata, char *filename, MYBOOL doappend) +{ + FILE *output = stdout; + int size; + MYBOOL ok; + + ok = (MYBOOL) ((filename == NULL) || ((output = fopen(filename, my_if(doappend, "a", "w"))) != NULL)); + if(!ok) + return(ok); + if((filename == NULL) && (lp->outstream != NULL)) + output = lp->outstream; + + fprintf(output, "\nPRESOLVE - Status at loop %d:%d:%d\n", + psdata->outerloops, psdata->middleloops, psdata->innerloops); + fprintf(output, "Model size: %d rows (%d equalities, %d less than), %d columns\n", + psdata->rows->varmap->count, psdata->EQmap->count, psdata->LTmap->count, psdata->cols->varmap->count); + + fprintf(output, "\nMAPPERS\n-------\n\n"); + size = 1; + blockWriteINT(output, "colmap", psdata->cols->varmap->map, 0, size*psdata->cols->varmap->size); + blockWriteINT(output, "rowmap", psdata->rows->varmap->map, 0, size*psdata->rows->varmap->size); + blockWriteINT(output, "EQmap", psdata->EQmap->map, 0, size*psdata->EQmap->size); + blockWriteINT(output, "LTmap", psdata->LTmap->map, 0, size*psdata->LTmap->size); + + fprintf(output, "\nCOUNTS\n------\n\n"); + blockWriteINT(output, "plucount", psdata->rows->plucount, 0, lp->rows); + blockWriteINT(output, "negcount", psdata->rows->negcount, 0, lp->rows); + blockWriteINT(output, "pluneg", psdata->rows->pluneg, 0, lp->rows); + + fprintf(output, "\nSUMS\n----\n\n"); + blockWriteREAL(output, "pluupper", psdata->rows->pluupper, 0, lp->rows); + blockWriteREAL(output, "negupper", psdata->rows->negupper, 0, lp->rows); + blockWriteREAL(output, "plulower", psdata->rows->pluupper, 0, lp->rows); + blockWriteREAL(output, "neglower", psdata->rows->negupper, 0, lp->rows); + + if(filename != NULL) + fclose(output); + return(ok); +} + +int CMP_CALLMODEL compRedundant(const UNIONTYPE QSORTrec *current, const UNIONTYPE QSORTrec *candidate) +{ + int start1 = (int) (current->int4.intpar1), + start2 = (int) (candidate->int4.intpar1), + result = CMP_COMPARE(start1, start2); + + if(result == 0) { + start1 = (int) (current->int4.intpar2); + start2 = (int) (candidate->int4.intpar2); + result = -CMP_COMPARE(start1, start2); + } + return( result ); +} +int CMP_CALLMODEL compSparsity(const UNIONTYPE QSORTrec *current, const UNIONTYPE QSORTrec *candidate) +{ + int start1 = (int) (current->int4.intpar1), + start2 = (int) (candidate->int4.intpar1), + result = CMP_COMPARE(start1, start2); + + if(result == 0) { + start1 = (int) (current->int4.intpar2); + start2 = (int) (candidate->int4.intpar2); + result = -CMP_COMPARE(start1, start2); + } + + if(result == 0) { + start1 = (int) (current->int4.intval); + start2 = (int) (candidate->int4.intval); + result = CMP_COMPARE(start1, start2); + } + return( result ); +} +int CMP_CALLMODEL compAggregate(const UNIONTYPE QSORTrec *current, const UNIONTYPE QSORTrec *candidate) +{ + int index1 = (int) (current->pvoidint2.intval), + index2 = (int) (candidate->pvoidint2.intval); + lprec *lp = (lprec *) current->pvoidint2.ptr; + LPSREAL value1 = lp->orig_obj[index1], + value2 = lp->orig_obj[index2]; + + /* Smallest objective coefficient (largest contribution to OF) */ + int result = CMP_COMPARE(value1, value2); + + /* Smallest lower variable bound */ + if(result == 0) { + index1 += lp->rows; + index2 += lp->rows; + value1 = lp->orig_lowbo[index1]; + value2 = lp->orig_lowbo[index2]; + result = CMP_COMPARE(value1, value2); + } + + /* Largest upper variable bound */ + if(result == 0) { + value1 = lp->orig_upbo[index1]; + value2 = lp->orig_upbo[index2]; + result = -CMP_COMPARE(value1, value2); + } + return( result ); +} + +STATIC int presolve_rowdominance(presolverec *psdata, int *nCoeffChanged, int *nRowsRemoved, int *nVarsFixed, int *nSum) +{ + lprec *lp = psdata->lp; + MATrec *mat = lp->matA; + int i, ii, ib, ie, n, jb, je, jx, *coldel = NULL, status = RUNNING, item, + iCoeffChanged = 0, iRowRemoved = 0, iVarFixed = 0; + LPSREAL ratio, *rowvalues = NULL; + UNIONTYPE QSORTrec *QS = (UNIONTYPE QSORTrec *) calloc(lp->rows+1, sizeof(*QS)); + + /* Check if we were able to obtain working memory */ + if(QS == NULL) + return( status); + + /* A dominating row of variables always satisfy the following criteria: + 1) The starting column position is never lower, but could be the same + 2) The non-zero row count is always lower */ + n = 0; + for(i = firstActiveLink(psdata->EQmap); i != 0; i = nextActiveLink(psdata->EQmap, i)) { + /* Make sure we have no SOS or semi-continuous variables */ + jb = je = 0; + if((SOS_count(lp) > 0) || (lp->sc_vars > 0)) { + item = 0; + for(jb = presolve_nextcol(psdata, i, &item); jb >= 0; + jb = presolve_nextcol(psdata, i, &item)) { + jx = ROW_MAT_COLNR(jb); + if(SOS_is_member(lp->SOS, 0, jx) || is_semicont(lp, jx)) + break; + } + } + + /* Add to list if we are Ok */ + if(jb < 0) { + QS[n].int4.intval = i; + item = 0; + ii = presolve_nextcol(psdata, i, &item); + QS[n].int4.intpar1 = ROW_MAT_COLNR(ii); + QS[n].int4.intpar2 = presolve_rowlength(psdata, i); + n++; + } + } + if(n <= 1) + goto Finish; + QS_execute(QS, n, (findCompare_func *) compRedundant, NULL); + + /* Let us start from the top of the list, going forward and looking + for the longest possible dominating row */ + if(!allocREAL(lp, &rowvalues, lp->columns + 1, TRUE) || + !allocINT(lp, &coldel, lp->columns + 1, FALSE)) + goto Finish; + + for(ib = 0; ib < n; ib++) { + + /* Get row and check if it was previously eliminated */ + i = QS[ib].int4.intval; + if(i < 0) + continue; + + /* Load the non-zero row values */ + item = 0; + for(jb = presolve_nextcol(psdata, i, &item); jb >= 0; + jb = presolve_nextcol(psdata, i, &item)) { + jx = ROW_MAT_COLNR(jb); + rowvalues[jx] = ROW_MAT_VALUE(jb); + } + + for(ie = ib+1; ie < n; ie++) { + + /* Get row and check if it was previously eliminated */ + ii = QS[ie].int4.intval; + if(ii < 0) + continue; + +#ifdef Paranoia + if((QS[ib].int4.intpar1 > QS[ie].int4.intpar1) || + ((QS[ib].int4.intpar1 == QS[ie].int4.intpar1) && (QS[ib].int4.intpar2 < QS[ie].int4.intpar2))) + report(lp, SEVERE, "presolve_rowdominance: Invalid sorted row order\n"); +#endif + + /* Loop over every row member to confirm that the candidate + actually dominates in every position */ + if((lp->orig_rhs[i] == 0) && (lp->orig_rhs[ii] == 0)) + ratio = 0; + else if((lp->orig_rhs[i] != 0) && (lp->orig_rhs[ii] != 0)) + ratio = lp->orig_rhs[i] / lp->orig_rhs[ii]; + else + continue; + item = 0; + for(jb = presolve_nextcol(psdata, ii, &item); jb >= 0; + jb = presolve_nextcol(psdata, ii, &item)) { + jx = ROW_MAT_COLNR(jb); + if(rowvalues[jx] == 0) + break; + if(ratio == 0) + ratio = rowvalues[jx] / ROW_MAT_VALUE(jb); + else if(fabs(rowvalues[jx] - ratio*ROW_MAT_VALUE(jb)) > psdata->epsvalue) + break; + } + + /* "We have contact" */ + if(jb < 0) { + int sign_1 = 0, sign_j = 0; + + /* Need to fix any superset columns, but require that they have equal signs */ + coldel[0] = 0; + item = 0; + for(jb = presolve_nextcol(psdata, i, &item); jb >= 0; + jb = presolve_nextcol(psdata, i, &item)) { + jx = ROW_MAT_COLNR(jb); + if(mat_findelm(mat, ii, jx) <= 0) { + + /* Cancel if we detect a free or "quasi-free" variable */ + if((lp->orig_lowbo[lp->rows + jx] < 0) && + (lp->orig_upbo[lp->rows + jx] > 0)) { + coldel[0] = -1; + break; + } + + /* Ensure that we are feasible */ + else if((lp->orig_lowbo[lp->rows + jx] > 0) || + (lp->orig_upbo[lp->rows + jx] < 0)) { + report(lp, DETAILED, "presolve_rowdominate: Column %s is infeasible due to conflict in rows %s and %s\n", + get_col_name(lp, jx), get_row_name(lp, i), get_row_name(lp, ii)); + coldel[0] = -1; + break; + } + + /* Check consistency / uniformity of signs */ + sign_j = my_sign(ROW_MAT_VALUE(jb)); + sign_j = my_chsign(is_negative(lp, jx), sign_j); + if(coldel[0] == 0) { + sign_1 = sign_j; + coldel[++coldel[0]] = jx; + } + else if(sign_j == sign_1) { + coldel[++coldel[0]] = jx; + } + else { + coldel[0] = -1; + break; + } + } + } + + /* Force break / continuation if the superset columns were incompatible */ + if(coldel[0] < 0) + continue; + + /* Do the column fixing and deletion (check for infeasibility in the process) */ + for(jb = 1; jb <= coldel[0]; jb++) { + jx = coldel[jb]; + if(!presolve_colfix(psdata, jx, 0, TRUE, &iVarFixed)) { + status = presolve_setstatus(psdata, INFEASIBLE); + goto Finish; + } + presolve_colremove(psdata, jx, TRUE); + rowvalues[jx] = 0; + } + + /* Then delete the row */ + presolve_rowremove(psdata, ii, TRUE); + iRowRemoved++; + QS[ie].int4.intval = -ii; + } + } + + /* Clear the non-zero row values ahead of the next row candidate */ + ie = mat->row_end[i-1]; + ii = mat->row_end[i]; + for(; ie < ii; ie++) + rowvalues[ROW_MAT_COLNR(ie)] = 0; + + } +Finish: + FREE(QS); + FREE(rowvalues); + FREE(coldel); + + (*nCoeffChanged) += iCoeffChanged; + (*nRowsRemoved) += iRowRemoved; + (*nVarsFixed) += iVarFixed; + (*nSum) += iCoeffChanged + iRowRemoved + iVarFixed; + + return( status ); +} + +#if 0 +STATIC int presolve_coldominance01(presolverec *psdata, int *nConRemoved, int *nVarsFixed, int *nSum) +/* The current version of this routine eliminates binary variables + that are dominated via set coverage or unit knapsack constraints */ +{ + lprec *lp = psdata->lp; + MATrec *mat = lp->matA; + MYBOOL first; + int i, ii, ib, ie, n, jb, je, jx, jj, item, item2, + *coldel = NULL, status = RUNNING, iVarFixed = 0; + LPSREAL scale, rhsval, *colvalues = NULL; + UNIONTYPE QSORTrec *QS = (UNIONTYPE QSORTrec *) calloc(lp->columns+1, sizeof(*QS)); + + /* Check if we were able to obtain working memory */ + if(QS == NULL) + return( status); + if(lp->int_vars == 0) + goto Finish; + + /* A column dominates another binary variable column with the following criteria: + 1) The relative matrix non-zero entries are identical + 2) The relative objective coefficient is worse than the other; + if the OF coefficients are identical, we can delete an arbitrary variable */ + n = 0; + for(i = firstActiveLink(psdata->cols->varmap); i != 0; i = nextActiveLink(psdata->cols->varmap, i)) + if(is_binary(lp, i) && !SOS_is_member(lp->SOS, 0, i)) { + /* Make sure we have an all-binary, unit-coefficient row */ + je = mat->col_end[i]; + item = 0; + for(jb = presolve_nextrow(psdata, i, &item); jb >= 0; + jb = presolve_nextrow(psdata, i, &item)) { + jx = COL_MAT_ROWNR(jb); + if(COL_MAT_VALUE(jb) != 1) + break; + } + + /* Add to list if we are Ok */ + if(jb < 0) { + QS[n].int4.intval = i; + item = 0; + ii = presolve_nextrow(psdata, i, &item); + QS[n].int4.intpar1 = COL_MAT_ROWNR(ii); + ii = presolve_collength(psdata, i); + QS[n].int4.intpar2 = ii; + n++; + } + } + if(n <= 1) { + FREE(QS); + return( status ); + } + QS_execute(QS, n, (findCompare_func *) compRedundant, NULL); + + /* Let us start from the top of the list, going forward and looking + for the longest possible dominated column */ + if(!allocREAL(lp, &colvalues, lp->rows + 1, TRUE) || + !allocINT(lp, &coldel, lp->columns + 1, FALSE)) + goto Finish; + + for(ib = 0; ib < n; ib++) { + + /* Get column and check if it was previously eliminated */ + i = QS[ib].int4.intval; + if(i < 0) + continue; + + /* Load the non-zero column values */ + item = 0; + for(jb = presolve_nextrow(psdata, i, &item); jb >= 0; + jb = presolve_nextrow(psdata, i, &item)) { + jx = COL_MAT_ROWNR(jb); + colvalues[jx] = COL_MAT_VALUE(jb); + } + + coldel[0] = 0; + for(ie = ib+1; ie < n; ie++) { + + /* Insist on identical column lengths (sort is decending in column lengths) */ + ii = QS[ib].int4.intpar2 - QS[ie].int4.intpar2; + if(ii != 0) + break; + + /* Also insist on identical starting positions */ + ii = QS[ib].int4.intpar1 - QS[ie].int4.intpar1; + if(ii != 0) + break; + + /* Get column and check if it was previously eliminated */ + ii = QS[ie].int4.intval; + if(ii < 0) + continue; + + /* Also make sure that the variables have "compatible" bounds */ +#if 1 + if((fabs(my_reldiff(lp->orig_lowbo[lp->rows + i], lp->orig_lowbo[lp->rows + ii])) > psdata->epsvalue) || + (fabs(my_reldiff(lp->orig_upbo[lp->rows + i], lp->orig_upbo[lp->rows + ii] )) > psdata->epsvalue)) + continue; +#endif + +#ifdef Paranoia + if((QS[ib].int4.intpar1 > QS[ie].int4.intpar1) || + ((QS[ib].int4.intpar1 == QS[ie].int4.intpar1) && (QS[ib].int4.intpar2 < QS[ie].int4.intpar2))) + report(lp, SEVERE, "presolve_coldominance01: Invalid sorted column order\n"); +#endif + + /* Loop over every column member to confirm that the candidate is + relatively identical in every position */ + first = TRUE; + item = 0; + item2 = 0; + scale = 1; + for(jb = presolve_nextrow(psdata, ii, &item), + jj = presolve_nextrow(psdata, i, &item2); jb >= 0; + jb = presolve_nextrow(psdata, ii, &item), + jj = presolve_nextrow(psdata, i, &item2)) { + jx = COL_MAT_ROWNR(jb); + if(jx != COL_MAT_ROWNR(jj)) + break; + if(first) { + first = !first; + scale = colvalues[jx] / COL_MAT_VALUE(jb); + } + else { + if(fabs(colvalues[jx] - scale * COL_MAT_VALUE(jb)) > psdata->epsvalue) + break; + } + /* Also make sure we have a compatible RHS (since this version of the + dominance logic only applies to "sets") */ + rhsval = scale*lp->orig_rhs[jx] - 1.0; + /* if((rhsval < 0) || (rhsval > 1 + psdata->epsvalue)) */ + if(fabs(rhsval) > psdata->epsvalue) + break; + } + + /* "We have contact" */ + if(jb < 0) { + coldel[++coldel[0]] = ii; + QS[ie].int4.intval = -ii; + } + } + + /* Find the dominant column and delete / fix the others; + if there is a tie, simply delete the second candidate */ + ii = i; + for(jb = 1; jb <= coldel[0]; jb++) { + jx = coldel[jb]; + if(lp->orig_obj[jx] < lp->orig_obj[ii]) + swapINT(&ii, &coldel[jb]); + } + for(jb = 1; jb <= coldel[0]; jb++) { + jx = coldel[jb]; + if(!presolve_colfix(psdata, jx, lp->orig_lowbo[lp->rows+jx], TRUE, &iVarFixed)) { + status = presolve_setstatus(psdata, INFEASIBLE); + goto Finish; + } + presolve_colremove(psdata, jx, TRUE); + } + + /* Clear the non-zero row values ahead of the next row candidate */ + if(ib + 1 < n) { + ie = mat->col_end[i-1]; + ii = mat->col_end[i]; + for(; ie < ii; ie++) + colvalues[COL_MAT_ROWNR(ie)] = 0; + } + } +Finish: + FREE(QS); + FREE(colvalues); + FREE(coldel); + + (*nVarsFixed) += iVarFixed; + (*nSum) += iVarFixed; + + return( status ); +} +#else + +/* DEVELOPMENT/TEST CODE FOR POSSIBLE REPLACEMENT OF SIMILAR FUNCTION IN lp_presolve.c */ + +#define NATURAL int + +STATIC int presolve_coldominance01(presolverec *psdata, NATURAL *nConRemoved, NATURAL *nVarsFixed, NATURAL *nSum) +/* The current version of this routine eliminates binary variables + that are dominated via set coverage or unit knapsack constraints */ +{ + lprec *lp = psdata->lp; + MATrec *mat = lp->matA; + NATURAL i, ib, ie, jx, item, item2, + n = lp->int_vars, iVarFixed = 0, nrows = lp->rows, + *coldel = NULL; + int jb, jj, ii, + status = RUNNING; + LPSREAL rhsval = 0.0, + *colvalues = NULL, *colobj = NULL; + LLrec *sets = NULL; + UNIONTYPE QSORTrec *QS = (UNIONTYPE QSORTrec *) calloc(n+1, sizeof(*QS)); + + /* Check if we were able to obtain working memory */ + if(QS == NULL) + return( status); + if(n == 0) + goto Finish; + + /* Create list of set coverage and knapsack constraints */ + createLink(nrows, &sets, NULL); + for(i = firstActiveLink(psdata->rows->varmap); i != 0; i = nextActiveLink(psdata->rows->varmap, i)) { + if((lp->orig_rhs[i] < 0) || (psdata->rows->negcount[i] > 0)) + continue; + item = 0; + for(jb = presolve_nextcol(psdata, i, &item); jb >= 0; + jb = presolve_nextcol(psdata, i, &item)) { + jx = ROW_MAT_COLNR(jb); + if(!is_binary(lp, jx)) + break; + rhsval = ROW_MAT_VALUE(jb) - 1; + if(fabs(rhsval) > lp->epsvalue) + break; + } + if(jb < 0) + setLink(sets, i); + } + if(countActiveLink(sets) == 0) + goto Finish; + + /* A column dominates another binary variable column with the following criteria: + 1) The relative matrix non-zero entries are identical + 2) The relative objective coefficient is worse than the other; + if the OF coefficients are identical, we can delete an arbitrary variable */ + n = 0; + for(i = firstActiveLink(psdata->cols->varmap); i != 0; i = nextActiveLink(psdata->cols->varmap, i)) + if(is_binary(lp, i) && !SOS_is_member(lp->SOS, 0, i)) { + /* Make sure the column is member of at least one set */ + item = 0; + for(jb = presolve_nextrow(psdata, i, &item); jb >= 0; + jb = presolve_nextrow(psdata, i, &item)) { + jx = COL_MAT_ROWNR(jb); + if(isActiveLink(sets, jx)) + break; + } + + /* Add to list if set membership test is Ok */ + if(jb >= 0) { + QS[n].int4.intval = i; + item = 0; + ii = presolve_nextrow(psdata, i, &item); + QS[n].int4.intpar1 = COL_MAT_ROWNR(ii); + ii = presolve_collength(psdata, i); + QS[n].int4.intpar2 = ii; + n++; + } + } + if(n <= 1) { + FREE(QS); + return( status ); + } + QS_execute(QS, n, (findCompare_func *) compRedundant, NULL); + + /* Let us start from the top of the list, going forward and looking + for the longest possible dominated column */ + if(!allocREAL(lp, &colvalues, nrows + 1, TRUE) || + !allocREAL(lp, &colobj, n + 1, FALSE) || + !allocINT(lp, &coldel, n + 1, FALSE)) + goto Finish; + + for(ib = 0; ib < n; ib++) { + + /* Get column and check if it was previously eliminated */ + i = QS[ib].int4.intval; + if(!isActiveLink(psdata->cols->varmap, i)) + continue; + + /* Load the non-zero column values */ + item = 0; + for(jb = presolve_nextrow(psdata, i, &item); jb >= 0; + jb = presolve_nextrow(psdata, i, &item)) { + jx = COL_MAT_ROWNR(jb); + colvalues[jx] = COL_MAT_VALUE(jb); + } + + /* Store data for current column */ + coldel[0] = 1; + coldel[1] = i; + colobj[1] = lp->orig_obj[i]; + + /* Loop over all other columns to see if they have equal constraint coefficients */ + for(ie = ib+1; ie < n; ie++) { + + /* Check if this column was previously eliminated */ + ii = QS[ie].int4.intval; + if(!isActiveLink(psdata->cols->varmap, ii)) + continue; + + /* Insist on identical column lengths (sort is decending in column lengths) */ + ii = QS[ib].int4.intpar2 - QS[ie].int4.intpar2; + if(ii != 0) + break; + + /* Also insist on identical starting positions */ + ii = QS[ib].int4.intpar1 - QS[ie].int4.intpar1; + if(ii != 0) + break; + + /* Get column and check if it was previously eliminated */ + ii = QS[ie].int4.intval; + +#ifdef Paranoia + if((QS[ib].int4.intpar1 > QS[ie].int4.intpar1) || + ((QS[ib].int4.intpar1 == QS[ie].int4.intpar1) && (QS[ib].int4.intpar2 < QS[ie].int4.intpar2))) + report(lp, SEVERE, "presolve_coldominance01: Invalid sorted column order\n"); +#endif + + /* Loop over every column member to confirm that the candidate is identical in every row; + we also compute the minimal set order */ + rhsval = lp->infinite; + item = 0; + item2 = 0; + for(jb = presolve_nextrow(psdata, ii, &item), + jj = presolve_nextrow(psdata, i, &item2); jb >= 0; + jb = presolve_nextrow(psdata, ii, &item), + jj = presolve_nextrow(psdata, i, &item2)) { + jx = COL_MAT_ROWNR(jb); + if(jx != COL_MAT_ROWNR(jj)) + break; + if(isActiveLink(sets, jx)) + SETMIN(rhsval, lp->orig_rhs[jx]); + } + + /* "We have contact" */ + if(jb < 0) { + coldel[++coldel[0]] = ii; + colobj[coldel[0]] = lp->orig_obj[ii]; + } + } + + /* Find the dominant columns, fix and delete the others */ + if(coldel[0] > 1) { + qsortex(colobj+1, coldel[0], 0, sizeof(*colobj), FALSE, compareREAL, coldel+1, sizeof(*coldel)); + /* if(rhsval+lp->epsvalue < lp->infinite) { */ + jb = (NATURAL) (rhsval+lp->epsvalue); + /* printf("%f / %d\n", rhsval, jb); */ + for(jb++; jb <= coldel[0]; jb++) { + jx = coldel[jb]; + if(!presolve_colfix(psdata, jx, lp->orig_lowbo[nrows+jx], TRUE, &iVarFixed)) { + status = presolve_setstatus(psdata, INFEASIBLE); + goto Finish; + } + presolve_colremove(psdata, jx, TRUE); + } + /*} */ + } + + /* Clear the non-zero row values ahead of the next row candidate */ + if(ib + 1 < n) { + ie = mat->col_end[i-1]; + ii = mat->col_end[i]; + for(; ie < ii; ie++) + colvalues[COL_MAT_ROWNR(ie)] = 0; + } + } +Finish: + freeLink(&sets); + FREE(QS); + FREE(colvalues); + FREE(coldel); + FREE(colobj); + + (*nVarsFixed) += iVarFixed; + (*nSum) += iVarFixed; + + return( status ); +} + +#endif + +STATIC int presolve_aggregate(presolverec *psdata, int *nConRemoved, int *nVarsFixed, int *nSum) +/* This routine combines compatible or identical columns */ +{ + lprec *lp = psdata->lp; + MATrec *mat = lp->matA; + MYBOOL first; + int i, ii, ib, ie, ix, n, jb, je, jx, jj, item, item2, + *coldel = NULL, status = RUNNING, iVarFixed = 0; + LPSREAL scale, *colvalues = NULL; + UNIONTYPE QSORTrec *QScand = (UNIONTYPE QSORTrec *) calloc(lp->columns+1, sizeof(*QScand)); + + /* Check if we were able to obtain working memory */ + if(QScand == NULL) + return( status); + + /* Obtain the list of qualifying columns to be sorted */ + n = 0; + for(i = firstActiveLink(psdata->cols->varmap); i != 0; i = nextActiveLink(psdata->cols->varmap, i)) + if(!is_semicont(lp, i) && !SOS_is_member(lp->SOS, 0, i)) { + QScand[n].int4.intval = i; + item = 0; + ii = presolve_nextrow(psdata, i, &item); + QScand[n].int4.intpar1 = COL_MAT_ROWNR(ii); + ii = presolve_collength(psdata, i); + QScand[n].int4.intpar2 = ii; + n++; + } + if(n <= 1) { + FREE(QScand); + return( status ); + } + QS_execute(QScand, n, (findCompare_func *) compRedundant, NULL); + + /* Let us start from the top of the list, going forward and looking + for the longest possible identical column */ + if(!allocREAL(lp, &colvalues, lp->rows + 1, TRUE) || + !allocINT(lp, &coldel, lp->columns + 1, FALSE)) + goto Finish; + + for(ib = 0; ib < n; ib++) { + + /* Get column and check if it was previously eliminated */ + i = QScand[ib].int4.intval; + if(i < 0) + continue; + + /* Load the non-zero column values of this active/reference column */ + item = 0; + for(jb = presolve_nextrow(psdata, i, &item); jb >= 0; + jb = presolve_nextrow(psdata, i, &item)) { + jx = COL_MAT_ROWNR(jb); + colvalues[jx] = COL_MAT_VALUE(jb); + } + + coldel[0] = 0; + for(ie = ib+1; ie < n; ie++) { + + /* Insist on identical column lengths (sort is decending in column lengths) */ + ii = QScand[ib].int4.intpar2 - QScand[ie].int4.intpar2; + if(ii != 0) + break; + + /* Also insist on identical starting positions */ + ii = QScand[ib].int4.intpar1 - QScand[ie].int4.intpar1; + if(ii != 0) + break; + + /* Get column and check if it was previously eliminated */ + ii = QScand[ie].int4.intval; + if(ii < 0) + continue; + + /* Loop over every column member to confirm that the candidate is + relatively identical in every position */ + first = TRUE; + item = 0; + item2 = 0; + scale = 1; + for(jb = presolve_nextrow(psdata, ii, &item), + jj = presolve_nextrow(psdata, i, &item2); jb >= 0; + jb = presolve_nextrow(psdata, ii, &item), + jj = presolve_nextrow(psdata, i, &item2)) { + jx = COL_MAT_ROWNR(jb); + if(jx != COL_MAT_ROWNR(jj)) + break; + if(first) { + first = !first; + scale = colvalues[jx] / COL_MAT_VALUE(jb); + } + else { + if(fabs(colvalues[jx] - scale * COL_MAT_VALUE(jb)) > psdata->epsvalue) + break; + } + } + + /* "We have contact", store the column in the aggregation list */ + if(jb < 0) { + coldel[++coldel[0]] = ii; + QScand[ie].int4.intval = -ii; + } + } + + /* Sort the aggregation list if we have aggregation candidates */ + if(coldel[0] > 1) { + LPSREAL of, ofelim, fixvalue; + MYBOOL isint; + UNIONTYPE QSORTrec *QSagg = (UNIONTYPE QSORTrec *) calloc(coldel[0], sizeof(*QSagg)); + + for(jb = 1; jb <= coldel[0]; jb++) { + ii = jb - 1; + QSagg[ii].pvoidint2.intval = coldel[jb]; + QSagg[ii].pvoidint2.ptr = (void *) lp; + } + QS_execute(QSagg, coldel[0], (findCompare_func *) compAggregate, NULL); + + /* Process columns with identical OF coefficients */ + jb = 0; + while((status == RUNNING) && (jb < coldel[0])) { + ii = QSagg[jb].pvoidint2.intval; + of = lp->orig_obj[ii]; + isint = is_int(lp, ii); + je = jb + 1; + while((status == RUNNING) && (je < coldel[0]) && + (fabs(lp->orig_obj[ix = QSagg[je].pvoidint2.intval] - of) < psdata->epsvalue)) { + /* We now have two columns with equal OFs; the following cases are possible: + + 1) The first column has Inf upper bound, which means that it can + "absorb" compatible columns, which are then fixed at the appropriate + bounds (or zero in case of free variables). + 2) The first column has a -Inf lower bound, and further columns are + Inf upper bounds, which means steps towards forming a free variable + can be made. + 3) The first column is a non-Inf upper bound, in which case the bounds + are summed into a helper variable and the variable simply deleted. + The deleted variables' value are allocated/distributed via a simple + linear programming routine at postsolve. + + In the current version of this code, we only handle case 1. */ + if(is_int(lp, ix) == isint) { + ofelim = lp->orig_obj[ix]; + if(of == 0) + scale = 1; + else + scale = ofelim / of; + + if(my_infinite(lp, lp->orig_upbo[lp->rows+ii])) { /* Case 1 (recipe.mps) */ + if(is_unbounded(lp, ix)) + fixvalue = 0; + else if(ofelim < 0) + fixvalue = lp->orig_upbo[lp->rows+ix]; + else + fixvalue = lp->orig_lowbo[lp->rows+ix]; + if(my_infinite(lp, fixvalue)) + status = presolve_setstatus(psdata, UNBOUNDED); + else if(!presolve_colfix(psdata, ix, fixvalue, TRUE, &iVarFixed)) + status = presolve_setstatus(psdata, INFEASIBLE); + else + presolve_colremove(psdata, ix, TRUE); + } + + else if(my_infinite(lp, lp->orig_lowbo[lp->rows+ii])) { /* Case 2 */ + /* Do nothing */ + } + + else { /* Case 3 */ +#if 0 + /* Do nothing */ +#else + if(ofelim >= 0) { + fixvalue = lp->orig_lowbo[lp->rows+ix]; + lp->orig_upbo[lp->rows+ii] += scale * (lp->orig_upbo[lp->rows+ix] - fixvalue); + } + else { + fixvalue = lp->orig_upbo[lp->rows+ix]; + lp->orig_upbo[lp->rows+ii] -= scale * (fixvalue - lp->orig_lowbo[lp->rows+ix]); + } + if(my_infinite(lp, fixvalue)) + status = presolve_setstatus(psdata, UNBOUNDED); + else if(!presolve_colfix(psdata, ix, fixvalue, TRUE, &iVarFixed)) + status = presolve_setstatus(psdata, INFEASIBLE); + else + presolve_colremove(psdata, ix, TRUE); +#ifdef xxParanoia + if(presolve_rowlengthdebug(psdata) > 0) + report(lp, SEVERE, "presolve_aggregate: Invalid row count\n"); +#endif + psdata->forceupdate = TRUE; +#endif + } + } + je++; + } + jb = je; + } + FREE(QSagg); + } + + /* Clear the non-zero row values ahead of the next row candidate */ + if(ib + 1 < n) { + ie = mat->col_end[i-1]; + ii = mat->col_end[i]; + for(; ie < ii; ie++) + colvalues[COL_MAT_ROWNR(ie)] = 0; + } + } +Finish: + FREE(QScand); + FREE(colvalues); + FREE(coldel); + + (*nVarsFixed) += iVarFixed; + (*nSum) += iVarFixed; + + return( status ); +} + +STATIC int presolve_makesparser(presolverec *psdata, int *nCoeffChanged, int *nConRemove, int *nVarFixed, int *nSum) +{ + lprec *lp = psdata->lp; + MATrec *mat = lp->matA; + MYBOOL chsign; + int i, ii, ib, ix, k, n, jb, je, jl, jjb, jje, jjl, jx, jjx, item, itemEQ, + *nzidx = NULL, status = RUNNING, iObjChanged = 0, iCoeffChanged = 0, iConRemove = 0; + LPSREAL test, ratio, value, valueEQ, *valptr; + LLrec *EQlist = NULL; + UNIONTYPE QSORTrec *QS = (UNIONTYPE QSORTrec *) calloc(lp->rows, sizeof(*QS)); + + /* Check if we were able to obtain working memory */ + if((QS == NULL) || (psdata->rows->varmap->count == 0) || (psdata->EQmap->count == 0)) + return( status); + + /* Sort rows in 1) increasing order of start index, 2) decreasing length, and + 3) non-equalities (i.e. equalities last) */ + n = 0; + for(i = firstActiveLink(psdata->rows->varmap); i != 0; i = nextActiveLink(psdata->rows->varmap, i)) { + k = presolve_rowlength(psdata, i); + if(k >= 2) { + item = 0; + ii = presolve_nextcol(psdata, i, &item); +#ifdef Paranoia + if((ii < 0) || (item == 0)) { + report(lp, SEVERE, "presolve_makesparser: Unexpected zero-length row %d\n", i); + continue; + } +#endif + QS[n].int4.intval = my_chsign(is_constr_type(lp, i, EQ), i); + QS[n].int4.intpar1 = ROW_MAT_COLNR(ii); + QS[n].int4.intpar2 = k; + n++; + } + } + if(n <= 1) { + FREE(QS); + return( status ); + } + QS_execute(QS, n, (findCompare_func *) compSparsity, NULL); + + /* Create associated sorted map of indeces to equality constraints; + note that we need to have a unit offset for compatibility. */ + allocINT(lp, &nzidx, lp->columns + 1, FALSE); + createLink(lp->rows, &EQlist, NULL); + for(ib = 0; ib < n; ib++) { + i = QS[ib].int4.intval; + if(i < 0) + appendLink(EQlist, ib + 1); + } + + /* Loop over all equality masks */ + for(ix = firstActiveLink(EQlist); ix != 0; ) { + + /* Get row starting and ending positions of the mask */ + ii = abs(QS[ix-1].int4.intval); + jjb = QS[ix-1].int4.intpar1; + jje = presolve_lastcol(psdata, ii); + jje = ROW_MAT_COLNR(jje); + jjl = QS[ix-1].int4.intpar2; + + /* Scan the OF */ + i = 0; + chsign = is_chsign(lp, i); + test = ratio = 0.0; + itemEQ = 0; + nzidx[0] = 0; + while(((jjx = presolve_nextcol(psdata, ii, &itemEQ)) >= 0) && /*(itemEQ > 0) && */ + (fabs(test-ratio) < psdata->epsvalue)) { + valueEQ = ROW_MAT_VALUE(jjx); + if(valueEQ == 0) + continue; + k = ROW_MAT_COLNR(jjx); + value = lp->orig_obj[k]; + if(fabs(value) < psdata->epsvalue) + break; + if(ratio == 0.0) { + test = ratio = value / valueEQ; + } + else + test = value / valueEQ; + /* Store nz index */ + nzidx[++nzidx[0]] = k; + } + + /* We were successful if the equality was completely traversed; we will + then zero-out the OF coefficients and update the constant term. */ + if((itemEQ == 0) && (nzidx[0] > 0) && (fabs(test-ratio) < psdata->epsvalue)) { + for(k = 1; k <= nzidx[0]; k++) { + /* We should add recovery data for the zero'ed coefficient here */ + jx = nzidx[k]; + value = lp->orig_obj[jx]; + lp->orig_obj[jx] = 0.0; + /* Update counts */ + value = my_chsign(chsign, value); + if(value < 0) { + psdata->rows->negcount[i]--; + psdata->cols->negcount[jx]--; + } + else { + psdata->rows->plucount[i]--; + psdata->cols->plucount[jx]--; + } + iObjChanged++; + } + value = ratio * lp->orig_rhs[ii]; + presolve_adjustrhs(psdata, i, value, psdata->epsvalue); + } + + /* Scan for compatible constraints that can be masked for sparsity elimination */ + for(ib = 1; ib < ix; ib++) { + + /* Get row starting and ending positions of the target constraint */ + i = abs(QS[ib-1].int4.intval); + jb = QS[ib-1].int4.intpar1; + je = presolve_lastcol(psdata, i); + je = ROW_MAT_COLNR(je); + jl = QS[ib-1].int4.intpar2; + + /* Check if there is a window mismatch */ + if((jjb < jb) || (jje > je) || (jjl > jl)) + goto NextEQ; + + /* We have a window match; now check if there is a (scalar) member-by-member + match as well. We approach this in the following manner: + 1) Get first (or next) member of active equality + 2) Loop to matching member in the target constraint, but abandon if no match + 3) Set ratio if this is the first match, otherwise compare ratio and abandon + on mismatch + 4) Go to 1) of there are more elements in the active equality + 5) Proceed to do sparsity elimination if we were successful. */ + chsign = is_chsign(lp, i); + test = ratio = 0.0; + itemEQ = 0; + item = 0; + nzidx[0] = 0; + while(((jjx = presolve_nextcol(psdata, ii, &itemEQ)) >= 0) && /*(itemEQ > 0) &&*/ + (fabs(test-ratio) < psdata->epsvalue)) { + valueEQ = ROW_MAT_VALUE(jjx); + if(valueEQ == 0) + continue; + jx = 0; + jjx = ROW_MAT_COLNR(jjx); + for(k = presolve_nextcol(psdata, i, &item); + (jx < jjx) && (item > 0); + k = presolve_nextcol(psdata, i, &item)) { + jx = ROW_MAT_COLNR(k); + /* Do we have a column index match? */ + if(jx == jjx) { + value = ROW_MAT_VALUE(k); + /* Abandon if we have a zero value */ + if(value == 0) + goto NextEQ; + if(ratio == 0.0) { + test = ratio = value / valueEQ; + } + else + test = value / valueEQ; + /* Store nz index */ + nzidx[++nzidx[0]] = k; + break; + } + /* Give up matching if there is overshooting */ + else if(jx > jjx) + goto NextEQ; + } + } + + /* We were successful if the equality was completely traversed */ + if((itemEQ == 0) && (nzidx[0] > 0) && (fabs(test-ratio) < psdata->epsvalue)) { + + /* Check if we have found parametrically indentical constraints */ + if(presolve_rowlength(psdata, i) == presolve_rowlength(psdata,ii)) { + + value = lp->orig_rhs[i]; + valueEQ = lp->orig_rhs[ii]; + + /* Are they both equalities? */ + if(is_constr_type(lp, i, EQ)) { + /* Determine applicable ratio for the RHS */ + if(fabs(valueEQ) < psdata->epsvalue) { + if(fabs(value) < psdata->epsvalue) + test = ratio; + else + test = lp->infinite; + } + else + test = value / valueEQ; + /* Check for infeasibility */ + if(fabs(test-ratio) > psdata->epsvalue) { + report(lp, NORMAL, "presolve_sparser: Infeasibility of relatively equal constraints %d and %d\n", + i, ii); + status = presolve_setstatus(psdata, INFEASIBLE); + goto Finish; + } + /* Otherwise we can delete a redundant constraint */ + else { + removeLink(EQlist, i); + presolve_rowremove(psdata, i, TRUE); + MEMCOPY(&QS[ib-1], &QS[ib], n-ib); + n--; + iConRemove++; + } + } + /* ... if not, then delete the inequality, since the equality dominates */ + else { + /* First verify feasibility of the RHS */ + if((value+psdata->epsvalue < valueEQ) || + (value-get_rh_range(lp, i)-psdata->epsvalue > valueEQ)) { + report(lp, NORMAL, "presolve_sparser: Infeasibility of relatively equal RHS values for %d and %d\n", + i, ii); + status = presolve_setstatus(psdata, INFEASIBLE); + goto Finish; + } + presolve_rowremove(psdata, i, TRUE); + MEMCOPY(&QS[ib-1], &QS[ib], n-ib); + n--; + iConRemove++; + } + } + + /* Otherwise zero-out the target constraint coefficients and update the RHS */ + else { + for(k = 1; k <= nzidx[0]; k++) { + /* We should add recovery data for the zero'ed coefficient here */ + jjx = nzidx[k]; + jx = ROW_MAT_COLNR(jjx); + valptr = &ROW_MAT_VALUE(jjx); + value = *valptr; + *valptr = 0.0; + /* Update counts */ + value = my_chsign(chsign, value); + if(value < 0) { + psdata->rows->negcount[i]--; + psdata->cols->negcount[jx]--; + } + else { + psdata->rows->plucount[i]--; + psdata->cols->plucount[jx]--; + } + iCoeffChanged++; + } + value = ratio * lp->orig_rhs[ii]; + presolve_adjustrhs(psdata, i, value, psdata->epsvalue); + } + } + + } + /* Get next equality index */ +NextEQ: + ix = nextActiveLink(EQlist, ix); + } + +Finish: + FREE(QS); + freeLink(&EQlist); + FREE(nzidx); + + /* Let us condense the matrix if we modified the constraint matrix */ + if(iCoeffChanged > 0) { + mat->row_end_valid = FALSE; + mat_zerocompact(mat); + presolve_validate(psdata, TRUE); +#ifdef PresolveForceUpdateMax + mat_computemax(mat /* , FALSE */); +#endif + psdata->forceupdate = TRUE; + } + + (*nConRemove) += iConRemove; + (*nCoeffChanged) += iCoeffChanged + iObjChanged; + (*nSum) += iCoeffChanged + iObjChanged + iConRemove; + + return( status ); +} + +STATIC int presolve_SOS1(presolverec *psdata, int *nCoeffChanged, int *nConRemove, int *nVarFixed, int *nSOS, int *nSum) +{ + lprec *lp = psdata->lp; + MYBOOL candelete, SOS_GUBactive = FALSE; + int iCoeffChanged = 0, iConRemove = 0, iSOS = 0, + i,ix,iix, j,jx,jjx, status = RUNNING; + LPSREAL Value1; + MATrec *mat = lp->matA; + + for(i = lastActiveLink(psdata->rows->varmap); i > 0; ) { + candelete = FALSE; + Value1 = get_rh(lp, i); + jx = get_constr_type(lp, i); + if((Value1 == 1) && (presolve_rowlength(psdata, i) >= MIN_SOS1LENGTH) && + ((SOS_GUBactive && (jx != GE)) || (!SOS_GUBactive && (jx == LE)))) { + jjx = mat->row_end[i-1]; + iix = mat->row_end[i]; + for(; jjx < iix; jjx++) { + j = ROW_MAT_COLNR(jjx); + if(!isActiveLink(psdata->cols->varmap, j)) + continue; + if(!is_binary(lp, j) || (ROW_MAT_VALUE(jjx) != 1)) + break; + } + if(jjx >= iix) { + char SOSname[16]; + + /* Define a new SOS instance */ + ix = SOS_count(lp) + 1; + sprintf(SOSname, "SOS_%d", ix); + ix = add_SOS(lp, SOSname, 1, ix, 0, NULL, NULL); + if(jx == EQ) + SOS_set_GUB(lp->SOS, ix, TRUE); + Value1 = 0; + jjx = mat->row_end[i-1]; + for(; jjx < iix; jjx++) { + j = ROW_MAT_COLNR(jjx); + if(!isActiveLink(psdata->cols->varmap, j)) + continue; + Value1 += 1; + append_SOSrec(lp->SOS->sos_list[ix-1], 1, &j, &Value1); + } + candelete = TRUE; + iSOS++; + } + } + + /* Get next row and do the deletion of the previous, if indicated */ + ix = i; + i = prevActiveLink(psdata->rows->varmap, i); + if(candelete) { + presolve_rowremove(psdata, ix, TRUE); + iConRemove++; + } + } + if(iSOS) + report(lp, DETAILED, "presolve_SOS1: Converted %5d constraints to SOS1.\n", iSOS); + clean_SOSgroup(lp->SOS, (MYBOOL) (iSOS > 0)); + + (*nCoeffChanged) += iCoeffChanged; + (*nConRemove) += iConRemove; + (*nSOS) += iSOS; + (*nSum) += iCoeffChanged+iConRemove+iSOS; + + return( status ); +} + +STATIC int presolve_boundconflict(presolverec *psdata, int baserowno, int colno) +{ + LPSREAL Value1, Value2; + lprec *lp = psdata->lp; + MATrec *mat = lp->matA; + int ix, item = 0, + status = RUNNING; + + if(baserowno <= 0) do { + ix = presolve_nextrow(psdata, colno, &item); + if(ix < 0) + return( status ); + baserowno = COL_MAT_ROWNR(ix); + } while(presolve_rowlength(psdata, baserowno) != 1); + Value1 = get_rh_upper(lp, baserowno), + Value2 = get_rh_lower(lp, baserowno); + + if(presolve_singletonbounds(psdata, baserowno, colno, &Value2, &Value1, NULL)) { + int iix; + item = 0; + for(ix = presolve_nextrow(psdata, colno, &item); + ix >= 0; ix = presolve_nextrow(psdata, colno, &item)) { + iix = COL_MAT_ROWNR(ix); + if((iix != baserowno) && + (presolve_rowlength(psdata, iix) == 1) && + !presolve_altsingletonvalid(psdata, iix, colno, Value2, Value1)) { + status = presolve_setstatus(psdata, INFEASIBLE); + break; + } + } + } + else + status = presolve_setstatus(psdata, INFEASIBLE); + return( status ); +} + +STATIC int presolve_columns(presolverec *psdata, int *nCoeffChanged, int *nConRemove, int *nVarFixed, int *nBoundTighten, int *nSum) +{ + lprec *lp = psdata->lp; + MYBOOL candelete, isOFNZ, unbounded, + probefix = is_presolve(lp, PRESOLVE_PROBEFIX), +#if 0 + probereduce = is_presolve(lp, PRESOLVE_PROBEREDUCE), +#endif + colfixdual = is_presolve(lp, PRESOLVE_COLFIXDUAL); + int iCoeffChanged = 0, iConRemove = 0, iVarFixed = 0, iBoundTighten = 0, + status = RUNNING, ix, j, countNZ, item; + LPSREAL Value1; + + for(j = firstActiveLink(psdata->cols->varmap); (j != 0) && (status == RUNNING); ) { + + /* Don't presolve members SOS'es */ + if(SOS_is_member(lp->SOS, 0, j)) { + j = nextActiveLink(psdata->cols->varmap, j); + continue; + } + + /* Initialize */ + countNZ = presolve_collength(psdata, j); + isOFNZ = isnz_origobj(lp, j); + Value1 = get_lowbo(lp, j); + unbounded = is_unbounded(lp, j); + + /* Clear unnecessary semicont-definitions */ + if((lp->sc_vars > 0) && (Value1 == 0) && is_semicont(lp, j)) + set_semicont(lp, j, FALSE); + + candelete = FALSE; + item = 0; + ix = lp->rows + j; + + /* Check if the variable is unused */ + if((countNZ == 0) && !isOFNZ) { + if(Value1 != 0) + report(lp, DETAILED, "presolve_columns: Eliminated unused variable %s\n", + get_col_name(lp,j)); + candelete = TRUE; + } + + /* Check if the variable has a cost, but is not limited by constraints */ + else if((countNZ == 0) && isOFNZ) { + if(lp->orig_obj[j] < 0) + Value1 = get_upbo(lp, j); + if(fabs(Value1) >= lp->infinite) { + report(lp, DETAILED, "presolve_columns: Unbounded variable %s\n", + get_col_name(lp,j)); + status = presolve_setstatus(psdata, UNBOUNDED); + } + else { + /* Fix the value at its best bound */ + report(lp, DETAILED, "presolve_columns: Eliminated trivial variable %s fixed at %g\n", + get_col_name(lp,j), Value1); + candelete = TRUE; + } + } + + /* Check if the variable can be eliminated because it is fixed */ + else if(isOrigFixed(lp, ix)) { + if(countNZ > 0) { + status = presolve_boundconflict(psdata, -1, j); + if(status != RUNNING) + break; + } + report(lp, DETAILED, "presolve_columns: Eliminated variable %s fixed at %g\n", + get_col_name(lp,j), Value1); + candelete = TRUE; + } + +#if 0 + /* Merge OF-constraint column doubleton in equality constraint (if it has + not been captured by the singleton free variable rule above) */ + else if((countNZ == 1) && isOFNZ && + ((i = presolve_nextrow(psdata, j, &item)) >= 0) && + is_constr_type(lp, i = COL_MAT_ROWNR(i), EQ)) { + MATrec *mat = lp->matA; + + /* Merge the constraint into the OF */ + Value1 = lp->orig_obj[j] / get_mat(lp, i, j); + for(jx = mat->row_end[i-1]; jx < mat->row_end[i]; jx++) { + jjx = ROW_MAT_COLNR(jx); + lp->orig_obj[jjx] -= Value1 * ROW_MAT_VALUE(jx); + } + Value2 = lp->orig_rhs[i]; + presolve_adjustrhs(psdata, 0, Value1 * Value2, 0.0); + + /* Verify feasibility */ + Value2 /= get_mat(lp, i, j); + if((Value2 < get_lowbo(lp, j)) || (Value2 > get_upbo(lp, j))) { + status = presolve_setstatus(psdata, INFEASIBLE); + break; + } + + /* Do column (and flag row) deletion */ + presolve_rowremove(psdata, i, TRUE); + psdata->forceupdate = TRUE; + iConRemove++; + candelete = TRUE; + } +#endif + /* Look for opportunity to fix column based on the dual */ + else if(colfixdual && presolve_colfixdual(psdata, j, &Value1, &status)) { + if(my_infinite(lp, Value1)) { + report(lp, DETAILED, "presolve_columns: Unbounded variable %s\n", + get_col_name(lp,j)); + status = presolve_setstatus(psdata, UNBOUNDED); + } + else { + /* Fix the value at its best bound */ + report(lp, DETAILED, "presolve_columns: Eliminated dual-zero variable %s fixed at %g\n", + get_col_name(lp,j), Value1); + candelete = TRUE; + } + } + + /* Do probing of binary variables to see if we can fix them */ + else if(probefix && is_binary(lp, j) && + presolve_probefix01(psdata, j, &Value1)) { + report(lp, DETAILED, "presolve_columns: Fixed binary variable %s at %g\n", + get_col_name(lp,j), Value1); + candelete = TRUE; + } +#if 0 + /* Do probing of binary variables to see if we can tighten their coefficients */ + else if(probereduce && is_binary(lp, j) && + (ix = presolve_probetighten01(psdata, j) > 0)) { + report(lp, DETAILED, "presolve_columns: Tightened coefficients for binary variable %s in %d rows\n", + get_col_name(lp,j), ix); + iCoeffChanged += ix; + psdata->forceupdate = TRUE; + } +#endif + + /* Perform fixing and deletion, if indicated */ + if(candelete) { + + /* If we have a SOS1 member variable fixed at a non-zero value, then we + must fix the other member variables at zero and delete the SOS(es) */ + if((Value1 != 0) && SOS_is_member(lp->SOS, 0, j)) { + ix = iVarFixed; + if(!presolve_fixSOS1(psdata, j, Value1, &iConRemove, &iVarFixed)) + status = presolve_setstatus(psdata, INFEASIBLE); + if(iVarFixed > ix) + psdata->forceupdate = TRUE; + break; + } + else { + if(!presolve_colfix(psdata, j, Value1, TRUE, &iVarFixed)) { + status = presolve_setstatus(psdata, INFEASIBLE); + break; + } + j = presolve_colremove(psdata, j, TRUE); + } + } + else + j = nextActiveLink(psdata->cols->varmap, j); + } + + /* Remove any "hanging" empty row and columns */ + if(status == RUNNING) + status = presolve_shrink(psdata, &iConRemove, &iVarFixed); + + (*nCoeffChanged) += iCoeffChanged; + (*nConRemove) += iConRemove; + (*nVarFixed) += iVarFixed; + (*nBoundTighten) += iBoundTighten; + (*nSum) += iCoeffChanged+iConRemove+iVarFixed+iBoundTighten; + + return( status ); +} + +STATIC int presolve_freeandslacks(presolverec *psdata, int *nCoeffChanged, int *nConRemove, int *nVarFixed, int *nSum) +{ + lprec *lp = psdata->lp; + MYBOOL isOFNZ, unbounded, + impliedfree = is_presolve(lp, PRESOLVE_IMPLIEDFREE), + impliedslack = is_presolve(lp, PRESOLVE_IMPLIEDSLK); + int iCoeffChanged = 0, iConRemove = 0, iVarFixed = 0, + status = RUNNING, i, ix, j, countNZ; + LPSREAL coeff_bl, coeff_bu; + MATrec *mat = lp->matA; + + if(impliedfree || impliedslack) + for(j = firstActiveLink(psdata->cols->varmap); j != 0; ) { + + /* Check and initialize */ + if((presolve_collength(psdata, j) != 1) || + is_int(lp, j) || is_semicont(lp, j) || + !presolve_candeletevar(psdata, j)) { + j = nextActiveLink(psdata->cols->varmap, j); + continue; + } + ix = 0; + i = COL_MAT_ROWNR(presolve_nextrow(psdata, j, &ix)); + isOFNZ = isnz_origobj(lp, j); + countNZ = presolve_rowlength(psdata, i); + coeff_bu = get_upbo(lp, j); + coeff_bl = get_lowbo(lp, j); + unbounded = my_infinite(lp, coeff_bl) && my_infinite(lp, coeff_bu); + ix = lp->rows + j; + + /* Eliminate singleton free variable and its associated constraint */ + if(impliedfree && unbounded && + presolve_impliedcolfix(psdata, i, j, TRUE)) { + report(lp, DETAILED, "presolve_freeandslacks: Eliminated free variable %s and row %s\n", + get_col_name(lp, j), get_row_name(lp, i)); + presolve_rowremove(psdata, i, TRUE); + iConRemove++; + j = presolve_colremove(psdata, j, TRUE); + iVarFixed++; + } + + /* Check for implied slack variable in equality constraint */ + else if(impliedslack && + (countNZ > 1) && + is_constr_type(lp, i, EQ) && + presolve_impliedcolfix(psdata, i, j, FALSE)) { + report(lp, DETAILED, "presolve_freeandslacks: Eliminated implied slack variable %s via row %s\n", + get_col_name(lp, j), get_row_name(lp, i)); + psdata->forceupdate = TRUE; + j = presolve_colremove(psdata, j, TRUE); + iVarFixed++; + } + + /* Check for implied (generalized) slack variable in inequality constraint */ + else if(impliedslack && !isOFNZ && + my_infinite(lp, coeff_bu) && /* Consider removing this test */ +#if 0 /* Force zero-bounded implicit slack */ + (coeff_bl == 0)) && +#else + !my_infinite(lp, coeff_bl) && +#endif + (countNZ > 1) && + !is_constr_type(lp, i, EQ)) { + LPSREAL *target, + ValueA = COL_MAT_VALUE(presolve_lastrow(psdata, j)); +#if 0 + coeff_bu = get_rh_upper(lp, i); + coeff_bl = get_rh_lower(lp, i); + if(!presolve_singletonbounds(psdata, i, j, &coeff_bl, &coeff_bu, &ValueA)) { + status = presolve_setstatus(psdata, INFEASIBLE); + break; + } +#endif + if((coeff_bl != 0) && !my_infinite(lp, coeff_bl) && !my_infinite(lp, coeff_bu)) + coeff_bu -= coeff_bl; + + /* If the coefficient is negative, reduce the lower bound / increase range */ + if(ValueA > 0) { + target = &lp->orig_upbo[i]; + if(!my_infinite(lp, *target)) { + if(my_infinite(lp, coeff_bu)) { + *target = lp->infinite; + psdata->forceupdate = TRUE; + } + else { + *target += ValueA * coeff_bu; + *target = presolve_roundrhs(lp, *target, FALSE); + } + } + } + /* Otherwise see if the upper bound should be changed */ + else { + target = &lp->orig_rhs[i]; + if(my_infinite(lp, coeff_bu) || my_infinite(lp, *target)) { + /* Do we suddenly find that the constraint becomes redundant? (e226.mps) */ + if(my_infinite(lp, lp->orig_upbo[i])) { + presolve_rowremove(psdata, i, TRUE); + iConRemove++; + } + /* Or does the upper bound of a ranged constraint become Inf? */ + else { + *target -= lp->orig_upbo[i]; + *target = -(*target); + mat_multrow(mat, i, -1); + lp->orig_upbo[i] = lp->infinite; + psdata->forceupdate = TRUE; + } + } + else { + *target -= ValueA * coeff_bu; + *target = presolve_roundrhs(lp, *target, FALSE); + } + } + presolve_colfix(psdata, j, coeff_bl, TRUE, &iVarFixed); + report(lp, DETAILED, "presolve_freeandslacks: Eliminated duplicate slack variable %s via row %s\n", + get_col_name(lp, j), get_row_name(lp, i)); + j = presolve_colremove(psdata, j, TRUE); + } + + /* Go to next column */ + else + j = nextActiveLink(psdata->cols->varmap, j); + } + + (*nCoeffChanged) += iCoeffChanged; + (*nConRemove) += iConRemove; + (*nVarFixed) += iVarFixed; + (*nSum) += iCoeffChanged+iConRemove+iVarFixed; + + return( status ); +} + +STATIC int presolve_preparerows(presolverec *psdata, int *nBoundTighten, int *nSum) +{ + lprec *lp = psdata->lp; + MYBOOL impliedfree = is_presolve(lp, PRESOLVE_IMPLIEDFREE), + tightenbounds = is_presolve(lp, PRESOLVE_BOUNDS); + int iRangeTighten = 0, iBoundTighten = 0, status = RUNNING, i, j; + LPSREAL losum, upsum, lorhs, uprhs, epsvalue = psdata->epsvalue; + MATrec *mat = lp->matA; + + for(i = lastActiveLink(psdata->rows->varmap); i > 0; i = prevActiveLink(psdata->rows->varmap, i)) { + + /* First identify any full row infeasibilities */ + j = presolve_rowlengthex(psdata, i); +#ifdef Paranoia + if(!presolve_testrow(psdata, nextActiveLink(psdata->rows->varmap, i))) { +#else + if((j > 1) && !psdata->forceupdate && !presolve_rowfeasible(psdata, i, FALSE)) { +#endif + status = presolve_setstatus(psdata, INFEASIBLE); + break; + } + + /* Do bound (LHS) or constraint range (RHS) tightening if we will later identify + implied free variables (tends to produce degeneracy otherwise) */ + if(impliedfree && (j > 1) && mat_validate(mat)){ + + /* Look for opportunity to tighten constraint bounds (and check for feasibility again) */ + presolve_range(lp, i, psdata->rows, &losum, &upsum); + lorhs = get_rh_lower(lp, i); + uprhs = get_rh_upper(lp, i); + if((losum > MIN(upsum, uprhs)+epsvalue) || + (upsum < MAX(losum, lorhs)-epsvalue)) { + report(lp, NORMAL, "presolve_preparerows: Variable bound / constraint value infeasibility in row %s.\n", + get_row_name(lp, i)); + status = presolve_setstatus(psdata, INFEASIBLE); + break; + } + + if(losum > lorhs+epsvalue) { + set_rh_lower(lp, i, presolve_roundrhs(lp, losum, TRUE)); + iRangeTighten++; + } + if(upsum < uprhs-epsvalue) { + set_rh_upper(lp, i, presolve_roundrhs(lp, upsum, FALSE)); + iRangeTighten++; + } + } + + /* Seek to tighten bounds on individual variables */ + if(tightenbounds && mat_validate(mat)) { +#if 1 + if(j > 1) + status = presolve_rowtighten(psdata, i, &iBoundTighten, FALSE); +#else + if((MIP_count(lp) > 0) && (j > 1)) + status = presolve_rowtighten(psdata, i, &iBoundTighten, TRUE); +#endif + } + + /* Look for opportunity to convert ranged constraint to equality-type */ + if(!is_constr_type(lp, i, EQ) && (get_rh_range(lp, i) < epsvalue)) { + presolve_setEQ(psdata, i); + iRangeTighten++; + } + } + + psdata->forceupdate |= (MYBOOL) (iBoundTighten > 0); + (*nBoundTighten) += iBoundTighten+iRangeTighten; + (*nSum) += iBoundTighten+iRangeTighten; + + return( status ); +} + +STATIC int presolve_rows(presolverec *psdata, int *nCoeffChanged, int *nConRemove, int *nVarFixed, int *nBoundTighten, int *nSum) +{ + lprec *lp = psdata->lp; + MYBOOL candelete; + int iCoeffChanged = 0, iConRemove = 0, iVarFixed = 0, iBoundTighten = 0, + status = RUNNING, i,ix, j,jx, item; + LPSREAL Value1, Value2, losum, upsum, lorhs, uprhs, epsvalue = psdata->epsvalue; + MATrec *mat = lp->matA; + + for(i = lastActiveLink(psdata->rows->varmap); (i > 0) && (status == RUNNING); ) { + + candelete = FALSE; + + /* First identify any full row infeasibilities + Note: Handle singletons below to ensure that conflicting multiple singleton + rows with this variable do not provoke notice of infeasibility */ + j = presolve_rowlengthex(psdata, i); + if((j > 1) && + !psdata->forceupdate && !presolve_rowfeasible(psdata, i, FALSE)) { + status = presolve_setstatus(psdata, INFEASIBLE); + break; + } + presolve_range(lp, i, psdata->rows, &losum, &upsum); + lorhs = get_rh_lower(lp, i); + uprhs = get_rh_upper(lp, i); +#ifdef Paranoia + if((losum>uprhs+epsvalue) || (upsum= -epsvalue)) { +#else /* Version that deletes bound-fixed columns here */ + if((j == 1) && (uprhs-lorhs >= -epsvalue)) { +#endif + item = 0; + jx = presolve_nextcol(psdata, i, &item); + j = ROW_MAT_COLNR(jx); + + /* Make sure we don't have conflicting other singleton rows with this variable */ + Value1 = lp->infinite; + Value2 = -Value1; + if(presolve_collength(psdata, j) > 1) + status = presolve_boundconflict(psdata, i, j); + else if(is_constr_type(lp, i, EQ)) { + Value2 = ROW_MAT_VALUE(jx); + Value1 = lp->orig_rhs[i] / Value2; + if(Value2 < 0) + swapREAL(&losum, &upsum); + if((Value1 < losum / my_if(my_infinite(lp, losum), my_sign(Value2), Value2) - epsvalue) || + (Value1 > upsum / my_if(my_infinite(lp, upsum), my_sign(Value2), Value2) + epsvalue)) + status = presolve_setstatus(psdata, INFEASIBLE); + Value2 = Value1; + } + + /* Proceed to fix and remove variable (if it is not a SOS member) */ + if(status == RUNNING) { + if((fabs(Value2-Value1) < epsvalue) && (fabs(Value2) > epsvalue)) { + MYBOOL isSOS = (MYBOOL) (SOS_is_member(lp->SOS, 0, j) != FALSE), + deleteSOS = isSOS && presolve_candeletevar(psdata, j); + if((Value1 != 0) && deleteSOS) { + if(!presolve_fixSOS1(psdata, j, Value1, &iConRemove, &iVarFixed)) + status = presolve_setstatus(psdata, INFEASIBLE); + psdata->forceupdate = TRUE; + } + else { + if(!presolve_colfix(psdata, j, Value1, (MYBOOL) !isSOS, NULL)) + status = presolve_setstatus(psdata, INFEASIBLE); + else if(isSOS && !deleteSOS) + iBoundTighten++; + else { + presolve_colremove(psdata, j, TRUE); + iVarFixed++; + } + } + } + else + status = presolve_colsingleton(psdata, i, j, &iBoundTighten); + } + if(status == INFEASIBLE) { + break; + } + if(psdata->forceupdate != AUTOMATIC) { + /* Store dual recovery information and code for deletion */ + presolve_storeDualUndo(psdata, i, j); + candelete = TRUE; + } + } + + /* Delete non-empty rows and variables that are completely determined at zero */ + else if((j > 0) /* Only examine non-empty rows, */ + && (fabs(lp->orig_rhs[i]) < epsvalue) /* .. and the current RHS is zero, */ + && ((psdata->rows->plucount[i] == 0) || + (psdata->rows->negcount[i] == 0)) /* .. and the parameter signs are all equal, */ + && (psdata->rows->pluneg[i] == 0) /* .. and no (quasi) free variables, */ + && (is_constr_type(lp, i, EQ) +#ifdef FindImpliedEqualities + || (fabs(lorhs-upsum) < epsvalue) /* Convert to equalities */ + || (fabs(uprhs-losum) < epsvalue) /* Convert to equalities */ +#endif + ) + ) { + + /* Delete the columns we can delete */ + status = presolve_rowfixzero(psdata, i, &iVarFixed); + + /* Then delete the row, which is redundant */ + if(status == RUNNING) + candelete = TRUE; + } + + + /* Check if we have a constraint made redundant through bounds on individual + variables; such constraints are often referred to as "forcing constraints" */ + else if((losum >= lorhs-epsvalue) && + (upsum <= uprhs+epsvalue)) { + + /* Check if we can also fix all the variables */ + if(fabs(losum-upsum) < epsvalue) { + item = 0; + jx = presolve_nextcol(psdata, i, &item); + while((status == RUNNING) && (jx >= 0)) { + j = ROW_MAT_COLNR(jx); + Value1 = get_lowbo(lp, j); + if(presolve_colfix(psdata, j, Value1, TRUE, &iVarFixed)) { + presolve_colremove(psdata, j, TRUE); + iVarFixed++; + jx = presolve_nextcol(psdata, i, &item); + } + else + status = presolve_setstatus(psdata, INFEASIBLE); + } + } + candelete = TRUE; + } + + /* Get next row and do the deletion of the previous, if indicated */ + ix = i; + i = prevActiveLink(psdata->rows->varmap, i); + if(candelete) { + presolve_rowremove(psdata, ix, TRUE); + iConRemove++; + } + } + + /* Remove any "hanging" empty row and columns */ + if(status == RUNNING) + status = presolve_shrink(psdata, &iConRemove, &iVarFixed); + + (*nCoeffChanged) += iCoeffChanged; + (*nConRemove) += iConRemove; + (*nVarFixed) += iVarFixed; + (*nBoundTighten) += iBoundTighten; + (*nSum) += iCoeffChanged+iConRemove+iVarFixed+iBoundTighten; + + return( status ); +} + +/* Top level presolve routine */ +STATIC int presolve(lprec *lp) +{ + int status = RUNNING, + i, j = 0, jx = 0, jjx = 0, k, oSum, + iCoeffChanged = 0, iConRemove = 0, iVarFixed = 0, iBoundTighten = 0, iSOS = 0, iSum = 0, + nCoeffChanged = 0, nConRemove = 0, nVarFixed = 0, nBoundTighten = 0, nSOS = 0, nSum = 0; + LPSREAL Value1, Value2, initrhs0 = lp->orig_rhs[0]; + presolverec *psdata = NULL; + MATrec *mat = lp->matA; + +#if 0 + lp->do_presolve = PRESOLVE_ROWS; + report(lp, IMPORTANT, "presolve: Debug override of presolve setting to %d\n", lp->do_presolve); +#endif + + /* Lock the variable mapping arrays and counts ahead of any row/column + deletion or creation in the course of presolve, solvelp or postsolve */ + if(!lp->varmap_locked) + varmap_lock(lp); + + /* Check if we have already done presolve */ + mat_validate(mat); + if(lp->wasPresolved) { + if(SOS_count(lp) > 0) { + SOS_member_updatemap(lp->SOS); + make_SOSchain(lp, (MYBOOL) ((lp->do_presolve & PRESOLVE_LASTMASKMODE) != PRESOLVE_NONE)); + } + if((lp->solvecount > 1) && (lp->bb_level < 1) && + ((lp->scalemode & SCALE_DYNUPDATE) != 0)) + auto_scale(lp); + if(!lp->basis_valid) { + crash_basis(lp); + report(lp, DETAILED, "presolve: Had to repair broken basis.\n"); + } + lp->timepresolved = timeNow(); + return(status); + } + + /* Produce original model statistics (do hoops to produce correct stats if we have SOS'es) */ + i = SOS_count(lp); + if(i > 0) { + SOS_member_updatemap(lp->SOS); + lp->sos_vars = SOS_memberships(lp->SOS, 0); + } + REPORT_modelinfo(lp, TRUE, "SUBMITTED"); + report(lp, NORMAL, " \n"); + if(i > 0) + lp->sos_vars = 0; + + /* Finalize basis indicators; if no basis was created earlier via + set_basis or crash_basis then simply set the default basis. */ + if(!lp->basis_valid) + lp->var_basic[0] = AUTOMATIC; /* Flag that we are presolving */ + +#if 0 +write_lp(lp, "test_in.lp"); /* Write to lp-formatted file for debugging */ +/*write_mps(lp, "test_in.mps");*/ /* Write to lp-formatted file for debugging */ +#endif + + /* Update inf norms and check for potential factorization trouble */ + mat_computemax(mat /*, FALSE */); +#if 0 + Value1 = fabs(lp->negrange); + if(is_obj_in_basis(lp) && (mat->dynrange < Value1) && vec_computeext(lp->orig_obj, 1, lp->columns, TRUE, &i, &j)) { + + /* Compute relative scale metric */ + Value2 = fabs(lp->orig_obj[j]/lp->orig_obj[i]) / mat->dynrange; + if(Value2 < 1.0) + Value2 = 1.0 / Value2; + + /* Determine if we should alert modeler and possibly move the OF out of the coefficient matrix */ + if((Value2 > Value1) /* Case with extreme scale difference */ +#if 1 + || (mat->dynrange == 1.0) /* Case where we have an all-unit coefficient matrix, possibly totally unimodular */ +#endif + ) + if((lp->simplex_strategy & SIMPLEX_DYNAMIC) > 0) { + clear_action(&lp->algopt, ALGOPT_OBJINBASIS); + report(lp, NORMAL, "Moved objective function out of the basis matrix to enhance factorization accuracy.\n"); + } + else if(mat->dynrange > 1.0) + report(lp, IMPORTANT, "Warning: Objective/matrix coefficient magnitude differences will cause inaccuracy!\n"); + } +#endif + + /* Do traditional simple presolve */ + yieldformessages(lp); + if((lp->do_presolve & PRESOLVE_LASTMASKMODE) == PRESOLVE_NONE) { + mat_checkcounts(mat, NULL, NULL, TRUE); + i = 0; + } + else { + + if(lp->full_solution == NULL) + allocREAL(lp, &lp->full_solution, lp->sum_alloc+1, TRUE); + + /* Identify infeasible SOS'es prior to any pruning */ + j = 0; + for(i = 1; i <= SOS_count(lp); i++) { + k = SOS_infeasible(lp->SOS, i); + if(k > 0) { + presolverec psdata; + + psdata.lp = lp; + report(lp, NORMAL, "presolve: Found SOS %d (type %d) to be range-infeasible on variable %d\n", + i, SOS_get_type(lp->SOS, i), k); + status = presolve_setstatus(&psdata, INFEASIBLE); + j++; + } + } + if(j > 0) + goto Finish; + + /* Create and initialize the presolve data structures */ + psdata = presolve_init(lp); + + /* Reentry point for the outermost, computationally expensive presolve loop */ + psdata->outerloops = 0; + do { + psdata->outerloops++; + iCoeffChanged = 0; + iConRemove = 0; + iVarFixed = 0; + iBoundTighten = 0; + iSOS = 0; + oSum = nSum; + + /* Do the middle elimination loop */ + do { + psdata->middleloops++; + nSum += iSum; + iSum = 0; + + /* Accumulate constraint bounds based on bounds on individual variables. */ + j = 0; + while(presolve_statuscheck(psdata, &status) && psdata->forceupdate) { + psdata->forceupdate = FALSE; + /* Update sums, but limit iteration count to avoid possible + "endless" loops with only marginal bound improvements */ + if(presolve_updatesums(psdata) && (j < MAX_PSBOUNDTIGHTENLOOPS)) { + /* Do row preparation useful for subsequent column and row presolve operations */ + if((psdata->outerloops == 1) && (psdata->middleloops == 1)) + status = presolve_preparerows(psdata, &iBoundTighten, &iSum); + nBoundTighten += iBoundTighten; + iBoundTighten = 0; + nSum += iSum; + iSum = 0; + j++; + if(status != RUNNING) + report(lp, NORMAL, "presolve: Break after bound tightening iteration %d.\n", j); + } + } + if(status != RUNNING) + break; + + /* Do the relatively cheap innermost elimination loop */ + do { + + psdata->innerloops++; + nSum += iSum; + iSum = 0; + + /* Eliminate empty rows, convert row singletons to bounds, + tighten bounds, and remove always satisfied rows */ + if(presolve_statuscheck(psdata, &status) && + is_presolve(lp, PRESOLVE_ROWS)) + status = presolve_rows(psdata, &iCoeffChanged, &iConRemove, &iVarFixed, &iBoundTighten, &iSum); + + /* Eliminate empty or fixed columns (including trivial OF column singletons) */ + if(presolve_statuscheck(psdata, &status) && + is_presolve(lp, PRESOLVE_COLS)) + status = presolve_columns(psdata, &iCoeffChanged, &iConRemove, &iVarFixed, &iBoundTighten, &iSum); + + /* Presolve SOS'es if possible (always do this) */ + if(presolve_statuscheck(psdata, &status)) + status = presolve_redundantSOS(psdata, &iBoundTighten, &iSum); + + } while((status == RUNNING) && (iSum > 0)); + if(status != RUNNING) + break; + + /* Merge compatible similar rows; loop backwards over every row */ + if(presolve_statuscheck(psdata, &status) && + (psdata->outerloops == 1) && (psdata->middleloops <= MAX_PSMERGELOOPS) && + is_presolve(lp, PRESOLVE_MERGEROWS)) + status = presolve_mergerows(psdata, &iConRemove, &iSum); + + /* Eliminate dominated rows */ + if(presolve_statuscheck(psdata, &status) && + is_presolve(lp, PRESOLVE_ROWDOMINATE)) + presolve_rowdominance(psdata, &iCoeffChanged, &iConRemove, &iVarFixed, &iSum); + + /* See if we can convert some constraints to SOSes (only SOS1 handled) */ + if(presolve_statuscheck(psdata, &status) && (MIP_count(lp) > 0) && + is_presolve(lp, PRESOLVE_SOS)) + status = presolve_SOS1(psdata, &iCoeffChanged, &iConRemove, &iVarFixed, &iSOS, &iSum); + + /* Eliminate dominated columns in set coverage models */ + if(presolve_statuscheck(psdata, &status) && (lp->int_vars > 1) && + is_presolve(lp, PRESOLVE_COLDOMINATE)) + presolve_coldominance01(psdata, &iConRemove, &iVarFixed, &iSum); + + /* Aggregate compatible columns */ + if(presolve_statuscheck(psdata, &status) && /*TRUE ||*/ + is_presolve(lp, PRESOLVE_AGGREGATE)) + presolve_aggregate(psdata, &iConRemove, &iVarFixed, &iSum); + + /* Eliminate free variables and implied slacks */ + if(presolve_statuscheck(psdata, &status) && +/* !is_presolve(lp, PRESOLVE_ELIMEQ2) && */ + is_presolve(lp, PRESOLVE_IMPLIEDSLK | PRESOLVE_IMPLIEDFREE)) + status = presolve_freeandslacks(psdata, &iCoeffChanged, &iConRemove, &iVarFixed, &iSum); + + } while((status == RUNNING) && (iSum > 0)); + if(status != RUNNING) + break; + + /* Check if we can do elimination of rank-deficient equality constraints */ + if(presolve_statuscheck(psdata, &status) && (psdata->EQmap->count > 1) && + is_presolve(lp, PRESOLVE_LINDEP)) { +#if 0 + REPORT_mat_mmsave(lp, "A.mtx", NULL, FALSE, "Constraint matrix A"); +#endif + presolve_singularities(psdata, &iCoeffChanged, &iConRemove, &iVarFixed, &iSum); + } + + /* Eliminate variable and tighten bounds using 2-element EQs; + note that this involves modifying the coefficients of A and + can therefore be a slow operation. */ + if(presolve_statuscheck(psdata, &status) && + is_presolve(lp, PRESOLVE_ELIMEQ2)) { + jjx = 0; + do { + jjx += iSum; + status = presolve_elimeq2(psdata, &iCoeffChanged, &iConRemove, &iVarFixed, &iSum); + } while((status == RUNNING) && (iSum > jjx)); + iSum = jjx; + +#if 0 + /* Eliminate free variables and implied slacks */ + if(presolve_statuscheck(psdata, &status) && + is_presolve(lp, PRESOLVE_IMPLIEDSLK | PRESOLVE_IMPLIEDFREE)) + status = presolve_freeandslacks(psdata, &iCoeffChanged, &iConRemove, &iVarFixed, &iSum); +#endif + } + + /* Increase A matrix sparsity by discovering common subsets using EQs */ + if(presolve_statuscheck(psdata, &status) && (psdata->EQmap->count > 0) && + is_presolve(lp, PRESOLVE_SPARSER)) + status = presolve_makesparser(psdata, &iCoeffChanged, &iConRemove, &iVarFixed, &iSum); + + /* Do GCD-based coefficient reductions (also does row scaling, + even if no rhs INT truncations are possible) */ + if(presolve_statuscheck(psdata, &status) && (psdata->INTmap->count > 0) && + is_presolve(lp, PRESOLVE_REDUCEGCD)) + if(!presolve_reduceGCD(psdata, &iCoeffChanged, &iBoundTighten, &iSum)) + status = presolve_setstatus(psdata, INFEASIBLE); + + /* Simplify knapsack or set coverage models where OF coefficients are + duplicated in the constraints. At the cost of adding helper columns, this + increases sparsity and facilitates identification of lower and upper bounds. */ + if(presolve_statuscheck(psdata, &status) && + is_presolve(lp, PRESOLVE_KNAPSACK)) { + i = iCoeffChanged; + status = presolve_knapsack(psdata, &iCoeffChanged); + } + + /* Remove any "hanging" empty row and columns */ + if(status == RUNNING) + status = presolve_shrink(psdata, &iConRemove, &iVarFixed); + + nCoeffChanged += iCoeffChanged; + nConRemove += iConRemove; + nVarFixed += iVarFixed; + nBoundTighten += iBoundTighten; + nSOS += iSOS; + nSum += iSum; + + iSum = iConRemove + iVarFixed + iBoundTighten + iCoeffChanged; + if(iSum > 0) + report(lp, NORMAL, "Presolve O:%d -> Reduced rows:%5d, cols:%5d --- changed bnds:%5d, Ab:%5d.\n", + psdata->outerloops, iConRemove, iVarFixed, iBoundTighten, iCoeffChanged); + + /* Do the outermost loop again if we were successful in this presolve sequences */ + } while(presolve_statuscheck(psdata, &status) && + (psdata->forceupdate || (oSum < nSum)) && + (psdata->outerloops < get_presolveloops(lp)) && + (psdata->rows->varmap->count+psdata->cols->varmap->count > 0)); + + /* Finalize presolve */ +#ifdef Paranoia + i = presolve_debugcheck(lp, psdata->rows->varmap, psdata->cols->varmap); + if(i > 0) + report(lp, SEVERE, "presolve: %d internal consistency failure%s\n", i, my_plural_std(i)); + if((SOS_count(lp) > 0) && !presolve_SOScheck(psdata)) + report(lp, SEVERE, "presolve: SOS sparse member mapping problem - part 1\n"); +#endif + /* Perform bound relaxation to reduce chance of degeneracy. */ + if((status == RUNNING) && !is_presolve(lp, PRESOLVE_IMPLIEDFREE)) + jjx = presolve_makefree(psdata); + else + jjx = 0; + + + /* Finalize the presolve */ + if(!presolve_finalize(psdata)) + report(lp, SEVERE, "presolve: Unable to construct internal data representation\n"); + + /* Report summary information */ + i = NORMAL; + iVarFixed = lp->presolve_undo->orig_columns - psdata->cols->varmap->count; + iConRemove = lp->presolve_undo->orig_rows - psdata->rows->varmap->count; + if(nSum > 0) + report(lp, i, "PRESOLVE Elimination loops performed.......... O%d:M%d:I%d\n", + psdata->outerloops, psdata->middleloops, psdata->innerloops); + if(nVarFixed) + report(lp, i, " %8d empty or fixed variables............. %s.\n", nVarFixed, "REMOVED"); + if(nConRemove) + report(lp, i, " %8d empty or redundant constraints....... %s.\n", nConRemove, "REMOVED"); + if(nBoundTighten) + report(lp, i, " %8d bounds............................... %s.\n", nBoundTighten, "TIGHTENED"); + if(nCoeffChanged) + report(lp, i, " %8d matrix coefficients.................. %s.\n", nCoeffChanged, "CHANGED"); + if(jjx > 0) + report(lp, i, " %8d variables' final bounds.............. %s.\n", jjx, "RELAXED"); + if(nSOS) + report(lp, i, " %8d constraints detected as SOS1......... %s.\n", nSOS, "CONVERTED"); + + /* Report optimality or infeasibility */ + if(status == UNBOUNDED) + report(lp, NORMAL, "%20s Solution status detected............. %s.\n", "", "UNBOUNDED"); + else if(status == INFEASIBLE) + report(lp, NORMAL, "%20s Solution status detected............. %s.\n", "", "INFEASIBLE"); + else { + if(psdata->cols->varmap->count == 0) + Value1 = Value2 = lp->presolve_undo->fixed_rhs[0] -initrhs0; + else + presolve_rangeorig(lp, 0, psdata->rows, &Value1, &Value2, -initrhs0); + if((fabs(Value1 - Value2) < psdata->epsvalue) || (fabs(my_reldiff(Value1, Value2)) < psdata->epsvalue)) { + if((lp->rows == 0) && (lp->columns == 0)) { + status = PRESOLVED; + Value1 = my_chsign(is_maxim(lp), Value1); + lp->solution[0] = Value1; + lp->best_solution[0] = Value1; + lp->full_solution[0] = Value1; + } + report(lp, NORMAL, "%20s OPTIMAL solution found............... %-g", "", Value1); + } + else if((status == RUNNING) && (i >= NORMAL)) { + char lonum[20], upnum[20]; + if(my_infinite(lp, Value1)) + sprintf(lonum, "%13s", "-Inf"); + else + sprintf(lonum, "%+12g", Value1); + if(my_infinite(lp, Value2)) + sprintf(upnum, "%-13s", "Inf"); + else + sprintf(upnum, "%+-12g", Value2); + report(lp, i, "%20s [ %s < Z < %s ]\n", "", lonum, upnum); + } + + /* Update values for dual limit and best heuristic values */ + if((MIP_count(lp) > 0) || (get_Lrows(lp) > 0)) { + if(is_maxim(lp)) { + SETMAX(lp->bb_heuristicOF, Value1); + SETMIN(lp->bb_limitOF, Value2); + } + else { + SETMIN(lp->bb_heuristicOF, Value2); + SETMAX(lp->bb_limitOF, Value1); + } + } + } + report(lp, NORMAL, " \n"); + + /* Clean up (but save counts of constraint types for display later) */ + j = psdata->LTmap->count; + jx = psdata->EQmap->count; + jjx = lp->rows - j - jx; + presolve_free(&psdata); + + } + + /* Signal that we are done presolving */ + if((lp->usermessage != NULL) && + ((lp->do_presolve & PRESOLVE_LASTMASKMODE) != 0) && (lp->msgmask & MSG_PRESOLVE)) + lp->usermessage(lp, lp->msghandle, MSG_PRESOLVE); + + /* Create master SOS variable list */ + if(SOS_count(lp) > 0) { + /*SOS_member_updatemap(lp->SOS); */ + make_SOSchain(lp, (MYBOOL) ((lp->do_presolve & PRESOLVE_LASTMASKMODE) != PRESOLVE_NONE)); + } + + /* Finalize model not identified as infeasible or unbounded */ + if(status == RUNNING) { + + /* Resolve GUBs */ + if(is_bb_mode(lp, NODE_GUBMODE)) + identify_GUB(lp, TRUE); + +#if 0 + /* Mark rows containing hidden identity matrices so that supporting factorization + engines can use this structural information to boost efficiency */ + if(is_algopt(lp, ALGOPT_COMPACTBPF)) + lp->bfpoptimize = (MYBOOL) (assist_factorization(lp, ROWTYPE_LOGICAL, + &lp->rowset1, &lp->rowno1) > 0); +#endif + + /* Scale the model based on current settings */ + auto_scale(lp); + + /* Crash the basis, if specified */ + crash_basis(lp); + + /* Produce presolved model statistics */ + if(nConRemove+nVarFixed+nBoundTighten+nVarFixed+nCoeffChanged > 0) { + REPORT_modelinfo(lp, FALSE, "REDUCED"); + if(nSum > 0) { + report(lp, NORMAL, "Row-types: %7d LE, %7d GE, %7d EQ.\n", + j, jjx, jx); + report(lp, NORMAL, " \n"); + } + } + } + + /* Optionally produce data on constraint classes */ + if(lp->verbose > NORMAL) { + report(lp, NORMAL, " \n"); + REPORT_constraintinfo(lp, "CONSTRAINT CLASSES"); + report(lp, NORMAL, " \n"); + } + +Finish: + lp->wasPresolved = TRUE; + lp->timepresolved = timeNow(); + +#if 0 +/* write_mps(lp, "test_out.mps"); */ /* Must put here due to variable name mapping */ + write_lp(lp, "test_out.lp"); /* Must put here due to variable name mapping */ +#endif +#if 0 + REPORT_debugdump(lp, "testint2.txt", FALSE); +#endif + + return( status ); + +} + +STATIC MYBOOL postsolve(lprec *lp, int status) +{ + /* Verify solution */ + if(lp->lag_status != RUNNING) { + int itemp; + + if(status == PRESOLVED) + status = OPTIMAL; + + if((status == OPTIMAL) || (status == SUBOPTIMAL)) { + itemp = check_solution(lp, lp->columns, lp->best_solution, + lp->orig_upbo, lp->orig_lowbo, lp->epssolution); + if((itemp != OPTIMAL) && (lp->spx_status == OPTIMAL)) + lp->spx_status = itemp; + else if((itemp == OPTIMAL) && ((status == SUBOPTIMAL) || (lp->spx_status == PRESOLVED))) + lp->spx_status = status; + } + else if(status != PRESOLVED) { + report(lp, NORMAL, "lp_solve unsuccessful after %.0f iter and a last best value of %g\n", + (double) get_total_iter(lp), lp->best_solution[0]); + if(lp->bb_totalnodes > 0) + report(lp, NORMAL, "lp_solve explored %.0f nodes before termination\n", + (double) get_total_nodes(lp)); + } + else + lp->spx_status = OPTIMAL; + + /* Only rebuild primal solution here, since the dual is only computed on request */ + presolve_rebuildUndo(lp, TRUE); + } + + /* Check if we can clear the variable map */ + if(varmap_canunlock(lp)) + lp->varmap_locked = FALSE; +#if 0 + REPORT_mat_mmsave(lp, "basis.mtx", NULL, FALSE); /* Write the current basis matrix (no OF) */ +#endif + + return( TRUE ); +} diff --git a/src/external/lpsolve/build/lp_solve/lp_price.c b/src/external/lpsolve/build/lp_solve/lp_price.c new file mode 100644 index 00000000..3eb5142d --- /dev/null +++ b/src/external/lpsolve/build/lp_solve/lp_price.c @@ -0,0 +1,2107 @@ + +#include +#include "commonlib.h" +#include "lp_lib.h" +#include "lp_report.h" +#include "lp_pricePSE.h" +#include "lp_price.h" + +#if libBLAS > 0 + #include "myblas.h" +#endif + +#ifdef FORTIFY +# include "lp_fortify.h" +#endif + +/* Simplex pricing utility module - w/interface for lp_solve v5.0+ + ------------------------------------------------------------------------- + Author: Kjell Eikland + Contact: kjell.eikland@broadpark.no + License terms: LGPL. + + Requires: lp_lib.h, commonlib.h + + Release notes: + v1.0.0 1 July 2004 Routines extracted from lp_lib. + v1.0.1 10 July 2004 Added comparison operators for determination + of entering and leaving variables. + Added routines for multiple and partial + pricing and made corresponding changes to + colprim and rowdual. + v1.0.2 20 August 2004 Implemented relative pivot size control in + rowprim and rowdual. + v1.1.0 15 October 2004 Added dual long step logic. + v1.1.1 22 October 2004 Added bound sort order to variable selections. + v1.2.0 24 March 2005 Completed multiple pricing logic. + ------------------------------------------------------------------------- */ + + +/* Comparison operators for entering and leaving variables for both the primal and + dual simplexes. The functions compare a candidate variable with an incumbent. */ +int CMP_CALLMODEL compareImprovementVar(const pricerec *current, const pricerec *candidate) +{ + register int result = COMP_PREFERNONE; + register lprec *lp = current->lp; + register LPSREAL testvalue, margin = PREC_IMPROVEGAP; + int currentcolno, currentvarno = current->varno, + candidatecolno, candidatevarno = candidate->varno; + MYBOOL isdual = candidate->isdual; + + if(isdual) { + candidatevarno = lp->var_basic[candidatevarno]; + currentvarno = lp->var_basic[currentvarno]; + } + candidatecolno = candidatevarno - lp->rows; + currentcolno = currentvarno - lp->rows; + + /* Do pivot-based selection unless Bland's (first index) rule is active */ + if(lp->_piv_rule_ != PRICER_FIRSTINDEX) { + + MYBOOL candbetter; + + /* Find the largest value - normalize in case of the dual, since + constraint violation is expressed as a negative number. */ + /* Use absolute test for "small numbers", relative otherwise */ + testvalue = candidate->pivot; + if(fabs(testvalue) < LIMIT_ABS_REL) + testvalue -= current->pivot; + else + testvalue = my_reldiff(testvalue, current->pivot); + if(isdual) + testvalue = -testvalue; + + candbetter = (MYBOOL) (testvalue > 0); + if(candbetter) { + if(testvalue > margin) + result = COMP_PREFERCANDIDATE; + } +#if 0 /* Give more opportunity to optimize on non-primary criteria */ + else if (testvalue < -margin) +#else /* Give reduced opportunity to optimize on non-primary criteria */ + else if (testvalue < -lp->epsvalue) +#endif + result = COMP_PREFERINCUMBENT; + +#ifdef UseSortOnBound + /* Extra selection criterion based on the variable's range; + variable with - DUAL: small bound out; PRIMAL: large bound in */ + if(result == COMP_PREFERNONE) { + testvalue = lp->upbo[candidatevarno] - lp->upbo[currentvarno]; + if(testvalue < -margin) + result = COMP_PREFERINCUMBENT; + else if(testvalue > margin) + result = COMP_PREFERCANDIDATE; + result = my_chsign(isdual, result); + } +#endif + +#ifdef UseSortOnColumnLength + /* Prevent long columns from entering the basis */ + if(result == COMP_PREFERNONE) { + if(candidatecolno > 0) + testvalue = mat_collength(lp->matA, candidatecolno) + + (is_obj_in_basis(lp) && (lp->obj[candidatecolno] != 0) ? 1 : 0); + else + testvalue = 1; + if(currentcolno > 0) + testvalue -= mat_collength(lp->matA, currentcolno) + + (is_obj_in_basis(lp) && (lp->obj[currentcolno] != 0) ? 1 : 0); + else + testvalue -= 1; + if(testvalue > 0) + result = COMP_PREFERINCUMBENT; + else if(testvalue < 0) + result = COMP_PREFERCANDIDATE; + result = my_chsign(isdual, result); + } +#endif + + /* Select absolute best if the non-primary criteria failed to separate */ + if((result == COMP_PREFERNONE) && candbetter) { + result = COMP_PREFERCANDIDATE; + goto Finish; + } + } + + /* Final tie-breakers */ + if(result == COMP_PREFERNONE) { + + /* Add randomization tie-braker */ + if(lp->piv_strategy & PRICE_RANDOMIZE) { + result = my_sign(PRICER_RANDFACT - rand_uniform(lp, 1.0)); + if(candidatevarno < currentvarno) + result = -result; + } + + /* Resolve ties via index ordinal */ + if(result == COMP_PREFERNONE) { + if(candidatevarno < currentvarno) + result = COMP_PREFERCANDIDATE; + else /* if(candidatevarno > currentvarno) */ + result = COMP_PREFERINCUMBENT; + if(lp->_piv_left_) + result = -result; + } + } + +Finish: + return( result ); + +} + +int CMP_CALLMODEL compareSubstitutionVar(const pricerec *current, const pricerec *candidate) +{ + register int result = COMP_PREFERNONE; + register lprec *lp = current->lp; + register LPSREAL testvalue = candidate->theta, + margin = current->theta; + MYBOOL isdual = candidate->isdual, candbetter; + int currentcolno, currentvarno = current->varno, + candidatecolno, candidatevarno = candidate->varno; + + if(!isdual) { + candidatevarno = lp->var_basic[candidatevarno]; + currentvarno = lp->var_basic[currentvarno]; + } + candidatecolno = candidatevarno - lp->rows; + currentcolno = currentvarno - lp->rows; + + /* Compute the ranking test metric. */ + if(isdual) { + testvalue = fabs(testvalue); + margin = fabs(margin); + } + + /* Use absolute test for "small numbers", relative otherwise */ + if(fabs(testvalue) < LIMIT_ABS_REL) + testvalue -= margin; + else + testvalue = my_reldiff(testvalue, margin); + + /* Find if the new Theta is smaller or near equal (i.e. testvalue <= eps) + compared to the previous best; ties will be broken by pivot size or index + NB! The margin below is essential in maintaining primal/dual feasibility + during the primal/dual simplex, respectively. Sometimes a small + value prevents the selection of a suitable pivot, thereby weakening + the numerical stability of some models */ + margin = PREC_SUBSTFEASGAP; + candbetter = (MYBOOL) (testvalue < 0); + if(candbetter) { + if(testvalue < -margin) + result = COMP_PREFERCANDIDATE; + } + else if(testvalue > margin) + result = COMP_PREFERINCUMBENT; + + /* Resolve a tie */ + if(result == COMP_PREFERNONE) { + LPSREAL currentpivot = fabs(current->pivot), + candidatepivot = fabs(candidate->pivot); + + /* Handle first index / Bland's rule specially */ + if(lp->_piv_rule_ == PRICER_FIRSTINDEX) { +#if 1 + /* Special secondary selection by pivot size (limited stability protection) */ + margin = candidate->epspivot; + if((candidatepivot >= margin) && (currentpivot < margin)) + result = COMP_PREFERCANDIDATE; +#endif + } + + else { + + /* General secondary selection based on pivot size */ +#if 0 + if(candidatepivot > MIN_STABLEPIVOT) + testvalue = my_reldiff(testvalue, currentpivot); + else +#endif + testvalue = candidatepivot - currentpivot; + if(testvalue > margin) + result = COMP_PREFERCANDIDATE; + else if(testvalue < -margin) + result = COMP_PREFERINCUMBENT; + +#ifdef UseSortOnBound + /* Extra selection criterion based on the variable's range; + variable with - PRIMAL: small bound out; DUAL: large bound in */ + if(result == COMP_PREFERNONE) { + testvalue = lp->upbo[candidatevarno] - lp->upbo[currentvarno]; + if(testvalue < -margin) + result = COMP_PREFERCANDIDATE; + else if(testvalue > margin) + result = COMP_PREFERINCUMBENT; + result = my_chsign(isdual, result); + } +#endif + +#ifdef UseSortOnColumnLength + /* Prevent long columns from entering the basis */ + if(result == COMP_PREFERNONE) { + if(candidatecolno > 0) + testvalue = mat_collength(lp->matA, candidatecolno) + + (is_obj_in_basis(lp) && (lp->obj[candidatecolno] != 0) ? 1 : 0); + else + testvalue = 1; + if(currentcolno > 0) + testvalue -= mat_collength(lp->matA, currentcolno) + + (is_obj_in_basis(lp) && (lp->obj[currentcolno] != 0) ? 1 : 0); + else + testvalue -= 1; + if(testvalue > 0) + result = COMP_PREFERCANDIDATE; + else if(testvalue < 0) + result = COMP_PREFERINCUMBENT; + result = my_chsign(isdual, result); + } +#endif + + } + } + + /* Select absolute best if the non-primary criteria failed to separate */ + if((result == COMP_PREFERNONE) && candbetter) { + result = COMP_PREFERCANDIDATE; + goto Finish; + } + + /* Final tie-breakers */ + if(result == COMP_PREFERNONE) { + + /* Add randomization tie-braker */ + if(lp->piv_strategy & PRICE_RANDOMIZE) { + result = my_sign(PRICER_RANDFACT - rand_uniform(lp, 1.0)); + if(candidatevarno < currentvarno) + result = -result; + } + + /* Resolve ties via index ordinal (also prefers slacks over user variables) */ + if(result == COMP_PREFERNONE) { + if(candidatevarno < currentvarno) + result = COMP_PREFERCANDIDATE; + else /* if(candidatevarno > currentvarno) */ + result = COMP_PREFERINCUMBENT; + if(lp->_piv_left_) + result = -result; + } + } + +Finish: + return( result ); +} +int CMP_CALLMODEL compareBoundFlipVar(const pricerec *current, const pricerec *candidate) +{ + register LPSREAL testvalue, margin; + register int result = COMP_PREFERNONE; + register lprec *lp = current->lp; + MYBOOL candbetter; + int currentvarno = current->varno, + candidatevarno = candidate->varno; + + if(!current->isdual) { + candidatevarno = lp->var_basic[candidatevarno]; + currentvarno = lp->var_basic[currentvarno]; + } + + /* Compute the ranking test metric. */ + testvalue = candidate->theta; + margin = current->theta; + if(candidate->isdual) { + testvalue = fabs(testvalue); + margin = fabs(margin); + } + if(fabs(margin) < LIMIT_ABS_REL) + testvalue -= margin; + else + testvalue = my_reldiff(testvalue, margin); + + /* Find if the new Theta is smaller or near equal (i.e. testvalue <= eps) + compared to the previous best; ties will be broken by pivot size or index */ + margin = PREC_SUBSTFEASGAP; + candbetter = (MYBOOL) (testvalue < 0); + if(candbetter) { + if(testvalue < -margin) + result = COMP_PREFERCANDIDATE; + } + else if(testvalue > margin) + result = COMP_PREFERINCUMBENT; + + /* Resolve a tie */ + if(result == COMP_PREFERNONE) { + + /* Tertiary selection based on priority for large pivot sizes */ + if(result == COMP_PREFERNONE) { + LPSREAL currentpivot = fabs(current->pivot), + candidatepivot = fabs(candidate->pivot); + if(candidatepivot > currentpivot+margin) + result = COMP_PREFERCANDIDATE; + else if(candidatepivot < currentpivot-margin) + result = COMP_PREFERINCUMBENT; + } + + /* Secondary selection based on priority for narrow-bounded variables */ + if(result == COMP_PREFERNONE) + result = compareREAL(&(lp->upbo[currentvarno]), + &(lp->upbo[candidatevarno])); + + } + + /* Select absolute best if the non-primary criteria failed to separate */ + if((result == COMP_PREFERNONE) && candbetter) { + result = COMP_PREFERCANDIDATE; + goto Finish; + } + + /* Quaternary selection by index value */ + if(result == COMP_PREFERNONE) { + if(candidatevarno < currentvarno) + result = COMP_PREFERCANDIDATE; + else + result = COMP_PREFERINCUMBENT; + if(lp->_piv_left_) + result = -result; + } + +Finish: + return( result ); +} + +/* Validity operators for entering and leaving columns for both the primal and dual + simplex. All candidates must satisfy these tests to qualify to be allowed to be + a subject for the comparison functions/operators. */ +STATIC MYBOOL validImprovementVar(pricerec *candidate) +{ + register LPSREAL candidatepivot = fabs(candidate->pivot); + +#ifdef Paranoia + return( (MYBOOL) ((candidate->varno > 0) && (candidatepivot > candidate->lp->epsvalue)) ); +#else + return( (MYBOOL) (candidatepivot > candidate->lp->epsvalue) ); +#endif +} + +STATIC MYBOOL validSubstitutionVar(pricerec *candidate) +{ + register lprec *lp = candidate->lp; + register LPSREAL theta = (candidate->isdual ? fabs(candidate->theta) : candidate->theta); + +#ifdef Paranoia + if(candidate->varno <= 0) + return( FALSE ); + else +#endif + if(fabs(candidate->pivot) >= lp->infinite) + return( (MYBOOL) (theta < lp->infinite) ); + else + return( (MYBOOL) ((theta < lp->infinite) && + (fabs(candidate->pivot) >= candidate->epspivot)) ); +} + +int CMP_CALLMODEL compareImprovementQS(const UNIONTYPE QSORTrec *current, const UNIONTYPE QSORTrec *candidate) +{ + return( compareImprovementVar((pricerec *) current->pvoidint2.ptr, (pricerec *) candidate->pvoidint2.ptr) ); +} +int CMP_CALLMODEL compareSubstitutionQS(const UNIONTYPE QSORTrec *current, const UNIONTYPE QSORTrec *candidate) +{ + return( compareBoundFlipVar((pricerec *) current->pvoidint2.ptr, (pricerec *) candidate->pvoidint2.ptr) ); +/* return( compareSubstitutionVar((pricerec *) current->self, (pricerec *) candidate->self) ); */ +} + +/* Function to add a valid pivot candidate into the specified list */ +STATIC int addCandidateVar(pricerec *candidate, multirec *multi, findCompare_func findCompare, MYBOOL allowSortedExpand) +{ + int insertpos, delta = 1; + pricerec *targetrec; + + /* Find the insertion point (if any) */ + if((multi->freeList[0] == 0) || + (multi->sorted && allowSortedExpand) || + (candidate->isdual && (multi->used == 1) && ((multi->step_last >= multi->epszero) || + multi_truncatingvar(multi, ((pricerec *) (multi->sortedList[0].pvoidreal.ptr))->varno))) + ) { + UNIONTYPE QSORTrec searchTarget; + + /* Make sure that the list is sorted before the search for an insertion point */ + if((multi->freeList[0] == 0) && !multi->sorted) { + multi->sorted = QS_execute(multi->sortedList, multi->used, findCompare, &insertpos); + multi->dirty = (MYBOOL) (insertpos > 0); + } + + /* Perform the search */ + searchTarget.pvoidint2.ptr = (void *) candidate; + insertpos = sizeof(searchTarget); + insertpos = findIndexEx(&searchTarget, multi->sortedList-delta, multi->used, delta, insertpos, findCompare, TRUE); + if(insertpos > 0) + return( -1 ); + insertpos = -insertpos - delta; + + /* Check if the candidate is worse than the worst of the list */ + if(((insertpos >= multi->size) && (multi->freeList[0] == 0)) || + ((insertpos == multi->used) && (!allowSortedExpand || + (multi->step_last >= multi->epszero)))) + return( -1 ); + +#ifdef Paranoia + /* Do validation */ + if((insertpos < 0) || (insertpos > multi->used)) + return( -1 ); +#endif + + /* Define the target for storing the candidate; + Case 1: List is full and we must discard the previously worst candidate + Case 2: List is not full and we simply use the next free position */ + if(multi->freeList[0] == 0) + targetrec = (pricerec *) multi->sortedList[multi->used-1].pvoidreal.ptr; + else { + delta = multi->freeList[0]--; + delta = multi->freeList[delta]; + targetrec = &(multi->items[delta]); + } + } + else { + delta = multi->freeList[0]--; + delta = multi->freeList[delta]; + targetrec = &(multi->items[delta]); + insertpos = multi->used; + } + + /* Insert the new candidate record in the data store */ + MEMCOPY(targetrec, candidate, 1); + + /* Store the pointer data and handle tree cases: + Case 1: The list is unsorted and not full; simply append pointer to list, + Case 2: The list is sorted and full; insert the pointer by discarding previous last, + Case 3: The list is sorted and not full; shift the inferior items down, and increment count */ + if((multi->used < multi->size) && (insertpos >= multi->used)) { + QS_append(multi->sortedList, insertpos, targetrec); + multi->used++; + } + else { + if(multi->used == multi->size) + QS_insert(multi->sortedList, insertpos, targetrec, multi->size-1); /* Discard previous last */ + else { + QS_insert(multi->sortedList, insertpos, targetrec, multi->used); /* Keep previous last */ + multi->used++; + } + } + multi->active = insertpos; + +#ifdef Paranoia + if((insertpos >= multi->size) || (insertpos >= multi->used)) + report(multi->lp, SEVERE, "addCandidateVar: Insertion point beyond limit!\n"); +#endif + + return( insertpos ); +} + +STATIC MYBOOL findImprovementVar(pricerec *current, pricerec *candidate, MYBOOL collectMP, int *candidatecount) +/* PRIMAL: Find a variable to enter the basis + DUAL: Find a variable to leave the basis + + Allowed variable set: Any pivot PRIMAL:larger or DUAL:smaller than threshold value of 0 */ +{ + MYBOOL Action = FALSE, +#ifdef ExtractedValidityTest + Accept = TRUE; +#else /* Check for validity and compare result with previous best */ + Accept = validImprovementVar(candidate); +#endif + if(Accept) { + if(candidatecount != NULL) + (*candidatecount)++; + if(collectMP) { + if(addCandidateVar(candidate, current->lp->multivars, (findCompare_func *) compareImprovementQS, FALSE) < 0) + return(Action); + } + if(current->varno > 0) + Accept = (MYBOOL) (compareImprovementVar(current, candidate) > 0); + } + + /* Apply candidate if accepted */ + if(Accept) { + (*current) = *candidate; + + /* Force immediate acceptance for Bland's rule using the primal simplex */ + if(!candidate->isdual) + Action = (MYBOOL) (candidate->lp->_piv_rule_ == PRICER_FIRSTINDEX); + } + return(Action); +} + +/* Bound flip variable accumulation routine */ +STATIC MYBOOL collectMinorVar(pricerec *candidate, multirec *longsteps, MYBOOL isphase2, MYBOOL isbatch) +{ + int inspos; + + /* 1. Check for ratio and pivot validity (to have the extra flexibility that all + bound-flip candidates are also possible as basis-entering variables */ + if(!validSubstitutionVar(candidate)) + return( FALSE ); + + /* 2. If the free-list is empty we need to see if we have a better candidate, + and for this the candidate list has to be sorted by merit */ + if(!isbatch && + !longsteps->sorted && (longsteps->used > 1) && + ((longsteps->freeList[0] == 0) || + multi_truncatingvar(longsteps, candidate->varno) || + (longsteps->step_last >= longsteps->epszero) )) { + longsteps->sorted = QS_execute(longsteps->sortedList, longsteps->used, + (findCompare_func *) compareSubstitutionQS, &inspos); + longsteps->dirty = (MYBOOL) (inspos > 0); + if(longsteps->dirty) + multi_recompute(longsteps, 0, isphase2, TRUE); + } + + /* 3. Now handle three cases... + - Add to the list when the list is not full and there is opportunity for improvement, + - Check if we should replace an incumbent when the list is full, + - Check if we should replace an incumbent when the list is not full, there is no room + for improvement, but the current candidate is better than an incumbent. */ + inspos = addCandidateVar(candidate, longsteps, (findCompare_func *) compareSubstitutionQS, TRUE); + + /* 4. Recompute steps and objective, and (if relevant) determine if we + may be suboptimal in relation to an incumbent MILP solution. */ + return( (MYBOOL) (inspos >= 0) && + ((isbatch == TRUE) || multi_recompute(longsteps, inspos, isphase2, TRUE)) ); +} + +STATIC MYBOOL findSubstitutionVar(pricerec *current, pricerec *candidate, int *candidatecount) +/* PRIMAL: Find a variable to leave the basis + DUAL: Find a variable to enter the basis + + Allowed variable set: "Equal-valued" smallest thetas! */ +{ + MYBOOL Action = FALSE, +#ifdef ExtractedValidityTest + Accept = TRUE; +#else /* Check for validity and comparison result with previous best */ + Accept = validSubstitutionVar(candidate); +#endif + if(Accept) { + if(candidatecount != NULL) + (*candidatecount)++; + if(current->varno != 0) + Accept = (MYBOOL) (compareSubstitutionVar(current, candidate) > 0); + } + + /* Apply candidate if accepted */ + if(Accept) { + (*current) = *candidate; + + /* Force immediate acceptance for Bland's rule using the dual simplex */ +#ifdef ForceEarlyBlandRule + if(candidate->isdual) + Action = (MYBOOL) (candidate->lp->_piv_rule_ == PRICER_FIRSTINDEX); +#endif + } + return(Action); +} + +/* Partial pricing management routines */ +STATIC partialrec *partial_createBlocks(lprec *lp, MYBOOL isrow) +{ + partialrec *blockdata; + + blockdata = (partialrec *) calloc(1, sizeof(*blockdata)); + blockdata->lp = lp; + blockdata->blockcount = 1; + blockdata->blocknow = 1; + blockdata->isrow = isrow; + + return(blockdata); +} +STATIC int partial_countBlocks(lprec *lp, MYBOOL isrow) +{ + partialrec *blockdata = IF(isrow, lp->rowblocks, lp->colblocks); + + if(blockdata == NULL) + return( 1 ); + else + return( blockdata->blockcount ); +} +STATIC int partial_activeBlocks(lprec *lp, MYBOOL isrow) +{ + partialrec *blockdata = IF(isrow, lp->rowblocks, lp->colblocks); + + if(blockdata == NULL) + return( 1 ); + else + return( blockdata->blocknow ); +} +STATIC void partial_freeBlocks(partialrec **blockdata) +{ + if((blockdata == NULL) || (*blockdata == NULL)) + return; + FREE((*blockdata)->blockend); + FREE((*blockdata)->blockpos); + FREE(*blockdata); +} + + +/* Function to provide for left-right or right-left scanning of entering/leaving + variables; note that *end must have been initialized by the calling routine! */ +STATIC void makePriceLoop(lprec *lp, int *start, int *end, int *delta) +{ + int offset = is_piv_mode(lp, PRICE_LOOPLEFT); + + if((offset) || + (((lp->total_iter+offset) % 2 == 0) && is_piv_mode(lp, PRICE_LOOPALTERNATE))) { + *delta = -1; /* Step backwards - "left" */ + swapINT(start, end); + lp->_piv_left_ = TRUE; + } + else { + *delta = 1; /* Step forwards - "right" */ + lp->_piv_left_ = FALSE; + } +} + +/* Routine to verify accuracy of the current basis factorization */ +STATIC MYBOOL serious_facterror(lprec *lp, LPSREAL *bvector, int maxcols, LPSREAL tolerance) +{ + int i, j, ib, ie, nz, nc; + LPSREAL sum, tsum = 0, err = 0; + MATrec *mat = lp->matA; + + if(bvector == 0) + bvector = lp->bsolveVal; + nc =0; + nz = 0; + for(i = 1; (i <= lp->rows) && (nc <= maxcols); i++) { + + /* Do we have a non-slack variable? (we choose to skip slacks, + since they have "natural" good accuracy properties) */ + j = lp->var_basic[i] - lp->rows; + if(j <= 0) + continue; + nc++; + + /* Compute cross product for basic, non-slack column */ + ib = mat->col_end[j-1]; + ie = mat->col_end[j]; + nz += ie - ib; + sum = get_OF_active(lp, j+lp->rows, bvector[0]); + for(; ib < ie; ib++) + sum += COL_MAT_VALUE(ib)*bvector[COL_MAT_ROWNR(ib)]; + + /* Catch high precision early, so we don't to uneccessary work */ + tsum += sum; + SETMAX(err, fabs(sum)); + if((tsum / nc > tolerance / 100) && (err < tolerance / 100)) + break; + } + err /= mat->infnorm; + return( (MYBOOL) (err >= tolerance) ); +} + +/* Computation of reduced costs */ +STATIC void update_reducedcosts(lprec *lp, MYBOOL isdual, int leave_nr, int enter_nr, LPSREAL *prow, LPSREAL *drow) +{ + /* "Fast" update of the dual reduced cost vector; note that it must be called + after the pivot operation and only applies to a major "true" iteration */ + int i; + LPSREAL hold; + + if(isdual) { + hold = -drow[enter_nr]/prow[enter_nr]; + for(i=1; i <= lp->sum; i++) + if(!lp->is_basic[i]) { + if(i == leave_nr) + drow[i] = hold; + else { + drow[i] += hold*prow[i]; + my_roundzero(drow[i], lp->epsmachine); + } + } + } + else + report(lp, SEVERE, "update_reducedcosts: Cannot update primal reduced costs!\n"); +} + + +STATIC void compute_reducedcosts(lprec *lp, MYBOOL isdual, int row_nr, int *coltarget, MYBOOL dosolve, + LPSREAL *prow, int *nzprow, + LPSREAL *drow, int *nzdrow, + int roundmode) +{ + LPSREAL epsvalue = lp->epsvalue; /* Any larger value can produce a suboptimal result */ + roundmode |= MAT_ROUNDRC; + + if(isdual) { + bsolve_xA2(lp, coltarget, + row_nr, prow, epsvalue, nzprow, /* Calculate net sensitivity given a leaving variable */ + 0, drow, epsvalue, nzdrow, /* Calculate the net objective function values */ + roundmode); + } + else { + LPSREAL *bVector; + +#if 1 /* Legacy mode, that is possibly a little faster */ + if((lp->multivars == NULL) && (lp->P1extraDim == 0)) + bVector = drow; + else +#endif + bVector = lp->bsolveVal; + if(dosolve) { + bsolve(lp, 0, bVector, lp->bsolveIdx, epsvalue*DOUBLEROUND, 1.0); + if(!isdual && (row_nr == 0) && (lp->improve & IMPROVE_SOLUTION) && !refactRecent(lp) && + serious_facterror(lp, bVector, lp->rows, lp->epsvalue)) + set_action(&lp->spx_action, ACTION_REINVERT); + } + prod_xA(lp, coltarget, + bVector, lp->bsolveIdx, epsvalue, 1.0, + drow, nzdrow, roundmode); + } +} + + +/* Primal: Prevent acceptance of an entering variable when the magnitude of + other candidates is also very small. + Dual: Prevent acceptance of a leaving variable when the magnitude of + other candidates is also very small. + + Both of these cases are associated with numerical stalling, which we could + argue should be detected and handled by the stalling monitor routine. */ +STATIC MYBOOL verify_stability(lprec *lp, MYBOOL isprimal, LPSREAL xfeas, LPSREAL sfeas, int nfeas) +{ + MYBOOL testOK = TRUE; + return( testOK ); + +#if 1 + /* Try to make dual feasibility as tight as possible */ + if(!isprimal) +/* if(lp->P1extraVal == 0) */ + { + xfeas /= (1+lp->rhsmax); + sfeas /= (1+lp->rhsmax); + } +#endif + xfeas = fabs(xfeas); /* Maximum (positive) infeasibility */ +/* if(xfeas < lp->epspivot) { */ + if(xfeas < lp->epssolution) { + LPSREAL f; + sfeas = fabs(sfeas); /* Make sum of infeasibilities positive */ + xfeas = (sfeas-xfeas)/nfeas; /* Average "residual" feasibility */ + f = 1 + log10((LPSREAL) nfeas); /* Some numerical complexity scalar */ + /* Numerical errors can interact to cause non-convergence, and the + idea is to relax the tolerance to account for this and only + marginally weakening the (user-specified) tolerance. */ + if((sfeas-xfeas) < f*lp->epsprimal) + testOK = FALSE; + } + return( testOK ); +} + + +/* Find an entering column for the case that the specified basic variable + is fixed or zero - typically used for artificial variable elimination */ +STATIC int find_rowReplacement(lprec *lp, int rownr, LPSREAL *prow, int *nzprow) +/* The logic in this section generally follows Chvatal: Linear Programming, p. 130 + Basically, the function is a specialized coldual(). */ +{ + int i, bestindex; + LPSREAL bestvalue; + + /* Solve for "local reduced cost" */ + set_action(&lp->piv_strategy, PRICE_FORCEFULL); + compute_reducedcosts(lp, TRUE, rownr, NULL, TRUE, + prow, nzprow, NULL, NULL, MAT_ROUNDDEFAULT); + clear_action(&lp->piv_strategy, PRICE_FORCEFULL); + + /* Find a suitably non-singular variable to enter ("most orthogonal") */ + bestindex = 0; + bestvalue = 0; + for(i = 1; i <= lp->sum-abs(lp->P1extraDim); i++) { + if(!lp->is_basic[i] && !is_fixedvar(lp, i) && + (fabs(prow[i]) > bestvalue)) { + bestindex = i; + bestvalue = fabs(prow[i]); + } + } + + /* Prepare to update inverse and pivot/iterate (compute Bw=a) */ + if(i > lp->sum-abs(lp->P1extraDim)) + bestindex = 0; + else + fsolve(lp, bestindex, prow, nzprow, lp->epsmachine, 1.0, TRUE); + + return( bestindex ); +} + +/* Find the primal simplex entering non-basic column variable */ +STATIC int colprim(lprec *lp, LPSREAL *drow, int *nzdrow, MYBOOL skipupdate, int partialloop, int *candidatecount, MYBOOL updateinfeas, LPSREAL *xviol) +{ + int i, ix, iy, iz, ninfeas, nloop = 0; + LPSREAL f, sinfeas, xinfeas, epsvalue = lp->epsdual; + pricerec current, candidate; + MYBOOL collectMP = FALSE; + int *coltarget = NULL; + + /* Identify pivot column according to pricing strategy; set + entering variable initial threshold reduced cost value to "0" */ + current.pivot = lp->epsprimal; /* Minimum acceptable improvement */ + current.varno = 0; + current.lp = lp; + current.isdual = FALSE; + candidate.lp = lp; + candidate.isdual = FALSE; + *candidatecount = 0; + + /* Update local value of pivot setting and determine active multiple pricing set */ + lp->_piv_rule_ = get_piv_rule(lp); +doLoop: + nloop++; + if((lp->multivars != NULL) && ((lp->simplex_mode & SIMPLEX_PRIMAL_PRIMAL) != 0)) { + collectMP = multi_mustupdate(lp->multivars); + if(collectMP) { + multi_restart(lp->multivars); + coltarget = NULL; + } + else + coltarget = multi_indexSet(lp->multivars, FALSE); + } + + /* Compute reduced costs c - c*Inv(B), if necessary + (i.e. the previous iteration was not a "minor" iteration/bound flip) */ + if(!skipupdate) { +#ifdef UsePrimalReducedCostUpdate + /* Recompute from scratch only at the beginning, otherwise update */ + if((lp->current_iter > 0) && (refactRecent(lp) == AUTOMATIC)) +#endif + compute_reducedcosts(lp, FALSE, 0, coltarget, (MYBOOL) ((nloop <= 1) || (partialloop > 1)), + NULL, NULL, + drow, nzdrow, + MAT_ROUNDDEFAULT); + } + + /* Loop over active partial column set; we presume that reduced costs + have only been updated for columns in the active partial range. */ + ix = 1; + iy = nzdrow[0]; + ninfeas = 0; + xinfeas = 0; + sinfeas = 0; + makePriceLoop(lp, &ix, &iy, &iz); + iy *= iz; + for(; ix*iz <= iy; ix += iz) { + i = nzdrow[ix]; +#if 0 /* Not necessary since we masked them out in compute_reducedcosts() */ + if(i > lp->sum-abs(lp->P1extraDim)) + continue; +#endif + + /* Check if the pivot candidate is on the block-list */ + if(lp->rejectpivot[0] > 0) { + int kk; + for(kk = 1; (kk <= lp->rejectpivot[0]) && (i != lp->rejectpivot[kk]); kk++); + if(kk <= lp->rejectpivot[0]) + continue; + } + + /* Retrieve the applicable reduced cost - threshold should not be smaller than 0 */ + f = my_chsign(lp->is_lower[i], drow[i]); + if(f <= epsvalue) + continue; + + /* Find entering variable according to strategy (largest positive f) */ + ninfeas++; + SETMAX(xinfeas, f); + sinfeas += f; + candidate.pivot = normalizeEdge(lp, i, f, FALSE); + candidate.varno = i; + if(findImprovementVar(¤t, &candidate, collectMP, candidatecount)) + break; + } + + /* Check if we should loop again after a multiple pricing update */ + if(lp->multivars != NULL) { + if(collectMP) { + if(!lp->multivars->sorted) + lp->multivars->sorted = QS_execute(lp->multivars->sortedList, lp->multivars->used, + (findCompare_func *) compareImprovementQS, NULL); + coltarget = multi_indexSet(lp->multivars, TRUE); + } + else if((current.varno == 0) && (lp->multivars->retries == 0)) { + ix = partial_blockStart(lp, FALSE); + iy = partial_blockEnd(lp, FALSE); + lp->multivars->used = 0; + lp->multivars->retries++; + goto doLoop; + } + /* Shrink the candidate list */ + lp->multivars->retries = 0; + if(current.varno != 0) + multi_removevar(lp->multivars, current.varno); + } + + /* Check for optimality */ + if(xviol != NULL) + *xviol = xinfeas; + if(updateinfeas) + lp->suminfeas = fabs(sinfeas); + if((lp->multivars == NULL) && (current.varno > 0) && + !verify_stability(lp, TRUE, xinfeas, sinfeas, ninfeas)) + current.varno = 0; + + /* Produce statistics */ + if(lp->spx_trace) { + if(current.varno > 0) + report(lp, DETAILED, "colprim: Column %d reduced cost = " RESULTVALUEMASK "\n", + current.varno, current.pivot); + else + report(lp, DETAILED, "colprim: No positive reduced costs found, optimality!\n"); + } + + return( current.varno ); +} /* colprim */ + +/* Find the primal simplex leaving basic column variable */ +STATIC int rowprim(lprec *lp, int colnr, LREAL *theta, LPSREAL *pcol, int *nzpcol, MYBOOL forceoutEQ, LPSREAL *xviol) +{ + int i, ii, iy, iz, Hpass, k, *nzlist; + LREAL f, savef; + LPSREAL Heps, Htheta, Hlimit, epsvalue, epspivot, p = 0.0; + pricerec current, candidate; + MYBOOL isupper = !lp->is_lower[colnr], HarrisTwoPass = FALSE; + + /* Update local value of pivot setting */ + lp->_piv_rule_ = get_piv_rule(lp); + if(nzpcol == NULL) + nzlist = (int *) mempool_obtainVector(lp->workarrays, lp->rows+1, sizeof(*nzlist)); + else + nzlist = nzpcol; + + /* Find unconditional non-zeros and optionally compute relative size of epspivot */ + epspivot = lp->epspivot; + epsvalue = lp->epsvalue; + Hlimit = 0; + Htheta = 0; + k = 0; + for(i = 1; i <= lp->rows; i++) { + p = fabs(pcol[i]); + if(p > Hlimit) + Hlimit = p; + if(p > epsvalue) { + k++; + nzlist[k] = i; + SETMAX(Htheta, p); + } +#ifdef Paranoia + else { + if(lp->spx_trace) + report(lp, FULL, "rowprim: Row %d with pivot " RESULTVALUEMASK " rejected as too small\n", + i, p); + } +#endif + } + if(xviol != NULL) + *xviol = Htheta; + Htheta = 0; + + /* Update non-zero list based on the new pivot threshold */ +#ifdef UseRelativePivot_Primal +/* epspivot *= sqrt(lp->matA->dynrange) / lp->matA->infnorm; */ + epspivot /= MAX(1, sqrt(lp->matA->colmax[colnr])); + iy = k; + k = 0; + p = 0; + for(ii = 1; ii <= iy; ii++) { + i = nzlist[ii]; + p = fabs(pcol[i]); + + /* Compress the list of valid alternatives, if appropriate */ + if(p > epspivot) { + k++; + nzlist[k] = i; + } +#ifdef Paranoia + else { + if(lp->spx_trace) + report(lp, FULL, "rowprim: Row %d with pivot " RESULTVALUEMASK " rejected as too small\n", + i, p); + } +#endif + } +#endif + + /* Initialize counters */ + nzlist[0] = k; + k = 0; + +Retry: + k++; + HarrisTwoPass = is_piv_mode(lp, PRICE_HARRISTWOPASS); + if(HarrisTwoPass) + Hpass = 1; + else + Hpass = 2; + current.theta = lp->infinite; + current.pivot = 0; + current.varno = 0; + current.isdual = FALSE; + current.epspivot = epspivot; + current.lp = lp; + candidate.epspivot = epspivot; + candidate.isdual = FALSE; + candidate.lp = lp; + savef = 0; + for(; Hpass <= 2; Hpass++) { + Htheta = lp->infinite; + if(Hpass == 1) { + Hlimit = lp->infinite; /* Don't apply any limit in the first pass */ + Heps = epspivot/lp->epsprimal; /* Scaled to lp->epsprimal used in compute_theta() */ + } + else { + Hlimit = current.theta; /* This is the smallest Theta of the first pass */ + Heps = 0.0; + } + current.theta = lp->infinite; + current.pivot = 0; + current.varno = 0; + savef = 0; + + ii = 1; + iy = nzlist[0]; + makePriceLoop(lp, &ii, &iy, &iz); + iy *= iz; + for(; ii*iz <= iy; ii += iz) { + i = nzlist[ii]; + f = pcol[i]; + candidate.theta = f; + candidate.pivot = f; + candidate.varno = i; + + /*i =*/ compute_theta(lp, i, &candidate.theta, isupper, + my_if(lp->upbo[lp->var_basic[i]] < lp->epsprimal, Heps/10, Heps), TRUE); + + if(fabs(candidate.theta) >= lp->infinite) { + savef = f; + candidate.theta = 2*lp->infinite; + continue; + } + + /* Find the candidate leaving variable according to strategy (smallest theta) */ + if((Hpass == 2) && (candidate.theta > Hlimit)) + continue; + + /* Give a slight preference to fixed variables (mainly equality slacks) */ + if(forceoutEQ) { + p = candidate.pivot; + if(lp->upbo[lp->var_basic[i]] < lp->epsprimal) { + /* Give an extra early boost to equality slack elimination, if specified */ + if(forceoutEQ == AUTOMATIC) + candidate.pivot *= 1.0+lp->epspivot; + else + candidate.pivot *= 10.0; + + } + } + if(HarrisTwoPass) { + f = candidate.theta; + if(Hpass == 2) + candidate.theta = 1; + if(findSubstitutionVar(¤t, &candidate, NULL)) + break; + if((Hpass == 2) && (current.varno == candidate.varno)) + Htheta = f; + } + else + if(findSubstitutionVar(¤t, &candidate, NULL)) + break; + /* Restore temporarily modified pivot */ + if(forceoutEQ && (current.varno == candidate.varno)) + current.pivot = p; + } + } + if(HarrisTwoPass) + current.theta = Htheta; + + /* Handle case of no available leaving variable */ + if(current.varno == 0) { + if(lp->upbo[colnr] >= lp->infinite) { + /* Optionally try again with reduced pivot threshold level */ + if(k < 2) { + epspivot = epspivot / 10; + goto Retry; + } + } + else { +#if 1 + i = 1; + while((pcol[i] >= 0) && (i <= lp->rows)) + i++; + if(i > lp->rows) { /* Empty column with upper bound! */ + lp->is_lower[colnr] = !lp->is_lower[colnr]; +/* lp->is_lower[colnr] = FALSE; */ + lp->rhs[0] += lp->upbo[colnr]*pcol[0]; + } + else /* if(pcol[i]<0) */ + { + current.varno = i; + } +#endif + } + } + else if(current.theta >= lp->infinite) { + report(lp, IMPORTANT, "rowprim: Numeric instability pcol[%d] = %g, rhs[%d] = %g, upbo = %g\n", + current.varno, savef, current.varno, lp->rhs[current.varno], + lp->upbo[lp->var_basic[current.varno]]); + } + + /* Return working array to pool */ + if(nzpcol == NULL) + mempool_releaseVector(lp->workarrays, (char *) nzlist, FALSE); + + if(lp->spx_trace) + report(lp, DETAILED, "row_prim: %d, pivot size = " RESULTVALUEMASK "\n", + current.varno, current.pivot); + +/* *theta = current.theta; */ + *theta = fabs(current.theta); + + return(current.varno); +} /* rowprim */ + + +/* Find the dual simplex leaving basic variable */ +STATIC int rowdual(lprec *lp, LPSREAL *rhvec, MYBOOL forceoutEQ, MYBOOL updateinfeas, LPSREAL *xviol) +{ + int k, i, iy, iz, ii, ninfeas; + register LPSREAL rh; + LPSREAL up, lo = 0, + epsvalue, sinfeas, xinfeas; + pricerec current, candidate; + MYBOOL collectMP = FALSE; + + /* Initialize */ + if(rhvec == NULL) + rhvec = lp->rhs; + epsvalue = lp->epsdual; + current.pivot = -epsvalue; /* Initialize leaving variable threshold; "less than 0" */ + current.theta = 0; + current.varno = 0; + current.isdual = TRUE; + current.lp = lp; + candidate.isdual = TRUE; + candidate.lp = lp; + + /* Loop over active partial row set */ + if(is_action(lp->piv_strategy, PRICE_FORCEFULL)) { + k = 1; + iy = lp->rows; + } + else { + k = partial_blockStart(lp, TRUE); + iy = partial_blockEnd(lp, TRUE); + } + ninfeas = 0; + xinfeas = 0; + sinfeas = 0; + makePriceLoop(lp, &k, &iy, &iz); + iy *= iz; + for(; k*iz <= iy; k += iz) { + + /* Map loop variable to target */ + i = k; + + /* Check if the pivot candidate is on the block-list */ + if(lp->rejectpivot[0] > 0) { + int kk; + for(kk = 1; (kk <= lp->rejectpivot[0]) && (i != lp->rejectpivot[kk]); kk++); + if(kk <= lp->rejectpivot[0]) + continue; + } + + /* Set local variables - express violation as a negative number */ + ii = lp->var_basic[i]; + up = lp->upbo[ii]; + lo = 0; + rh = rhvec[i]; + if(rh > up) + rh = up - rh; + else + rh -= lo; + up -= lo; + + /* Analyze relevant constraints ... + KE version skips uninteresting alternatives and gives a noticeable speedup */ +/* if((rh < -epsvalue*sqrt(lp->matA->rowmax[i])) || */ + if((rh < -epsvalue) || + ((forceoutEQ == TRUE) && (up < epsvalue))) { /* It causes instability to remove the "TRUE" test */ + + /* Accumulate stats */ + ninfeas++; + SETMIN(xinfeas, rh); + sinfeas += rh; + + /* Give a slight preference to fixed variables (mainly equality slacks) */ + if(up < epsvalue) { + /* Break out immediately if we are directed to force slacks out of the basis */ + if(forceoutEQ == TRUE) { + current.varno = i; + current.pivot = -1; + break; + } + /* Give an extra early boost to equality slack elimination, if specified */ + if(forceoutEQ == AUTOMATIC) + rh *= 10.0; + else /* .. or just the normal. marginal boost */ + rh *= 1.0+lp->epspivot; + } + + /* Select leaving variable according to strategy (the most negative/largest violation) */ + candidate.pivot = normalizeEdge(lp, i, rh, TRUE); + candidate.varno = i; + if(findImprovementVar(¤t, &candidate, collectMP, NULL)) + break; + } + } + + /* Verify infeasibility */ + if(updateinfeas) + lp->suminfeas = fabs(sinfeas); + if((ninfeas > 1) && + !verify_stability(lp, FALSE, xinfeas, sinfeas, ninfeas)) { + report(lp, IMPORTANT, "rowdual: Check for reduced accuracy and tolerance settings.\n"); + current.varno = 0; + } + + /* Produce statistics */ + if(lp->spx_trace) { + report(lp, NORMAL, "rowdual: Infeasibility sum " RESULTVALUEMASK " in %7d constraints.\n", + sinfeas, ninfeas); + if(current.varno > 0) { + report(lp, DETAILED, "rowdual: rhs[%d] = " RESULTVALUEMASK "\n", + current.varno, lp->rhs[current.varno]); + } + else + report(lp, FULL, "rowdual: Optimality - No primal infeasibilities found\n"); + } + if(xviol != NULL) + *xviol = fabs(xinfeas); + + return(current.varno); +} /* rowdual */ + + +STATIC void longdual_testset(lprec *lp, int which, int rownr, LPSREAL *prow, int *nzprow, + LPSREAL *drow, int *nzdrow) +{ + int i,j; + LPSREAL F = lp->infinite; + if(which == 0) { /* Maros Example-1 - raw data */ + j = 1; i = lp->rows+j; lp->upbo[i] = 0; lp->is_lower[i] = TRUE; nzprow[j] = i; prow[i] = 2; drow[i] = -1; + j = 2; i = lp->rows+j; lp->upbo[i] = 1; lp->is_lower[i] = TRUE; nzprow[j] = i; prow[i] = -2; drow[i] = 2; + j = 3; i = lp->rows+j; lp->upbo[i] = 1; lp->is_lower[i] = TRUE; nzprow[j] = i; prow[i] = 1; drow[i] = 5; + j = 4; i = lp->rows+j; lp->upbo[i] = 1; lp->is_lower[i] = FALSE; nzprow[j] = i; prow[i] = 3; drow[i] = -6; + j = 5; i = lp->rows+j; lp->upbo[i] = 1; lp->is_lower[i] = FALSE; nzprow[j] = i; prow[i] = -4; drow[i] = -2; + j = 6; i = lp->rows+j; lp->upbo[i] = 1; lp->is_lower[i] = TRUE; nzprow[j] = i; prow[i] = -1; drow[i] = 0; + j = 7; i = lp->rows+j; lp->upbo[i] = 2; lp->is_lower[i] = FALSE; nzprow[j] = i; prow[i] = 1; drow[i] = 0; + j = 8; i = lp->rows+j; lp->upbo[i] = 1; lp->is_lower[i] = FALSE; nzprow[j] = i; prow[i] = -2; drow[i] = 0; + j = 9; i = lp->rows+j; lp->upbo[i] = 5; lp->is_lower[i] = TRUE; nzprow[j] = i; prow[i] = -1; drow[i] = 4; + j = 10; i = lp->rows+j; lp->upbo[i] = F; lp->is_lower[i] = TRUE; nzprow[j] = i; prow[i] = -2; drow[i] = 10; + nzprow[0] = i-lp->rows; + lp->rhs[rownr] = -11; + lp->upbo[lp->var_basic[rownr]] = F; + lp->rhs[0] = 1; + } + else if(which == 1) { /* Maros Example-1 - presorted in correct order */ + j = 1; i = lp->rows+j; lp->upbo[i] = 0; lp->is_lower[i] = TRUE; nzprow[j] = i; prow[i] = 2; drow[i] = -1; + j = 2; i = lp->rows+j; lp->upbo[i] = 1; lp->is_lower[i] = TRUE; nzprow[j] = i; prow[i] = 1; drow[i] = 5; + j = 3; i = lp->rows+j; lp->upbo[i] = 1; lp->is_lower[i] = FALSE; nzprow[j] = i; prow[i] = -4; drow[i] = -2; + j = 4; i = lp->rows+j; lp->upbo[i] = 1; lp->is_lower[i] = FALSE; nzprow[j] = i; prow[i] = -2; drow[i] = 0; + + j = 5; i = lp->rows+j; lp->upbo[i] = 1; lp->is_lower[i] = TRUE; nzprow[j] = i; prow[i] = -1; drow[i] = 0; + j = 6; i = lp->rows+j; lp->upbo[i] = 2; lp->is_lower[i] = FALSE; nzprow[j] = i; prow[i] = 1; drow[i] = 0; + j = 7; i = lp->rows+j; lp->upbo[i] = 1; lp->is_lower[i] = TRUE; nzprow[j] = i; prow[i] = -2; drow[i] = 2; + j = 8; i = lp->rows+j; lp->upbo[i] = 1; lp->is_lower[i] = FALSE; nzprow[j] = i; prow[i] = 3; drow[i] = -6; + j = 9; i = lp->rows+j; lp->upbo[i] = 5; lp->is_lower[i] = TRUE; nzprow[j] = i; prow[i] = -1; drow[i] = 4; + j = 10; i = lp->rows+j; lp->upbo[i] = F; lp->is_lower[i] = TRUE; nzprow[j] = i; prow[i] = -2; drow[i] = 10; + nzprow[0] = i-lp->rows; + lp->rhs[rownr] = -11; + lp->upbo[lp->var_basic[rownr]] = F; + lp->rhs[0] = 1; + } + + else if(which == 10) { /* Maros Example-2 - raw data */ + j = 1; i = lp->rows+j; lp->upbo[i] = 5; lp->is_lower[i] = TRUE; nzprow[j] = i; prow[i] = -2; drow[i] = 2; + j = 2; i = lp->rows+j; lp->upbo[i] = 1; lp->is_lower[i] = TRUE; nzprow[j] = i; prow[i] = 3; drow[i] = 3; + j = 3; i = lp->rows+j; lp->upbo[i] = 1; lp->is_lower[i] = FALSE; nzprow[j] = i; prow[i] = -2; drow[i] = 0; + j = 4; i = lp->rows+j; lp->upbo[i] = 2; lp->is_lower[i] = FALSE; nzprow[j] = i; prow[i] = -1; drow[i] = -2; + j = 5; i = lp->rows+j; lp->upbo[i] = 2; lp->is_lower[i] = TRUE; nzprow[j] = i; prow[i] = 1; drow[i] = 0; + j = 6; i = lp->rows+j; lp->upbo[i] = F; lp->is_lower[i] = TRUE; nzprow[j] = i; prow[i] = 3; drow[i] = 9; + nzprow[0] = i-lp->rows; + lp->rhs[rownr] = 14; + lp->upbo[lp->var_basic[rownr]] = 2; + lp->rhs[0] = 6; + } +} + + +/* Find the dual simplex entering non-basic variable */ +STATIC int coldual(lprec *lp, int row_nr, LPSREAL *prow, int *nzprow, + LPSREAL *drow, int *nzdrow, + MYBOOL dualphase1, MYBOOL skipupdate, + int *candidatecount, LPSREAL *xviol) +{ + int i, iy, iz, ix, k, nbound; + LREAL w, g, quot; + LPSREAL viol, p, epspivot = lp->epspivot; +#ifdef MachinePrecRoundRHS + LPSREAL epsvalue = lp->epsmachine; +#else + LPSREAL epsvalue = lp->epsvalue; +#endif + pricerec current, candidate; + MYBOOL isbatch = FALSE, /* Requires that lp->longsteps->size > lp->sum */ + dolongsteps = (MYBOOL) (lp->longsteps != NULL); + + /* Initialize */ + if(xviol != NULL) + *xviol = lp->infinite; + if(dolongsteps && !dualphase1) + dolongsteps = AUTOMATIC; /* Sets Phase1 = TRUE, Phase2 = AUTOMATIC */ + current.theta = lp->infinite; + current.pivot = 0; + current.varno = 0; + current.epspivot = epspivot; + current.isdual = TRUE; + current.lp = lp; + candidate.epspivot = epspivot; + candidate.isdual = TRUE; + candidate.lp = lp; + *candidatecount = 0; + + /* Compute reduced costs */ + if(!skipupdate) { +#ifdef UseDualReducedCostUpdate + /* Recompute from scratch only at the beginning, otherwise update */ + if((lp->current_iter > 0) && (refactRecent(lp) < AUTOMATIC)) + compute_reducedcosts(lp, TRUE, row_nr, NULL, TRUE, + prow, nzprow, + NULL, NULL, + MAT_ROUNDDEFAULT); + else +#endif + compute_reducedcosts(lp, TRUE, row_nr, NULL, TRUE, + prow, nzprow, + drow, nzdrow, + MAT_ROUNDDEFAULT); + } + +#if 0 + /* Override all above to do in-line testing with fixed test set */ + if(lp->rows > 1 && lp->columns > 10) + longdual_testset(lp, 10, row_nr, prow, nzprow, drow, nzdrow); +#endif + + /* Compute the current violation of the bounds of the outgoing variable, + negative for violation of lower bound, positive for upper bound violation. + (Basic variables are always lower-bounded, by lp_solve convention) */ + g = 1; + viol = lp->rhs[row_nr]; + if(viol > 0) { /* Check if the leaving variable is >= its upper bound */ + p = lp->upbo[lp->var_basic[row_nr]]; + if(p < lp->infinite) { + viol -= p; + my_roundzero(viol, epsvalue); + if(viol > 0) + g = -1; + } + /* Do validation of numerics */ + if(g == 1) { + if(viol >= lp->infinite) { + report(lp, IMPORTANT, "coldual: Large basic solution value %g at iter %.0f indicates numerical instability\n", + lp->rhs[row_nr], (double) get_total_iter(lp)); + lp->spx_status = NUMFAILURE; + return( 0 ); + + } + if(skipupdate) + report(lp, DETAILED, "coldual: Inaccurate bound-flip accuracy at iter %.0f\n", + (double) get_total_iter(lp)); + else + report(lp, SEVERE, "coldual: Leaving variable %d does not violate bounds at iter %.0f\n", + row_nr, (double) get_total_iter(lp)); + return( -1 ); + } + } + + /* Update local value of pivot setting */ + lp->_piv_rule_ = get_piv_rule(lp); + + /* Condense list of relevant targets */ + p = 0; + k = 0; + nbound = 0; + ix = 1; + iy = nzprow[0]; + for(ix = 1; ix <= iy; ix++) { + i = nzprow[ix]; + w = prow[i] * g; /* Change sign if upper bound of the leaving variable is violated */ + /* Change sign if the non-basic variable is currently upper-bounded */ + /* w *= 2*lp->is_lower[i] - 1; */ /* fails on AIX!!! */ + w = my_chsign(!lp->is_lower[i], w); + + /* Check if the candidate is worth using for anything */ + if(w < -epsvalue) { + /* Tally bounded variables */ + if(lp->upbo[i] < lp->infinite) + nbound++; + + /* Update the nz-index */ + k++; + nzprow[k] = i; + SETMAX(p, -w); + } +#ifdef Paranoia + else { + if(lp->spx_trace) { + report(lp, FULL, "coldual: Candidate variable prow[%d] rejected with %g too small\n", + i, w); + } + } +#endif + + } + nzprow[0] = k; + if(xviol != NULL) + *xviol = p; + +#ifdef UseRelativePivot_Dual +/* epspivot *= sqrt(lp->matA->dynrange) / lp->matA->infnorm; */ + epspivot /= MAX(1, sqrt(lp->matA->rowmax[row_nr])); +#endif + current.epspivot = epspivot; + candidate.epspivot = epspivot; + + /* Initialize the long-step structures if indicated */ + if(dolongsteps) { + if((nzprow[0] <= 1) || (nbound == 0)) { /* Don't bother */ + dolongsteps = FALSE; + lp->longsteps->indexSet[0] = 0; + } + else { + multi_restart(lp->longsteps); + multi_valueInit(lp->longsteps, g*viol, lp->rhs[0]); + } + } + + /* Loop over all entering column candidates */ + ix = 1; + iy = nzprow[0]; + makePriceLoop(lp, &ix, &iy, &iz); + iy *= iz; + for(; ix*iz <= iy; ix += iz) { + i = nzprow[ix]; + + /* Compute the dual ratio (prow = w and drow = cbar in Chvatal's "nomenclatura") */ + w = prow[i] * g; /* Change sign if upper bound of the leaving variable is violated */ + quot = -drow[i] / w; /* Remember this sign-reversal in multi_recompute! */ + + /* Apply the selected pivot strategy (smallest theta) */ + candidate.theta = quot; /* Note that abs() is applied in findSubstitutionVar */ + candidate.pivot = w; + candidate.varno = i; + + /* Collect candidates for minor iterations/bound flips */ + if(dolongsteps) { + if(isbatch && (ix == iy)) + isbatch = AUTOMATIC; + if(collectMinorVar(&candidate, lp->longsteps, (MYBOOL) (dolongsteps == AUTOMATIC), isbatch) && + lp->spx_trace) + report(lp, DETAILED, "coldual: Long-dual break point with %d bound-flip variables\n", + lp->longsteps->used); + if(lp->spx_status == FATHOMED) + return( 0 ); + } + + /* We have a candidate for entering the basis; check if it is better than the incumbent */ + else if(findSubstitutionVar(¤t, &candidate, candidatecount)) + break; + } + + /* Set entering variable and long-step bound swap variables */ + if(dolongsteps) { + *candidatecount = lp->longsteps->used; + i = multi_enteringvar(lp->longsteps, NULL, 3); + } + else + i = current.varno; + + if(lp->spx_trace) + report(lp, NORMAL, "coldual: Entering column %d, reduced cost %g, pivot value %g, bound swaps %d\n", + i, drow[i], prow[i], multi_used(lp->longsteps)); + + return( i ); +} /* coldual */ + + +INLINE LPSREAL normalizeEdge(lprec *lp, int item, LPSREAL edge, MYBOOL isdual) +{ +#if 1 + /* Don't use the pricer "close to home", since this can possibly + worsen the final feasibility picture (mainly a Devex issue?) */ + if(fabs(edge) > lp->epssolution) +#endif + edge /= getPricer(lp, item, isdual); + if((lp->piv_strategy & PRICE_RANDOMIZE) != 0) + edge *= (1.0-PRICER_RANDFACT) + PRICER_RANDFACT*rand_uniform(lp, 1.0); + return( edge ); + +} + +/* Support routines for block detection and partial pricing */ +STATIC int partial_findBlocks(lprec *lp, MYBOOL autodefine, MYBOOL isrow) +{ + int i, jj, n, nb, ne, items; + LPSREAL hold, biggest, *sum = NULL; + MATrec *mat = lp->matA; + partialrec *blockdata; + + if(!mat_validate(mat)) + return( 1 ); + + blockdata = IF(isrow, lp->rowblocks, lp->colblocks); + items = IF(isrow, lp->rows, lp->columns); + allocREAL(lp, &sum, items+1, FALSE); + + /* Loop over items and compute the average column index for each */ + sum[0] = 0; + for(i = 1; i <= items; i++) { + n = 0; + if(isrow) { + nb = mat->row_end[i-1]; + ne = mat->row_end[i]; + } + else { + nb = mat->col_end[i-1]; + ne = mat->col_end[i]; + } + n = ne-nb; + sum[i] = 0; + if(n > 0) { + if(isrow) + for(jj = nb; jj < ne; jj++) + sum[i] += ROW_MAT_COLNR(jj); + else + for(jj = nb; jj < ne; jj++) + sum[i] += COL_MAT_ROWNR(jj); + sum[i] /= n; + } + else + sum[i] = sum[i-1]; + } + + /* Loop over items again, find largest difference and make monotone */ + hold = 0; + biggest = 0; + for(i = 2; i <= items; i++) { + hold = sum[i] - sum[i-1]; + if(hold > 0) { + if(hold > biggest) + biggest = hold; + } + else + hold = 0; + sum[i-1] = hold; + } + + /* Loop over items again and find differences exceeding threshold; + the discriminatory power of this routine depends strongly on the + magnitude of the scaling factor - from empirical evidence > 0.9 */ + biggest = MAX(1, 0.9*biggest); + n = 0; + nb = 0; + ne = 0; + for(i = 1; i < items; i++) + if(sum[i] > biggest) { + ne += i-nb; /* Compute sum of index gaps between maxima */ + nb = i; + n++; /* Increment count */ + } + + /* Clean up */ + FREE(sum); + + /* Require that the maxima are spread "nicely" across the columns, + otherwise return that there is only one monolithic block. + (This is probably an area for improvement in the logic!) */ + if(n > 0) { + ne /= n; /* Average index gap between maxima */ + i = IF(isrow, lp->columns, lp->rows); + nb = i / ne; /* Another estimated block count */ + if(abs(nb - n) > 2) /* Probably Ok to require equality (nb==n)*/ + n = 1; + else if(autodefine) /* Generate row/column break-indeces for partial pricing */ + set_partialprice(lp, nb, NULL, isrow); + } + else + n = 1; + + return( n ); +} +STATIC int partial_blockStart(lprec *lp, MYBOOL isrow) +{ + partialrec *blockdata; + + blockdata = IF(isrow, lp->rowblocks, lp->colblocks); + if(blockdata == NULL) + return( 1 ); + else { + if((blockdata->blocknow < 1) || (blockdata->blocknow > blockdata->blockcount)) + blockdata->blocknow = 1; + return( blockdata->blockend[blockdata->blocknow-1] ); + } +} +STATIC int partial_blockEnd(lprec *lp, MYBOOL isrow) +{ + partialrec *blockdata; + + blockdata = IF(isrow, lp->rowblocks, lp->colblocks); + if(blockdata == NULL) + return( IF(isrow, lp->rows, lp->sum) ); + else { + if((blockdata->blocknow < 1) || (blockdata->blocknow > blockdata->blockcount)) + blockdata->blocknow = 1; + return( blockdata->blockend[blockdata->blocknow]-1 ); + } +} +STATIC int partial_blockNextPos(lprec *lp, int block, MYBOOL isrow) +{ + partialrec *blockdata; + + blockdata = IF(isrow, lp->rowblocks, lp->colblocks); +#ifdef Paranoia + if((blockdata == NULL) || (block <= 1) || (block > blockdata->blockcount)) { + report(lp, SEVERE, "partial_blockNextPos: Invalid block %d specified.\n", + block); + return( -1 ); + } +#endif + block--; + if(blockdata->blockpos[block] == blockdata->blockend[block+1]) + blockdata->blockpos[block] = blockdata->blockend[block]; + else + blockdata->blockpos[block]++; + return( blockdata->blockpos[block] ); +} +STATIC MYBOOL partial_blockStep(lprec *lp, MYBOOL isrow) +{ + partialrec *blockdata; + + blockdata = IF(isrow, lp->rowblocks, lp->colblocks); + if(blockdata == NULL) + return( FALSE ); + else if(blockdata->blocknow < blockdata->blockcount) { + blockdata->blocknow++; + return( TRUE); + } + else { + blockdata->blocknow = 1; + return( TRUE ); + } +} +STATIC MYBOOL partial_isVarActive(lprec *lp, int varno, MYBOOL isrow) +{ + partialrec *blockdata; + + blockdata = IF(isrow, lp->rowblocks, lp->colblocks); + if(blockdata == NULL) + return( TRUE ); + else { + return( (MYBOOL) ((varno >= blockdata->blockend[blockdata->blocknow-1]) && + (varno < blockdata->blockend[blockdata->blocknow])) ); + } +} + + +/* Multiple pricing routines */ +STATIC multirec *multi_create(lprec *lp, MYBOOL truncinf) +{ + multirec *multi; + + multi = (multirec *) calloc(1, sizeof(*multi)); + if(multi != NULL) { + multi->active = 1; + multi->lp = lp; + multi->epszero = lp->epsprimal; + multi->truncinf = truncinf; + } + + return(multi); +} +STATIC void multi_free(multirec **multi) +{ + if((multi == NULL) || (*multi == NULL)) + return; + FREE((*multi)->items); + FREE((*multi)->valueList); + FREE((*multi)->indexSet); + FREE((*multi)->freeList); + FREE((*multi)->sortedList); + FREE(*multi); +} +STATIC MYBOOL multi_mustupdate(multirec *multi) +{ + return( (MYBOOL) ((multi != NULL) && + (multi->used < multi->limit)) ); +} +STATIC MYBOOL multi_resize(multirec *multi, int blocksize, int blockdiv, MYBOOL doVlist, MYBOOL doIset) +{ + MYBOOL ok = TRUE; + + if((blocksize > 1) && (blockdiv > 0)) { + int oldsize = multi->size; + + multi->size = blocksize; + if(blockdiv > 1) + multi->limit += (multi->size-oldsize) / blockdiv; + + multi->items = (pricerec *) realloc(multi->items, (multi->size+1)*sizeof(*(multi->items))); + multi->sortedList = (UNIONTYPE QSORTrec *) realloc(multi->sortedList, (multi->size+1)*sizeof(*(multi->sortedList))); + ok = (multi->items != NULL) && (multi->sortedList != NULL) && + allocINT(multi->lp, &(multi->freeList), multi->size+1, AUTOMATIC); + if(ok) { + int i, n; + + if(oldsize == 0) + i = 0; + else + i = multi->freeList[0]; + multi->freeList[0] = i + (multi->size-oldsize); + for(n = multi->size - 1, i++; i <= multi->freeList[0]; i++, n--) + multi->freeList[i] = n; + } + if(doVlist) + ok &= allocREAL(multi->lp, &(multi->valueList), multi->size+1, AUTOMATIC); + if(doIset) { + ok &= allocINT(multi->lp, &(multi->indexSet), multi->size+1, AUTOMATIC); + if(ok && (oldsize == 0)) + multi->indexSet[0] = 0; + } + if(!ok) + goto Undo; + + } + else { +Undo: + multi->size = 0; + FREE(multi->items); + FREE(multi->valueList); + FREE(multi->indexSet); + FREE(multi->freeList); + FREE(multi->sortedList); + } + multi->active = 1; + + return( ok ); +} + +STATIC int multi_size(multirec *multi) +{ + if(multi == NULL) + return( 0 ); + else + return( multi->size ); +} + +STATIC int multi_used(multirec *multi) +{ + if(multi == NULL) + return( 0 ); + else + return( multi->used ); +} + +STATIC int multi_restart(multirec *multi) +{ + int i, n = multi->used; + + multi->used = 0; + multi->sorted = FALSE; + multi->dirty = FALSE; + if(multi->freeList != NULL) { + for(i = 1; i <= multi->size; i++) + multi->freeList[i] = multi->size - i; + multi->freeList[0] = multi->size; + } +#if 0 + if(multi->indexSet != NULL) + multi->indexSet[0] = 0; +#endif + return( n ); +} + +STATIC void multi_valueInit(multirec *multi, LPSREAL step_base, LPSREAL obj_base) +{ + multi->step_base = multi->step_last = step_base; + multi->obj_base = multi->obj_last = obj_base; +#ifdef Paranoia + if(step_base > 0) + report(multi->lp, SEVERE, "multi_valueInit: Positive constraint violation %g provided at iteration %6.0f\n", + step_base, (double) get_total_iter(multi->lp)); +#endif +} + +STATIC LPSREAL *multi_valueList(multirec *multi) +{ + return(multi->valueList); +} + +STATIC int *multi_indexSet(multirec *multi, MYBOOL regenerate) +{ + if(regenerate) + multi_populateSet(multi, NULL, -1); + return(multi->indexSet); +} + +STATIC int multi_getvar(multirec *multi, int item) +{ +#ifdef Paranoia + if((item < 1) || (item >= multi->size)) + return(-1); +#endif + return( ((pricerec *) &(multi->sortedList[item].pvoidreal.ptr))->varno ); +} + +STATIC MYBOOL multi_recompute(multirec *multi, int index, MYBOOL isphase2, MYBOOL fullupdate) +{ + int i, n; + LPSREAL lB, uB, Alpha, this_theta, prev_theta; + lprec *lp = multi->lp; + pricerec *thisprice; + + /* Define target update window */ + if(multi->dirty) { + index = 0; + n = multi->used - 1; + } + else if(fullupdate) + n = multi->used - 1; + else + n = index; + + /* Initialize accumulators from the specified update index */ + if(index == 0) { + multi->maxpivot = 0; + multi->maxbound = 0; + multi->step_last = multi->step_base; + multi->obj_last = multi->obj_base; + thisprice = NULL; + this_theta = 0; + } + else { + multi->obj_last = multi->valueList[index-1]; + multi->step_last = multi->sortedList[index-1].pvoidreal.realval; + thisprice = (pricerec *) (multi->sortedList[index-1].pvoidreal.ptr); + this_theta = thisprice->theta; + } + + /* Update step lengths and objective values */ + while((index <= n) && (multi->step_last < multi->epszero)) { + + /* Update parameters for this loop */ + prev_theta = this_theta; + thisprice = (pricerec *) (multi->sortedList[index].pvoidreal.ptr); + this_theta = thisprice->theta; + Alpha = fabs(thisprice->pivot); + uB = lp->upbo[thisprice->varno]; + lB = 0; + SETMAX(multi->maxpivot, Alpha); + SETMAX(multi->maxbound, uB); + + /* Do the value updates */ + if(isphase2) { + multi->obj_last += (this_theta - prev_theta) * multi->step_last; /* Sign-readjusted from coldual()/Maros */ + if(uB >= lp->infinite) + multi->step_last = lp->infinite; + else + multi->step_last += Alpha*(uB-lB); + } + else { + multi->obj_last += (this_theta - prev_theta) * multi->step_last; /* Sign-readjusted from coldual()/Maros */ + multi->step_last += Alpha; + } + + /* Store updated values at the indexed locations */ + multi->sortedList[index].pvoidreal.realval = multi->step_last; + multi->valueList[index] = multi->obj_last; +#ifdef Paranoia + if(lp->spx_trace && + (multi->step_last > lp->infinite)) + report(lp, SEVERE, "multi_recompute: A very large step-size %g was generated at iteration %6.0f\n", + multi->step_last, (double) get_total_iter(lp)); +#endif + index++; + } + + /* Discard candidates entered earlier that now make the OF worsen, and + make sure that the released positions are added to the free list. */ + n = index; + while(n < multi->used) { + i = ++multi->freeList[0]; + multi->freeList[i] = (int) (((pricerec *) multi->sortedList[n].pvoidreal.ptr) - multi->items); + n++; + } + multi->used = index; + if(multi->sorted && (index == 1)) + multi->sorted = FALSE; + multi->dirty = FALSE; + + /* Return TRUE if the step is now positive */ + return( (MYBOOL) (multi->step_last >= multi->epszero) ); +} + +STATIC MYBOOL multi_truncatingvar(multirec *multi, int varnr) +{ + return( multi->truncinf && is_infinite(multi->lp, multi->lp->upbo[varnr]) ); +} + +STATIC MYBOOL multi_removevar(multirec *multi, int varnr) +{ + int i = 1; + int *coltarget = multi->indexSet; + + if(coltarget == NULL) + return( FALSE ); + + while((i <= multi->used) && (coltarget[i] != varnr)) + i++; + if(i > multi->used) + return( FALSE ); + + for(; i < multi->used; i++) + coltarget[i] = coltarget[i+1]; + coltarget[0]--; + multi->used--; + multi->dirty = TRUE; + return( TRUE ); +} + +STATIC int multi_enteringvar(multirec *multi, pricerec *current, int priority) +{ + lprec *lp = multi->lp; + int i = 0, bestindex, colnr; + LPSREAL bound, score, bestscore = -lp->infinite; + LPSREAL b1, b2, b3; + pricerec *candidate, *bestcand; + + /* Check that we have a candidate */ + multi->active = bestindex = 0; + if((multi == NULL) || (multi->used == 0)) + return( bestindex ); + + /* Check for pruning possibility of the B&B tree */ + if(multi->objcheck && (lp->solutioncount > 0) && + bb_better(lp, OF_WORKING | OF_PROJECTED, OF_TEST_WE)) { + lp->spx_status = FATHOMED; + return( bestindex ); + } + + /* Check the trivial case */ + if(multi->used == 1) { + bestcand = (pricerec *) (multi->sortedList[bestindex].pvoidreal.ptr); + goto Finish; + } + + /* Set priority weights */ +Redo: + switch(priority) { + case 0: b1 = 0.0, b2 = 0.0, b3 = 1.0; /* Only OF */ + bestindex = multi->used - 2; break; + case 1: b1 = 0.2, b2 = 0.3, b3 = 0.5; break; /* Emphasize OF */ + case 2: b1 = 0.3, b2 = 0.5, b3 = 0.2; break; /* Emphasize bound */ + case 3: b1 = 0.6, b2 = 0.2, b3 = 0.2; break; /* Emphasize pivot */ + case 4: b1 = 1.0, b2 = 0.0, b3 = 0.0; break; /* Only pivot */ + default: b1 = 0.4, b2 = 0.2, b3 = 0.4; /* Balanced default */ + } + bestcand = (pricerec *) (multi->sortedList[bestindex].pvoidreal.ptr); + + /* Loop over all candidates to get the best entering candidate; + start at the end to try to maximize the chain length */ + for(i = multi->used - 1; i >= 0; i--) { + candidate = (pricerec *) (multi->sortedList[i].pvoidreal.ptr); + colnr = candidate->varno; + bound = lp->upbo[colnr]; + score = fabs(candidate->pivot) / multi->maxpivot; + score = pow(1.0 + score , b1) * + pow(1.0 + log(bound / multi->maxbound + 1), b2) * + pow(1.0 + (LPSREAL) i / multi->used , b3); + if(score > bestscore) { + bestscore = score; + bestindex = i; + bestcand = candidate; + } + } + + /* Do pivot protection */ + if((priority < 4) && (fabs(bestcand->pivot) < lp->epssolution)) { + bestindex = 0; + priority++; + goto Redo; + } + +Finish: + /* Make sure we shrink the list and update */ + multi->active = colnr = bestcand->varno; + if(bestindex < multi->used - 1) { +#if 0 +/* if(lp->upbo[colnr] >= lp->infinite) */ + QS_swap(multi->sortedList, bestindex, multi->used-1); + multi_recompute(multi, bestindex, (bestcand->isdual == AUTOMATIC), TRUE); +#else + multi->used = i + 1; +#endif + } + multi_populateSet(multi, NULL, multi->active); + + /* Compute the entering theta and update parameters */ + score = (multi->used == 1 ? multi->step_base : multi->sortedList[multi->used-2].pvoidreal.realval); + score /= bestcand->pivot; + score = my_chsign(!lp->is_lower[multi->active], score); + + if(lp->spx_trace && + (fabs(score) > 1/lp->epsprimal)) + report(lp, IMPORTANT, "multi_enteringvar: A very large Theta %g was generated (pivot %g)\n", + score, bestcand->pivot); + multi->step_base = score; + if(current != NULL) + *current = *bestcand; + + return( multi->active ); +} + +STATIC LPSREAL multi_enteringtheta(multirec *multi) +{ + return( multi->step_base ); +} + +STATIC int multi_populateSet(multirec *multi, int **list, int excludenr) +{ + int n = 0; + if(list == NULL) + list = &(multi->indexSet); + if((multi->used > 0) && + ((*list != NULL) || allocINT(multi->lp, list, multi->size+1, FALSE))) { + int i, colnr; + + for(i = 0; i < multi->used; i++) { + colnr = ((pricerec *) (multi->sortedList[i].pvoidreal.ptr))->varno; + if((colnr != excludenr) && + /* Prevent an unbounded variable from "bound-flip"; this could + actually indicate that we should let the entering variable be + bound-swapped (in the case that it is bounded), but we + disregard this possibility here, since it brings with it + issues of pivot size, etc. */ + ((excludenr > 0) && (multi->lp->upbo[colnr] < multi->lp->infinite))) { + n++; + (*list)[n] = colnr; + } + } + (*list)[0] = n; + } + return( n ); +} + diff --git a/src/external/lpsolve/build/lp_solve/lp_pricePSE.c b/src/external/lpsolve/build/lp_solve/lp_pricePSE.c new file mode 100644 index 00000000..955abf05 --- /dev/null +++ b/src/external/lpsolve/build/lp_solve/lp_pricePSE.c @@ -0,0 +1,539 @@ + +#include +#include "commonlib.h" +#include "lp_lib.h" +#include "lp_report.h" +#include "lp_pricePSE.h" + +#ifdef FORTIFY +# include "lp_fortify.h" +#endif + + +/* + Advanced simplex price scaling modules - w/interface for lp_solve v5.0+ + ---------------------------------------------------------------------------------- + Author: Kjell Eikland + Contact: kjell.eikland@broadpark.no + License terms: LGPL. + + Requires: lp_lib.h + + Release notes: + v1.0.0 1 September 2003 Implementation of DEVEX and STEEPEST EDGE + routines for the primal and dual simplex. + v1.0.1 1 January 2004 Made initial value of weight of ingoing + variable for the standard mode of DEVEX + consistent with the initialization at restart; + original version could at worst contribute + to cycling. + v1.0.2 23 March 2004 Added floors to Steepest Edge updates and + moved tests for tiny update higher. Previous + logic can be simulated by disabling the compiler + define ApplySteepestEdgeMinimum. + v1.1.0 1 July 2004 Renamed from lp_pricerPSE to lp_pricePSE in + conjuction with the creation of a separate + price library. + v1.2.0 1 March 2005 Changed memory allocation routines to use + standard lp_solve functions, improve error handling + and return boolean status values. + + ---------------------------------------------------------------------------------- +*/ + +INLINE MYBOOL applyPricer(lprec *lp) +{ + int rule = get_piv_rule(lp); + return( (MYBOOL) ((rule == PRICER_DEVEX) || (rule == PRICER_STEEPESTEDGE)) ); +} + + +STATIC void simplexPricer(lprec *lp, MYBOOL isdual) +{ + if(lp->edgeVector != NULL) + lp->edgeVector[0] = (LPSREAL) isdual; +} + + +STATIC void freePricer(lprec *lp) +{ + FREE(lp->edgeVector); +} + + +STATIC MYBOOL resizePricer(lprec *lp) +{ + if(!applyPricer(lp)) + return( TRUE ); + + /* Reallocate vector for new size */ + if(!allocREAL(lp, &(lp->edgeVector), lp->sum_alloc+1, AUTOMATIC)) + return( FALSE ); + + /* Signal that we have not yet initialized the price vector */ + MEMCLEAR(lp->edgeVector, lp->sum_alloc+1); + lp->edgeVector[0] = -1; + return( TRUE ); +} + + +STATIC MYBOOL initPricer(lprec *lp) +{ + if(!applyPricer(lp)) + return( FALSE ); + + /* Free any pre-existing pricer */ + freePricer(lp); + + /* Allocate vector to fit current problem size */ + return( resizePricer(lp) ); +} + + +STATIC LPSREAL getPricer(lprec *lp, int item, MYBOOL isdual) +{ + LPSREAL value = 1.0; + + if(!applyPricer(lp)) + return( value ); + + value = *lp->edgeVector; + + /* Make sure we have a price vector to use */ + if(value < 0) { +#ifdef Paranoia + report(lp, SEVERE, "getPricer: Called without having being initialized!\n"); +#endif + return( 1.0 ); + } + /* We may be calling the primal from the dual (and vice-versa) for validation + of feasibility; ignore calling origin and simply return 1 */ + else if(isdual != value) { + return( 1.0 ); + } + /* Do the normal norm retrieval */ + else { + + if(isdual) + item = lp->var_basic[item]; + + value = lp->edgeVector[item]; + + if(value == 0) { + value = 1.0; + report(lp, SEVERE, "getPricer: Detected a zero-valued price at index %d\n", item); + } +#ifdef Paranoia + else if(value < 0) + report(lp, SEVERE, "getPricer: Invalid %s reduced cost norm %g at index %d\n", + my_if(isdual, "dual", "primal"), value, item); +#endif + + /* Return the norm */ + return( sqrt(value) ); + } +} + +STATIC MYBOOL restartPricer(lprec *lp, MYBOOL isdual) +{ + LPSREAL *sEdge = NULL, seNorm, hold; + int i, j, m; + MYBOOL isDEVEX, ok = applyPricer(lp); + + if(ok && (lp->edgeVector[0] < 0) && (isdual == AUTOMATIC)) + ok = FALSE; + + if(!ok) + return( ok ); + + /* Store the active/current pricing type */ + if(isdual == AUTOMATIC) + isdual = (MYBOOL) lp->edgeVector[0]; + else + lp->edgeVector[0] = isdual; + + m = lp->rows; + + /* Determine strategy and check if we have strategy fallback for the primal */ + isDEVEX = is_piv_rule(lp, PRICER_DEVEX); + if(!isDEVEX && !isdual) + isDEVEX = is_piv_mode(lp, PRICE_PRIMALFALLBACK); + + /* Check if we only need to do the simple DEVEX initialization */ + if(!is_piv_mode(lp, PRICE_TRUENORMINIT)) { + if(isdual) { + for(i = 1; i <= m; i++) + lp->edgeVector[lp->var_basic[i]] = 1.0; + } + else { + for(i = 1; i <= lp->sum; i++) + if(!lp->is_basic[i]) + lp->edgeVector[i] = 1.0; + } + return( ok ); + } + + /* Otherwise do the full Steepest Edge norm initialization */ + ok = allocREAL(lp, &sEdge, m+1, FALSE); + if(!ok) + return( ok ); + + if(isdual) { + + /* Extract the rows of the basis inverse and compute their squared norms */ + + for(i = 1; i <= m; i++) { + + bsolve(lp, i, sEdge, NULL, 0, 0.0); + + /* Compute the edge norm */ + seNorm = 0; + for(j = 1; j <= m; j++) { + hold = sEdge[j]; + seNorm += hold*hold; + } + + j = lp->var_basic[i]; + lp->edgeVector[j] = seNorm; + } + + } + else { + + /* Solve a=Bb for b over all non-basic variables and compute their squared norms */ + + for(i = 1; i <= lp->sum; i++) { + if(lp->is_basic[i]) + continue; + + fsolve(lp, i, sEdge, NULL, 0, 0.0, FALSE); + + /* Compute the edge norm */ + seNorm = 1; + for(j = 1; j <= m; j++) { + hold = sEdge[j]; + seNorm += hold*hold; + } + + lp->edgeVector[i] = seNorm; + } + + } + + FREE(sEdge); + + return( ok ); + +} + + +STATIC MYBOOL formWeights(lprec *lp, int colnr, LPSREAL *pcol, LPSREAL **w) +/* This computes Bw = a, where B is the basis and a is a column of A */ +{ + MYBOOL ok = allocREAL(lp, w, lp->rows+1, FALSE); + + if(ok) { + if(pcol == NULL) + fsolve(lp, colnr, *w, NULL, 0.0, 0.0, FALSE); + else { + MEMCOPY(*w, pcol, lp->rows+1); +/* *w[0] = 0; */ /* Test */ + } + } +/* + if(pcol != NULL) { + LPSREAL cEdge, hold; + int i; + + cEdge = 0; + for(i = 1; i <= m; i++) { + hold = *w[i]-pcol[i]; + cEdge += hold*hold; + } + cEdge /= m; + cEdge = sqrt(cEdge); + if(cEdge > lp->epspivot) + report(lp, SEVERE, "updatePricer: MRS error is %g\n", cEdge); + } +*/ + return(ok); +} +STATIC void freeWeights(LPSREAL *w) +{ + FREE(w); +} + + +STATIC MYBOOL updatePricer(lprec *lp, int rownr, int colnr, LPSREAL *pcol, LPSREAL *prow, int *nzprow) +{ + LPSREAL *vEdge = NULL, cEdge, hold, *newEdge, *w = NULL; + int i, m, n, exitcol, errlevel = DETAILED; + MYBOOL forceRefresh = FALSE, isDual, isDEVEX, ok = FALSE; + + if(!applyPricer(lp)) + return(ok); + + /* Make sure we have something to update */ + hold = lp->edgeVector[0]; + if(hold < 0) + return(ok); + isDual = (MYBOOL) (hold > 0); + + /* Do common initializations and computations */ + m = lp->rows; + n = lp->sum; + isDEVEX = is_piv_rule(lp, PRICER_DEVEX); + exitcol = lp->var_basic[rownr]; + + /* Solve/copy Bw = a */ +#if 0 + ok = formWeights(lp, colnr, NULL, &w); /* Compute from scratch - Experimental */ +#else + ok = formWeights(lp, colnr, pcol, &w); /* Use previously computed values */ +#endif + if(!ok) + return( ok ); + + /* Price norms for the dual simplex - the basic columns */ + if(isDual) { + LPSREAL rw; + int targetcol; + + /* Don't need to compute cross-products with DEVEX */ + if(!isDEVEX) { + ok = allocREAL(lp, &vEdge, m+1, FALSE); + if(!ok) + return( ok ); + + /* Extract the row of the inverse containing the leaving variable + and then form the dot products against the other variables, i.e. "Tau" */ +#if 0 /* Extract row explicitly */ + bsolve(lp, rownr, vEdge, 0, 0.0); +#else /* Reuse previously extracted row data */ + MEMCOPY(vEdge, prow, m+1); + vEdge[0] = 0; +#endif + lp->bfp_ftran_normal(lp, vEdge, NULL); + } + + /* Update the squared steepest edge norms; first store some constants */ + cEdge = lp->edgeVector[exitcol]; + rw = w[rownr]; + if(fabs(rw) < lp->epspivot) { + forceRefresh = TRUE; + goto Finish2; + } + + /* Deal with the variable entering the basis to become a new leaving candidate */ + hold = 1 / rw; + lp->edgeVector[colnr] = (hold*hold) * cEdge; + +#ifdef Paranoia + if(lp->edgeVector[colnr] <= lp->epsmachine) + report(lp, errlevel, "updatePricer: Invalid dual norm %g at entering index %d - iteration %.0f\n", + lp->edgeVector[colnr], rownr, (double) (lp->total_iter+lp->current_iter)); +#endif + + /* Then loop over all basic variables, but skip the leaving row */ + for(i = 1; i <= m; i++) { + if(i == rownr) + continue; + targetcol = lp->var_basic[i]; + hold = w[i]; + if(hold == 0) + continue; + hold /= rw; + if(fabs(hold) < lp->epsmachine) + continue; + + newEdge = &(lp->edgeVector[targetcol]); + *newEdge += (hold*hold) * cEdge; + if(isDEVEX) { + if((*newEdge) > DEVEX_RESTARTLIMIT) { + forceRefresh = TRUE; + break; + } + } + else { + *newEdge -= 2*hold*vEdge[i]; +#ifdef xxApplySteepestEdgeMinimum + SETMAX(*newEdge, hold*hold+1); /* Kludge; use the primal lower bound */ +#else + if(*newEdge <= 0) { + report(lp, errlevel, "updatePricer: Invalid dual norm %g at index %d - iteration %.0f\n", + *newEdge, i, (double) (lp->total_iter+lp->current_iter)); + forceRefresh = TRUE; + break; + } +#endif + } + } + + + } + /* Price norms for the primal simplex - the non-basic columns */ + else { + + LPSREAL *vTemp = NULL, *vAlpha = NULL, cAlpha; + int *coltarget; + + ok = allocREAL(lp, &vTemp, m+1, TRUE) && + allocREAL(lp, &vAlpha, n+1, TRUE); + if(!ok) + return( ok ); + + /* Check if we have strategy fallback for the primal */ + if(!isDEVEX) + isDEVEX = is_piv_mode(lp, PRICE_PRIMALFALLBACK); + + /* Initialize column target array */ + coltarget = (int *) mempool_obtainVector(lp->workarrays, lp->sum+1, sizeof(*coltarget)); + ok = get_colIndexA(lp, SCAN_SLACKVARS+SCAN_USERVARS+USE_NONBASICVARS, coltarget, FALSE); + if(!ok) { + mempool_releaseVector(lp->workarrays, (char *) coltarget, FALSE); + return( ok ); + } + + /* Don't need to compute cross-products with DEVEX */ + if(!isDEVEX) { + ok = allocREAL(lp, &vEdge, n+1, TRUE); + if(!ok) + return( ok ); + + /* Compute v and then N'v */ + MEMCOPY(vTemp, w, m+1); + bsolve(lp, -1, vTemp, NULL, lp->epsmachine*DOUBLEROUND, 0.0); + vTemp[0] = 0; + prod_xA(lp, coltarget, vTemp, NULL, lp->epsmachine, 0.0, + vEdge, NULL, MAT_ROUNDDEFAULT); + } + + /* Compute Sigma and then Alpha */ + bsolve(lp, rownr, vTemp, NULL, 0*DOUBLEROUND, 0.0); + vTemp[0] = 0; + prod_xA(lp, coltarget, vTemp, NULL, lp->epsmachine, 0.0, + vAlpha, NULL, MAT_ROUNDDEFAULT); + mempool_releaseVector(lp->workarrays, (char *) coltarget, FALSE); + + /* Update the squared steepest edge norms; first store some constants */ + cEdge = lp->edgeVector[colnr]; + cAlpha = vAlpha[colnr]; + if(fabs(cAlpha) < lp->epspivot) { + forceRefresh = TRUE; + goto Finish1; + } + + /* Deal with the variable leaving the basis to become a new entry candidate */ + hold = 1 / cAlpha; + lp->edgeVector[exitcol] = (hold*hold) * cEdge; + +#ifdef Paranoia + if(lp->edgeVector[exitcol] <= lp->epsmachine) + report(lp, errlevel, "updatePricer: Invalid primal norm %g at leaving index %d - iteration %.0f\n", + lp->edgeVector[exitcol], exitcol, (double) (lp->total_iter+lp->current_iter)); +#endif + + /* Then loop over all non-basic variables, but skip the entering column */ + for(i = 1; i <= lp->sum; i++) { + if(lp->is_basic[i] || (i == colnr)) + continue; + hold = vAlpha[i]; + if(hold == 0) + continue; + hold /= cAlpha; + if(fabs(hold) < lp->epsmachine) + continue; + + newEdge = &(lp->edgeVector[i]); + *newEdge += (hold*hold) * cEdge; + if(isDEVEX) { + if((*newEdge) > DEVEX_RESTARTLIMIT) { + forceRefresh = TRUE; + break; + } + } + else { + *newEdge -= 2*hold*vEdge[i]; +#ifdef ApplySteepestEdgeMinimum + SETMAX(*newEdge, hold*hold+1); +#else + if(*newEdge < 0) { + report(lp, errlevel, "updatePricer: Invalid primal norm %g at index %d - iteration %.0f\n", + *newEdge, i, (double) (lp->total_iter+lp->current_iter)); + if(lp->spx_trace) + report(lp, errlevel, "Error detail: (RelAlpha=%g, vEdge=%g, cEdge=%g)\n", hold, vEdge[i], cEdge); + forceRefresh = TRUE; + break; + } +#endif + } + } + +Finish1: + FREE(vAlpha); + FREE(vTemp); + + } + +Finish2: + FREE(vEdge); + freeWeights(w); + + if(forceRefresh) + ok = restartPricer(lp, AUTOMATIC); + else + ok = TRUE; + + return( ok ); + +} + + +STATIC MYBOOL verifyPricer(lprec *lp) +{ + LPSREAL value; + int i, n; + MYBOOL ok = applyPricer(lp); + + if(!ok) + return( ok ); + ok = FALSE; + + /* Verify */ + if(lp->edgeVector == NULL) + return( ok ); + value = *lp->edgeVector; + if(value < 0) + return( ok ); + + /* Check the primal */ + n = 1; + if(value == 0) { + + for(n = lp->sum; n > 0; n--) { + if(lp->is_basic[n]) + continue; + value = lp->edgeVector[n]; + if(value <= 0) + break; + } + } + /* Check the dual */ + else { + for(i = lp->rows; i > 0; i--) { + n = lp->var_basic[i]; + value = lp->edgeVector[n]; + if(value <= 0) + break; + } + } + + ok = (MYBOOL) (n == 0); +#ifdef Paranoia + if(!ok) + report(lp, SEVERE, "verifyPricer: Invalid norm %g at index %d\n", + value, n); +#endif + return( ok ); +} + diff --git a/src/external/lpsolve/build/lp_solve/lp_report.c b/src/external/lpsolve/build/lp_solve/lp_report.c new file mode 100644 index 00000000..f38fa3b9 --- /dev/null +++ b/src/external/lpsolve/build/lp_solve/lp_report.c @@ -0,0 +1,790 @@ + +/* + Mixed integer programming optimization drivers for lp_solve v5.0+ + ---------------------------------------------------------------------------------- + Author: Michel Berkelaar (to lp_solve v3.2), + Kjell Eikland + Contact: + License terms: LGPL. + + Requires: stdarg.h, lp_lib.h + + Release notes: + v5.0.0 3 1 January 2004 New unit isolating reporting routines. + v5.2.0.0 1 December 2005 Addition of Matrix Market writing function. + + ---------------------------------------------------------------------------------- +*/ + +#include +#include +#include + +#include "lp_lib.h" +#include "lp_scale.h" +#include "commonlib.h" +#include "lp_report.h" + +#include "mmio.h" + +#ifdef FORTIFY +# include "lp_fortify.h" +#endif + +/* Define buffer-size controled function mapping */ +# if defined _MSC_VER +# define vsnprintf _vsnprintf +# endif + +/* Various reporting functions for lp_solve */ +/* ------------------------------------------------------------------------- */ + +/* First define general utilties for reporting and output */ +char * __VACALL explain(lprec *lp, char *format, ...) +{ + char buff[DEF_STRBUFSIZE+1]; + va_list ap; + + va_start(ap, format); + vsnprintf(buff, DEF_STRBUFSIZE, format, ap); + va_end(ap); + allocCHAR(lp, &(lp->ex_status), (int) strlen(buff), AUTOMATIC); + strcpy(lp->ex_status, buff); + return( lp->ex_status ); +} +void __VACALL report(lprec *lp, int level, char *format, ...) +{ + char buff[DEF_STRBUFSIZE+1]; + va_list ap; + + if(lp == NULL) { + va_start(ap, format); + vfprintf(stderr, format, ap); + va_end(ap); + } + else if(level <= lp->verbose) { + if(lp->writelog != NULL) { + va_start(ap, format); + vsnprintf(buff, DEF_STRBUFSIZE, format, ap); + va_end(ap); + lp->writelog(lp, lp->loghandle, buff); + } + if(lp->outstream != NULL) { + va_start(ap, format); + vfprintf(lp->outstream, format, ap); + va_end(ap); + if(lp->outstream != stdout) + fflush(lp->outstream); + } + } +#ifdef xParanoia + if(level == CRITICAL) + raise(SIGSEGV); +#endif +} + +STATIC void print_indent(lprec *lp) +{ + int i; + + report(lp, NEUTRAL, "%2d", lp->bb_level); + if(lp->bb_level < 50) /* useless otherwise */ + for(i = lp->bb_level; i > 0; i--) + report(lp, NEUTRAL, "--"); + else + report(lp, NEUTRAL, " *** too deep ***"); + report(lp, NEUTRAL, "> "); +} /* print_indent */ + +STATIC void debug_print(lprec *lp, char *format, ...) +{ + va_list ap; + + if(lp->bb_trace) { + print_indent(lp); + if (lp == NULL) + { + va_start(ap, format); + vfprintf(stderr, format, ap); + va_end(ap); + fputc('\n', stderr); + } + else if(lp->debuginfo != NULL) + { + char buff[DEF_STRBUFSIZE+1]; + va_start(ap, format); + vsnprintf(buff, DEF_STRBUFSIZE, format, ap); + va_end(ap); + lp->debuginfo(lp, lp->loghandle, buff); + } + } +} /* debug_print */ + +STATIC void debug_print_solution(lprec *lp) +{ + int i; + + if(lp->bb_trace) + for (i = lp->rows + 1; i <= lp->sum; i++) { + print_indent(lp); + report(lp, NEUTRAL, "%s " RESULTVALUEMASK "\n", + get_col_name(lp, i - lp->rows), + (double)lp->solution[i]); + } +} /* debug_print_solution */ + +STATIC void debug_print_bounds(lprec *lp, LPSREAL *upbo, LPSREAL *lowbo) +{ + int i; + + if(lp->bb_trace) + for(i = lp->rows + 1; i <= lp->sum; i++) { + if(lowbo[i] == upbo[i]) { + print_indent(lp); + report(lp, NEUTRAL, "%s = " RESULTVALUEMASK "\n", get_col_name(lp, i - lp->rows), + (double)lowbo[i]); + } + else { + if(lowbo[i] != 0) { + print_indent(lp); + report(lp, NEUTRAL, "%s > " RESULTVALUEMASK "\n", get_col_name(lp, i - lp->rows), + (double)lowbo[i]); + } + if(upbo[i] != lp->infinite) { + print_indent(lp); + report(lp, NEUTRAL, "%s < " RESULTVALUEMASK "\n", get_col_name(lp, i - lp->rows), + (double)upbo[i]); + } + } + } +} /* debug_print_bounds */ + +/* List a vector of LREAL values for the given index range */ +void blockWriteLREAL(FILE *output, char *label, LREAL *vector, int first, int last) +{ + int i, k = 0; + + fprintf(output, "%s", label); + fprintf(output, "\n"); + for(i = first; i <= last; i++) { + fprintf(output, " %18g", vector[i]); + k++; + if(my_mod(k, 4) == 0) { + fprintf(output, "\n"); + k = 0; + } + } + if(my_mod(k, 4) != 0) + fprintf(output, "\n"); +} + +/* List the current user data matrix columns over the selected row range */ +void blockWriteAMAT(FILE *output, const char *label, lprec* lp, int first, int last) +{ + int i, j, k = 0; + int nzb, nze, jb; + double hold; + MATrec *mat = lp->matA; + + if(!mat_validate(mat)) + return; + if(first < 0) + first = 0; + if(last < 0) + last = lp->rows; + + fprintf(output, "%s", label); + fprintf(output, "\n"); + + if(first == 0) { + for(j = 1; j <= lp->columns; j++) { + hold = get_mat(lp, 0, j); + fprintf(output, " %18g", hold); + k++; + if(my_mod(k, 4) == 0) { + fprintf(output, "\n"); + k = 0; + } + } + if(my_mod(k, 4) != 0) { + fprintf(output, "\n"); + k = 0; + } + first++; + } + nze = mat->row_end[first-1]; + for(i = first; i <= last; i++) { + nzb = nze; + nze = mat->row_end[i]; + if(nzb >= nze) + jb = lp->columns+1; + else + jb = ROW_MAT_COLNR(nzb); + for(j = 1; j <= lp->columns; j++) { + if(j < jb) + hold = 0; + else { + hold = get_mat(lp, i, j); + nzb++; + if(nzb < nze) + jb = ROW_MAT_COLNR(nzb); + else + jb = lp->columns+1; + } + fprintf(output, " %18g", hold); + k++; + if(my_mod(k, 4) == 0) { + fprintf(output, "\n"); + k = 0; + } + } + if(my_mod(k, 4) != 0) { + fprintf(output, "\n"); + k = 0; + } + } + if(my_mod(k, 4) != 0) + fprintf(output, "\n"); +} + +/* List the current basis matrix columns over the selected row range */ +void blockWriteBMAT(FILE *output, const char *label, lprec* lp, int first, int last) +{ + int i, j, jb, k = 0; + double hold; + + if(first < 0) + first = 0; + if(last < 0) + last = lp->rows; + + fprintf(output, "%s", label); + fprintf(output, "\n"); + + for(i = first; i <= last; i++) { + for(j = 1; j <= lp->rows; j++) { + jb = lp->var_basic[j]; + if(jb <= lp->rows) { + if(jb == i) + hold = 1; + else + hold = 0; + } + else + hold = get_mat(lp, i, j); + if(i == 0) + modifyOF1(lp, jb, &hold, 1); + hold = unscaled_mat(lp, hold, i, jb); + fprintf(output, " %18g", hold); + k++; + if(my_mod(k, 4) == 0) { + fprintf(output, "\n"); + k = 0; + } + } + if(my_mod(k, 4) != 0) { + fprintf(output, "\n"); + k = 0; + } + } + if(my_mod(k, 4) != 0) + fprintf(output, "\n"); +} + +/* Do a generic readable data dump of key lp_solve model variables; + principally for run difference and debugging purposes */ +MYBOOL REPORT_debugdump(lprec *lp, char *filename, MYBOOL livedata) +{ + FILE *output = stdout; + MYBOOL ok; + + ok = (MYBOOL) ((filename == NULL) || ((output = fopen(filename,"w")) != NULL)); + if(!ok) + return(ok); + if((filename == NULL) && (lp->outstream != NULL)) + output = lp->outstream; + + fprintf(output, "\nGENERAL INFORMATION\n-------------------\n\n"); + fprintf(output, "Model size: %d rows (%d equalities, %d Lagrangean), %d columns (%d integers, %d SC, %d SOS, %d GUB)\n", + lp->rows, lp->equalities, get_Lrows(lp), lp->columns, + lp->int_vars, lp->sc_vars, SOS_count(lp), GUB_count(lp)); + fprintf(output, "Data size: %d model non-zeros, %d invB non-zeros (engine is %s)\n", + get_nonzeros(lp), my_if(lp->invB == NULL, 0, lp->bfp_nonzeros(lp, FALSE)), lp->bfp_name()); + fprintf(output, "Internal sizes: %d rows allocated, %d columns allocated, %d columns used, %d eta length\n", + lp->rows_alloc, lp->columns_alloc, lp->columns, my_if(lp->invB == NULL, 0, lp->bfp_colcount(lp))); + fprintf(output, "Memory use: %d sparse matrix, %d eta\n", + lp->matA->mat_alloc, my_if(lp->invB == NULL, 0, lp->bfp_memallocated(lp))); + fprintf(output, "Parameters: Maximize=%d, Names used=%d, Scalingmode=%d, Presolve=%d, SimplexPivot=%d\n", + is_maxim(lp), lp->names_used, lp->scalemode, lp->do_presolve, lp->piv_strategy); + fprintf(output, "Precision: EpsValue=%g, EpsPrimal=%g, EpsDual=%g, EpsPivot=%g, EpsPerturb=%g\n", + lp->epsvalue, lp->epsprimal, lp->epsdual, lp->epspivot, lp->epsperturb); + fprintf(output, "Stability: AntiDegen=%d, Improvement=%d, Split variables at=%g\n", + lp->improve, lp->anti_degen, lp->negrange); + fprintf(output, "B&B settings: BB pivot rule=%d, BB branching=%s, BB strategy=%d, Integer precision=%g, MIP gaps=%g,%g\n", + lp->bb_rule, my_boolstr(lp->bb_varbranch), lp->bb_floorfirst, lp->epsint, lp->mip_absgap, lp->mip_relgap); + + fprintf(output, "\nCORE DATA\n---------\n\n"); + blockWriteINT(output, "Column starts", lp->matA->col_end, 0, lp->columns); + blockWriteINT(output, "row_type", lp->row_type, 0, lp->rows); + blockWriteREAL(output, "orig_rhs", lp->orig_rhs, 0, lp->rows); + blockWriteREAL(output, "orig_lowbo", lp->orig_lowbo, 0, lp->sum); + blockWriteREAL(output, "orig_upbo", lp->orig_upbo, 0, lp->sum); + blockWriteINT(output, "row_type", lp->row_type, 0, lp->rows); + blockWriteBOOL(output, "var_type", lp->var_type, 0, lp->columns, TRUE); + blockWriteAMAT(output, "A", lp, 0, lp->rows); + + if(livedata) { + fprintf(output, "\nPROCESS DATA\n------------\n\n"); + blockWriteREAL(output, "Active rhs", lp->rhs, 0, lp->rows); + blockWriteINT(output, "Basic variables", lp->var_basic, 0, lp->rows); + blockWriteBOOL(output, "is_basic", lp->is_basic, 0, lp->sum, TRUE); + blockWriteREAL(output, "lowbo", lp->lowbo, 0, lp->sum); + blockWriteREAL(output, "upbo", lp->upbo, 0, lp->sum); + if(lp->scalars != NULL) + blockWriteREAL(output, "scalars", lp->scalars, 0, lp->sum); + } + + if(filename != NULL) + fclose(output); + return(ok); +} + + +/* High level reports for model results */ + +void REPORT_objective(lprec *lp) +{ + if(lp->outstream == NULL) + return; + if(fabs(lp->best_solution[0]) < 1e-5) + fprintf(lp->outstream, "\nValue of objective function: %g\n", (double)lp->best_solution[0]); + else + fprintf(lp->outstream, "\nValue of objective function: %.8f\n", (double)lp->best_solution[0]); + fflush(lp->outstream); +} + +void REPORT_solution(lprec *lp, int columns) +{ + int i, j, n; + LPSREAL value; + presolveundorec *psundo = lp->presolve_undo; + MYBOOL NZonly = (MYBOOL) ((lp->print_sol & AUTOMATIC) > 0); + + if(lp->outstream == NULL) + return; + + fprintf(lp->outstream, "\nActual values of the variables:\n"); + if(columns <= 0) + columns = 2; + n = 0; + for(i = 1; i <= psundo->orig_columns; i++) { + j = psundo->orig_rows + i; + value = get_var_primalresult(lp, j); + if(NZonly && (fabs(value) < lp->epsprimal)) + continue; + n = (n+1) % columns; + fprintf(lp->outstream, "%-20s %12g", get_origcol_name(lp, i), (double) value); + if(n == 0) + fprintf(lp->outstream, "\n"); + else + fprintf(lp->outstream, " "); + } + + fflush(lp->outstream); +} /* REPORT_solution */ + +void REPORT_constraints(lprec *lp, int columns) +{ + int i, n; + LPSREAL value; + MYBOOL NZonly = (MYBOOL) ((lp->print_sol & AUTOMATIC) > 0); + + if(lp->outstream == NULL) + return; + + if(columns <= 0) + columns = 2; + + fprintf(lp->outstream, "\nActual values of the constraints:\n"); + n = 0; + for(i = 1; i <= lp->rows; i++) { + value = (double)lp->best_solution[i]; + if(NZonly && (fabs(value) < lp->epsprimal)) + continue; + n = (n+1) % columns; + fprintf(lp->outstream, "%-20s %12g", get_row_name(lp, i), value); + if(n == 0) + fprintf(lp->outstream, "\n"); + else + fprintf(lp->outstream, " "); + } + + fflush(lp->outstream); +} + +void REPORT_duals(lprec *lp) +{ + int i; + LPSREAL *duals, *dualsfrom, *dualstill, *objfrom, *objtill, *objfromvalue; + MYBOOL ret; + + if(lp->outstream == NULL) + return; + + ret = get_ptr_sensitivity_objex(lp, &objfrom, &objtill, &objfromvalue, NULL); + if(ret) { + fprintf(lp->outstream, "\nObjective function limits:\n"); + fprintf(lp->outstream, " From Till FromValue\n"); + for(i = 1; i <= lp->columns; i++) + if(!is_splitvar(lp, i)) + fprintf(lp->outstream, "%-20s %15.7g %15.7g %15.7g\n", get_col_name(lp, i), + (double)objfrom[i - 1], (double)objtill[i - 1], (double)objfromvalue[i - 1]); + } + + ret = get_ptr_sensitivity_rhs(lp, &duals, &dualsfrom, &dualstill); + if(ret) { + fprintf(lp->outstream, "\nDual values with from - till limits:\n"); + fprintf(lp->outstream, " Dual value From Till\n"); + for(i = 1; i <= lp->sum; i++) + fprintf(lp->outstream, "%-20s %15.7g %15.7g %15.7g\n", + (i <= lp->rows) ? get_row_name(lp, i) : get_col_name(lp, i - lp->rows), + (double)duals[i - 1], (double)dualsfrom[i - 1], (double)dualstill[i - 1]); + fflush(lp->outstream); + } +} + +/* Printing of sensitivity analysis reports */ +void REPORT_extended(lprec *lp) +{ + int i, j; + LPSREAL hold; + LPSREAL *duals, *dualsfrom, *dualstill, *objfrom, *objtill; + MYBOOL ret; + + ret = get_ptr_sensitivity_obj(lp, &objfrom, &objtill); + report(lp, NORMAL, " \n"); + report(lp, NORMAL, "Primal objective:\n"); + report(lp, NORMAL, " \n"); + report(lp, NORMAL, " Column name Value Objective Min Max\n"); + report(lp, NORMAL, " --------------------------------------------------------------------------\n"); + for(j = 1; j <= lp->columns; j++) { + hold = get_mat(lp,0,j); + report(lp, NORMAL, " %-25s " MPSVALUEMASK MPSVALUEMASK MPSVALUEMASK MPSVALUEMASK "\n", + get_col_name(lp,j), + my_precision(hold,lp->epsprimal), + my_precision(hold*lp->best_solution[lp->rows+j],lp->epsprimal), + my_precision((ret) ? objfrom[j - 1] : 0.0,lp->epsprimal), + my_precision((ret) ? objtill[j - 1] : 0.0,lp->epsprimal)); + } + report(lp, NORMAL, " \n"); + + ret = get_ptr_sensitivity_rhs(lp, &duals, &dualsfrom, &dualstill); + report(lp, NORMAL, "Primal variables:\n"); + report(lp, NORMAL, " \n"); + report(lp, NORMAL, " Column name Value Slack Min Max\n"); + report(lp, NORMAL, " --------------------------------------------------------------------------\n"); + for(j = 1; j <= lp->columns; j++) + report(lp, NORMAL, " %-25s " MPSVALUEMASK MPSVALUEMASK MPSVALUEMASK MPSVALUEMASK "\n", + get_col_name(lp,j), + my_precision(lp->best_solution[lp->rows+j],lp->epsprimal), + my_precision(my_inflimit(lp, (ret) ? duals[lp->rows+j-1] : 0.0),lp->epsprimal), + my_precision((ret) ? dualsfrom[lp->rows+j-1] : 0.0,lp->epsprimal), + my_precision((ret) ? dualstill[lp->rows+j-1] : 0.0,lp->epsprimal)); + + report(lp, NORMAL, " \n"); + report(lp, NORMAL, "Dual variables:\n"); + report(lp, NORMAL, " \n"); + report(lp, NORMAL, " Row name Value Slack Min Max\n"); + report(lp, NORMAL, " --------------------------------------------------------------------------\n"); + for(i = 1; i <= lp->rows; i++) + report(lp, NORMAL, " %-25s " MPSVALUEMASK MPSVALUEMASK MPSVALUEMASK MPSVALUEMASK "\n", + get_row_name(lp,i), + my_precision((ret) ? duals[i - 1] : 0.0, lp->epsprimal), + my_precision(lp->best_solution[i], lp->epsprimal), + my_precision((ret) ? dualsfrom[i - 1] : 0.0,lp->epsprimal), + my_precision((ret) ? dualstill[i - 1] : 0.0,lp->epsprimal)); + + report(lp, NORMAL, " \n"); +} + +/* A more readable lp-format report of the model; antiquated and not updated */ +void REPORT_lp(lprec *lp) +{ + int i, j; + + if(lp->outstream == NULL) + return; + + fprintf(lp->outstream, "Model name: %s\n", get_lp_name(lp)); + fprintf(lp->outstream, " "); + + for(j = 1; j <= lp->columns; j++) + fprintf(lp->outstream, "%8s ", get_col_name(lp,j)); + + fprintf(lp->outstream, "\n%simize ", (is_maxim(lp) ? "Max" : "Min")); + for(j = 1; j <= lp->columns; j++) + fprintf(lp->outstream, "%8g ", get_mat(lp, 0, j)); + fprintf(lp->outstream, "\n"); + + for(i = 1; i <= lp->rows; i++) { + fprintf(lp->outstream, "%-9s ", get_row_name(lp, i)); + for(j = 1; j <= lp->columns; j++) + fprintf(lp->outstream, "%8g ", get_mat(lp, i, j)); + if(is_constr_type(lp, i, GE)) + fprintf(lp->outstream, ">= "); + else if(is_constr_type(lp, i, LE)) + fprintf(lp->outstream, "<= "); + else + fprintf(lp->outstream, " = "); + fprintf(lp->outstream, "%8g", get_rh(lp, i)); + + if(is_constr_type(lp, i, GE)) { + if(get_rh_upper(lp, i) < lp->infinite) + fprintf(lp->outstream, " %s = %8g", "upbo", get_rh_upper(lp, i)); + } + else if(is_constr_type(lp, i, LE)) { + if(get_rh_lower(lp, i) > -lp->infinite) + fprintf(lp->outstream, " %s = %8g", "lowbo", get_rh_lower(lp, i)); + } + fprintf(lp->outstream, "\n"); + } + + fprintf(lp->outstream, "Type "); + for(i = 1; i <= lp->columns; i++) { + if(is_int(lp,i)) + fprintf(lp->outstream, " Int "); + else + fprintf(lp->outstream, " Real "); + } + + fprintf(lp->outstream, "\nupbo "); + for(i = 1; i <= lp->columns; i++) + if(get_upbo(lp, i) >= lp->infinite) + fprintf(lp->outstream, " Inf "); + else + fprintf(lp->outstream, "%8g ", get_upbo(lp, i)); + fprintf(lp->outstream, "\nlowbo "); + for(i = 1; i <= lp->columns; i++) + if(get_lowbo(lp, i) <= -lp->infinite) + fprintf(lp->outstream, " -Inf "); + else + fprintf(lp->outstream, "%8g ", get_lowbo(lp, i)); + fprintf(lp->outstream, "\n"); + + fflush(lp->outstream); +} + +/* Report the scaling factors used; extremely rarely used */ +void REPORT_scales(lprec *lp) +{ + int i, colMax; + + colMax = lp->columns; + + if(lp->outstream == NULL) + return; + + if(lp->scaling_used) { + fprintf(lp->outstream, "\nScale factors:\n"); + for(i = 0; i <= lp->rows + colMax; i++) + fprintf(lp->outstream, "%-20s scaled at %g\n", + (i <= lp->rows) ? get_row_name(lp, i) : get_col_name(lp, i - lp->rows), + (double)lp->scalars[i]); + } + fflush(lp->outstream); +} + +/* Report the traditional tableau corresponding to the current basis */ +MYBOOL REPORT_tableau(lprec *lp) +{ + int j, row_nr, *coltarget; + LPSREAL *prow = NULL; + FILE *stream = lp->outstream; + + if(lp->outstream == NULL) + return(FALSE); + + if(!lp->model_is_valid || !has_BFP(lp) || + (get_total_iter(lp) == 0) || (lp->spx_status == NOTRUN)) { + lp->spx_status = NOTRUN; + return(FALSE); + } + if(!allocREAL(lp, &prow,lp->sum + 1, TRUE)) { + lp->spx_status = NOMEMORY; + return(FALSE); + } + + fprintf(stream, "\n"); + fprintf(stream, "Tableau at iter %.0f:\n", (double) get_total_iter(lp)); + + for(j = 1; j <= lp->sum; j++) + if (!lp->is_basic[j]) + fprintf(stream, "%15d", (j <= lp->rows ? + (j + lp->columns) * ((lp->orig_upbo[j] == 0) || + (is_chsign(lp, j)) ? 1 : -1) : j - lp->rows) * + (lp->is_lower[j] ? 1 : -1)); + fprintf(stream, "\n"); + + coltarget = (int *) mempool_obtainVector(lp->workarrays, lp->columns+1, sizeof(*coltarget)); + if(!get_colIndexA(lp, SCAN_USERVARS+USE_NONBASICVARS, coltarget, FALSE)) { + mempool_releaseVector(lp->workarrays, (char *) coltarget, FALSE); + return(FALSE); + } + for(row_nr = 1; (row_nr <= lp->rows + 1); row_nr++) { + if (row_nr <= lp->rows) + fprintf(stream, "%3d", (lp->var_basic[row_nr] <= lp->rows ? + (lp->var_basic[row_nr] + lp->columns) * ((lp->orig_upbo[lp->var_basic [row_nr]] == 0) || + (is_chsign(lp, lp->var_basic[row_nr])) ? 1 : -1) : lp->var_basic[row_nr] - lp->rows) * + (lp->is_lower[lp->var_basic [row_nr]] ? 1 : -1)); + else + fprintf(stream, " "); + bsolve(lp, row_nr <= lp->rows ? row_nr : 0, prow, NULL, lp->epsmachine*DOUBLEROUND, 1.0); + prod_xA(lp, coltarget, prow, NULL, lp->epsmachine, 1.0, + prow, NULL, MAT_ROUNDDEFAULT); + + for(j = 1; j <= lp->rows + lp->columns; j++) + if (!lp->is_basic[j]) + fprintf(stream, "%15.7f", prow[j] * (lp->is_lower[j] ? 1 : -1) * + (row_nr <= lp->rows ? 1 : -1)); + fprintf(stream, "%15.7f", lp->rhs[row_nr <= lp->rows ? row_nr : 0] * + (double) ((row_nr <= lp->rows) || (is_maxim(lp)) ? 1 : -1)); + fprintf(stream, "\n"); + } + fflush(stream); + + mempool_releaseVector(lp->workarrays, (char *) coltarget, FALSE); + FREE(prow); + return(TRUE); +} + +void REPORT_constraintinfo(lprec *lp, char *datainfo) +{ + int i, tally[ROWCLASS_MAX+1]; + + MEMCLEAR(tally, ROWCLASS_MAX+1); + for(i = 1; i <= lp->rows; i++) + tally[get_constr_class(lp, i)]++; + + if(datainfo != NULL) + report(lp, NORMAL, "%s\n", datainfo); + + for(i = 0; i <= ROWCLASS_MAX; i++) + if(tally[i] > 0) + report(lp, NORMAL, "%-15s %4d\n", get_str_constr_class(lp, i), tally[i]); +} + +void REPORT_modelinfo(lprec *lp, MYBOOL doName, char *datainfo) +{ + if(doName) { + report(lp, NORMAL, "\nModel name: '%s' - run #%-5d\n", + get_lp_name(lp), lp->solvecount); + report(lp, NORMAL, "Objective: %simize(%s)\n", + my_if(is_maxim(lp), "Max", "Min"), get_row_name(lp, 0)); + report(lp, NORMAL, " \n"); + } + if(datainfo != NULL) + report(lp, NORMAL, "%s\n", datainfo); + + report(lp, NORMAL, "Model size: %7d constraints, %7d variables, %12d non-zeros.\n", + lp->rows, lp->columns, get_nonzeros(lp)); + if(GUB_count(lp)+SOS_count(lp) > 0) + report(lp, NORMAL, "Var-types: %7d integer, %7d semi-cont., %7d SOS.\n", + lp->int_vars, lp->sc_vars, lp->sos_vars); + report(lp, NORMAL, "Sets: %7d GUB, %7d SOS.\n", + GUB_count(lp), SOS_count(lp)); +} + +/* Save a matrix column subset to a MatrixMarket formatted file, + say to export the basis matrix for further numerical analysis. + If colndx is NULL, then the full constraint matrix is assumed. */ +MYBOOL REPORT_mat_mmsave(lprec *lp, char *filename, int *colndx, MYBOOL includeOF, char *infotext) +{ + int n, m, nz, i, j, k, kk; + MATrec *mat = lp->matA; + MM_typecode matcode; + FILE *output = stdout; + MYBOOL ok; + LPSREAL *acol = NULL; + int *nzlist = NULL; + + /* Open file */ + ok = (MYBOOL) ((filename == NULL) || ((output = fopen(filename,"w")) != NULL)); + if(!ok) + return(ok); + if((filename == NULL) && (lp->outstream != NULL)) + output = lp->outstream; + + /* Compute column and non-zero counts */ + if(colndx == lp->var_basic) { + if(!lp->basis_valid) + return( FALSE ); + m = lp->rows; + } + else if(colndx != NULL) + m = colndx[0]; + else + m = lp->columns; + n = lp->rows; + nz = 0; + + for(j = 1; j <= m; j++) { + k = (colndx == NULL ? n + j : colndx[j]); + if(k > n) { + k -= lp->rows; + nz += mat_collength(mat, k); + if(includeOF && is_OF_nz(lp, k)) + nz++; + } + else + nz++; + } + kk = 0; + if(includeOF) { + n++; /* Row count */ + kk++; /* Row index offset */ + } + + /* Initialize */ + mm_initialize_typecode(&matcode); + mm_set_matrix(&matcode); + mm_set_coordinate(&matcode); + mm_set_real(&matcode); + + mm_write_banner(output, matcode); + mm_write_mtx_crd_size(output, n+kk, m, nz+(colndx == lp->var_basic ? 1 : 0)); + + /* Allocate working arrays for sparse column storage */ + allocREAL(lp, &acol, n+2, FALSE); + allocINT(lp, &nzlist, n+2, FALSE); + + /* Write the matrix non-zero values column-by-column. + NOTE: matrixMarket files use 1-based indeces, + i.e. first row of a vector has index 1, not 0. */ + if(infotext != NULL) { + fprintf(output, "%%\n"); + fprintf(output, "%% %s\n", infotext); + fprintf(output, "%%\n"); + } + if(includeOF && (colndx == lp->var_basic)) + fprintf(output, "%d %d %g\n", 1, 1, 1.0); + for(j = 1; j <= m; j++) { + k = (colndx == NULL ? lp->rows + j : colndx[j]); + if(k == 0) + continue; + nz = obtain_column(lp, k, acol, nzlist, NULL); + for(i = 1; i <= nz; i++) { + if(!includeOF && (nzlist[i] == 0)) + continue; + fprintf(output, "%d %d %g\n", nzlist[i]+kk, j+kk, acol[i]); + } + } + fprintf(output, "%% End of MatrixMarket file\n"); + + /* Finish */ + FREE(acol); + FREE(nzlist); + fclose(output); + + return(ok); +} + diff --git a/src/external/lpsolve/build/lp_solve/lp_rlp.c b/src/external/lpsolve/build/lp_solve/lp_rlp.c new file mode 100644 index 00000000..e2ec7268 --- /dev/null +++ b/src/external/lpsolve/build/lp_solve/lp_rlp.c @@ -0,0 +1,2484 @@ +/* A Bison parser, made by GNU Bison 2.3. */ + +/* Skeleton implementation for Bison's Yacc-like parsers in C + + Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006 + Free Software Foundation, Inc. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2, or (at your option) + any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301, USA. */ + +/* As a special exception, you may create a larger work that contains + part or all of the Bison parser skeleton and distribute that work + under terms of your choice, so long as that work isn't itself a + parser generator using the skeleton or a modified version thereof + as a parser skeleton. Alternatively, if you modify or redistribute + the parser skeleton itself, you may (at your option) remove this + special exception, which will cause the skeleton and the resulting + Bison output files to be licensed under the GNU General Public + License without this special exception. + + This special exception was added by the Free Software Foundation in + version 2.2 of Bison. */ + +/* C LALR(1) parser skeleton written by Richard Stallman, by + simplifying the original so-called "semantic" parser. */ + +/* All symbols defined below should begin with lp_yy or YY, to avoid + infringing on user name space. This should be done even for local + variables, as they might otherwise be expanded by user macros. + There are some unavoidable exceptions within include files to + define necessary library symbols; they are noted "INFRINGES ON + USER NAME SPACE" below. */ + +/* Identify Bison output. */ +#define YYBISON 1 + +/* Bison version. */ +#define YYBISON_VERSION "2.3" + +/* Skeleton name. */ +#define YYSKELETON_NAME "yacc.c" + +/* Pure parsers. */ +#define YYPURE 1 + +/* Using locations. */ +#define YYLSP_NEEDED 0 + + + +/* Tokens. */ +#ifndef YYTOKENTYPE +# define YYTOKENTYPE + /* Put the tokens into the symbol table, so that GDB and other debuggers + know about them. */ + enum lp_yytokentype { + VAR = 258, + CONS = 259, + INTCONS = 260, + VARIABLECOLON = 261, + INF = 262, + SEC_INT = 263, + SEC_BIN = 264, + SEC_SEC = 265, + SEC_SOS = 266, + SOSDESCR = 267, + SEC_FREE = 268, + TOK_SIGN = 269, + AR_M_OP = 270, + RE_OPEQ = 271, + RE_OPLE = 272, + RE_OPGE = 273, + END_C = 274, + COMMA = 275, + COLON = 276, + MINIMISE = 277, + MAXIMISE = 278, + UNDEFINED = 279 + }; +#endif +/* Tokens. */ +#define VAR 258 +#define CONS 259 +#define INTCONS 260 +#define VARIABLECOLON 261 +#define INF 262 +#define SEC_INT 263 +#define SEC_BIN 264 +#define SEC_SEC 265 +#define SEC_SOS 266 +#define SOSDESCR 267 +#define SEC_FREE 268 +#define TOK_SIGN 269 +#define AR_M_OP 270 +#define RE_OPEQ 271 +#define RE_OPLE 272 +#define RE_OPGE 273 +#define END_C 274 +#define COMMA 275 +#define COLON 276 +#define MINIMISE 277 +#define MAXIMISE 278 +#define UNDEFINED 279 + + + + +/* Copy the first part of user declarations. */ + + +#include +#include +#include + +#define scanner lp_yyscanner +#define PARM lp_yyget_extra(lp_yyscanner) +#define YYSTYPE int +#define YY_EXTRA_TYPE parse_parm * +#define YY_FATAL_ERROR(msg) lex_fatal_error(PARM, lp_yyscanner, msg) +#undef YY_INPUT +#define YY_INPUT(buf,result,max_size) result = lp_input((void *) PARM, buf, max_size); +#define lp_yyerror read_error + +#include "lpkit.h" +#include "yacc_read.h" + +typedef struct parse_vars_s +{ + read_modeldata_func *lp_input; + void *userhandle; + char HadVar, HadVar0, HadVar1, HadVar2, HasAR_M_OP, HadConstraint, Had_lineair_sum, Had_lineair_sum0, do_add_row, HadSign, OP, Sign, isign, isign0, make_neg; + char state, state0; + char Within_int_decl; /* TRUE when we are within an char declaration */ + char Within_bin_decl; /* TRUE when we are within an bin declaration */ + char Within_sec_decl; /* TRUE when we are within a sec declaration */ + char Within_sos_decl; /* TRUE when we are within a sos declaration */ + char Within_sos_decl1; + char Within_free_decl; /* TRUE when we are within a free declaration */ + short SOStype, SOStype0; /* SOS type */ + int SOSNr; + int SOSweight; /* SOS weight */ + char *Last_var, *Last_var0; + LPSREAL f, f0, f1; +} parse_vars; + +#ifdef FORTIFY +# include "lp_fortify.h" +#endif + +/* let's please C++ users */ +#ifdef __cplusplus +extern "C" { +#endif + +#if defined MSDOS || defined __MSDOS__ || defined WINDOWS || defined _WINDOWS || defined WIN32 || defined _WIN32 +#define YY_NO_UNISTD_H + +static int isatty(int f) +{ + return(FALSE); +} + +#if !defined _STDLIB_H +# define _STDLIB_H +#endif +#endif + +static int __WINAPI lp_input_lp_yyin(void *fpin, char *buf, int max_size) +{ + int result; + + result = fread( (char*)buf, sizeof(char), max_size, (FILE *)fpin); + + return(result); +} + +static int __WINAPI lp_input(void *vpp, char *buf, int max_size) +{ + parse_parm *pp = (parse_parm *) vpp; + parse_vars *pv = (parse_vars *) pp->parse_vars; + int result; + + result = pv->lp_input(pv->userhandle, buf, max_size); + if (result < 0) + lex_fatal_error(pp, pp->scanner, "read() in flex scanner failed"); + return(result); +} + +#ifdef __cplusplus +}; +#endif + +#include "lp_rlp.h" + +#undef lp_yylval + + + +/* Enabling traces. */ +#ifndef YYDEBUG +# define YYDEBUG 0 +#endif + +/* Enabling verbose error messages. */ +#ifdef YYERROR_VERBOSE +# undef YYERROR_VERBOSE +# define YYERROR_VERBOSE 1 +#else +# define YYERROR_VERBOSE 0 +#endif + +/* Enabling the token table. */ +#ifndef YYTOKEN_TABLE +# define YYTOKEN_TABLE 0 +#endif + +#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED +typedef int YYSTYPE; +# define lp_yystype YYSTYPE /* obsolescent; will be withdrawn */ +# define YYSTYPE_IS_DECLARED 1 +# define YYSTYPE_IS_TRIVIAL 1 +#endif + + + +/* Copy the second part of user declarations. */ + + +/* Line 216 of yacc.c. */ + + +#ifdef short +# undef short +#endif + +#ifdef YYTYPE_UINT8 +typedef YYTYPE_UINT8 lp_yytype_uint8; +#else +typedef unsigned char lp_yytype_uint8; +#endif + +#ifdef YYTYPE_INT8 +typedef YYTYPE_INT8 lp_yytype_int8; +#elif (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +typedef signed char lp_yytype_int8; +#else +typedef short int lp_yytype_int8; +#endif + +#ifdef YYTYPE_UINT16 +typedef YYTYPE_UINT16 lp_yytype_uint16; +#else +typedef unsigned short int lp_yytype_uint16; +#endif + +#ifdef YYTYPE_INT16 +typedef YYTYPE_INT16 lp_yytype_int16; +#else +typedef short int lp_yytype_int16; +#endif + +#ifndef YYSIZE_T +# ifdef __SIZE_TYPE__ +# define YYSIZE_T __SIZE_TYPE__ +# elif defined size_t +# define YYSIZE_T size_t +# elif ! defined YYSIZE_T && (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +# include /* INFRINGES ON USER NAME SPACE */ +# define YYSIZE_T size_t +# else +# define YYSIZE_T unsigned int +# endif +#endif + +#define YYSIZE_MAXIMUM ((YYSIZE_T) -1) + +#ifndef YY_ +# if YYENABLE_NLS +# if ENABLE_NLS +# include /* INFRINGES ON USER NAME SPACE */ +# define YY_(msgid) dgettext ("bison-runtime", msgid) +# endif +# endif +# ifndef YY_ +# define YY_(msgid) msgid +# endif +#endif + +/* Suppress unused-variable warnings by "using" E. */ +#if ! defined lint || defined __GNUC__ +# define YYUSE(e) ((void) (e)) +#else +# define YYUSE(e) /* empty */ +#endif + +/* Identity function, used to suppress warnings about constant conditions. */ +#ifndef lint +# define YYID(n) (n) +#else +#if (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +static int +YYID (int i) +#else +static int +YYID (i) + int i; +#endif +{ + return i; +} +#endif + +#if ! defined lp_yyoverflow || YYERROR_VERBOSE + +/* The parser invokes alloca or malloc; define the necessary symbols. */ + +# ifdef YYSTACK_USE_ALLOCA +# if YYSTACK_USE_ALLOCA +# ifdef __GNUC__ +# define YYSTACK_ALLOC __builtin_alloca +# elif defined __BUILTIN_VA_ARG_INCR +# include /* INFRINGES ON USER NAME SPACE */ +# elif defined _AIX +# define YYSTACK_ALLOC __alloca +# elif defined _MSC_VER +# include /* INFRINGES ON USER NAME SPACE */ +# define alloca _alloca +# else +# define YYSTACK_ALLOC alloca +# if ! defined _ALLOCA_H && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +# include /* INFRINGES ON USER NAME SPACE */ +# ifndef _STDLIB_H +# define _STDLIB_H 1 +# endif +# endif +# endif +# endif +# endif + +# ifdef YYSTACK_ALLOC + /* Pacify GCC's `empty if-body' warning. */ +# define YYSTACK_FREE(Ptr) do { /* empty */; } while (YYID (0)) +# ifndef YYSTACK_ALLOC_MAXIMUM + /* The OS might guarantee only one guard page at the bottom of the stack, + and a page size can be as small as 4096 bytes. So we cannot safely + invoke alloca (N) if N exceeds 4096. Use a slightly smaller number + to allow for a few compiler-allocated temporary stack slots. */ +# define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */ +# endif +# else +# define YYSTACK_ALLOC YYMALLOC +# define YYSTACK_FREE YYFREE +# ifndef YYSTACK_ALLOC_MAXIMUM +# define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM +# endif +# if (defined __cplusplus && ! defined _STDLIB_H \ + && ! ((defined YYMALLOC || defined malloc) \ + && (defined YYFREE || defined free))) +# include /* INFRINGES ON USER NAME SPACE */ +# ifndef _STDLIB_H +# define _STDLIB_H 1 +# endif +# endif +# ifndef YYMALLOC +# define YYMALLOC malloc +# if ! defined malloc && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */ +# endif +# endif +# ifndef YYFREE +# define YYFREE free +# if ! defined free && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +void free (void *); /* INFRINGES ON USER NAME SPACE */ +# endif +# endif +# endif +#endif /* ! defined lp_yyoverflow || YYERROR_VERBOSE */ + + +#if (! defined lp_yyoverflow \ + && (! defined __cplusplus \ + || (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL))) + +/* A type that is properly aligned for any stack member. */ +union lp_yyalloc +{ + lp_yytype_int16 lp_yyss; + YYSTYPE lp_yyvs; + }; + +/* The size of the maximum gap between one aligned stack and the next. */ +# define YYSTACK_GAP_MAXIMUM (sizeof (union lp_yyalloc) - 1) + +/* The size of an array large to enough to hold all stacks, each with + N elements. */ +# define YYSTACK_BYTES(N) \ + ((N) * (sizeof (lp_yytype_int16) + sizeof (YYSTYPE)) \ + + YYSTACK_GAP_MAXIMUM) + +/* Copy COUNT objects from FROM to TO. The source and destination do + not overlap. */ +# ifndef YYCOPY +# if defined __GNUC__ && 1 < __GNUC__ +# define YYCOPY(To, From, Count) \ + __builtin_memcpy (To, From, (Count) * sizeof (*(From))) +# else +# define YYCOPY(To, From, Count) \ + do \ + { \ + YYSIZE_T lp_yyi; \ + for (lp_yyi = 0; lp_yyi < (Count); lp_yyi++) \ + (To)[lp_yyi] = (From)[lp_yyi]; \ + } \ + while (YYID (0)) +# endif +# endif + +/* Relocate STACK from its old location to the new one. The + local variables YYSIZE and YYSTACKSIZE give the old and new number of + elements in the stack, and YYPTR gives the new location of the + stack. Advance YYPTR to a properly aligned location for the next + stack. */ +# define YYSTACK_RELOCATE(Stack) \ + do \ + { \ + YYSIZE_T lp_yynewbytes; \ + YYCOPY (&lp_yyptr->Stack, Stack, lp_yysize); \ + Stack = &lp_yyptr->Stack; \ + lp_yynewbytes = lp_yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \ + lp_yyptr += lp_yynewbytes / sizeof (*lp_yyptr); \ + } \ + while (YYID (0)) + +#endif + +/* YYFINAL -- State number of the termination state. */ +#define YYFINAL 3 +/* YYLAST -- Last index in YYTABLE. */ +#define YYLAST 115 + +/* YYNTOKENS -- Number of terminals. */ +#define YYNTOKENS 25 +/* YYNNTS -- Number of nonterminals. */ +#define YYNNTS 56 +/* YYNRULES -- Number of rules. */ +#define YYNRULES 89 +/* YYNRULES -- Number of states. */ +#define YYNSTATES 123 + +/* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */ +#define YYUNDEFTOK 2 +#define YYMAXUTOK 279 + +#define YYTRANSLATE(YYX) \ + ((unsigned int) (YYX) <= YYMAXUTOK ? lp_yytranslate[YYX] : YYUNDEFTOK) + +/* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX. */ +static const lp_yytype_uint8 lp_yytranslate[] = +{ + 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 1, 2, 3, 4, + 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, + 15, 16, 17, 18, 19, 20, 21, 22, 23, 24 +}; + +#if YYDEBUG +/* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in + YYRHS. */ +static const lp_yytype_uint8 lp_yyprhs[] = +{ + 0, 0, 3, 4, 5, 10, 13, 16, 18, 21, + 23, 25, 27, 29, 31, 34, 36, 37, 41, 42, + 43, 44, 53, 55, 56, 57, 63, 65, 67, 69, + 70, 74, 75, 78, 80, 83, 86, 88, 89, 93, + 95, 97, 99, 102, 104, 106, 108, 110, 112, 114, + 116, 118, 120, 122, 124, 127, 129, 131, 133, 135, + 137, 138, 142, 143, 149, 151, 154, 156, 157, 161, + 163, 164, 169, 171, 174, 176, 178, 180, 184, 186, + 188, 190, 191, 193, 195, 198, 202, 205, 208, 211 +}; + +/* YYRHS -- A `-1'-separated list of the rules' RHS. */ +static const lp_yytype_int8 lp_yyrhs[] = +{ + 27, 0, -1, -1, -1, 28, 29, 32, 58, -1, + 23, 30, -1, 22, 30, -1, 30, -1, 31, 19, + -1, 26, -1, 46, -1, 26, -1, 33, -1, 34, + -1, 33, 34, -1, 36, -1, -1, 6, 35, 36, + -1, -1, -1, -1, 43, 37, 52, 38, 44, 39, + 40, 19, -1, 26, -1, -1, -1, 52, 41, 53, + 42, 57, -1, 26, -1, 44, -1, 46, -1, -1, + 7, 45, 57, -1, -1, 47, 48, -1, 49, -1, + 48, 49, -1, 55, 50, -1, 54, -1, -1, 56, + 51, 3, -1, 16, -1, 17, -1, 18, -1, 55, + 54, -1, 7, -1, 5, -1, 4, -1, 26, -1, + 14, -1, 26, -1, 15, -1, 26, -1, 26, -1, + 59, -1, 61, -1, 59, 61, -1, 8, -1, 9, + -1, 10, -1, 11, -1, 13, -1, -1, 60, 62, + 65, -1, -1, 64, 66, 71, 68, 19, -1, 63, + -1, 65, 63, -1, 26, -1, -1, 12, 67, 77, + -1, 26, -1, -1, 17, 5, 69, 70, -1, 26, + -1, 21, 5, -1, 26, -1, 72, -1, 78, -1, + 72, 73, 78, -1, 26, -1, 20, -1, 26, -1, + -1, 26, -1, 26, -1, 3, 74, -1, 6, 75, + 79, -1, 54, 76, -1, 77, 80, -1, 3, 74, + -1, 6, 75, 54, 76, -1 +}; + +/* YYRLINE[YYN] -- source line where rule number YYN was defined. */ +static const lp_yytype_uint16 lp_yyrline[] = +{ + 0, 116, 116, 120, 120, 145, 149, 153, 156, 170, + 171, 201, 202, 205, 206, 210, 212, 211, 224, 232, + 242, 223, 288, 298, 311, 297, 342, 355, 364, 366, + 365, 376, 376, 400, 401, 405, 444, 452, 451, 470, + 470, 470, 473, 475, 489, 489, 492, 500, 510, 517, + 526, 547, 548, 551, 552, 555, 555, 555, 555, 555, + 560, 559, 570, 570, 598, 599, 602, 604, 603, 614, + 626, 624, 643, 650, 660, 661, 664, 665, 670, 671, + 674, 703, 724, 749, 770, 772, 777, 779, 784, 786 +}; +#endif + +#if YYDEBUG || YYERROR_VERBOSE || YYTOKEN_TABLE +/* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM. + First, the terminals, then, starting at YYNTOKENS, nonterminals. */ +static const char *const lp_yytname[] = +{ + "$end", "error", "$undefined", "VAR", "CONS", "INTCONS", + "VARIABLECOLON", "INF", "SEC_INT", "SEC_BIN", "SEC_SEC", "SEC_SOS", + "SOSDESCR", "SEC_FREE", "TOK_SIGN", "AR_M_OP", "RE_OPEQ", "RE_OPLE", + "RE_OPGE", "END_C", "COMMA", "COLON", "MINIMISE", "MAXIMISE", + "UNDEFINED", "$accept", "EMPTY", "inputfile", "@1", "objective_function", + "real_of", "lineair_sum", "constraints", "x_constraints", "constraint", + "@2", "real_constraint", "@3", "@4", "@5", "optionalrange", "@6", "@7", + "x_lineair_sum2", "x_lineair_sum3", "@8", "x_lineair_sum", "@9", + "x_lineair_sum1", "x_lineair_term", "x_lineair_term1", "@10", "RE_OP", + "cons_term", "REALCONS", "x_SIGN", "optional_AR_M_OP", "RHS_STORE", + "int_bin_sec_sos_free_declarations", "real_int_bin_sec_sos_free_decls", + "SEC_INT_BIN_SEC_SOS_FREE", "int_bin_sec_sos_free_declaration", "@11", + "xx_int_bin_sec_sos_free_declaration", "@12", + "x_int_bin_sec_sos_free_declaration", "optionalsos", "@13", + "optionalsostype", "@14", "optionalSOSweight", "vars", "x_vars", + "optionalcomma", "variable", "variablecolon", "sosweight", "sosdescr", + "onevarwithoptionalweight", "INTCONSorVARIABLE", + "x_onevarwithoptionalweight", 0 +}; +#endif + +# ifdef YYPRINT +/* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to + token YYLEX-NUM. */ +static const lp_yytype_uint16 lp_yytoknum[] = +{ + 0, 256, 257, 258, 259, 260, 261, 262, 263, 264, + 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, + 275, 276, 277, 278, 279 +}; +# endif + +/* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */ +static const lp_yytype_uint8 lp_yyr1[] = +{ + 0, 25, 26, 28, 27, 29, 29, 29, 30, 31, + 31, 32, 32, 33, 33, 34, 35, 34, 37, 38, + 39, 36, 40, 41, 42, 40, 43, 43, 44, 45, + 44, 47, 46, 48, 48, 49, 50, 51, 50, 52, + 52, 52, 53, 53, 54, 54, 55, 55, 56, 56, + 57, 58, 58, 59, 59, 60, 60, 60, 60, 60, + 62, 61, 64, 63, 65, 65, 66, 67, 66, 68, + 69, 68, 70, 70, 71, 71, 72, 72, 73, 73, + 74, 75, 76, 77, 78, 78, 79, 79, 80, 80 +}; + +/* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */ +static const lp_yytype_uint8 lp_yyr2[] = +{ + 0, 2, 0, 0, 4, 2, 2, 1, 2, 1, + 1, 1, 1, 1, 2, 1, 0, 3, 0, 0, + 0, 8, 1, 0, 0, 5, 1, 1, 1, 0, + 3, 0, 2, 1, 2, 2, 1, 0, 3, 1, + 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, + 0, 3, 0, 5, 1, 2, 1, 0, 3, 1, + 0, 4, 1, 2, 1, 1, 1, 3, 1, 1, + 1, 0, 1, 1, 2, 3, 2, 2, 2, 4 +}; + +/* YYDEFACT[STATE-NAME] -- Default rule to reduce with in state + STATE-NUM when YYTABLE doesn't specify something else to do. Zero + means the default is an error. */ +static const lp_yytype_uint8 lp_yydefact[] = +{ + 3, 0, 31, 1, 31, 31, 9, 2, 7, 0, + 10, 2, 6, 5, 16, 29, 11, 2, 12, 13, + 15, 18, 27, 28, 8, 47, 46, 2, 33, 2, + 31, 2, 55, 56, 57, 58, 59, 51, 4, 52, + 60, 53, 26, 14, 0, 34, 45, 44, 49, 48, + 35, 36, 37, 17, 50, 30, 54, 62, 39, 40, + 41, 19, 0, 64, 2, 61, 31, 38, 67, 66, + 2, 65, 20, 2, 2, 81, 74, 2, 2, 76, + 2, 83, 68, 80, 84, 2, 0, 69, 0, 79, + 78, 0, 22, 0, 23, 2, 0, 85, 70, 63, + 77, 21, 2, 82, 86, 2, 81, 87, 2, 43, + 24, 0, 88, 0, 0, 72, 71, 2, 42, 2, + 73, 25, 89 +}; + +/* YYDEFGOTO[NTERM-NUM]. */ +static const lp_yytype_int8 lp_yydefgoto[] = +{ + -1, 6, 1, 2, 7, 8, 9, 17, 18, 19, + 30, 20, 44, 66, 80, 93, 102, 117, 21, 22, + 31, 23, 11, 27, 28, 50, 62, 61, 110, 51, + 29, 52, 55, 38, 39, 40, 41, 57, 63, 64, + 65, 70, 73, 88, 108, 116, 77, 78, 91, 84, + 85, 104, 82, 79, 97, 107 +}; + +/* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing + STATE-NUM. */ +#define YYPACT_NINF -85 +static const lp_yytype_int8 lp_yypact[] = +{ + -85, 13, 46, -85, 2, 2, -85, 32, -85, 7, + -85, 26, -85, -85, -85, -85, 64, 40, 27, -85, + -85, -85, -85, -85, -85, -85, -85, 42, -85, 3, + -2, -85, -85, -85, -85, -85, -85, -85, -85, 40, + -85, -85, -85, -85, 67, -85, -85, -85, -85, -85, + -85, -85, -85, -85, -85, -85, -85, -85, -85, -85, + -85, -85, 59, -85, 52, 0, 84, -85, -85, -85, + 22, -85, -85, -85, -85, -85, -85, 60, 35, -85, + 67, -85, -85, -85, -85, 82, 87, -85, 74, -85, + -85, 22, -85, 75, -85, -85, 73, -85, -85, -85, + -85, -85, -5, -85, -85, -85, -85, -85, 76, -85, + -85, 82, -85, 82, 91, -85, -85, -85, -85, -85, + -85, -85, -85 +}; + +/* YYPGOTO[NTERM-NUM]. */ +static const lp_yytype_int8 lp_yypgoto[] = +{ + -85, -7, -85, -85, -85, 85, -85, -85, -85, 81, + -85, 72, -85, -85, -85, -85, -85, -85, -85, 34, + -85, 70, -85, -85, 77, -85, -85, 23, -85, -84, + 4, -85, -12, -85, -85, -85, 68, -85, 43, -85, + -85, -85, -85, -85, -85, -85, -85, -85, -85, 6, + 8, -10, 28, 24, -85, -85 +}; + +/* YYTABLE[YYPACT[STATE-NUM]]. What to do in state STATE-NUM. If + positive, shift that token. If negative, reduce the rule which + number is the opposite. If zero, do what YYDEFACT says. + If YYTABLE_NINF, syntax error. */ +#define YYTABLE_NINF -76 +static const lp_yytype_int8 lp_yytable[] = +{ + 16, 95, 109, -62, 26, 15, -62, 46, 47, 25, + 37, 42, -62, 3, -2, -2, -2, -62, 48, -62, + 26, -2, 49, 42, 54, 74, 24, 118, 75, 119, + -31, -31, -31, 14, 15, -31, -31, -31, 14, 15, + 25, -31, -31, -2, -2, -2, -31, -31, 32, 33, + 34, 35, -75, 36, -75, 89, 25, 69, -32, -32, + -32, -32, 67, 76, 68, -2, 81, 83, 4, 5, + 87, 90, 10, 92, 10, 10, 105, 86, 81, 106, + -26, -26, -26, 58, 59, 60, 46, 47, 103, 12, + 13, 15, 98, 99, 101, 26, 120, 114, 83, 43, + 72, 115, 53, 94, 45, 121, 111, 56, 71, 122, + 54, 112, 103, 96, 113, 100 +}; + +static const lp_yytype_uint8 lp_yycheck[] = +{ + 7, 85, 7, 3, 11, 7, 6, 4, 5, 14, + 17, 18, 12, 0, 16, 17, 18, 17, 15, 19, + 27, 19, 29, 30, 31, 3, 19, 111, 6, 113, + 3, 4, 5, 6, 7, 3, 4, 5, 6, 7, + 14, 14, 15, 16, 17, 18, 14, 15, 8, 9, + 10, 11, 17, 13, 19, 20, 14, 64, 16, 17, + 18, 19, 3, 70, 12, 19, 73, 74, 22, 23, + 77, 78, 2, 80, 4, 5, 3, 17, 85, 6, + 16, 17, 18, 16, 17, 18, 4, 5, 95, 4, + 5, 7, 5, 19, 19, 102, 5, 21, 105, 18, + 66, 108, 30, 80, 27, 117, 102, 39, 65, 119, + 117, 105, 119, 85, 106, 91 +}; + +/* YYSTOS[STATE-NUM] -- The (internal number of the) accessing + symbol of state STATE-NUM. */ +static const lp_yytype_uint8 lp_yystos[] = +{ + 0, 27, 28, 0, 22, 23, 26, 29, 30, 31, + 46, 47, 30, 30, 6, 7, 26, 32, 33, 34, + 36, 43, 44, 46, 19, 14, 26, 48, 49, 55, + 35, 45, 8, 9, 10, 11, 13, 26, 58, 59, + 60, 61, 26, 34, 37, 49, 4, 5, 15, 26, + 50, 54, 56, 36, 26, 57, 61, 62, 16, 17, + 18, 52, 51, 63, 64, 65, 38, 3, 12, 26, + 66, 63, 44, 67, 3, 6, 26, 71, 72, 78, + 39, 26, 77, 26, 74, 75, 17, 26, 68, 20, + 26, 73, 26, 40, 52, 54, 77, 79, 5, 19, + 78, 19, 41, 26, 76, 3, 6, 80, 69, 7, + 53, 55, 74, 75, 21, 26, 70, 42, 54, 54, + 5, 57, 76 +}; + +#define lp_yyerrok (lp_yyerrstatus = 0) +#define lp_yyclearin (lp_yychar = YYEMPTY) +#define YYEMPTY (-2) +#define YYEOF 0 + +#define YYACCEPT goto lp_yyacceptlab +#define YYABORT goto lp_yyabortlab +#define YYERROR goto lp_yyerrorlab + + +/* Like YYERROR except do call lp_yyerror. This remains here temporarily + to ease the transition to the new meaning of YYERROR, for GCC. + Once GCC version 2 has supplanted version 1, this can go. */ + +#define YYFAIL goto lp_yyerrlab + +#define YYRECOVERING() (!!lp_yyerrstatus) + +#define YYBACKUP(Token, Value) \ +do \ + if (lp_yychar == YYEMPTY && lp_yylen == 1) \ + { \ + lp_yychar = (Token); \ + lp_yylval = (Value); \ + lp_yytoken = YYTRANSLATE (lp_yychar); \ + YYPOPSTACK (1); \ + goto lp_yybackup; \ + } \ + else \ + { \ + lp_yyerror (parm, scanner, YY_("syntax error: cannot back up")); \ + YYERROR; \ + } \ +while (YYID (0)) + + +#define YYTERROR 1 +#define YYERRCODE 256 + + +/* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N]. + If N is 0, then set CURRENT to the empty location which ends + the previous symbol: RHS[0] (always defined). */ + +#define YYRHSLOC(Rhs, K) ((Rhs)[K]) +#ifndef YYLLOC_DEFAULT +# define YYLLOC_DEFAULT(Current, Rhs, N) \ + do \ + if (YYID (N)) \ + { \ + (Current).first_line = YYRHSLOC (Rhs, 1).first_line; \ + (Current).first_column = YYRHSLOC (Rhs, 1).first_column; \ + (Current).last_line = YYRHSLOC (Rhs, N).last_line; \ + (Current).last_column = YYRHSLOC (Rhs, N).last_column; \ + } \ + else \ + { \ + (Current).first_line = (Current).last_line = \ + YYRHSLOC (Rhs, 0).last_line; \ + (Current).first_column = (Current).last_column = \ + YYRHSLOC (Rhs, 0).last_column; \ + } \ + while (YYID (0)) +#endif + + +/* YY_LOCATION_PRINT -- Print the location on the stream. + This macro was not mandated originally: define only if we know + we won't break user code: when these are the locations we know. */ + +#ifndef YY_LOCATION_PRINT +# if YYLTYPE_IS_TRIVIAL +# define YY_LOCATION_PRINT(File, Loc) \ + fprintf (File, "%d.%d-%d.%d", \ + (Loc).first_line, (Loc).first_column, \ + (Loc).last_line, (Loc).last_column) +# else +# define YY_LOCATION_PRINT(File, Loc) ((void) 0) +# endif +#endif + + +/* YYLEX -- calling `lp_yylex' with the right arguments. */ + +#ifdef YYLEX_PARAM +# define YYLEX lp_yylex (&lp_yylval, YYLEX_PARAM) +#else +# define YYLEX lp_yylex (&lp_yylval, scanner) +#endif + +/* Enable debugging if requested. */ +#if YYDEBUG + +# ifndef YYFPRINTF +# include /* INFRINGES ON USER NAME SPACE */ +# define YYFPRINTF fprintf +# endif + +# define YYDPRINTF(Args) \ +do { \ + if (lp_yydebug) \ + YYFPRINTF Args; \ +} while (YYID (0)) + +# define YY_SYMBOL_PRINT(Title, Type, Value, Location) \ +do { \ + if (lp_yydebug) \ + { \ + YYFPRINTF (stderr, "%s ", Title); \ + lp_yy_symbol_print (stderr, \ + Type, Value, parm, scanner); \ + YYFPRINTF (stderr, "\n"); \ + } \ +} while (YYID (0)) + + +/*--------------------------------. +| Print this symbol on YYOUTPUT. | +`--------------------------------*/ + +/*ARGSUSED*/ +#if (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +static void +lp_yy_symbol_value_print (FILE *lp_yyoutput, int lp_yytype, YYSTYPE const * const lp_yyvaluep, parse_parm *parm, void *scanner) +#else +static void +lp_yy_symbol_value_print (lp_yyoutput, lp_yytype, lp_yyvaluep, parm, scanner) + FILE *lp_yyoutput; + int lp_yytype; + YYSTYPE const * const lp_yyvaluep; + parse_parm *parm; + void *scanner; +#endif +{ + if (!lp_yyvaluep) + return; + YYUSE (parm); + YYUSE (scanner); +# ifdef YYPRINT + if (lp_yytype < YYNTOKENS) + YYPRINT (lp_yyoutput, lp_yytoknum[lp_yytype], *lp_yyvaluep); +# else + YYUSE (lp_yyoutput); +# endif + switch (lp_yytype) + { + default: + break; + } +} + + +/*--------------------------------. +| Print this symbol on YYOUTPUT. | +`--------------------------------*/ + +#if (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +static void +lp_yy_symbol_print (FILE *lp_yyoutput, int lp_yytype, YYSTYPE const * const lp_yyvaluep, parse_parm *parm, void *scanner) +#else +static void +lp_yy_symbol_print (lp_yyoutput, lp_yytype, lp_yyvaluep, parm, scanner) + FILE *lp_yyoutput; + int lp_yytype; + YYSTYPE const * const lp_yyvaluep; + parse_parm *parm; + void *scanner; +#endif +{ + if (lp_yytype < YYNTOKENS) + YYFPRINTF (lp_yyoutput, "token %s (", lp_yytname[lp_yytype]); + else + YYFPRINTF (lp_yyoutput, "nterm %s (", lp_yytname[lp_yytype]); + + lp_yy_symbol_value_print (lp_yyoutput, lp_yytype, lp_yyvaluep, parm, scanner); + YYFPRINTF (lp_yyoutput, ")"); +} + +/*------------------------------------------------------------------. +| lp_yy_stack_print -- Print the state stack from its BOTTOM up to its | +| TOP (included). | +`------------------------------------------------------------------*/ + +#if (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +static void +lp_yy_stack_print (lp_yytype_int16 *bottom, lp_yytype_int16 *top) +#else +static void +lp_yy_stack_print (bottom, top) + lp_yytype_int16 *bottom; + lp_yytype_int16 *top; +#endif +{ + YYFPRINTF (stderr, "Stack now"); + for (; bottom <= top; ++bottom) + YYFPRINTF (stderr, " %d", *bottom); + YYFPRINTF (stderr, "\n"); +} + +# define YY_STACK_PRINT(Bottom, Top) \ +do { \ + if (lp_yydebug) \ + lp_yy_stack_print ((Bottom), (Top)); \ +} while (YYID (0)) + + +/*------------------------------------------------. +| Report that the YYRULE is going to be reduced. | +`------------------------------------------------*/ + +#if (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +static void +lp_yy_reduce_print (YYSTYPE *lp_yyvsp, int lp_yyrule, parse_parm *parm, void *scanner) +#else +static void +lp_yy_reduce_print (lp_yyvsp, lp_yyrule, parm, scanner) + YYSTYPE *lp_yyvsp; + int lp_yyrule; + parse_parm *parm; + void *scanner; +#endif +{ + int lp_yynrhs = lp_yyr2[lp_yyrule]; + int lp_yyi; + unsigned long int lp_yylno = lp_yyrline[lp_yyrule]; + YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu):\n", + lp_yyrule - 1, lp_yylno); + /* The symbols being reduced. */ + for (lp_yyi = 0; lp_yyi < lp_yynrhs; lp_yyi++) + { + fprintf (stderr, " $%d = ", lp_yyi + 1); + lp_yy_symbol_print (stderr, lp_yyrhs[lp_yyprhs[lp_yyrule] + lp_yyi], + &(lp_yyvsp[(lp_yyi + 1) - (lp_yynrhs)]) + , parm, scanner); + fprintf (stderr, "\n"); + } +} + +# define YY_REDUCE_PRINT(Rule) \ +do { \ + if (lp_yydebug) \ + lp_yy_reduce_print (lp_yyvsp, Rule, parm, scanner); \ +} while (YYID (0)) + +/* Nonzero means print parse trace. It is left uninitialized so that + multiple parsers can coexist. */ +int lp_yydebug; +#else /* !YYDEBUG */ +# define YYDPRINTF(Args) +# define YY_SYMBOL_PRINT(Title, Type, Value, Location) +# define YY_STACK_PRINT(Bottom, Top) +# define YY_REDUCE_PRINT(Rule) +#endif /* !YYDEBUG */ + + +/* YYINITDEPTH -- initial size of the parser's stacks. */ +#ifndef YYINITDEPTH +# define YYINITDEPTH 200 +#endif + +/* YYMAXDEPTH -- maximum size the stacks can grow to (effective only + if the built-in stack extension method is used). + + Do not make this value too large; the results are undefined if + YYSTACK_ALLOC_MAXIMUM < YYSTACK_BYTES (YYMAXDEPTH) + evaluated with infinite-precision integer arithmetic. */ + +#ifndef YYMAXDEPTH +# define YYMAXDEPTH 10000 +#endif + + + +#if YYERROR_VERBOSE + +# ifndef lp_yystrlen +# if defined __GLIBC__ && defined _STRING_H +# define lp_yystrlen strlen +# else +/* Return the length of YYSTR. */ +#if (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +static YYSIZE_T +lp_yystrlen (const char *lp_yystr) +#else +static YYSIZE_T +lp_yystrlen (lp_yystr) + const char *lp_yystr; +#endif +{ + YYSIZE_T lp_yylen; + for (lp_yylen = 0; lp_yystr[lp_yylen]; lp_yylen++) + continue; + return lp_yylen; +} +# endif +# endif + +# ifndef lp_yystpcpy +# if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE +# define lp_yystpcpy stpcpy +# else +/* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in + YYDEST. */ +#if (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +static char * +lp_yystpcpy (char *lp_yydest, const char *lp_yysrc) +#else +static char * +lp_yystpcpy (lp_yydest, lp_yysrc) + char *lp_yydest; + const char *lp_yysrc; +#endif +{ + char *lp_yyd = lp_yydest; + const char *lp_yys = lp_yysrc; + + while ((*lp_yyd++ = *lp_yys++) != '\0') + continue; + + return lp_yyd - 1; +} +# endif +# endif + +# ifndef lp_yytnamerr +/* Copy to YYRES the contents of YYSTR after stripping away unnecessary + quotes and backslashes, so that it's suitable for lp_yyerror. The + heuristic is that double-quoting is unnecessary unless the string + contains an apostrophe, a comma, or backslash (other than + backslash-backslash). YYSTR is taken from lp_yytname. If YYRES is + null, do not copy; instead, return the length of what the result + would have been. */ +static YYSIZE_T +lp_yytnamerr (char *lp_yyres, const char *lp_yystr) +{ + if (*lp_yystr == '"') + { + YYSIZE_T lp_yyn = 0; + char const *lp_yyp = lp_yystr; + + for (;;) + switch (*++lp_yyp) + { + case '\'': + case ',': + goto do_not_strip_quotes; + + case '\\': + if (*++lp_yyp != '\\') + goto do_not_strip_quotes; + /* Fall through. */ + default: + if (lp_yyres) + lp_yyres[lp_yyn] = *lp_yyp; + lp_yyn++; + break; + + case '"': + if (lp_yyres) + lp_yyres[lp_yyn] = '\0'; + return lp_yyn; + } + do_not_strip_quotes: ; + } + + if (! lp_yyres) + return lp_yystrlen (lp_yystr); + + return lp_yystpcpy (lp_yyres, lp_yystr) - lp_yyres; +} +# endif + +/* Copy into YYRESULT an error message about the unexpected token + YYCHAR while in state YYSTATE. Return the number of bytes copied, + including the terminating null byte. If YYRESULT is null, do not + copy anything; just return the number of bytes that would be + copied. As a special case, return 0 if an ordinary "syntax error" + message will do. Return YYSIZE_MAXIMUM if overflow occurs during + size calculation. */ +static YYSIZE_T +lp_yysyntax_error (char *lp_yyresult, int lp_yystate, int lp_yychar) +{ + int lp_yyn = lp_yypact[lp_yystate]; + + if (! (YYPACT_NINF < lp_yyn && lp_yyn <= YYLAST)) + return 0; + else + { + int lp_yytype = YYTRANSLATE (lp_yychar); + YYSIZE_T lp_yysize0 = lp_yytnamerr (0, lp_yytname[lp_yytype]); + YYSIZE_T lp_yysize = lp_yysize0; + YYSIZE_T lp_yysize1; + int lp_yysize_overflow = 0; + enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 }; + char const *lp_yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM]; + int lp_yyx; + +# if 0 + /* This is so xgettext sees the translatable formats that are + constructed on the fly. */ + YY_("syntax error, unexpected %s"); + YY_("syntax error, unexpected %s, expecting %s"); + YY_("syntax error, unexpected %s, expecting %s or %s"); + YY_("syntax error, unexpected %s, expecting %s or %s or %s"); + YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s"); +# endif + char *lp_yyfmt; + char const *lp_yyf; + static char const lp_yyunexpected[] = "syntax error, unexpected %s"; + static char const lp_yyexpecting[] = ", expecting %s"; + static char const lp_yyor[] = " or %s"; + char lp_yyformat[sizeof lp_yyunexpected + + sizeof lp_yyexpecting - 1 + + ((YYERROR_VERBOSE_ARGS_MAXIMUM - 2) + * (sizeof lp_yyor - 1))]; + char const *lp_yyprefix = lp_yyexpecting; + + /* Start YYX at -YYN if negative to avoid negative indexes in + YYCHECK. */ + int lp_yyxbegin = lp_yyn < 0 ? -lp_yyn : 0; + + /* Stay within bounds of both lp_yycheck and lp_yytname. */ + int lp_yychecklim = YYLAST - lp_yyn + 1; + int lp_yyxend = lp_yychecklim < YYNTOKENS ? lp_yychecklim : YYNTOKENS; + int lp_yycount = 1; + + lp_yyarg[0] = lp_yytname[lp_yytype]; + lp_yyfmt = lp_yystpcpy (lp_yyformat, lp_yyunexpected); + + for (lp_yyx = lp_yyxbegin; lp_yyx < lp_yyxend; ++lp_yyx) + if (lp_yycheck[lp_yyx + lp_yyn] == lp_yyx && lp_yyx != YYTERROR) + { + if (lp_yycount == YYERROR_VERBOSE_ARGS_MAXIMUM) + { + lp_yycount = 1; + lp_yysize = lp_yysize0; + lp_yyformat[sizeof lp_yyunexpected - 1] = '\0'; + break; + } + lp_yyarg[lp_yycount++] = lp_yytname[lp_yyx]; + lp_yysize1 = lp_yysize + lp_yytnamerr (0, lp_yytname[lp_yyx]); + lp_yysize_overflow |= (lp_yysize1 < lp_yysize); + lp_yysize = lp_yysize1; + lp_yyfmt = lp_yystpcpy (lp_yyfmt, lp_yyprefix); + lp_yyprefix = lp_yyor; + } + + lp_yyf = YY_(lp_yyformat); + lp_yysize1 = lp_yysize + lp_yystrlen (lp_yyf); + lp_yysize_overflow |= (lp_yysize1 < lp_yysize); + lp_yysize = lp_yysize1; + + if (lp_yysize_overflow) + return YYSIZE_MAXIMUM; + + if (lp_yyresult) + { + /* Avoid sprintf, as that infringes on the user's name space. + Don't have undefined behavior even if the translation + produced a string with the wrong number of "%s"s. */ + char *lp_yyp = lp_yyresult; + int lp_yyi = 0; + while ((*lp_yyp = *lp_yyf) != '\0') + { + if (*lp_yyp == '%' && lp_yyf[1] == 's' && lp_yyi < lp_yycount) + { + lp_yyp += lp_yytnamerr (lp_yyp, lp_yyarg[lp_yyi++]); + lp_yyf += 2; + } + else + { + lp_yyp++; + lp_yyf++; + } + } + } + return lp_yysize; + } +} +#endif /* YYERROR_VERBOSE */ + + +/*-----------------------------------------------. +| Release the memory associated to this symbol. | +`-----------------------------------------------*/ + +/*ARGSUSED*/ +#if (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +static void +lp_yydestruct (const char *lp_yymsg, int lp_yytype, YYSTYPE *lp_yyvaluep, parse_parm *parm, void *scanner) +#else +static void +lp_yydestruct (lp_yymsg, lp_yytype, lp_yyvaluep, parm, scanner) + const char *lp_yymsg; + int lp_yytype; + YYSTYPE *lp_yyvaluep; + parse_parm *parm; + void *scanner; +#endif +{ + YYUSE (lp_yyvaluep); + YYUSE (parm); + YYUSE (scanner); + + if (!lp_yymsg) + lp_yymsg = "Deleting"; + YY_SYMBOL_PRINT (lp_yymsg, lp_yytype, lp_yyvaluep, lp_yylocationp); + + switch (lp_yytype) + { + + default: + break; + } +} + + +/* Prevent warnings from -Wmissing-prototypes. */ + +#ifdef YYPARSE_PARAM +#if defined __STDC__ || defined __cplusplus +int lp_yyparse (void *YYPARSE_PARAM); +#else +int lp_yyparse (); +#endif +#else /* ! YYPARSE_PARAM */ +#if defined __STDC__ || defined __cplusplus +int lp_yyparse (parse_parm *parm, void *scanner); +#else +int lp_yyparse (); +#endif +#endif /* ! YYPARSE_PARAM */ + + + + + + +/*----------. +| lp_yyparse. | +`----------*/ + +#ifdef YYPARSE_PARAM +#if (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +int +lp_yyparse (void *YYPARSE_PARAM) +#else +int +lp_yyparse (YYPARSE_PARAM) + void *YYPARSE_PARAM; +#endif +#else /* ! YYPARSE_PARAM */ +#if (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +int +lp_yyparse (parse_parm *parm, void *scanner) +#else +int +lp_yyparse (parm, scanner) + parse_parm *parm; + void *scanner; +#endif +#endif +{ + /* The look-ahead symbol. */ +int lp_yychar; + +/* The semantic value of the look-ahead symbol. */ +YYSTYPE lp_yylval; + +/* Number of syntax errors so far. */ +int lp_yynerrs; + + int lp_yystate; + int lp_yyn; + int lp_yyresult; + /* Number of tokens to shift before error messages enabled. */ + int lp_yyerrstatus; + /* Look-ahead token as an internal (translated) token number. */ + int lp_yytoken = 0; +#if YYERROR_VERBOSE + /* Buffer for error messages, and its allocated size. */ + char lp_yymsgbuf[128]; + char *lp_yymsg = lp_yymsgbuf; + YYSIZE_T lp_yymsg_alloc = sizeof lp_yymsgbuf; +#endif + + /* Three stacks and their tools: + `lp_yyss': related to states, + `lp_yyvs': related to semantic values, + `lp_yyls': related to locations. + + Refer to the stacks thru separate pointers, to allow lp_yyoverflow + to reallocate them elsewhere. */ + + /* The state stack. */ + lp_yytype_int16 lp_yyssa[YYINITDEPTH]; + lp_yytype_int16 *lp_yyss = lp_yyssa; + lp_yytype_int16 *lp_yyssp; + + /* The semantic value stack. */ + YYSTYPE lp_yyvsa[YYINITDEPTH]; + YYSTYPE *lp_yyvs = lp_yyvsa; + YYSTYPE *lp_yyvsp; + + + +#define YYPOPSTACK(N) (lp_yyvsp -= (N), lp_yyssp -= (N)) + + YYSIZE_T lp_yystacksize = YYINITDEPTH; + + /* The variables used to return semantic value and location from the + action routines. */ + YYSTYPE lp_yyval; + + + /* The number of symbols on the RHS of the reduced rule. + Keep to zero when no symbol should be popped. */ + int lp_yylen = 0; + + YYDPRINTF ((stderr, "Starting parse\n")); + + lp_yystate = 0; + lp_yyerrstatus = 0; + lp_yynerrs = 0; + lp_yychar = YYEMPTY; /* Cause a token to be read. */ + + /* Initialize stack pointers. + Waste one element of value and location stack + so that they stay on the same level as the state stack. + The wasted elements are never initialized. */ + + lp_yyssp = lp_yyss; + lp_yyvsp = lp_yyvs; + + goto lp_yysetstate; + +/*------------------------------------------------------------. +| lp_yynewstate -- Push a new state, which is found in lp_yystate. | +`------------------------------------------------------------*/ + lp_yynewstate: + /* In all cases, when you get here, the value and location stacks + have just been pushed. So pushing a state here evens the stacks. */ + lp_yyssp++; + + lp_yysetstate: + *lp_yyssp = lp_yystate; + + if (lp_yyss + lp_yystacksize - 1 <= lp_yyssp) + { + /* Get the current used size of the three stacks, in elements. */ + YYSIZE_T lp_yysize = lp_yyssp - lp_yyss + 1; + +#ifdef lp_yyoverflow + { + /* Give user a chance to reallocate the stack. Use copies of + these so that the &'s don't force the real ones into + memory. */ + YYSTYPE *lp_yyvs1 = lp_yyvs; + lp_yytype_int16 *lp_yyss1 = lp_yyss; + + + /* Each stack pointer address is followed by the size of the + data in use in that stack, in bytes. This used to be a + conditional around just the two extra args, but that might + be undefined if lp_yyoverflow is a macro. */ + lp_yyoverflow (YY_("memory exhausted"), + &lp_yyss1, lp_yysize * sizeof (*lp_yyssp), + &lp_yyvs1, lp_yysize * sizeof (*lp_yyvsp), + + &lp_yystacksize); + + lp_yyss = lp_yyss1; + lp_yyvs = lp_yyvs1; + } +#else /* no lp_yyoverflow */ +# ifndef YYSTACK_RELOCATE + goto lp_yyexhaustedlab; +# else + /* Extend the stack our own way. */ + if (YYMAXDEPTH <= lp_yystacksize) + goto lp_yyexhaustedlab; + lp_yystacksize *= 2; + if (YYMAXDEPTH < lp_yystacksize) + lp_yystacksize = YYMAXDEPTH; + + { + lp_yytype_int16 *lp_yyss1 = lp_yyss; + union lp_yyalloc *lp_yyptr = + (union lp_yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (lp_yystacksize)); + if (! lp_yyptr) + goto lp_yyexhaustedlab; + YYSTACK_RELOCATE (lp_yyss); + YYSTACK_RELOCATE (lp_yyvs); + +# undef YYSTACK_RELOCATE + if (lp_yyss1 != lp_yyssa) + YYSTACK_FREE (lp_yyss1); + } +# endif +#endif /* no lp_yyoverflow */ + + lp_yyssp = lp_yyss + lp_yysize - 1; + lp_yyvsp = lp_yyvs + lp_yysize - 1; + + + YYDPRINTF ((stderr, "Stack size increased to %lu\n", + (unsigned long int) lp_yystacksize)); + + if (lp_yyss + lp_yystacksize - 1 <= lp_yyssp) + YYABORT; + } + + YYDPRINTF ((stderr, "Entering state %d\n", lp_yystate)); + + goto lp_yybackup; + +/*-----------. +| lp_yybackup. | +`-----------*/ +lp_yybackup: + + /* Do appropriate processing given the current state. Read a + look-ahead token if we need one and don't already have one. */ + + /* First try to decide what to do without reference to look-ahead token. */ + lp_yyn = lp_yypact[lp_yystate]; + if (lp_yyn == YYPACT_NINF) + goto lp_yydefault; + + /* Not known => get a look-ahead token if don't already have one. */ + + /* YYCHAR is either YYEMPTY or YYEOF or a valid look-ahead symbol. */ + if (lp_yychar == YYEMPTY) + { + YYDPRINTF ((stderr, "Reading a token: ")); + lp_yychar = YYLEX; + } + + if (lp_yychar <= YYEOF) + { + lp_yychar = lp_yytoken = YYEOF; + YYDPRINTF ((stderr, "Now at end of input.\n")); + } + else + { + lp_yytoken = YYTRANSLATE (lp_yychar); + YY_SYMBOL_PRINT ("Next token is", lp_yytoken, &lp_yylval, &lp_yylloc); + } + + /* If the proper action on seeing token YYTOKEN is to reduce or to + detect an error, take that action. */ + lp_yyn += lp_yytoken; + if (lp_yyn < 0 || YYLAST < lp_yyn || lp_yycheck[lp_yyn] != lp_yytoken) + goto lp_yydefault; + lp_yyn = lp_yytable[lp_yyn]; + if (lp_yyn <= 0) + { + if (lp_yyn == 0 || lp_yyn == YYTABLE_NINF) + goto lp_yyerrlab; + lp_yyn = -lp_yyn; + goto lp_yyreduce; + } + + if (lp_yyn == YYFINAL) + YYACCEPT; + + /* Count tokens shifted since error; after three, turn off error + status. */ + if (lp_yyerrstatus) + lp_yyerrstatus--; + + /* Shift the look-ahead token. */ + YY_SYMBOL_PRINT ("Shifting", lp_yytoken, &lp_yylval, &lp_yylloc); + + /* Discard the shifted token unless it is eof. */ + if (lp_yychar != YYEOF) + lp_yychar = YYEMPTY; + + lp_yystate = lp_yyn; + *++lp_yyvsp = lp_yylval; + + goto lp_yynewstate; + + +/*-----------------------------------------------------------. +| lp_yydefault -- do the default action for the current state. | +`-----------------------------------------------------------*/ +lp_yydefault: + lp_yyn = lp_yydefact[lp_yystate]; + if (lp_yyn == 0) + goto lp_yyerrlab; + goto lp_yyreduce; + + +/*-----------------------------. +| lp_yyreduce -- Do a reduction. | +`-----------------------------*/ +lp_yyreduce: + /* lp_yyn is the number of a rule to reduce with. */ + lp_yylen = lp_yyr2[lp_yyn]; + + /* If YYLEN is nonzero, implement the default value of the action: + `$$ = $1'. + + Otherwise, the following line sets YYVAL to garbage. + This behavior is undocumented and Bison + users should not rely upon it. Assigning to YYVAL + unconditionally makes the parser a bit smaller, and it avoids a + GCC warning that YYVAL may be used uninitialized. */ + lp_yyval = lp_yyvsp[1-lp_yylen]; + + + YY_REDUCE_PRINT (lp_yyn); + switch (lp_yyn) + { + case 3: + + { + parse_parm *pp = PARM; + parse_vars *pv = (parse_vars *) pp->parse_vars; + + pv->isign = 0; + pv->make_neg = 0; + pv->Sign = 0; + pv->HadConstraint = FALSE; + pv->HadVar = pv->HadVar0 = FALSE; +} + break; + + case 5: + + { + set_obj_dir(PARM, TRUE); +} + break; + + case 6: + + { + set_obj_dir(PARM, FALSE); +} + break; + + case 8: + + { + parse_parm *pp = PARM; + parse_vars *pv = (parse_vars *) pp->parse_vars; + + add_row(pp); + pv->HadConstraint = FALSE; + pv->HadVar = pv->HadVar0 = FALSE; + pv->isign = 0; + pv->make_neg = 0; +} + break; + + case 16: + + { + parse_parm *pp = PARM; + parse_vars *pv = (parse_vars *) pp->parse_vars; + + if(!add_constraint_name(pp, pv->Last_var)) + YYABORT; + pv->HadConstraint = TRUE; +} + break; + + case 18: + + { + parse_parm *pp = PARM; + parse_vars *pv = (parse_vars *) pp->parse_vars; + + pv->HadVar1 = pv->HadVar0; + pv->HadVar0 = FALSE; +} + break; + + case 19: + + { + parse_parm *pp = PARM; + parse_vars *pv = (parse_vars *) pp->parse_vars; + + if(!store_re_op(pp, pv->OP, (int) pv->HadConstraint, (int) pv->HadVar, (int) pv->Had_lineair_sum)) + YYABORT; + pv->make_neg = 1; + pv->f1 = 0; +} + break; + + case 20: + + { + parse_parm *pp = PARM; + parse_vars *pv = (parse_vars *) pp->parse_vars; + + pv->Had_lineair_sum0 = pv->Had_lineair_sum; + pv->Had_lineair_sum = TRUE; + pv->HadVar2 = pv->HadVar0; + pv->HadVar0 = FALSE; + pv->do_add_row = FALSE; + if(pv->HadConstraint && !pv->HadVar ) { + /* it is a range */ + /* already handled */ + } + else if(!pv->HadConstraint && pv->HadVar) { + /* it is a bound */ + + if(!store_bounds(pp, TRUE)) + YYABORT; + } + else { + /* it is a row restriction */ + if(pv->HadConstraint && pv->HadVar) + store_re_op(pp, '\0', (int) pv->HadConstraint, (int) pv->HadVar, (int) pv->Had_lineair_sum); /* makes sure that data stored in temporary buffers is treated correctly */ + pv->do_add_row = TRUE; + } +} + break; + + case 21: + + { + parse_parm *pp = PARM; + parse_vars *pv = (parse_vars *) pp->parse_vars; + + if((!pv->HadVar) && (!pv->HadConstraint)) { + lp_yyerror(pp, pp->scanner, "parse error"); + YYABORT; + } + if(pv->do_add_row) + add_row(pp); + pv->HadConstraint = FALSE; + pv->HadVar = pv->HadVar0 = FALSE; + pv->isign = 0; + pv->make_neg = 0; + null_tmp_store(pp, TRUE); +} + break; + + case 22: + + { + parse_parm *pp = PARM; + parse_vars *pv = (parse_vars *) pp->parse_vars; + + if((!pv->HadVar1) && (pv->Had_lineair_sum0)) + if(!negate_constraint(pp)) + YYABORT; +} + break; + + case 23: + + { + parse_parm *pp = PARM; + parse_vars *pv = (parse_vars *) pp->parse_vars; + + pv->make_neg = 0; + pv->isign = 0; + if(pv->HadConstraint) + pv->HadVar = pv->Had_lineair_sum = FALSE; + pv->HadVar0 = FALSE; + if(!store_re_op(pp, (char) ((pv->OP == '<') ? '>' : (pv->OP == '>') ? '<' : pv->OP), (int) pv->HadConstraint, (int) pv->HadVar, (int) pv->Had_lineair_sum)) + YYABORT; +} + break; + + case 24: + + { + parse_parm *pp = PARM; + parse_vars *pv = (parse_vars *) pp->parse_vars; + + pv->f -= pv->f1; +} + break; + + case 25: + + { + parse_parm *pp = PARM; + parse_vars *pv = (parse_vars *) pp->parse_vars; + + if((pv->HadVar1) || (!pv->HadVar2) || (pv->HadVar0)) { + lp_yyerror(pp, pp->scanner, "parse error"); + YYABORT; + } + + if(pv->HadConstraint && !pv->HadVar ) { + /* it is a range */ + /* already handled */ + if(!negate_constraint(pp)) + YYABORT; + } + else if(!pv->HadConstraint && pv->HadVar) { + /* it is a bound */ + + if(!store_bounds(pp, TRUE)) + YYABORT; + } +} + break; + + case 26: + + { + parse_parm *pp = PARM; + parse_vars *pv = (parse_vars *) pp->parse_vars; + + /* to allow a range */ + /* constraint: < max */ + if(!pv->HadConstraint) { + lp_yyerror(pp, pp->scanner, "parse error"); + YYABORT; + } + pv->Had_lineair_sum = FALSE; +} + break; + + case 27: + + { + parse_parm *pp = PARM; + parse_vars *pv = (parse_vars *) pp->parse_vars; + + pv->Had_lineair_sum = TRUE; +} + break; + + case 29: + + { + parse_parm *pp = PARM; + parse_vars *pv = (parse_vars *) pp->parse_vars; + + pv->isign = pv->Sign; +} + break; + + case 31: + + { + parse_parm *pp = PARM; + parse_vars *pv = (parse_vars *) pp->parse_vars; + + pv->state = pv->state0 = 0; +} + break; + + case 32: + + { + parse_parm *pp = PARM; + parse_vars *pv = (parse_vars *) pp->parse_vars; + + if (pv->state == 1) { + /* RHS_STORE */ + if ( (pv->isign0 || !pv->make_neg) + && !(pv->isign0 && !pv->make_neg)) /* but not both! */ + pv->f0 = -pv->f0; + if(pv->make_neg) + pv->f1 += pv->f0; + if(!rhs_store(pp, pv->f0, (int) pv->HadConstraint, (int) pv->HadVar, (int) pv->Had_lineair_sum)) + YYABORT; + } +} + break; + + case 35: + + { + parse_parm *pp = PARM; + parse_vars *pv = (parse_vars *) pp->parse_vars; + + if ((pv->HadSign || pv->state == 1) && (pv->state0 == 1)) { + /* RHS_STORE */ + if ( (pv->isign0 || !pv->make_neg) + && !(pv->isign0 && !pv->make_neg)) /* but not both! */ + pv->f0 = -pv->f0; + if(pv->make_neg) + pv->f1 += pv->f0; + if(!rhs_store(pp, pv->f0, (int) pv->HadConstraint, (int) pv->HadVar, (int) pv->Had_lineair_sum)) + YYABORT; + } + if (pv->state == 1) { + pv->f0 = pv->f; + pv->isign0 = pv->isign; + } + if (pv->state == 2) { + if((pv->HadSign) || (pv->state0 != 1)) { + pv->isign0 = pv->isign; + pv->f0 = 1.0; + } + if ( (pv->isign0 || pv->make_neg) + && !(pv->isign0 && pv->make_neg)) /* but not both! */ + pv->f0 = -pv->f0; + if(!var_store(pp, pv->Last_var, pv->f0, (int) pv->HadConstraint, (int) pv->HadVar, (int) pv->Had_lineair_sum)) { + lp_yyerror(pp, pp->scanner, "var_store failed"); + YYABORT; + } + pv->HadConstraint |= pv->HadVar; + pv->HadVar = pv->HadVar0 = TRUE; + } + pv->state0 = pv->state; +} + break; + + case 36: + + { + parse_parm *pp = PARM; + parse_vars *pv = (parse_vars *) pp->parse_vars; + + pv->state = 1; +} + break; + + case 37: + + { + parse_parm *pp = PARM; + parse_vars *pv = (parse_vars *) pp->parse_vars; + + if ((pv->HasAR_M_OP) && (pv->state != 1)) { + lp_yyerror(pp, pp->scanner, "parse error"); + YYABORT; + } +} + break; + + case 38: + + { + parse_parm *pp = PARM; + parse_vars *pv = (parse_vars *) pp->parse_vars; + + pv->state = 2; +} + break; + + case 43: + + { + parse_parm *pp = PARM; + parse_vars *pv = (parse_vars *) pp->parse_vars; + + pv->isign = pv->Sign; +} + break; + + case 46: + + { + parse_parm *pp = PARM; + parse_vars *pv = (parse_vars *) pp->parse_vars; + + pv->isign = 0; + pv->HadSign = FALSE; +} + break; + + case 47: + + { + parse_parm *pp = PARM; + parse_vars *pv = (parse_vars *) pp->parse_vars; + + pv->isign = pv->Sign; + pv->HadSign = TRUE; +} + break; + + case 48: + + { + parse_parm *pp = PARM; + parse_vars *pv = (parse_vars *) pp->parse_vars; + + pv->HasAR_M_OP = FALSE; +} + break; + + case 49: + + { + parse_parm *pp = PARM; + parse_vars *pv = (parse_vars *) pp->parse_vars; + + pv->HasAR_M_OP = TRUE; +} + break; + + case 50: + + { + parse_parm *pp = PARM; + parse_vars *pv = (parse_vars *) pp->parse_vars; + + if ( (pv->isign || !pv->make_neg) + && !(pv->isign && !pv->make_neg)) /* but not both! */ + pv->f = -pv->f; + if(!rhs_store(pp, pv->f, (int) pv->HadConstraint, (int) pv->HadVar, (int) pv->Had_lineair_sum)) + YYABORT; + pv->isign = 0; +} + break; + + case 60: + + { + parse_parm *pp = PARM; + parse_vars *pv = (parse_vars *) pp->parse_vars; + + pv->Within_sos_decl1 = pv->Within_sos_decl; +} + break; + + case 62: + + { + parse_parm *pp = PARM; + parse_vars *pv = (parse_vars *) pp->parse_vars; + + if((!pv->Within_int_decl) && (!pv->Within_sec_decl) && (!pv->Within_sos_decl1) && (!pv->Within_free_decl)) { + lp_yyerror(pp, pp->scanner, "parse error"); + YYABORT; + } + pv->SOStype = pv->SOStype0; + check_int_sec_sos_free_decl(pp, (int) pv->Within_int_decl, (int) pv->Within_sec_decl, (int) (pv->Within_sos_decl1 = (pv->Within_sos_decl1 ? 1 : 0)), (int) pv->Within_free_decl); +} + break; + + case 63: + + { + parse_parm *pp = PARM; + parse_vars *pv = (parse_vars *) pp->parse_vars; + + if((pv->Within_sos_decl1) && (pv->SOStype == 0)) + { + lp_yyerror(pp, pp->scanner, "Unsupported SOS type (0)"); + YYABORT; + } +} + break; + + case 67: + + { + parse_parm *pp = PARM; + parse_vars *pv = (parse_vars *) pp->parse_vars; + + FREE(pv->Last_var0); + pv->Last_var0 = strdup(pv->Last_var); +} + break; + + case 69: + + { + parse_parm *pp = PARM; + parse_vars *pv = (parse_vars *) pp->parse_vars; + + if(pv->Within_sos_decl1) { + set_sos_type(pp, pv->SOStype); + set_sos_weight(pp, (double) pv->SOSweight, 1); + } +} + break; + + case 70: + + { + parse_parm *pp = PARM; + parse_vars *pv = (parse_vars *) pp->parse_vars; + + if((pv->Within_sos_decl1) && (!pv->SOStype)) + { + set_sos_type(pp, pv->SOStype = (short) (pv->f + .1)); + } + else + { + lp_yyerror(pp, pp->scanner, "SOS type not expected"); + YYABORT; + } +} + break; + + case 72: + + { + parse_parm *pp = PARM; + parse_vars *pv = (parse_vars *) pp->parse_vars; + + set_sos_weight(pp, (double) pv->SOSweight, 1); +} + break; + + case 73: + + { + parse_parm *pp = PARM; + parse_vars *pv = (parse_vars *) pp->parse_vars; + + set_sos_weight(pp, pv->f, 1); +} + break; + + case 80: + + { + parse_parm *pp = PARM; + parse_vars *pv = (parse_vars *) pp->parse_vars; + + if(pv->Within_sos_decl1 == 1) + { + char buf[16]; + + pv->SOSweight++; + sprintf(buf, "SOS%d", pv->SOSweight); + storevarandweight(pp, buf); + + check_int_sec_sos_free_decl(pp, (int) pv->Within_int_decl, (int) pv->Within_sec_decl, 2, (int) pv->Within_free_decl); + pv->Within_sos_decl1 = 2; + pv->SOSNr = 0; + } + + storevarandweight(pp, pv->Last_var); + + if(pv->Within_sos_decl1 == 2) + { + pv->SOSNr++; + set_sos_weight(pp, (double) pv->SOSNr, 2); + } +} + break; + + case 81: + + { + parse_parm *pp = PARM; + parse_vars *pv = (parse_vars *) pp->parse_vars; + + if(!pv->Within_sos_decl1) { + lp_yyerror(pp, pp->scanner, "parse error"); + YYABORT; + } + if(pv->Within_sos_decl1 == 1) { + FREE(pv->Last_var0); + pv->Last_var0 = strdup(pv->Last_var); + } + if(pv->Within_sos_decl1 == 2) + { + storevarandweight(pp, pv->Last_var); + pv->SOSNr++; + set_sos_weight(pp, (double) pv->SOSNr, 2); + } +} + break; + + case 82: + + { + parse_parm *pp = PARM; + parse_vars *pv = (parse_vars *) pp->parse_vars; + + if(pv->Within_sos_decl1 == 1) + { + char buf[16]; + + pv->SOSweight++; + sprintf(buf, "SOS%d", pv->SOSweight); + storevarandweight(pp, buf); + + check_int_sec_sos_free_decl(pp, (int) pv->Within_int_decl, (int) pv->Within_sec_decl, 2, (int) pv->Within_free_decl); + pv->Within_sos_decl1 = 2; + pv->SOSNr = 0; + + storevarandweight(pp, pv->Last_var0); + pv->SOSNr++; + } + + set_sos_weight(pp, pv->f, 2); +} + break; + + case 83: + + { /* SOS name */ + parse_parm *pp = PARM; + parse_vars *pv = (parse_vars *) pp->parse_vars; + + if(pv->Within_sos_decl1 == 1) + { + parse_parm *pp = PARM; + parse_vars *pv = (parse_vars *) pp->parse_vars; + + storevarandweight(pp, pv->Last_var0); + set_sos_type(pp, pv->SOStype); + check_int_sec_sos_free_decl(pp, (int) pv->Within_int_decl, (int) pv->Within_sec_decl, 2, (int) pv->Within_free_decl); + pv->Within_sos_decl1 = 2; + pv->SOSNr = 0; + pv->SOSweight++; + } +} + break; + + +/* Line 1267 of yacc.c. */ + + default: break; + } + YY_SYMBOL_PRINT ("-> $$ =", lp_yyr1[lp_yyn], &lp_yyval, &lp_yyloc); + + YYPOPSTACK (lp_yylen); + lp_yylen = 0; + YY_STACK_PRINT (lp_yyss, lp_yyssp); + + *++lp_yyvsp = lp_yyval; + + + /* Now `shift' the result of the reduction. Determine what state + that goes to, based on the state we popped back to and the rule + number reduced by. */ + + lp_yyn = lp_yyr1[lp_yyn]; + + lp_yystate = lp_yypgoto[lp_yyn - YYNTOKENS] + *lp_yyssp; + if (0 <= lp_yystate && lp_yystate <= YYLAST && lp_yycheck[lp_yystate] == *lp_yyssp) + lp_yystate = lp_yytable[lp_yystate]; + else + lp_yystate = lp_yydefgoto[lp_yyn - YYNTOKENS]; + + goto lp_yynewstate; + + +/*------------------------------------. +| lp_yyerrlab -- here on detecting error | +`------------------------------------*/ +lp_yyerrlab: + /* If not already recovering from an error, report this error. */ + if (!lp_yyerrstatus) + { + ++lp_yynerrs; +#if ! YYERROR_VERBOSE + lp_yyerror (parm, scanner, YY_("syntax error")); +#else + { + YYSIZE_T lp_yysize = lp_yysyntax_error (0, lp_yystate, lp_yychar); + if (lp_yymsg_alloc < lp_yysize && lp_yymsg_alloc < YYSTACK_ALLOC_MAXIMUM) + { + YYSIZE_T lp_yyalloc = 2 * lp_yysize; + if (! (lp_yysize <= lp_yyalloc && lp_yyalloc <= YYSTACK_ALLOC_MAXIMUM)) + lp_yyalloc = YYSTACK_ALLOC_MAXIMUM; + if (lp_yymsg != lp_yymsgbuf) + YYSTACK_FREE (lp_yymsg); + lp_yymsg = (char *) YYSTACK_ALLOC (lp_yyalloc); + if (lp_yymsg) + lp_yymsg_alloc = lp_yyalloc; + else + { + lp_yymsg = lp_yymsgbuf; + lp_yymsg_alloc = sizeof lp_yymsgbuf; + } + } + + if (0 < lp_yysize && lp_yysize <= lp_yymsg_alloc) + { + (void) lp_yysyntax_error (lp_yymsg, lp_yystate, lp_yychar); + lp_yyerror (parm, scanner, lp_yymsg); + } + else + { + lp_yyerror (parm, scanner, YY_("syntax error")); + if (lp_yysize != 0) + goto lp_yyexhaustedlab; + } + } +#endif + } + + + + if (lp_yyerrstatus == 3) + { + /* If just tried and failed to reuse look-ahead token after an + error, discard it. */ + + if (lp_yychar <= YYEOF) + { + /* Return failure if at end of input. */ + if (lp_yychar == YYEOF) + YYABORT; + } + else + { + lp_yydestruct ("Error: discarding", + lp_yytoken, &lp_yylval, parm, scanner); + lp_yychar = YYEMPTY; + } + } + + /* Else will try to reuse look-ahead token after shifting the error + token. */ + goto lp_yyerrlab1; + + +/*---------------------------------------------------. +| lp_yyerrorlab -- error raised explicitly by YYERROR. | +`---------------------------------------------------*/ +lp_yyerrorlab: + + /* Pacify compilers like GCC when the user code never invokes + YYERROR and the label lp_yyerrorlab therefore never appears in user + code. */ + if (/*CONSTCOND*/ 0) + goto lp_yyerrorlab; + + /* Do not reclaim the symbols of the rule which action triggered + this YYERROR. */ + YYPOPSTACK (lp_yylen); + lp_yylen = 0; + YY_STACK_PRINT (lp_yyss, lp_yyssp); + lp_yystate = *lp_yyssp; + goto lp_yyerrlab1; + + +/*-------------------------------------------------------------. +| lp_yyerrlab1 -- common code for both syntax error and YYERROR. | +`-------------------------------------------------------------*/ +lp_yyerrlab1: + lp_yyerrstatus = 3; /* Each real token shifted decrements this. */ + + for (;;) + { + lp_yyn = lp_yypact[lp_yystate]; + if (lp_yyn != YYPACT_NINF) + { + lp_yyn += YYTERROR; + if (0 <= lp_yyn && lp_yyn <= YYLAST && lp_yycheck[lp_yyn] == YYTERROR) + { + lp_yyn = lp_yytable[lp_yyn]; + if (0 < lp_yyn) + break; + } + } + + /* Pop the current state because it cannot handle the error token. */ + if (lp_yyssp == lp_yyss) + YYABORT; + + + lp_yydestruct ("Error: popping", + lp_yystos[lp_yystate], lp_yyvsp, parm, scanner); + YYPOPSTACK (1); + lp_yystate = *lp_yyssp; + YY_STACK_PRINT (lp_yyss, lp_yyssp); + } + + if (lp_yyn == YYFINAL) + YYACCEPT; + + *++lp_yyvsp = lp_yylval; + + + /* Shift the error token. */ + YY_SYMBOL_PRINT ("Shifting", lp_yystos[lp_yyn], lp_yyvsp, lp_yylsp); + + lp_yystate = lp_yyn; + goto lp_yynewstate; + + +/*-------------------------------------. +| lp_yyacceptlab -- YYACCEPT comes here. | +`-------------------------------------*/ +lp_yyacceptlab: + lp_yyresult = 0; + goto lp_yyreturn; + +/*-----------------------------------. +| lp_yyabortlab -- YYABORT comes here. | +`-----------------------------------*/ +lp_yyabortlab: + lp_yyresult = 1; + goto lp_yyreturn; + +#ifndef lp_yyoverflow +/*-------------------------------------------------. +| lp_yyexhaustedlab -- memory exhaustion comes here. | +`-------------------------------------------------*/ +lp_yyexhaustedlab: + lp_yyerror (parm, scanner, YY_("memory exhausted")); + lp_yyresult = 2; + /* Fall through. */ +#endif + +lp_yyreturn: + if (lp_yychar != YYEOF && lp_yychar != YYEMPTY) + lp_yydestruct ("Cleanup: discarding lookahead", + lp_yytoken, &lp_yylval, parm, scanner); + /* Do not reclaim the symbols of the rule which action triggered + this YYABORT or YYACCEPT. */ + YYPOPSTACK (lp_yylen); + YY_STACK_PRINT (lp_yyss, lp_yyssp); + while (lp_yyssp != lp_yyss) + { + lp_yydestruct ("Cleanup: popping", + lp_yystos[*lp_yyssp], lp_yyvsp, parm, scanner); + YYPOPSTACK (1); + } +#ifndef lp_yyoverflow + if (lp_yyss != lp_yyssa) + YYSTACK_FREE (lp_yyss); +#endif +#if YYERROR_VERBOSE + if (lp_yymsg != lp_yymsgbuf) + YYSTACK_FREE (lp_yymsg); +#endif + /* Make sure YYID is used. */ + return YYID (lp_yyresult); +} + + + + + +static void lp_yy_delete_allocated_memory(parse_parm *pp) +{ + parse_vars *pv = (parse_vars *) pp->parse_vars; + /* free memory allocated by flex. Otherwise some memory is not freed. + This is a bit tricky. There is not much documentation about this, but a lot of + reports of memory that keeps allocated */ + + /* If you get errors on this function call, just comment it. This will only result + in some memory that is not being freed. */ + +# if defined YY_CURRENT_BUFFER + /* flex defines the macro YY_CURRENT_BUFFER, so you should only get here if lp_rlp.h is + generated by flex */ + /* lex doesn't define this macro and thus should not come here, but lex doesn't has + this memory leak also ...*/ + +# if 0 + /* older versions of flex */ + lp_yy_delete_buffer(YY_CURRENT_BUFFER); /* comment this line if you have problems with it */ + lp_yy_init = 1; /* make sure that the next time memory is allocated again */ + lp_yy_start = 0; +# else + /* As of version 2.5.9 Flex */ + lp_yylex_destroy(pp->scanner); /* comment this line if you have problems with it */ +# endif +# endif + + FREE(pv->Last_var); + FREE(pv->Last_var0); +} + +static int parse(parse_parm *pp) +{ + return(lp_yyparse(pp, pp->scanner)); +} + +lprec *read_lp1(lprec *lp, void *userhandle, read_modeldata_func read_modeldata, int verbose, char *lp_name) +{ + parse_vars *pv; + lprec *lp1 = NULL; + + CALLOC(pv, 1, parse_vars); + if (pv != NULL) { + parse_parm pp; + + memset(&pp, 0, sizeof(pp)); + pp.parse_vars = (void *) pv; + + lp_yylex_init(&pp.scanner); + lp_yyset_extra(&pp, pp.scanner); + + lp_yyset_in((FILE *) userhandle, pp.scanner); + lp_yyset_out(NULL, pp.scanner); + pv->lp_input = read_modeldata; + pv->userhandle = userhandle; + lp1 = yacc_read(lp, verbose, lp_name, parse, &pp, lp_yy_delete_allocated_memory); + FREE(pv); + } + return(lp1); +} + +lprec * __WINAPI read_lp(FILE *filename, int verbose, char *lp_name) +{ + return(read_lp1(NULL, filename, lp_input_lp_yyin, verbose, lp_name)); +} + +lprec * __WINAPI read_lpex(void *userhandle, read_modeldata_func read_modeldata, int verbose, char *lp_name) +{ + return(read_lp1(NULL, userhandle, read_modeldata, verbose, lp_name)); +} + +lprec *read_LP1(lprec *lp, char *filename, int verbose, char *lp_name) +{ + FILE *fpin; + + if((fpin = fopen(filename, "r")) != NULL) { + lp = read_lp1(lp, fpin, lp_input_lp_yyin, verbose, lp_name); + fclose(fpin); + } + else + lp = NULL; + return(lp); +} + +lprec * __WINAPI read_LP(char *filename, int verbose, char *lp_name) +{ + return(read_LP1(NULL, filename, verbose, lp_name)); +} + +MYBOOL __WINAPI LP_readhandle(lprec **lp, FILE *filename, int verbose, char *lp_name) +{ + if(lp != NULL) + *lp = read_lp1(*lp, filename, lp_input_lp_yyin, verbose, lp_name); + + return((lp != NULL) && (*lp != NULL)); +} + diff --git a/src/external/lpsolve/build/lp_solve/lp_scale.c b/src/external/lpsolve/build/lp_solve/lp_scale.c new file mode 100644 index 00000000..7e344830 --- /dev/null +++ b/src/external/lpsolve/build/lp_solve/lp_scale.c @@ -0,0 +1,1075 @@ + +#include +#include "commonlib.h" +#include "lp_lib.h" +#include "lp_report.h" +#include "lp_scale.h" + +#ifdef FORTIFY +# include "lp_fortify.h" +#endif + + +/* + Scaling routines for lp_solve v5.0+ + ---------------------------------------------------------------------------------- + Author: Kjell Eikland + Contact: kjell.eikland@broadpark.no + License terms: LGPL. + + Requires: lp_lib.h, lp_scale.h + + Release notes: + v5.0.0 1 January 2004 Significantly expanded and repackaged scaling + routines. + v5.0.1 20 February 2004 Modified rounding behaviour in several areas. + v5.1.0 20 July 2004 Reworked with flexible matrix storage model. + v5.2.0 20 February 2005 Converted to matrix storage model without the OF. + + ---------------------------------------------------------------------------------- +*/ + +/* First define scaling and unscaling primitives */ + +LPSREAL scaled_value(lprec *lp, LPSREAL value, int index) +{ + if(fabs(value) < lp->infinite) { + if(lp->scaling_used) { + if(index > lp->rows) + value /= lp->scalars[index]; + else + value *= lp->scalars[index]; + } + } + else + value = my_sign(value)*lp->infinite; + return(value); +} + +LPSREAL unscaled_value(lprec *lp, LPSREAL value, int index) +{ + if(fabs(value) < lp->infinite) { + if(lp->scaling_used) { + if(index > lp->rows) + value *= lp->scalars[index]; + else + value /= lp->scalars[index]; + } + } + else + value = my_sign(value)*lp->infinite; + return(value); +} + +STATIC LPSREAL scaled_mat(lprec *lp, LPSREAL value, int rownr, int colnr) +{ + if(lp->scaling_used) + value *= lp->scalars[rownr] * lp->scalars[lp->rows + colnr]; + return( value ); +} + +STATIC LPSREAL unscaled_mat(lprec *lp, LPSREAL value, int rownr, int colnr) +{ + if(lp->scaling_used) + value /= lp->scalars[rownr] * lp->scalars[lp->rows + colnr]; + return( value ); +} + +/* Compute the scale factor by the formulae: + FALSE: SUM (log |Aij|) ^ 2 + TRUE: SUM (log |Aij| - RowScale[i] - ColScale[j]) ^ 2 */ +LPSREAL CurtisReidMeasure(lprec *lp, MYBOOL _Advanced, LPSREAL *FRowScale, LPSREAL *FColScale) +{ + int i, nz; + LPSREAL absvalue, logvalue; + register LPSREAL result; + MATrec *mat = lp->matA; + LPSREAL *value; + int *rownr, *colnr; + + /* Do OF part */ + result = 0; + for(i = 1; i <= lp->columns; i++) { + absvalue = fabs(lp->orig_obj[i]); + if(absvalue > 0) { + logvalue = log(absvalue); + if(_Advanced) + logvalue -= FRowScale[0] + FColScale[i]; + result += logvalue*logvalue; + } + } + + /* Do constraint matrix part */ + mat_validate(mat); + value = &(COL_MAT_VALUE(0)); + rownr = &(COL_MAT_ROWNR(0)); + colnr = &(COL_MAT_COLNR(0)); + nz = get_nonzeros(lp); + for(i = 0; i < nz; + i++, value += matValueStep, rownr += matRowColStep, colnr += matRowColStep) { + absvalue = fabs(*value); + if(absvalue > 0) { + logvalue = log(absvalue); + if(_Advanced) + logvalue -= FRowScale[*rownr] + FColScale[*colnr]; + result += logvalue*logvalue; + } + } + return( result ); +} + +/* Implementation of the Curtis-Reid scaling based on the paper + "On the Automatic Scaling of Matrices for Gaussian + Elimination," Journal of the Institute of Mathematics and + Its Applications (1972) 10, 118-124. + + Solve the system | M E | (r) (sigma) + | | ( ) = ( ) + | E^T N | (c) ( tau ) + + by the conjugate gradient method (clever recurrences). + + E is the matrix A with all elements = 1 + + M is diagonal matrix of row counts (RowCount) + N is diagonal matrix of column counts (ColCount) + + sigma is the vector of row logarithm sums (RowSum) + tau is the vector of column logarithm sums (ColSum) + + r, c are resulting row and column scalings (RowScale, ColScale) */ + +int CurtisReidScales(lprec *lp, MYBOOL _Advanced, LPSREAL *FRowScale, LPSREAL *FColScale) +{ + int i, row, col, ent, nz; + LPSREAL *RowScalem2, *ColScalem2, + *RowSum, *ColSum, + *residual_even, *residual_odd; + LPSREAL sk, qk, ek, + skm1, qkm1, ekm1, + qkm2, qkqkm1, ekm2, ekekm1, + absvalue, logvalue, + StopTolerance; + int *RowCount, *ColCount, colMax; + int Result; + MATrec *mat = lp->matA; + LPSREAL *value; + int *rownr, *colnr; + + if(CurtisReidMeasure(lp, _Advanced, FRowScale, FColScale)<0.1*get_nonzeros(lp)) + return(0); + + /* Allocate temporary memory and find RowSum and ColSum measures */ + nz = get_nonzeros(lp); + colMax = lp->columns; + + allocREAL(lp, &RowSum, lp->rows+1, TRUE); + allocINT(lp, &RowCount, lp->rows+1, TRUE); + allocREAL(lp, &residual_odd, lp->rows+1, TRUE); + + allocREAL(lp, &ColSum, colMax+1, TRUE); + allocINT(lp, &ColCount, colMax+1, TRUE); + allocREAL(lp, &residual_even, colMax+1, TRUE); + + allocREAL(lp, &RowScalem2, lp->rows+1, FALSE); + allocREAL(lp, &ColScalem2, colMax+1, FALSE); + + /* Set origin for row scaling */ + for(i = 1; i <= colMax; i++) { + absvalue=fabs(lp->orig_obj[i]); + if(absvalue>0) { + logvalue = log(absvalue); + ColSum[i] += logvalue; + RowSum[0] += logvalue; + ColCount[i]++; + RowCount[0]++; + } + } + + value = &(COL_MAT_VALUE(0)); + rownr = &(COL_MAT_ROWNR(0)); + colnr = &(COL_MAT_COLNR(0)); + for(i = 0; i < nz; + i++, value += matValueStep, rownr += matRowColStep, colnr += matRowColStep) { + absvalue=fabs(*value); + if(absvalue>0) { + logvalue = log(absvalue); + ColSum[*colnr] += logvalue; + RowSum[*rownr] += logvalue; + ColCount[*colnr]++; + RowCount[*rownr]++; + } + } + + /* Make sure we dont't have division by zero errors */ + for(row = 0; row <= lp->rows; row++) + if(RowCount[row] == 0) + RowCount[row] = 1; + for(col = 1; col <= colMax; col++) + if(ColCount[col] == 0) + ColCount[col] = 1; + + /* Initialize to RowScale = RowCount-1 RowSum + ColScale = 0.0 + residual = ColSum - ET RowCount-1 RowSum */ + + StopTolerance= MAX(lp->scalelimit-floor(lp->scalelimit), DEF_SCALINGEPS); + StopTolerance *= (LPSREAL) nz; + for(row = 0; row <= lp->rows; row++) { + FRowScale[row] = RowSum[row] / (LPSREAL) RowCount[row]; + RowScalem2[row] = FRowScale[row]; + } + + /* Compute initial residual */ + for(col = 1; col <= colMax; col++) { + FColScale[col] = 0; + ColScalem2[col] = 0; + residual_even[col] = ColSum[col]; + + if(lp->orig_obj[col] != 0) + residual_even[col] -= RowSum[0] / (LPSREAL) RowCount[0]; + + i = mat->col_end[col-1]; + rownr = &(COL_MAT_ROWNR(i)); + ent = mat->col_end[col]; + for(; i < ent; + i++, rownr += matRowColStep) { + residual_even[col] -= RowSum[*rownr] / (LPSREAL) RowCount[*rownr]; + } + } + + /* Compute sk */ + sk = 0; + skm1 = 0; + for(col = 1; col <= colMax; col++) + sk += (residual_even[col]*residual_even[col]) / (LPSREAL) ColCount[col]; + + Result = 0; + qk=1; qkm1=0; qkm2=0; + ek=0; ekm1=0; ekm2=0; + + while(sk>StopTolerance) { + /* Given the values of residual and sk, construct + ColScale (when pass is even) + RowScale (when pass is odd) */ + + qkqkm1 = qk * qkm1; + ekekm1 = ek * ekm1; + if((Result % 2) == 0) { /* pass is even; construct RowScale[pass+1] */ + if(Result != 0) { + for(row = 0; row <= lp->rows; row++) + RowScalem2[row] = FRowScale[row]; + if(qkqkm1 != 0) { + for(row = 0; row <= lp->rows; row++) + FRowScale[row]*=(1 + ekekm1 / qkqkm1); + for(row = 0; row<=lp->rows; row++) + FRowScale[row]+=(residual_odd[row] / (qkqkm1 * (LPSREAL) RowCount[row]) - + RowScalem2[row] * ekekm1 / qkqkm1); + } + } + } + else { /* pass is odd; construct ColScale[pass+1] */ + for(col = 1; col <= colMax; col++) + ColScalem2[col] = FColScale[col]; + if(qkqkm1 != 0) { + for(col = 1; col <= colMax; col++) + FColScale[col] *= (1 + ekekm1 / qkqkm1); + for(col = 1; col <= colMax; col++) + FColScale[col] += (residual_even[col] / ((LPSREAL) ColCount[col] * qkqkm1) - + ColScalem2[col] * ekekm1 / qkqkm1); + } + } + + /* update residual and sk (pass + 1) */ + if((Result % 2) == 0) { /* even */ + /* residual */ + for(row = 0; row <= lp->rows; row++) + residual_odd[row] *= ek; + + for(i = 1; i <= colMax; i++) + if(lp->orig_obj[i] != 0) + residual_odd[0] += (residual_even[i] / (LPSREAL) ColCount[i]); + + rownr = &(COL_MAT_ROWNR(0)); + colnr = &(COL_MAT_COLNR(0)); + for(i = 0; i < nz; + i++, rownr += matRowColStep, colnr += matRowColStep) { + residual_odd[*rownr] += (residual_even[*colnr] / (LPSREAL) ColCount[*colnr]); + } + for(row = 0; row <= lp->rows; row++) + residual_odd[row] *= (-1 / qk); + + /* sk */ + skm1 = sk; + sk = 0; + for(row = 0; row <= lp->rows; row++) + sk += (residual_odd[row]*residual_odd[row]) / (LPSREAL) RowCount[row]; + } + else { /* odd */ + /* residual */ + for(col = 1; col <= colMax; col++) + residual_even[col] *= ek; + + for(i = 1; i <= colMax; i++) + if(lp->orig_obj[i] != 0) + residual_even[i] += (residual_odd[0] / (LPSREAL) RowCount[0]); + + rownr = &(COL_MAT_ROWNR(0)); + colnr = &(COL_MAT_COLNR(0)); + for(i = 0; i < nz; + i++, rownr += matRowColStep, colnr += matRowColStep) { + residual_even[*colnr] += (residual_odd[*rownr] / (LPSREAL) RowCount[*rownr]); + } + for(col = 1; col <= colMax; col++) + residual_even[col] *= (-1 / qk); + + /* sk */ + skm1 = sk; + sk = 0; + for(col = 1; col <= colMax; col++) + sk += (residual_even[col]*residual_even[col]) / (LPSREAL) ColCount[col]; + } + + /* Compute ek and qk */ + ekm2=ekm1; + ekm1=ek; + ek=qk * sk / skm1; + + qkm2=qkm1; + qkm1=qk; + qk=1-ek; + + Result++; + } + + /* Synchronize the RowScale and ColScale vectors */ + ekekm1 = ek * ekm1; + if(qkm1 != 0) { + if((Result % 2) == 0) { /* pass is even, compute RowScale */ + for(row = 0; row<=lp->rows; row++) + FRowScale[row]*=(1.0 + ekekm1 / qkm1); + for(row = 0; row<=lp->rows; row++) + FRowScale[row]+=(residual_odd[row] / (qkm1 * (LPSREAL) RowCount[row]) - + RowScalem2[row] * ekekm1 / qkm1); + } + else { /* pass is odd, compute ColScale */ + for(col=1; col<=colMax; col++) + FColScale[col]*=(1 + ekekm1 / qkm1); + for(col=1; col<=colMax; col++) + FColScale[col]+=(residual_even[col] / ((LPSREAL) ColCount[col] * qkm1) - + ColScalem2[col] * ekekm1 / qkm1); + } + } + + /* Do validation, if indicated */ + if(FALSE && mat_validate(mat)){ + double check, error; + + /* CHECK: M RowScale + E ColScale = RowSum */ + error = 0; + for(row = 0; row <= lp->rows; row++) { + check = (LPSREAL) RowCount[row] * FRowScale[row]; + if(row == 0) { + for(i = 1; i <= colMax; i++) { + if(lp->orig_obj[i] != 0) + check += FColScale[i]; + } + } + else { + i = mat->row_end[row-1]; + ent = mat->row_end[row]; + for(; i < ent; i++) { + col = ROW_MAT_COLNR(i); + check += FColScale[col]; + } + } + check -= RowSum[row]; + error += check*check; + } + + /* CHECK: E^T RowScale + N ColScale = ColSum */ + error = 0; + for(col = 1; col <= colMax; col++) { + check = (LPSREAL) ColCount[col] * FColScale[col]; + + if(lp->orig_obj[col] != 0) + check += FRowScale[0]; + + i = mat->col_end[col-1]; + ent = mat->col_end[col]; + rownr = &(COL_MAT_ROWNR(i)); + for(; i < ent; + i++, rownr += matRowColStep) { + check += FRowScale[*rownr]; + } + check -= ColSum[col]; + error += check*check; + } + } + + /* Convert to scaling factors (rounding to nearest power + of 2 can optionally be done as a separate step later) */ + for(col = 1; col <= colMax; col++) { + absvalue = exp(-FColScale[col]); + if(absvalue < MIN_SCALAR) absvalue = MIN_SCALAR; + if(absvalue > MAX_SCALAR) absvalue = MAX_SCALAR; + if(!is_int(lp,col) || is_integerscaling(lp)) + FColScale[col] = absvalue; + else + FColScale[col] = 1; + } + for(row = 0; row <= lp->rows; row++) { + absvalue = exp(-FRowScale[row]); + if(absvalue < MIN_SCALAR) absvalue = MIN_SCALAR; + if(absvalue > MAX_SCALAR) absvalue = MAX_SCALAR; + FRowScale[row] = absvalue; + } + + /* free temporary memory */ + FREE(RowSum); + FREE(ColSum); + FREE(RowCount); + FREE(ColCount); + FREE(residual_even); + FREE(residual_odd); + FREE(RowScalem2); + FREE(ColScalem2); + + return(Result); + +} + +STATIC MYBOOL scaleCR(lprec *lp, LPSREAL *scaledelta) +{ + LPSREAL *scalechange = NULL; + int Result; + + if(!lp->scaling_used) { + allocREAL(lp, &lp->scalars, lp->sum_alloc + 1, FALSE); + for(Result = 0; Result <= lp->sum; Result++) + lp->scalars[Result] = 1; + lp->scaling_used = TRUE; + } + + if(scaledelta == NULL) + allocREAL(lp, &scalechange, lp->sum + 1, FALSE); + else + scalechange = scaledelta; + + Result=CurtisReidScales(lp, FALSE, scalechange, &scalechange[lp->rows]); + if(Result>0) { + + /* Do the scaling*/ + if(scale_updaterows(lp, scalechange, TRUE) || + scale_updatecolumns(lp, &scalechange[lp->rows], TRUE)) + lp->scalemode |= SCALE_CURTISREID; + + set_action(&lp->spx_action, ACTION_REBASE | ACTION_REINVERT | ACTION_RECOMPUTE); + } + + if(scaledelta == NULL) + FREE(scalechange); + + return((MYBOOL) (Result > 0)); +} + +STATIC MYBOOL transform_for_scale(lprec *lp, LPSREAL *value) +{ + MYBOOL Accept = TRUE; + *value = fabs(*value); +#ifdef Paranoia + if(*value < lp->epsmachine) { + Accept = FALSE; + report(lp, SEVERE, "transform_for_scale: A zero-valued entry was passed\n"); + } + else +#endif + if(is_scalemode(lp, SCALE_LOGARITHMIC)) + *value = log(*value); + else if(is_scalemode(lp, SCALE_QUADRATIC)) + (*value) *= (*value); + return( Accept ); +} + +STATIC void accumulate_for_scale(lprec *lp, LPSREAL *min, LPSREAL *max, LPSREAL value) +{ + if(transform_for_scale(lp, &value)) { + if(is_scaletype(lp, SCALE_MEAN)) { + *max += value; + *min += 1; + } + else { + SETMAX(*max, value); + SETMIN(*min, value); + } + } +} + +STATIC LPSREAL minmax_to_scale(lprec *lp, LPSREAL min, LPSREAL max, int itemcount) +{ + LPSREAL scale; + + /* Initialize according to transformation / weighting model */ + if(is_scalemode(lp, SCALE_LOGARITHMIC)) + scale = 0; + else + scale = 1; + if(itemcount <= 0) + return(scale); + + /* Compute base scalar according to chosen scaling type */ + if(is_scaletype(lp, SCALE_MEAN)) { + if(min > 0) + scale = max / min; + } + else if(is_scaletype(lp, SCALE_RANGE)) + scale = (max + min) / 2; + else if(is_scaletype(lp, SCALE_GEOMETRIC)) + scale = sqrt(min*max); + else if(is_scaletype(lp, SCALE_EXTREME)) + scale = max; + + /* Compute final scalar according to transformation / weighting model */ + if(is_scalemode(lp, SCALE_LOGARITHMIC)) + scale = exp(-scale); + else if(is_scalemode(lp, SCALE_QUADRATIC)) { + if(scale == 0) + scale = 1; + else + scale = 1 / sqrt(scale); + } + else { + if(scale == 0) + scale = 1; + else + scale = 1 / scale; + } + + /* Make sure we are within acceptable scaling ranges */ + SETMAX(scale, MIN_SCALAR); + SETMIN(scale, MAX_SCALAR); + + return(scale); +} + +STATIC LPSREAL roundPower2(LPSREAL scale) +/* Purpose is to round a number to it nearest power of 2; in a system + with binary number representation, this avoids rounding errors when + scale is used to normalize another value */ +{ + long int power2; + MYBOOL isSmall = FALSE; + + if(scale == 1) + return( scale ); + + /* Obtain the fractional power of 2 */ + if(scale < 2) { + scale = 2 / scale; + isSmall = TRUE; + } + else + scale /= 2; + scale = log(scale)/log(2.0); + + /* Find the desired nearest power of two and compute the associated scalar */ + power2 = (long) ceil(scale-0.5); + scale = 1 << power2; + if(isSmall) + scale = 1.0 / scale; + + return( scale ); + +} + +STATIC MYBOOL scale_updatecolumns(lprec *lp, LPSREAL *scalechange, MYBOOL updateonly) +{ + int i, j; + + /* Verify that the scale change is significant (different from the unit) */ + for(i = lp->columns; i > 0; i--) + if(fabs(scalechange[i]-1) > lp->epsprimal) + break; + if(i <= 0) + return( FALSE ); + + /* Update the pre-existing column scalar */ + if(updateonly) + for(i = 1, j = lp->rows + 1; j <= lp->sum; i++, j++) + lp->scalars[j] *= scalechange[i]; + else + for(i = 1, j = lp->rows + 1; j <= lp->sum; i++, j++) + lp->scalars[j] = scalechange[i]; + + return( TRUE ); +} + +STATIC MYBOOL scale_updaterows(lprec *lp, LPSREAL *scalechange, MYBOOL updateonly) +{ + int i; + + /* Verify that the scale change is significant (different from the unit) */ + for(i = lp->rows; i >= 0; i--) { + if(fabs(scalechange[i]-1) > lp->epsprimal) + break; + } + if(i < 0) + return( FALSE ); + + /* Update the pre-existing row scalar */ + if(updateonly) + for(i = 0; i <= lp->rows; i++) + lp->scalars[i] *= scalechange[i]; + else + for(i = 0; i <= lp->rows; i++) + lp->scalars[i] = scalechange[i]; + + return( TRUE ); +} + +STATIC MYBOOL scale_columns(lprec *lp, LPSREAL *scaledelta) +{ + int i,j, colMax, nz; + LPSREAL *scalechange; + LPSREAL *value; + int *colnr; + MATrec *mat = lp->matA; + + /* Check that columns are in fact targeted */ + if((lp->scalemode & SCALE_ROWSONLY) != 0) + return( TRUE ); + + if(scaledelta == NULL) + scalechange = &lp->scalars[lp->rows]; + else + scalechange = &scaledelta[lp->rows]; + + colMax = lp->columns; + + /* Scale matrix entries (including any Lagrangean constraints) */ + for(i = 1; i <= lp->columns; i++) { + lp->orig_obj[i] *= scalechange[i]; + } + + mat_validate(lp->matA); + nz = get_nonzeros(lp); + value = &(COL_MAT_VALUE(0)); + colnr = &(COL_MAT_COLNR(0)); + for(i = 0; i < nz; + i++, value += matValueStep, colnr += matRowColStep) { + (*value) *= scalechange[*colnr]; + } + + /* Scale variable bounds as well */ + for(i = 1, j = lp->rows + 1; j <= lp->sum; i++, j++) { + if(lp->orig_lowbo[j] > -lp->infinite) + lp->orig_lowbo[j] /= scalechange[i]; + if(lp->orig_upbo[j] < lp->infinite) + lp->orig_upbo[j] /= scalechange[i]; + if(lp->sc_lobound[i] != 0) + lp->sc_lobound[i] /= scalechange[i]; + } + + lp->columns_scaled = TRUE; + set_action(&lp->spx_action, ACTION_REBASE | ACTION_REINVERT | ACTION_RECOMPUTE); + + return( TRUE ); +} + +STATIC MYBOOL scale_rows(lprec *lp, LPSREAL *scaledelta) +{ + int i, j, nz, colMax; + LPSREAL *scalechange; + LPSREAL *value; + int *rownr; + MATrec *mat = lp->matA; + + + /* Check that rows are in fact targeted */ + if((lp->scalemode & SCALE_COLSONLY) != 0) + return( TRUE ); + + if(scaledelta == NULL) + scalechange = lp->scalars; + else + scalechange = scaledelta; + + colMax = lp->columns; + + /* First row-scale the matrix (including the objective function) */ + for(i = 1; i <= colMax; i++) { + lp->orig_obj[i] *= scalechange[0]; + } + + nz = get_nonzeros(lp); + value = &(COL_MAT_VALUE(0)); + rownr = &(COL_MAT_ROWNR(0)); + for(i = 0; i < nz; + i++, value += matValueStep, rownr += matRowColStep) { + (*value) *= scalechange[*rownr]; + } + + /* ...and scale the rhs and the row bounds (RANGES in MPS!!) */ + for(i = 0; i <= lp->rows; i++) { + if(fabs(lp->orig_rhs[i]) < lp->infinite) + lp->orig_rhs[i] *= scalechange[i]; + + j = lp->presolve_undo->var_to_orig[i]; + if(j != 0) + lp->presolve_undo->fixed_rhs[j] *= scalechange[i]; + + if(lp->orig_upbo[i] < lp->infinite) /* This is the range */ + lp->orig_upbo[i] *= scalechange[i]; + + if((lp->orig_lowbo[i] != 0) && (fabs(lp->orig_lowbo[i]) < lp->infinite)) + lp->orig_lowbo[i] *= scalechange[i]; + } + + set_action(&lp->spx_action, ACTION_REBASE | ACTION_REINVERT | ACTION_RECOMPUTE); + + return( TRUE ); +} + +STATIC LPSREAL scale(lprec *lp, LPSREAL *scaledelta) +{ + int i, j, nz, row_count, nzOF = 0; + LPSREAL *row_max, *row_min, *scalechange = NULL, absval; + LPSREAL col_max, col_min; + MYBOOL rowscaled, colscaled; + MATrec *mat = lp->matA; + LPSREAL *value; + int *rownr; + + if(is_scaletype(lp, SCALE_NONE)) + return(0.0); + + if(!lp->scaling_used) { + allocREAL(lp, &lp->scalars, lp->sum_alloc + 1, FALSE); + for(i = 0; i <= lp->sum; i++) { + lp->scalars[i] = 1; + } + lp->scaling_used = TRUE; + } +#ifdef Paranoia + else + for(i = 0; i <= lp->sum; i++) { + if(lp->scalars[i] == 0) + report(lp, SEVERE, "scale: Zero-valued scalar found at index %d\n", i); + } +#endif + if(scaledelta == NULL) + allocREAL(lp, &scalechange, lp->sum + 1, FALSE); + else + scalechange = scaledelta; + + /* Must initialize due to computation of scaling statistic - KE */ + for(i = 0; i <= lp->sum; i++) + scalechange[i] = 1; + + row_count = lp->rows; + allocREAL(lp, &row_max, row_count + 1, TRUE); + allocREAL(lp, &row_min, row_count + 1, FALSE); + + /* Initialise min and max values of rows */ + for(i = 0; i <= row_count; i++) { + if(is_scaletype(lp, SCALE_MEAN)) + row_min[i] = 0; /* Carries the count of elements */ + else + row_min[i] = lp->infinite; /* Carries the minimum element */ + } + + /* Calculate row scaling data */ + for(j = 1; j <= lp->columns; j++) { + + absval = lp->orig_obj[j]; + if(absval != 0) { + absval = scaled_mat(lp, absval, 0, j); + accumulate_for_scale(lp, &row_min[0], &row_max[0], absval); + nzOF++; + } + + i = mat->col_end[j - 1]; + value = &(COL_MAT_VALUE(i)); + rownr = &(COL_MAT_ROWNR(i)); + nz = mat->col_end[j]; + for(; i < nz; + i++, value += matValueStep, rownr += matRowColStep) { + absval = scaled_mat(lp, *value, *rownr, j); + accumulate_for_scale(lp, &row_min[*rownr], &row_max[*rownr], absval); + } + } + + /* Calculate scale factors for rows */ + i = 0; + for(; i <= lp->rows; i++) { + if(i == 0) + nz = nzOF; + else + nz = mat_rowlength(lp->matA, i); + absval = minmax_to_scale(lp, row_min[i], row_max[i], nz); /* nz instead of nzOF KJEI 20/05/2010 */ + if(absval == 0) + absval = 1; + scalechange[i] = absval; + } + + FREE(row_max); + FREE(row_min); + + /* Row-scale the matrix (including the objective function and Lagrangean constraints) */ + rowscaled = scale_updaterows(lp, scalechange, TRUE); + + /* Calculate column scales */ + i = 1; + for(j = 1; j <= lp->columns; j++) { + if(is_int(lp,j) && !is_integerscaling(lp)) { /* do not scale integer columns */ + scalechange[lp->rows + j] = 1; + } + else { + col_max = 0; + if(is_scaletype(lp, SCALE_MEAN)) + col_min = 0; + else + col_min = lp->infinite; + + absval = lp->orig_obj[j]; + if(absval != 0) { + absval = scaled_mat(lp, absval, 0, j); + accumulate_for_scale(lp, &col_min, &col_max, absval); + } + + i = mat->col_end[j - 1]; + value = &(COL_MAT_VALUE(i)); + rownr = &(COL_MAT_ROWNR(i)); + nz = mat->col_end[j]; + for(; i < nz; + i++, value += matValueStep, rownr += matRowColStep) { + absval = scaled_mat(lp, *value, *rownr, j); + accumulate_for_scale(lp, &col_min, &col_max, absval); + } + nz = mat_collength(lp->matA, j); + if(fabs(lp->orig_obj[j]) > 0) + nz++; + scalechange[lp->rows + j] = minmax_to_scale(lp, col_min, col_max, nz); + } + } + + /* ... and then column-scale the already row-scaled matrix */ + colscaled = scale_updatecolumns(lp, &scalechange[lp->rows], TRUE); + + /* Create a geometric mean-type measure of the extent of scaling performed; */ + /* ideally, upon successive calls to scale() the value should converge to 0 */ + if(rowscaled || colscaled) { + col_max = 0; + for(j = 1; j <= lp->columns; j++) + col_max += log(scalechange[lp->rows + j]); + col_max = exp(col_max/lp->columns); + + i = 0; + col_min = 0; + for(; i <= lp->rows; i++) + col_min += log(scalechange[i]); + col_min = exp(col_min/row_count); + } + else { + col_max = 1; + col_min = 1; + } + + if(scaledelta == NULL) + FREE(scalechange); + + return(1 - sqrt(col_max*col_min)); +} + +STATIC MYBOOL finalize_scaling(lprec *lp, LPSREAL *scaledelta) +{ + int i; + + /* Check if we should equilibrate */ + if(is_scalemode(lp, SCALE_EQUILIBRATE) && !is_scaletype(lp, SCALE_CURTISREID)) { + int oldmode; + + oldmode = lp->scalemode; + lp->scalemode = SCALE_LINEAR + SCALE_EXTREME; + scale(lp, scaledelta); + lp->scalemode = oldmode; + } + + /* Check if we should prevent rounding errors */ + if(is_scalemode(lp, SCALE_POWER2)) { + LPSREAL *scalars; + if(scaledelta == NULL) + scalars = lp->scalars; + else + scalars = scaledelta; + + for(i = 0; i <= lp->sum; i++) + scalars[i] = roundPower2(scalars[i]); + } + + /* Then transfer the scalars to the model's data */ + return( scale_rows(lp, scaledelta) && scale_columns(lp, scaledelta) ); + +} + +STATIC LPSREAL auto_scale(lprec *lp) +{ + int n = 1; + LPSREAL scalingmetric = 0, *scalenew = NULL; + + if(lp->scaling_used && + ((((lp->scalemode & SCALE_DYNUPDATE) == 0)) || (lp->bb_level > 0))) + return( scalingmetric); + + if(lp->scalemode != SCALE_NONE) { + + /* Allocate array for incremental scaling if appropriate */ + if((lp->solvecount > 1) && (lp->bb_level < 1) && + ((lp->scalemode & SCALE_DYNUPDATE) != 0)) + allocREAL(lp, &scalenew, lp->sum + 1, FALSE); + + if(is_scaletype(lp, SCALE_CURTISREID)) { + scalingmetric = scaleCR(lp, scalenew); + } + else { + LPSREAL scalinglimit, scalingdelta; + int count; + + /* Integer value of scalelimit holds the maximum number of iterations; default to 1 */ + count = (int) floor(lp->scalelimit); + scalinglimit = lp->scalelimit; + if((count == 0) || (scalinglimit == 0)) { + if(scalinglimit > 0) + count = DEF_SCALINGLIMIT; /* A non-zero convergence has been given, default to max 5 iterations */ + else + count = 1; + } + else + scalinglimit -= count; + + /* Scale to desired relative convergence or iteration limit */ + n = 0; + scalingdelta = 1.0; + scalingmetric = 1.0; + while((n < count) && (fabs(scalingdelta) > scalinglimit)) { + n++; + scalingdelta = scale(lp, scalenew); + scalingmetric = scalingmetric*(1+scalingdelta); + } + scalingmetric -= 1; + } + } + + /* Update the inf norm of the elements of the matrix (excluding the OF) */ + mat_computemax(lp->matA); + + /* Check if we really have to do scaling */ + if(lp->scaling_used && (fabs(scalingmetric) >= lp->epsprimal)) + /* Ok, do it */ + finalize_scaling(lp, scalenew); + + else { + + /* Otherwise reset scaling variables */ + if(lp->scalars != NULL) { + FREE(lp->scalars); + } + lp->scaling_used = FALSE; + lp->columns_scaled = FALSE; + } + if(scalenew != NULL) + FREE(scalenew); + + return(scalingmetric); +} + +STATIC void unscale_columns(lprec *lp) +{ + int i, j, nz; + MATrec *mat = lp->matA; + LPSREAL *value; + int *rownr, *colnr; + + if(!lp->columns_scaled) + return; + + /* Unscale OF */ + for(j = 1; j <= lp->columns; j++) { + lp->orig_obj[j] = unscaled_mat(lp, lp->orig_obj[j], 0, j); + } + + /* Unscale mat */ + mat_validate(mat); + nz = get_nonzeros(lp); + value = &(COL_MAT_VALUE(0)); + rownr = &(COL_MAT_ROWNR(0)); + colnr = &(COL_MAT_COLNR(0)); + for(j = 0; j < nz; + j++, value += matValueStep, rownr += matRowColStep, colnr += matRowColStep) { + *value = unscaled_mat(lp, *value, *rownr, *colnr); + } + + /* Unscale bounds as well */ + for(i = lp->rows + 1, j = 1; i <= lp->sum; i++, j++) { + lp->orig_lowbo[i] = unscaled_value(lp, lp->orig_lowbo[i], i); + lp->orig_upbo[i] = unscaled_value(lp, lp->orig_upbo[i], i); + lp->sc_lobound[j] = unscaled_value(lp, lp->sc_lobound[j], i); + } + + for(i = lp->rows + 1; i<= lp->sum; i++) + lp->scalars[i] = 1; + + lp->columns_scaled = FALSE; + set_action(&lp->spx_action, ACTION_REBASE | ACTION_REINVERT | ACTION_RECOMPUTE); +} + +void undoscale(lprec *lp) +{ + int i, j, nz; + MATrec *mat = lp->matA; + LPSREAL *value; + int *rownr, *colnr; + + if(lp->scaling_used) { + + /* Unscale the OF */ + for(j = 1; j <= lp->columns; j++) { + lp->orig_obj[j] = unscaled_mat(lp, lp->orig_obj[j], 0, j); + } + + /* Unscale the matrix */ + mat_validate(mat); + nz = get_nonzeros(lp); + value = &(COL_MAT_VALUE(0)); + rownr = &(COL_MAT_ROWNR(0)); + colnr = &(COL_MAT_COLNR(0)); + for(j = 0; j < nz; + j++, value += matValueStep, rownr += matRowColStep, colnr += matRowColStep) { + *value = unscaled_mat(lp, *value, *rownr, *colnr); + } + + /* Unscale variable bounds */ + for(i = lp->rows + 1, j = 1; i <= lp->sum; i++, j++) { + lp->orig_lowbo[i] = unscaled_value(lp, lp->orig_lowbo[i], i); + lp->orig_upbo[i] = unscaled_value(lp, lp->orig_upbo[i], i); + lp->sc_lobound[j] = unscaled_value(lp, lp->sc_lobound[j], i); + } + + /* Unscale the rhs, upper and lower bounds... */ + for(i = 0; i <= lp->rows; i++) { + lp->orig_rhs[i] = unscaled_value(lp, lp->orig_rhs[i], i); + j = lp->presolve_undo->var_to_orig[i]; + if(j != 0) + lp->presolve_undo->fixed_rhs[j] = unscaled_value(lp, lp->presolve_undo->fixed_rhs[j], i); + lp->orig_lowbo[i] = unscaled_value(lp, lp->orig_lowbo[i], i); + lp->orig_upbo[i] = unscaled_value(lp, lp->orig_upbo[i], i); + } + + FREE(lp->scalars); + lp->scaling_used = FALSE; + lp->columns_scaled = FALSE; + + set_action(&lp->spx_action, ACTION_REBASE | ACTION_REINVERT | ACTION_RECOMPUTE); + } +} + diff --git a/src/external/lpsolve/build/lp_solve/lp_simplex.c b/src/external/lpsolve/build/lp_solve/lp_simplex.c new file mode 100644 index 00000000..8a0ee82f --- /dev/null +++ b/src/external/lpsolve/build/lp_solve/lp_simplex.c @@ -0,0 +1,2206 @@ + +/* + Core optimization drivers for lp_solve v5.0+ + ---------------------------------------------------------------------------------- + Author: Michel Berkelaar (to lp_solve v3.2), + Kjell Eikland (v4.0 and forward) + Contact: + License terms: LGPL. + + Requires: lp_lib.h, lp_simplex.h, lp_presolve.h, lp_pricerPSE.h + + Release notes: + v5.0.0 1 January 2004 New unit applying stacked basis and bounds storage. + v5.0.1 31 January 2004 Moved B&B routines to separate file and implemented + a new runsolver() general purpose call method. + v5.0.2 1 May 2004 Changed routine names to be more intuitive. + v5.1.0 10 January 2005 Created modular stalling/cycling functions. + Rewrote dualloop() to optimize long dual and + also streamlined primloop() correspondingly. + v5.2.0 20 March 2005 Reimplemented primal phase 1 logic. + Made multiple pricing finally work (primal simplex). + + ---------------------------------------------------------------------------------- +*/ + +#include +#include "commonlib.h" +#include "lp_lib.h" +#include "lp_BFP.h" +#include "lp_simplex.h" +#include "lp_crash.h" +#include "lp_presolve.h" +#include "lp_price.h" +#include "lp_pricePSE.h" +#include "lp_report.h" + +#ifdef FORTIFY +# include "lp_fortify.h" +#endif + + +STATIC void stallMonitor_update(lprec *lp, LPSREAL newOF) +{ + int newpos; + OBJmonrec *monitor = lp->monitor; + + if(monitor->countstep < OBJ_STEPS) + monitor->countstep++; + else + monitor->startstep = mod(monitor->startstep + 1, OBJ_STEPS); + newpos = mod(monitor->startstep + monitor->countstep - 1, OBJ_STEPS); + monitor->objstep[newpos] = newOF; + monitor->idxstep[newpos] = monitor->Icount; + monitor->currentstep = newpos; +} + +STATIC MYBOOL stallMonitor_creepingObj(lprec *lp) +{ + OBJmonrec *monitor = lp->monitor; + + if(monitor->countstep > 1) { + LPSREAL deltaOF = (monitor->objstep[monitor->currentstep] - + monitor->objstep[monitor->startstep]) / monitor->countstep; + deltaOF /= MAX(1, (monitor->idxstep[monitor->currentstep] - + monitor->idxstep[monitor->startstep])); + deltaOF = my_chsign(monitor->isdual, deltaOF); + return( (MYBOOL) (deltaOF < monitor->epsvalue) ); + } + else + return( FALSE ); +} + +STATIC MYBOOL stallMonitor_shortSteps(lprec *lp) +{ + OBJmonrec *monitor = lp->monitor; + + if(monitor->countstep == OBJ_STEPS) { + LPSREAL deltaOF = MAX(1, (monitor->idxstep[monitor->currentstep] - + monitor->idxstep[monitor->startstep])) / monitor->countstep; + deltaOF = pow(deltaOF*OBJ_STEPS, 0.66); + return( (MYBOOL) (deltaOF > monitor->limitstall[TRUE]) ); + } + else + return( FALSE ); +} + +STATIC void stallMonitor_reset(lprec *lp) +{ + OBJmonrec *monitor = lp->monitor; + + monitor->ruleswitches = 0; + monitor->Ncycle = 0; + monitor->Mcycle = 0; + monitor->Icount = 0; + monitor->startstep = 0; + monitor->objstep[monitor->startstep] = lp->infinite; + monitor->idxstep[monitor->startstep] = monitor->Icount; + monitor->prevobj = 0; + monitor->countstep = 1; +} + +STATIC MYBOOL stallMonitor_create(lprec *lp, MYBOOL isdual, char *funcname) +{ + OBJmonrec *monitor = NULL; + if(lp->monitor != NULL) + return( FALSE ); + + monitor = (OBJmonrec *) calloc(sizeof(*monitor), 1); + if(monitor == NULL) + return( FALSE ); + + monitor->lp = lp; + strcpy(monitor->spxfunc, funcname); + monitor->isdual = isdual; + monitor->pivdynamic = is_piv_mode(lp, PRICE_ADAPTIVE); + monitor->oldpivstrategy = lp->piv_strategy; + monitor->oldpivrule = get_piv_rule(lp); + if(MAX_STALLCOUNT <= 1) + monitor->limitstall[FALSE] = 0; + else + monitor->limitstall[FALSE] = MAX(MAX_STALLCOUNT, + (int) pow((LPSREAL) (lp->rows+lp->columns)/2, 0.667)); +#if 1 + monitor->limitstall[FALSE] *= 2+2; /* Expand degeneracy/stalling tolerance range */ +#endif + monitor->limitstall[TRUE] = monitor->limitstall[FALSE]; + if(monitor->oldpivrule == PRICER_DEVEX) /* Increase tolerance since primal Steepest Edge is expensive */ + monitor->limitstall[TRUE] *= 2; + if(MAX_RULESWITCH <= 0) + monitor->limitruleswitches = MAXINT32; + else + monitor->limitruleswitches = MAX(MAX_RULESWITCH, + lp->rows/MAX_RULESWITCH); + monitor->epsvalue = lp->epsprimal; /* lp->epsvalue; */ + lp->monitor = monitor; + stallMonitor_reset(lp); + lp->suminfeas = lp->infinite; + return( TRUE ); +} + +STATIC MYBOOL stallMonitor_check(lprec *lp, int rownr, int colnr, int lastnr, + MYBOOL minit, MYBOOL approved, MYBOOL *forceoutEQ) +{ + OBJmonrec *monitor = lp->monitor; + MYBOOL isStalled, isCreeping, acceptance = TRUE; + int altrule, +#ifdef Paranoia + msglevel = NORMAL; +#else + msglevel = DETAILED; +#endif + LPSREAL deltaobj = lp->suminfeas; + + /* Accept unconditionally if this is the first or second call */ + monitor->active = FALSE; + if(monitor->Icount <= 1) { + if(monitor->Icount == 1) { + monitor->prevobj = lp->rhs[0]; + monitor->previnfeas = deltaobj; + } + monitor->Icount++; + return( acceptance ); + } + + /* Define progress as primal objective less sum of (primal/dual) infeasibilities */ + monitor->thisobj = lp->rhs[0]; + monitor->thisinfeas = deltaobj; + if(lp->spx_trace && + (lastnr > 0)) + report(lp, NORMAL, "%s: Objective at iter %10.0f is " RESULTVALUEMASK " (%4d: %4d %s- %4d)\n", + monitor->spxfunc, + (double) get_total_iter(lp), monitor->thisobj, rownr, lastnr, + my_if(minit == ITERATE_MAJORMAJOR, "<","|"), colnr); + monitor->pivrule = get_piv_rule(lp); + + /* Check if we have a stationary solution at selected tolerance level; + allow some difference in case we just refactorized the basis. */ + deltaobj = my_reldiff(monitor->thisobj, monitor->prevobj); + deltaobj = fabs(deltaobj); /* Pre v5.2 version */ + isStalled = (MYBOOL) (deltaobj < monitor->epsvalue); + + /* Also require that we have a measure of infeasibility-stalling */ + if(isStalled) { + LPSREAL testvalue, refvalue = monitor->epsvalue; +#if 1 + if(monitor->isdual) + refvalue *= 1000*log10(9.0+lp->rows); + else + refvalue *= 1000*log10(9.0+lp->columns); +#else + refvalue *= 1000*log10(9.0+lp->sum); +#endif + testvalue = my_reldiff(monitor->thisinfeas, monitor->previnfeas); + isStalled &= (fabs(testvalue) < refvalue); + + /* Check if we should force "major" pivoting, i.e. no bound flips; + this is activated when we see the feasibility deteriorate */ +/* if(!isStalled && (testvalue > 0) && (TRUE || is_action(lp->anti_degen, ANTIDEGEN_BOUNDFLIP))) */ +#if !defined _PRICE_NOBOUNDFLIP + if(!isStalled && (testvalue > 0) && is_action(lp->anti_degen, ANTIDEGEN_BOUNDFLIP)) + acceptance = AUTOMATIC; + } +#else + if(!isStalled && (testvalue > 0) && !ISMASKSET(lp->piv_strategy, PRICE_NOBOUNDFLIP)) { + SETMASK(lp->piv_strategy, PRICE_NOBOUNDFLIP); + acceptance = AUTOMATIC; + } + } + else + CLEARMASK(lp->piv_strategy, PRICE_NOBOUNDFLIP); +#endif + +#if 1 + isCreeping = FALSE; +#else + isCreeping |= stallMonitor_creepingObj(lp); +/* isCreeping |= stallMonitor_shortSteps(lp); */ +#endif + if(isStalled || isCreeping) { + + /* Update counters along with specific tolerance for bound flips */ +#if 1 + if(minit != ITERATE_MAJORMAJOR) { + if(++monitor->Mcycle > 2) { + monitor->Mcycle = 0; + monitor->Ncycle++; + } + } + else +#endif + monitor->Ncycle++; + + /* Start to monitor for variable cycling if this is the initial stationarity */ + if(monitor->Ncycle <= 1) { + monitor->Ccycle = colnr; + monitor->Rcycle = rownr; + } + + /* Check if we should change pivoting strategy */ + else if(isCreeping || /* We have OF creep */ + (monitor->Ncycle > monitor->limitstall[monitor->isdual]) || /* KE empirical value */ + ((monitor->Ccycle == rownr) && (monitor->Rcycle == colnr))) { /* Obvious cycling */ + + monitor->active = TRUE; + + /* Try to force out equality slacks to combat degeneracy */ + if((lp->fixedvars > 0) && (*forceoutEQ != TRUE)) { + *forceoutEQ = TRUE; + goto Proceed; + } + + /* Our options are now to select an alternative rule or to do bound perturbation; + check if these options are available to us or if we must signal failure and break out. */ + approved &= monitor->pivdynamic && (monitor->ruleswitches < monitor->limitruleswitches); + if(!approved && !is_anti_degen(lp, ANTIDEGEN_STALLING)) { + lp->spx_status = DEGENERATE; + report(lp, msglevel, "%s: Stalling at iter %10.0f; no alternative strategy left.\n", + monitor->spxfunc, (double) get_total_iter(lp)); + acceptance = FALSE; + return( acceptance ); + } + + /* See if we can do the appropriate alternative rule. */ + switch (monitor->oldpivrule) { + case PRICER_FIRSTINDEX: altrule = PRICER_DEVEX; + break; + case PRICER_DANTZIG: altrule = PRICER_DEVEX; + break; + case PRICER_DEVEX: altrule = PRICER_STEEPESTEDGE; + break; + case PRICER_STEEPESTEDGE: altrule = PRICER_DEVEX; + break; + default: altrule = PRICER_FIRSTINDEX; + } + if(approved && + (monitor->pivrule != altrule) && (monitor->pivrule == monitor->oldpivrule)) { + + /* Switch rule to combat degeneracy. */ + monitor->ruleswitches++; + lp->piv_strategy = altrule; + monitor->Ccycle = 0; + monitor->Rcycle = 0; + monitor->Ncycle = 0; + monitor->Mcycle = 0; + report(lp, msglevel, "%s: Stalling at iter %10.0f; changed to '%s' rule.\n", + monitor->spxfunc, (double) get_total_iter(lp), + get_str_piv_rule(get_piv_rule(lp))); + if((altrule == PRICER_DEVEX) || (altrule == PRICER_STEEPESTEDGE)) + restartPricer(lp, AUTOMATIC); + } + + /* If not, code for bound relaxation/perturbation */ + else { + report(lp, msglevel, "%s: Stalling at iter %10.0f; proceed to bound relaxation.\n", + monitor->spxfunc, (double) get_total_iter(lp)); + acceptance = FALSE; + lp->spx_status = DEGENERATE; + return( acceptance ); + } + } + } + + /* Otherwise change back to original selection strategy as soon as possible */ + else { + if(monitor->pivrule != monitor->oldpivrule) { + lp->piv_strategy = monitor->oldpivstrategy; + altrule = monitor->oldpivrule; + if((altrule == PRICER_DEVEX) || (altrule == PRICER_STEEPESTEDGE)) + restartPricer(lp, AUTOMATIC); + report(lp, msglevel, "...returned to original pivot selection rule at iter %.0f.\n", + (double) get_total_iter(lp)); + } + stallMonitor_update(lp, monitor->thisobj); + monitor->Ccycle = 0; + monitor->Rcycle = 0; + monitor->Ncycle = 0; + monitor->Mcycle = 0; + } + + /* Update objective progress tracker */ +Proceed: + monitor->Icount++; + if(deltaobj >= monitor->epsvalue) + monitor->prevobj = monitor->thisobj; + monitor->previnfeas = monitor->thisinfeas; + + return( acceptance ); +} + +STATIC void stallMonitor_finish(lprec *lp) +{ + OBJmonrec *monitor = lp->monitor; + if(monitor == NULL) + return; + if(lp->piv_strategy != monitor->oldpivstrategy) + lp->piv_strategy = monitor->oldpivstrategy; + FREE(monitor); + lp->monitor = NULL; +} + + +STATIC MYBOOL add_artificial(lprec *lp, int forrownr, LPSREAL *nzarray, int *idxarray) +/* This routine is called for each constraint at the start of + primloop and the primal problem is infeasible. Its + purpose is to add artificial variables and associated + objective function values to populate primal phase 1. */ +{ + MYBOOL add; + + /* Make sure we don't add unnecessary artificials, i.e. avoid + cases where the slack variable is enough */ + add = !isBasisVarFeasible(lp, lp->epspivot, forrownr); + + if(add) { + int *rownr = NULL, i, bvar, ii; + LPSREAL *avalue = NULL, rhscoef, acoef; + MATrec *mat = lp->matA; + + /* Check the simple case where a slack is basic */ + for(i = 1; i <= lp->rows; i++) { + if(lp->var_basic[i] == forrownr) + break; + } + acoef = 1; + + /* If not, look for any basic user variable that has a + non-zero coefficient in the current constraint row */ + if(i > lp->rows) { + for(i = 1; i <= lp->rows; i++) { + ii = lp->var_basic[i] - lp->rows; + if((ii <= 0) || (ii > (lp->columns-lp->P1extraDim))) + continue; + ii = mat_findelm(mat, forrownr, ii); + if(ii >= 0) { + acoef = COL_MAT_VALUE(ii); + break; + } + } + } + + /* If no candidate was found above, gamble on using the densest column available */ +#if 0 + if(i > lp->rows) { + int len = 0; + bvar = 0; + for(i = 1; i <= lp->rows; i++) { + ii = lp->var_basic[i] - lp->rows; + if((ii <= 0) || (ii > (lp->columns-lp->P1extraDim))) + continue; + if(mat_collength(mat, ii) > len) { + len = mat_collength(mat, ii); + bvar = i; + } + } + i = bvar; + acoef = 1; + } +#endif + + bvar = i; + + add = (MYBOOL) (bvar <= lp->rows); + if(add) { + rhscoef = lp->rhs[forrownr]; + + /* Create temporary sparse array storage */ + if(nzarray == NULL) + allocREAL(lp, &avalue, 2, FALSE); + else + avalue = nzarray; + if(idxarray == NULL) + allocINT(lp, &rownr, 2, FALSE); + else + rownr = idxarray; + + /* Set the objective coefficient */ + rownr[0] = 0; + avalue[0] = my_chsign(is_chsign(lp, 0), 1); + + /* Set the constraint row coefficient */ + rownr[1] = forrownr; + avalue[1] = my_chsign(is_chsign(lp, forrownr), my_sign(rhscoef/acoef)); + + /* Add the column of artificial variable data to the user data matrix */ + add_columnex(lp, 2, avalue, rownr); + + /* Free the temporary sparse array storage */ + if(idxarray == NULL) + FREE(rownr); + if(nzarray == NULL) + FREE(avalue); + + /* Now set the artificial variable to be basic */ + set_basisvar(lp, bvar, lp->sum); + lp->P1extraDim++; + } + else { + report(lp, CRITICAL, "add_artificial: Could not find replacement basis variable for row %d\n", + forrownr); + lp->basis_valid = FALSE; + } + + } + + return(add); + +} + +STATIC int get_artificialRow(lprec *lp, int colnr) +{ + MATrec *mat = lp->matA; + +#ifdef Paranoia + if((colnr <= lp->columns-abs(lp->P1extraDim)) || (colnr > lp->columns)) + report(lp, SEVERE, "get_artificialRow: Invalid column index %d\n", colnr); + if(mat->col_end[colnr] - mat->col_end[colnr-1] != 1) + report(lp, SEVERE, "get_artificialRow: Invalid column non-zero count\n"); +#endif + + /* Return the row index of the singleton */ + colnr = mat->col_end[colnr-1]; + colnr = COL_MAT_ROWNR(colnr); + return( colnr ); +} + +STATIC int findAnti_artificial(lprec *lp, int colnr) +/* Primal simplex: Find a basic artificial variable to swap + against the non-basic slack variable, if possible */ +{ + int i, k, rownr = 0, P1extraDim = abs(lp->P1extraDim); + + if((P1extraDim == 0) || (colnr > lp->rows) || !lp->is_basic[colnr]) + return( rownr ); + + for(i = 1; i <= lp->rows; i++) { + k = lp->var_basic[i]; + if((k > lp->sum-P1extraDim) && (lp->rhs[i] == 0)) { + rownr = get_artificialRow(lp, k-lp->rows); + + /* Should we find the artificial's slack direct "antibody"? */ + if(rownr == colnr) + break; + rownr = 0; + } + } + return( rownr ); +} + +STATIC int findBasicArtificial(lprec *lp, int before) +{ + int i = 0, P1extraDim = abs(lp->P1extraDim); + + if(P1extraDim > 0) { + if(before > lp->rows || before <= 1) + i = lp->rows; + else + i = before; + + while((i > 0) && (lp->var_basic[i] <= lp->sum-P1extraDim)) + i--; + } + + return(i); +} + +STATIC void eliminate_artificials(lprec *lp, LPSREAL *prow) +{ + int i, j, colnr, rownr, P1extraDim = abs(lp->P1extraDim); + + for(i = 1; (i <= lp->rows) && (P1extraDim > 0); i++) { + j = lp->var_basic[i]; + if(j <= lp->sum-P1extraDim) + continue; + j -= lp->rows; + rownr = get_artificialRow(lp, j); + colnr = find_rowReplacement(lp, rownr, prow, NULL); +#if 0 + performiteration(lp, rownr, colnr, 0.0, TRUE, FALSE, prow, NULL, + NULL, NULL, NULL); +#else + set_basisvar(lp, rownr, colnr); +#endif + del_column(lp, j); + P1extraDim--; + } + lp->P1extraDim = 0; +} + +STATIC void clear_artificials(lprec *lp) +{ + int i, j, n, P1extraDim; + + /* Substitute any basic artificial variable for its slack counterpart */ + n = 0; + P1extraDim = abs(lp->P1extraDim); + for(i = 1; (i <= lp->rows) && (n < P1extraDim); i++) { + j = lp->var_basic[i]; + if(j <= lp->sum-P1extraDim) + continue; + j = get_artificialRow(lp, j-lp->rows); + set_basisvar(lp, i, j); + n++; + } +#ifdef Paranoia + if(n != lp->P1extraDim) + report(lp, SEVERE, "clear_artificials: Unable to clear all basic artificial variables\n"); +#endif + + /* Delete any remaining non-basic artificial variables */ + while(P1extraDim > 0) { + i = lp->sum-lp->rows; + del_column(lp, i); + P1extraDim--; + } + lp->P1extraDim = 0; + if(n > 0) { + set_action(&lp->spx_action, ACTION_REINVERT); + lp->basis_valid = TRUE; + } +} + + +STATIC int primloop(lprec *lp, MYBOOL primalfeasible, LPSREAL primaloffset) +{ + MYBOOL primal = TRUE, bfpfinal = FALSE, changedphase = FALSE, forceoutEQ = AUTOMATIC, + primalphase1, pricerCanChange, minit, stallaccept, pendingunbounded; + int i, j, k, colnr = 0, rownr = 0, lastnr = 0, + candidatecount = 0, minitcount = 0, ok = TRUE; + LREAL theta = 0.0; + LPSREAL epsvalue, xviolated = 0.0, cviolated = 0.0, + *prow = NULL, *pcol = NULL, + *drow = lp->drow; + int *workINT = NULL, + *nzdrow = lp->nzdrow; + + if(lp->spx_trace) + report(lp, DETAILED, "Entered primal simplex algorithm with feasibility %s\n", + my_boolstr(primalfeasible)); + + /* Add sufficent number of artificial variables to make the problem feasible + through the first phase; delete when primal feasibility has been achieved */ + lp->P1extraDim = 0; + if(!primalfeasible) { + lp->simplex_mode = SIMPLEX_Phase1_PRIMAL; +#ifdef Paranoia + if(!verify_basis(lp)) + report(lp, SEVERE, "primloop: No valid basis for artificial variables\n"); +#endif +#if 0 + /* First check if we can get away with a single artificial variable */ + if(lp->equalities == 0) { + i = (int) feasibilityOffset(lp, !primal); + add_artificial(lp, i, prow, (int *) pcol); + } + else +#endif + /* Otherwise add as many artificial variables as is necessary + to force primal feasibility. */ + for(i = 1; i <= lp->rows; i++) { + add_artificial(lp, i, NULL, NULL); + } + + /* Make sure we update the working objective */ + if(lp->P1extraDim > 0) { +#if 1 /* v5.1 code: Not really necessary since we do not price the artificial + variables (stored at the end of the column list, they are initially + basic and are never allowed to enter the basis, once they exit) */ + ok = allocREAL(lp, &(lp->drow), lp->sum+1, AUTOMATIC) && + allocINT(lp, &(lp->nzdrow), lp->sum+1, AUTOMATIC); + if(!ok) + goto Finish; + lp->nzdrow[0] = 0; + drow = lp->drow; + nzdrow = lp->nzdrow; +#endif + mat_validate(lp->matA); + set_OF_p1extra(lp, 0.0); + } + if(lp->spx_trace) + report(lp, DETAILED, "P1extraDim count = %d\n", lp->P1extraDim); + + simplexPricer(lp, (MYBOOL)!primal); + invert(lp, INITSOL_USEZERO, TRUE); + } + else { + lp->simplex_mode = SIMPLEX_Phase2_PRIMAL; + restartPricer(lp, (MYBOOL)!primal); + } + + /* Create work arrays and optionally the multiple pricing structure */ + ok = allocREAL(lp, &(lp->bsolveVal), lp->rows + 1, FALSE) && + allocREAL(lp, &prow, lp->sum + 1, TRUE) && + allocREAL(lp, &pcol, lp->rows + 1, TRUE); + if(is_piv_mode(lp, PRICE_MULTIPLE) && (lp->multiblockdiv > 1)) { + lp->multivars = multi_create(lp, FALSE); + ok &= (lp->multivars != NULL) && + multi_resize(lp->multivars, lp->sum / lp->multiblockdiv, 2, FALSE, TRUE); + } + if(!ok) + goto Finish; + + /* Initialize regular primal simplex algorithm variables */ + lp->spx_status = RUNNING; + minit = ITERATE_MAJORMAJOR; + epsvalue = lp->epspivot; + pendingunbounded = FALSE; + + ok = stallMonitor_create(lp, FALSE, "primloop"); + if(!ok) + goto Finish; + + lp->rejectpivot[0] = 0; + + /* Iterate while we are successful; exit when the model is infeasible/unbounded, + or we must terminate due to numeric instability or user-determined reasons */ + while((lp->spx_status == RUNNING) && !userabort(lp, -1)) { + + primalphase1 = (MYBOOL) (lp->P1extraDim > 0); + clear_action(&lp->spx_action, ACTION_REINVERT | ACTION_ITERATE); + + /* Check if we have stalling (from numerics or degenerate cycling) */ + pricerCanChange = !primalphase1; + stallaccept = stallMonitor_check(lp, rownr, colnr, lastnr, minit, pricerCanChange, &forceoutEQ); + if(!stallaccept) + break; + + /* Find best column to enter the basis */ +RetryCol: +#if 0 + if(verify_solution(lp, FALSE, "spx_loop") > 0) + i = 1; /* This is just a debug trap */ +#endif + if(!changedphase) { + i = 0; + do { + i++; + colnr = colprim(lp, drow, nzdrow, (MYBOOL) (minit == ITERATE_MINORRETRY), i, &candidatecount, TRUE, &xviolated); + } while ((colnr == 0) && (i < partial_countBlocks(lp, (MYBOOL) !primal)) && + partial_blockStep(lp, (MYBOOL) !primal)); + + /* Handle direct outcomes */ + if(colnr == 0) + lp->spx_status = OPTIMAL; + if(lp->rejectpivot[0] > 0) + minit = ITERATE_MAJORMAJOR; + + /* See if accuracy check during compute_reducedcosts flagged refactorization */ + if(is_action(lp->spx_action, ACTION_REINVERT)) + bfpfinal = TRUE; + + } + + /* Make sure that we do not erroneously conclude that an unbounded model is optimal */ +#ifdef primal_UseRejectionList + if((colnr == 0) && (lp->rejectpivot[0] > 0)) { + lp->spx_status = UNBOUNDED; + if((lp->spx_trace && (lp->bb_totalnodes == 0)) || + (lp->bb_trace && (lp->bb_totalnodes > 0))) + report(lp, DETAILED, "The model is primal unbounded.\n"); + colnr = lp->rejectpivot[1]; + rownr = 0; + lp->rejectpivot[0] = 0; + ok = FALSE; + break; + } +#endif + + /* Check if we found an entering variable (indicating that we are still dual infeasible) */ + if(colnr > 0) { + changedphase = FALSE; + fsolve(lp, colnr, pcol, NULL, lp->epsmachine, 1.0, TRUE); /* Solve entering column for Pi */ + + /* Do special anti-degeneracy column selection, if specified */ + if(is_anti_degen(lp, ANTIDEGEN_COLUMNCHECK) && !check_degeneracy(lp, pcol, NULL)) { + if(lp->rejectpivot[0] < DEF_MAXPIVOTRETRY/3) { + i = ++lp->rejectpivot[0]; + lp->rejectpivot[i] = colnr; + report(lp, DETAILED, "Entering column %d found to be non-improving due to degeneracy.\n", + colnr); + minit = ITERATE_MINORRETRY; + goto RetryCol; + } + else { + lp->rejectpivot[0] = 0; + report(lp, DETAILED, "Gave up trying to find a strictly improving entering column.\n"); + } + } + + /* Find the leaving variable that gives the most stringent bound on the entering variable */ + theta = drow[colnr]; + rownr = rowprim(lp, colnr, &theta, pcol, workINT, forceoutEQ, &cviolated); + +#ifdef AcceptMarginalAccuracy + /* Check for marginal accuracy */ + if((rownr > 0) && (xviolated+cviolated < lp->epspivot)) { + if(lp->bb_trace || (lp->bb_totalnodes == 0)) + report(lp, DETAILED, "primloop: Assuming convergence with reduced accuracy %g.\n", + MAX(xviolated, cviolated)); + rownr = 0; + colnr = 0; + goto Optimality; + } + else +#endif + + /* See if we can do a straight artificial<->slack replacement (when "colnr" is a slack) */ + if((lp->P1extraDim != 0) && (rownr == 0) && (colnr <= lp->rows)) + rownr = findAnti_artificial(lp, colnr); + + if(rownr > 0) { + pendingunbounded = FALSE; + lp->rejectpivot[0] = 0; + set_action(&lp->spx_action, ACTION_ITERATE); + if(!lp->obj_in_basis) /* We must manually copy the reduced cost for RHS update */ + pcol[0] = my_chsign(!lp->is_lower[colnr], drow[colnr]); + lp->bfp_prepareupdate(lp, rownr, colnr, pcol); + } + + /* We may be unbounded... */ + else { + /* First make sure that we are not suffering from precision loss */ +#ifdef primal_UseRejectionList + if(lp->rejectpivot[0] < DEF_MAXPIVOTRETRY) { + lp->spx_status = RUNNING; + lp->rejectpivot[0]++; + lp->rejectpivot[lp->rejectpivot[0]] = colnr; + report(lp, DETAILED, "...trying to recover via another pivot column.\n"); + minit = ITERATE_MINORRETRY; + goto RetryCol; + } + else +#endif + /* Check that we are not having numerical problems */ + if(!refactRecent(lp) && !pendingunbounded) { + bfpfinal = TRUE; + pendingunbounded = TRUE; + set_action(&lp->spx_action, ACTION_REINVERT); + } + + /* Conclude that the model is unbounded */ + else { + lp->spx_status = UNBOUNDED; + report(lp, DETAILED, "The model is primal unbounded.\n"); + break; + } + } + } + + /* We handle optimality and phase 1 infeasibility ... */ + else { + +Optimality: + /* Handle possible transition from phase 1 to phase 2 */ + if(!primalfeasible || isP1extra(lp)) { + + if(feasiblePhase1(lp, epsvalue)) { + lp->spx_status = RUNNING; + if(lp->bb_totalnodes == 0) { + report(lp, NORMAL, "Found feasibility by primal simplex after %10.0f iter.\n", + (double) get_total_iter(lp)); + if((lp->usermessage != NULL) && (lp->msgmask & MSG_LPFEASIBLE)) + lp->usermessage(lp, lp->msghandle, MSG_LPFEASIBLE); + } + changedphase = FALSE; + primalfeasible = TRUE; + lp->simplex_mode = SIMPLEX_Phase2_PRIMAL; + set_OF_p1extra(lp, 0.0); + + /* We can do two things now; + 1) delete the rows belonging to those variables, since they are redundant, OR + 2) drive out the existing artificial variables via pivoting. */ + if(lp->P1extraDim > 0) { + +#ifdef Phase1EliminateRedundant + /* If it is not a MIP model we can try to delete redundant rows */ + if((lp->bb_totalnodes == 0) && (MIP_count(lp) == 0)) { + while(lp->P1extraDim > 0) { + i = lp->rows; + while((i > 0) && (lp->var_basic[i] <= lp->sum-lp->P1extraDim)) + i--; +#ifdef Paranoia + if(i <= 0) { + report(lp, SEVERE, "primloop: Could not find redundant artificial.\n"); + break; + } +#endif + /* Obtain column and row indeces */ + j = lp->var_basic[i]-lp->rows; + k = get_artificialRow(lp, j); + + /* Delete row before column due to basis "compensation logic" */ + if(lp->is_basic[k]) { + lp->is_basic[lp->rows+j] = FALSE; + del_constraint(lp, k); + } + else + set_basisvar(lp, i, k); + del_column(lp, j); + lp->P1extraDim--; + } + lp->basis_valid = TRUE; + } + /* Otherwise we drive out the artificials by elimination pivoting */ + else + eliminate_artificials(lp, prow); + +#else + /* Indicate phase 2 with artificial variables by negating P1extraDim */ + lp->P1extraDim = my_flipsign(lp->P1extraDim); +#endif + } + + /* We must refactorize since the OF changes from phase 1 to phase 2 */ + set_action(&lp->spx_action, ACTION_REINVERT); + bfpfinal = TRUE; + } + + /* We are infeasible in phase 1 */ + else { + lp->spx_status = INFEASIBLE; + minit = ITERATE_MAJORMAJOR; + if(lp->spx_trace) + report(lp, NORMAL, "Model infeasible by primal simplex at iter %10.0f.\n", + (double) get_total_iter(lp)); + } + } + + /* Handle phase 1 optimality */ + else { + /* (Do nothing special) */ + } + + /* Check if we are still primal feasible; the default assumes that this check + is not necessary after the relaxed problem has been solved satisfactorily. */ + if((lp->bb_level <= 1) || (lp->improve & IMPROVE_BBSIMPLEX) /* || (lp->bb_rule & NODE_RCOSTFIXING) */) { /* NODE_RCOSTFIXING fix */ + set_action(&lp->piv_strategy, PRICE_FORCEFULL); + i = rowdual(lp, lp->rhs, FALSE, FALSE, NULL); + clear_action(&lp->piv_strategy, PRICE_FORCEFULL); + if(i > 0) { + lp->spx_status = LOSTFEAS; + if(lp->total_iter == 0) + report(lp, DETAILED, "primloop: Lost primal feasibility at iter %10.0f: will try to recover.\n", + (double) get_total_iter(lp)); + } + } + } + + /* Pivot row/col and update the inverse */ + if(is_action(lp->spx_action, ACTION_ITERATE)) { + lastnr = lp->var_basic[rownr]; + + if(refactRecent(lp) == AUTOMATIC) + minitcount = 0; + else if(minitcount > MAX_MINITUPDATES) { + recompute_solution(lp, INITSOL_USEZERO); + minitcount = 0; + } + minit = performiteration(lp, rownr, colnr, theta, primal, + (MYBOOL) (/*(candidatecount > 1) && */ + (stallaccept != AUTOMATIC)), + NULL, NULL, + pcol, NULL, NULL); + if(minit != ITERATE_MAJORMAJOR) + minitcount++; + + if((lp->spx_status == USERABORT) || (lp->spx_status == TIMEOUT)) + break; + else if(minit == ITERATE_MINORMAJOR) + continue; +#ifdef UsePrimalReducedCostUpdate + /* Do a fast update of the reduced costs in preparation for the next iteration */ + if(minit == ITERATE_MAJORMAJOR) + update_reducedcosts(lp, primal, lastnr, colnr, pcol, drow); +#endif + + /* Detect if an auxiliary variable has left the basis and delete it; if + the non-basic variable only changed bound (a "minor iteration"), the + basic artificial variable did not leave and there is nothing to do */ + if((minit == ITERATE_MAJORMAJOR) && (lastnr > lp->sum - abs(lp->P1extraDim))) { +#ifdef Paranoia + if(lp->is_basic[lastnr] || !lp->is_basic[colnr]) + report(lp, SEVERE, "primloop: Invalid basis indicator for variable %d at iter %10.0f.\n", + lastnr, (double) get_total_iter(lp)); +#endif + del_column(lp, lastnr-lp->rows); + if(lp->P1extraDim > 0) + lp->P1extraDim--; + else + lp->P1extraDim++; + if(lp->P1extraDim == 0) { + colnr = 0; + changedphase = TRUE; + stallMonitor_reset(lp); + } + } + } + + if(lp->spx_status == SWITCH_TO_DUAL) + ; + else if(!changedphase && lp->bfp_mustrefactorize(lp)) { +#ifdef ResetMinitOnReinvert + minit = ITERATE_MAJORMAJOR; +#endif + if(!invert(lp, INITSOL_USEZERO, bfpfinal)) + lp->spx_status = SINGULAR_BASIS; + bfpfinal = FALSE; + } + } + + /* Remove any remaining artificial variables (feasible or infeasible model) */ + lp->P1extraDim = abs(lp->P1extraDim); +/* if((lp->P1extraDim > 0) && (lp->spx_status != DEGENERATE)) { */ + if(lp->P1extraDim > 0) { + clear_artificials(lp); + if(lp->spx_status != OPTIMAL) + restore_basis(lp); + i = invert(lp, INITSOL_USEZERO, TRUE); + } +#ifdef Paranoia + if(!verify_basis(lp)) + report(lp, SEVERE, "primloop: Invalid basis detected due to internal error\n"); +#endif + + /* Switch to dual phase 1 simplex for MIP models during + B&B phases, since this is typically far more efficient */ +#ifdef ForceDualSimplexInBB + if((lp->bb_totalnodes == 0) && (MIP_count(lp) > 0) && + ((lp->simplex_strategy & SIMPLEX_Phase1_DUAL) == 0)) { + lp->simplex_strategy &= ~SIMPLEX_Phase1_PRIMAL; + lp->simplex_strategy += SIMPLEX_Phase1_DUAL; + } +#endif + +Finish: + stallMonitor_finish(lp); + multi_free(&(lp->multivars)); + FREE(prow); + FREE(pcol); + FREE(lp->bsolveVal); + + return(ok); +} /* primloop */ + +STATIC int dualloop(lprec *lp, MYBOOL dualfeasible, int dualinfeasibles[], LPSREAL dualoffset) +{ + MYBOOL primal = FALSE, inP1extra, dualphase1 = FALSE, changedphase = TRUE, + pricerCanChange, minit, stallaccept, longsteps, + forceoutEQ = FALSE, bfpfinal = FALSE; + int i, colnr = 0, rownr = 0, lastnr = 0, + candidatecount = 0, minitcount = 0, +#ifdef FixInaccurateDualMinit + minitcolnr = 0, +#endif + ok = TRUE; + int *boundswaps = NULL; + LREAL theta = 0.0; + LPSREAL epsvalue, xviolated, cviolated, + *prow = NULL, *pcol = NULL, + *drow = lp->drow; + int *nzprow = NULL, *workINT = NULL, + *nzdrow = lp->nzdrow; + + if(lp->spx_trace) + report(lp, DETAILED, "Entered dual simplex algorithm with feasibility %s.\n", + my_boolstr(dualfeasible)); + + /* Allocate work arrays */ + ok = allocREAL(lp, &prow, lp->sum + 1, TRUE) && + allocINT (lp, &nzprow, lp->sum + 1, FALSE) && + allocREAL(lp, &pcol, lp->rows + 1, TRUE); + if(!ok) + goto Finish; + + /* Set non-zero P1extraVal value to force dual feasibility when the dual + simplex is used as a phase 1 algorithm for the primal simplex. + The value will be reset when primal feasibility has been achieved, or + a dual non-feasibility has been encountered (no candidate for a first + leaving variable) */ + inP1extra = (MYBOOL) (dualoffset != 0); + if(inP1extra) { + set_OF_p1extra(lp, dualoffset); + simplexPricer(lp, (MYBOOL)!primal); + invert(lp, INITSOL_USEZERO, TRUE); + } + else + restartPricer(lp, (MYBOOL)!primal); + + /* Prepare dual long-step structures */ +#if 0 + longsteps = TRUE; +#elif 0 + longsteps = (MYBOOL) ((MIP_count(lp) > 0) && (lp->bb_level > 1)); +#elif 0 + longsteps = (MYBOOL) ((MIP_count(lp) > 0) && (lp->solutioncount >= 1)); +#else + longsteps = FALSE; +#endif +#ifdef UseLongStepDualPhase1 + longsteps = !dualfeasible && (MYBOOL) (dualinfeasibles != NULL); +#endif + + if(longsteps) { + lp->longsteps = multi_create(lp, TRUE); + ok = (lp->longsteps != NULL) && + multi_resize(lp->longsteps, MIN(lp->boundedvars+2, 11), 1, TRUE, TRUE); + if(!ok) + goto Finish; +#ifdef UseLongStepPruning + lp->longsteps->objcheck = TRUE; +#endif + boundswaps = multi_indexSet(lp->longsteps, FALSE); + } + + /* Do regular dual simplex variable initializations */ + lp->spx_status = RUNNING; + minit = ITERATE_MAJORMAJOR; + epsvalue = lp->epspivot; + + ok = stallMonitor_create(lp, TRUE, "dualloop"); + if(!ok) + goto Finish; + + lp->rejectpivot[0] = 0; + if(dualfeasible) + lp->simplex_mode = SIMPLEX_Phase2_DUAL; + else + lp->simplex_mode = SIMPLEX_Phase1_DUAL; + + /* Check if we have equality slacks in the basis and we should try to + drive them out in order to reduce chance of degeneracy in Phase 1. + forceoutEQ = FALSE : Only eliminate assured "good" violated + equality constraint slacks + AUTOMATIC: Seek more elimination of equality constraint + slacks (but not as aggressive as the rule + used in lp_solve v4.0 and earlier) + TRUE: Force remaining equality slacks out of the + basis */ + if(dualphase1 || inP1extra || + ((lp->fixedvars > 0) && is_anti_degen(lp, ANTIDEGEN_FIXEDVARS))) { + forceoutEQ = AUTOMATIC; + } +#if 1 + if(is_anti_degen(lp, ANTIDEGEN_DYNAMIC) && (bin_count(lp, TRUE)*2 > lp->columns)) { + switch (forceoutEQ) { + case FALSE: forceoutEQ = AUTOMATIC; + break; + /* case AUTOMATIC: forceoutEQ = TRUE; + break; + default: forceoutEQ = TRUE; */ + } + } +#endif + + while((lp->spx_status == RUNNING) && !userabort(lp, -1)) { + + /* Check if we have stalling (from numerics or degenerate cycling) */ + pricerCanChange = !dualphase1 && !inP1extra; + stallaccept = stallMonitor_check(lp, rownr, colnr, lastnr, minit, pricerCanChange, &forceoutEQ); + if(!stallaccept) + break; + + /* Store current LP index for reference at next iteration */ + changedphase = FALSE; + + /* Compute (pure) dual phase1 offsets / reduced costs if appropriate */ + dualphase1 &= (MYBOOL) (lp->simplex_mode == SIMPLEX_Phase1_DUAL); + if(longsteps && dualphase1 && !inP1extra) { + obtain_column(lp, dualinfeasibles[1], pcol, NULL, NULL); + i = 2; + for(i = 2; i <= dualinfeasibles[0]; i++) + mat_multadd(lp->matA, pcol, dualinfeasibles[i], 1.0); + /* Solve (note that solved pcol will be used instead of lp->rhs) */ + ftran(lp, pcol, NULL, lp->epsmachine); + } + + /* Do minor iterations (non-basic variable bound flips) for as + long as possible since this is a cheap way of iterating */ +#if (defined dual_Phase1PriceEqualities) || (defined dual_UseRejectionList) +RetryRow: +#endif + if(minit != ITERATE_MINORRETRY) { + i = 0; + do { + i++; + rownr = rowdual(lp, my_if(dualphase1, pcol, NULL), forceoutEQ, TRUE, &xviolated); + } while ((rownr == 0) && (i < partial_countBlocks(lp, (MYBOOL) !primal)) && + partial_blockStep(lp, (MYBOOL) !primal)); + } + + /* Make sure that we do not erroneously conclude that an infeasible model is optimal */ +#ifdef dual_UseRejectionList + if((rownr == 0) && (lp->rejectpivot[0] > 0)) { + lp->spx_status = INFEASIBLE; + if((lp->spx_trace && (lp->bb_totalnodes == 0)) || + (lp->bb_trace && (lp->bb_totalnodes > 0))) + report(lp, DETAILED, "The model is primal infeasible.\n"); + rownr = lp->rejectpivot[1]; + colnr = 0; + lp->rejectpivot[0] = 0; + ok = FALSE; + break; + } +#endif + + /* If we found a leaving variable, find a matching entering one */ + clear_action(&lp->spx_action, ACTION_ITERATE); + if(rownr > 0) { + colnr = coldual(lp, rownr, prow, nzprow, drow, nzdrow, + (MYBOOL) (dualphase1 && !inP1extra), + (MYBOOL) (minit == ITERATE_MINORRETRY), &candidatecount, &cviolated); + if(colnr < 0) { + minit = ITERATE_MAJORMAJOR; + continue; + } +#ifdef AcceptMarginalAccuracy + else if(xviolated+cviolated < lp->epspivot) { + if(lp->bb_trace || (lp->bb_totalnodes == 0)) + report(lp, DETAILED, "dualloop: Assuming convergence with reduced accuracy %g.\n", + MAX(xviolated, cviolated)); + rownr = 0; + colnr = 0; + } +#endif + /* Check if the long-dual found reason to prune the B&B tree */ + if(lp->spx_status == FATHOMED) + break; + } + else + colnr = 0; + + /* Process primal-infeasible row */ + if(rownr > 0) { + + if(colnr > 0) { +#ifdef Paranoia + if((rownr > lp->rows) || (colnr > lp->sum)) { + report(lp, SEVERE, "dualloop: Invalid row %d(%d) and column %d(%d) pair selected at iteration %.0f\n", + rownr, lp->rows, colnr-lp->columns, lp->columns, (double) get_total_iter(lp)); + lp->spx_status = UNKNOWNERROR; + break; + } +#endif + fsolve(lp, colnr, pcol, workINT, lp->epsmachine, 1.0, TRUE); + +#ifdef FixInaccurateDualMinit + /* Prevent bound flip-flops during minor iterations; used to detect + infeasibility after triggering of minor iteration accuracy management */ + if(colnr != minitcolnr) + minitcolnr = 0; +#endif + + /* Getting division by zero here; catch it and try to recover */ + if(pcol[rownr] == 0) { + if(lp->spx_trace) + report(lp, DETAILED, "dualloop: Attempt to divide by zero (pcol[%d])\n", rownr); + if(!refactRecent(lp)) { + report(lp, DETAILED, "...trying to recover by refactorizing basis.\n"); + set_action(&lp->spx_action, ACTION_REINVERT); + bfpfinal = FALSE; + } + else { + if(lp->bb_totalnodes == 0) + report(lp, DETAILED, "...cannot recover by refactorizing basis.\n"); + lp->spx_status = NUMFAILURE; + ok = FALSE; + } + } + else { + set_action(&lp->spx_action, ACTION_ITERATE); + lp->rejectpivot[0] = 0; + if(!lp->obj_in_basis) /* We must manually copy the reduced cost for RHS update */ + pcol[0] = my_chsign(!lp->is_lower[colnr], drow[colnr]); + theta = lp->bfp_prepareupdate(lp, rownr, colnr, pcol); + + /* Verify numeric accuracy of the basis factorization and change to + the "theoretically" correct version of the theta */ + if((lp->improve & IMPROVE_THETAGAP) && !refactRecent(lp) && + (my_reldiff(fabs(theta), fabs(prow[colnr])) > + lp->epspivot*10.0*log(2.0+50.0*lp->rows))) { /* This is my kludge - KE */ + set_action(&lp->spx_action, ACTION_REINVERT); + bfpfinal = TRUE; +#ifdef IncreasePivotOnReducedAccuracy + lp->epspivot = MIN(1.0e-4, lp->epspivot*2.0); +#endif + report(lp, DETAILED, "dualloop: Refactorizing at iter %.0f due to loss of accuracy.\n", + (double) get_total_iter(lp)); + } + theta = prow[colnr]; + compute_theta(lp, rownr, &theta, !lp->is_lower[colnr], 0, primal); + } + } + +#ifdef FixInaccurateDualMinit + /* Force reinvertion and try another row if we did not find a bound-violated leaving column */ + else if(!refactRecent(lp) && (minit != ITERATE_MAJORMAJOR) && (colnr != minitcolnr)) { + minitcolnr = colnr; + i = invert(lp, INITSOL_USEZERO, TRUE); + if((lp->spx_status == USERABORT) || (lp->spx_status == TIMEOUT)) + break; + else if(!i) { + lp->spx_status = SINGULAR_BASIS; + break; + } + minit = ITERATE_MAJORMAJOR; + continue; + } +#endif + + /* We may be infeasible, have lost dual feasibility, or simply have no valid entering + variable for the selected row. The strategy is to refactorize if we suspect numerical + problems and loss of dual feasibility; this is done if it has been a while since + refactorization. If not, first try to select a different row/leaving variable to + see if a valid entering variable can be found. Otherwise, determine this model + as infeasible. */ + else { + + /* As a first option, try to recover from any numerical trouble by refactorizing */ + if(!refactRecent(lp)) { + set_action(&lp->spx_action, ACTION_REINVERT); + bfpfinal = TRUE; + } + +#ifdef dual_UseRejectionList + /* Check for pivot size issues */ + else if(lp->rejectpivot[0] < DEF_MAXPIVOTRETRY) { + lp->spx_status = RUNNING; + lp->rejectpivot[0]++; + lp->rejectpivot[lp->rejectpivot[0]] = rownr; + if(lp->bb_totalnodes == 0) + report(lp, DETAILED, "...trying to find another pivot row!\n"); + goto RetryRow; + } +#endif + /* Check if we may have lost dual feasibility if we also did phase 1 here */ + else if(dualphase1 && (dualoffset != 0)) { + lp->spx_status = LOSTFEAS; + if((lp->spx_trace && (lp->bb_totalnodes == 0)) || + (lp->bb_trace && (lp->bb_totalnodes > 0))) + report(lp, DETAILED, "dualloop: Model lost dual feasibility.\n"); + ok = FALSE; + break; + } + + /* Otherwise just determine that we are infeasible */ + else { + if(lp->spx_status == RUNNING) { +#if 1 + if(xviolated < lp->epspivot) { + if(lp->bb_trace || (lp->bb_totalnodes == 0)) + report(lp, NORMAL, "The model is primal optimal, but marginally infeasible.\n"); + lp->spx_status = OPTIMAL; + break; + } +#endif + lp->spx_status = INFEASIBLE; + if((lp->spx_trace && (lp->bb_totalnodes == 0)) || + (lp->bb_trace && (lp->bb_totalnodes > 0))) + report(lp, DETAILED, "The model is primal infeasible.\n"); + } + ok = FALSE; + break; + } + } + } + + /* Make sure that we enter the primal simplex with a high quality solution */ + else if(inP1extra && !refactRecent(lp) && is_action(lp->improve, IMPROVE_INVERSE)) { + set_action(&lp->spx_action, ACTION_REINVERT); + bfpfinal = TRUE; + } + + /* High quality solution with no leaving candidates available ... */ + else { + + bfpfinal = TRUE; + +#ifdef dual_RemoveBasicFixedVars + /* See if we should try to eliminate basic fixed variables; + can be time-consuming for some models */ + if(inP1extra && (colnr == 0) && (lp->fixedvars > 0) && is_anti_degen(lp, ANTIDEGEN_FIXEDVARS)) { + report(lp, DETAILED, "dualloop: Trying to pivot out %d fixed basic variables at iter %.0f\n", + lp->fixedvars, (double) get_total_iter(lp)); + rownr = 0; + while(lp->fixedvars > 0) { + rownr = findBasicFixedvar(lp, rownr, TRUE); + if(rownr == 0) { + colnr = 0; + break; + } + colnr = find_rowReplacement(lp, rownr, prow, nzprow); + if(colnr > 0) { + theta = 0; + performiteration(lp, rownr, colnr, theta, TRUE, FALSE, prow, NULL, + NULL, NULL, NULL); + lp->fixedvars--; + } + } + } +#endif + + /* Check if we are INFEASIBLE for the case that the dual is used + as phase 1 before the primal simplex phase 2 */ + if(inP1extra && (colnr < 0) && !isPrimalFeasible(lp, lp->epsprimal, NULL, NULL)) { + if(lp->bb_totalnodes == 0) { + if(dualfeasible) + report(lp, DETAILED, "The model is primal infeasible and dual feasible.\n"); + else + report(lp, DETAILED, "The model is primal infeasible and dual unbounded.\n"); + } + set_OF_p1extra(lp, 0); + inP1extra = FALSE; + set_action(&lp->spx_action, ACTION_REINVERT); + lp->spx_status = INFEASIBLE; + lp->simplex_mode = SIMPLEX_UNDEFINED; + ok = FALSE; + } + + /* Check if we are FEASIBLE (and possibly also optimal) for the case that the + dual is used as phase 1 before the primal simplex phase 2 */ + else if(inP1extra) { + + /* Set default action; force an update of the rhs vector, adjusted for + the new P1extraVal=0 (set here so that usermessage() behaves properly) */ + if(lp->bb_totalnodes == 0) { + report(lp, NORMAL, "Found feasibility by dual simplex after %10.0f iter.\n", + (double) get_total_iter(lp)); + if((lp->usermessage != NULL) && (lp->msgmask & MSG_LPFEASIBLE)) + lp->usermessage(lp, lp->msghandle, MSG_LPFEASIBLE); + } + set_OF_p1extra(lp, 0); + inP1extra = FALSE; + set_action(&lp->spx_action, ACTION_REINVERT); + +#if 1 + /* Optionally try another dual loop, if so selected by the user */ + if((lp->simplex_strategy & SIMPLEX_DUAL_PRIMAL) && (lp->fixedvars == 0)) + lp->spx_status = SWITCH_TO_PRIMAL; +#endif + changedphase = TRUE; + + } + + /* We are primal feasible and also optimal if we were in phase 2 */ + else { + + lp->simplex_mode = SIMPLEX_Phase2_DUAL; + + /* Check if we still have equality slacks stuck in the basis; drive them out? */ + if((lp->fixedvars > 0) && (lp->bb_totalnodes == 0)) { +#ifdef dual_Phase1PriceEqualities + if(forceoutEQ != TRUE) { + forceoutEQ = TRUE; + goto RetryRow; + } +#endif +#ifdef Paranoia + report(lp, NORMAL, +#else + report(lp, DETAILED, +#endif + "Found dual solution with %d fixed slack variables left basic.\n", + lp->fixedvars); + } + /* Check if we are still dual feasible; the default assumes that this check + is not necessary after the relaxed problem has been solved satisfactorily. */ + colnr = 0; + if((dualoffset != 0) || (lp->bb_level <= 1) || (lp->improve & IMPROVE_BBSIMPLEX) || (lp->bb_rule & NODE_RCOSTFIXING)) { /* NODE_RCOSTFIXING fix */ + set_action(&lp->piv_strategy, PRICE_FORCEFULL); + colnr = colprim(lp, drow, nzdrow, FALSE, 1, &candidatecount, FALSE, NULL); + clear_action(&lp->piv_strategy, PRICE_FORCEFULL); + if((dualoffset == 0) && (colnr > 0)) { + lp->spx_status = LOSTFEAS; + if(lp->total_iter == 0) + report(lp, DETAILED, "Recovering lost dual feasibility at iter %10.0f.\n", + (double) get_total_iter(lp)); + break; + } + } + + if(colnr == 0) + lp->spx_status = OPTIMAL; + else { + lp->spx_status = SWITCH_TO_PRIMAL; + if(lp->total_iter == 0) + report(lp, DETAILED, "Use primal simplex for finalization at iter %10.0f.\n", + (double) get_total_iter(lp)); + } + if((lp->total_iter == 0) && (lp->spx_status == OPTIMAL)) + report(lp, DETAILED, "Optimal solution with dual simplex at iter %10.0f.\n", + (double) get_total_iter(lp)); + } + + /* Determine if we are ready to break out of the loop */ + if(!changedphase) + break; + } + + /* Check if we are allowed to iterate on the chosen column and row */ + if(is_action(lp->spx_action, ACTION_ITERATE)) { + + lastnr = lp->var_basic[rownr]; + if(refactRecent(lp) == AUTOMATIC) + minitcount = 0; + else if(minitcount > MAX_MINITUPDATES) { + recompute_solution(lp, INITSOL_USEZERO); + minitcount = 0; + } + minit = performiteration(lp, rownr, colnr, theta, primal, + (MYBOOL) (/*(candidatecount > 1) && */ + (stallaccept != AUTOMATIC)), + prow, nzprow, + pcol, NULL, boundswaps); + + /* Check if we should abandon iterations on finding that there is no + hope that this branch can improve on the incumbent B&B solution */ + if(!lp->is_strongbranch && (lp->solutioncount >= 1) && !lp->spx_perturbed && !inP1extra && + bb_better(lp, OF_WORKING, OF_TEST_WE)) { + lp->spx_status = FATHOMED; + ok = FALSE; + break; + } + + if(minit != ITERATE_MAJORMAJOR) + minitcount++; + + /* Update reduced costs for (pure) dual long-step phase 1 */ + if(longsteps && dualphase1 && !inP1extra) { + dualfeasible = isDualFeasible(lp, lp->epsprimal, NULL, dualinfeasibles, NULL); + if(dualfeasible) { + dualphase1 = FALSE; + changedphase = TRUE; + lp->simplex_mode = SIMPLEX_Phase2_DUAL; + } + } +#ifdef UseDualReducedCostUpdate + /* Do a fast update of reduced costs in preparation for the next iteration */ + else if(minit == ITERATE_MAJORMAJOR) + update_reducedcosts(lp, primal, lastnr, colnr, prow, drow); +#endif + if((minit == ITERATE_MAJORMAJOR) && (lastnr <= lp->rows) && is_fixedvar(lp, lastnr)) + lp->fixedvars--; + } + + /* Refactorize if required to */ + if(lp->bfp_mustrefactorize(lp)) { + if(invert(lp, INITSOL_USEZERO, bfpfinal)) { + +#if 0 + /* Verify dual feasibility in case we are attempting the extra dual loop */ + if(changedphase && (dualoffset != 0) && !inP1extra && (lp->spx_status != SWITCH_TO_PRIMAL)) { +#if 1 + if(!isDualFeasible(lp, lp->epsdual, &colnr, NULL, NULL)) { +#else + set_action(&lp->piv_strategy, PRICE_FORCEFULL); + colnr = colprim(lp, drow, nzdrow, FALSE, 1, &candidatecount, FALSE, NULL); + clear_action(&lp->piv_strategy, PRICE_FORCEFULL); + if(colnr > 0) { +#endif + lp->spx_status = SWITCH_TO_PRIMAL; + colnr = 0; + } + } +#endif + + bfpfinal = FALSE; +#ifdef ResetMinitOnReinvert + minit = ITERATE_MAJORMAJOR; +#endif + } + else + lp->spx_status = SINGULAR_BASIS; + } + } + +Finish: + stallMonitor_finish(lp); + multi_free(&(lp->longsteps)); + FREE(prow); + FREE(nzprow); + FREE(pcol); + + return(ok); +} + +STATIC int spx_run(lprec *lp, MYBOOL validInvB) +{ + int i, j, singular_count, lost_feas_count, *infeasibles = NULL, *boundflip_count; + MYBOOL primalfeasible, dualfeasible, lost_feas_state, isbb; + LPSREAL primaloffset = 0, dualoffset = 0; + + lp->current_iter = 0; + lp->current_bswap = 0; + lp->spx_status = RUNNING; + lp->bb_status = lp->spx_status; + lp->P1extraDim = 0; + set_OF_p1extra(lp, 0); + singular_count = 0; + lost_feas_count = 0; + lost_feas_state = FALSE; + lp->simplex_mode = SIMPLEX_DYNAMIC; + + /* Compute the number of fixed basic and bounded variables (used in long duals) */ + lp->fixedvars = 0; + lp->boundedvars = 0; + for(i = 1; i <= lp->rows; i++) { + j = lp->var_basic[i]; + if((j <= lp->rows) && is_fixedvar(lp, j)) + lp->fixedvars++; + if((lp->upbo[i] < lp->infinite) && (lp->upbo[i] > lp->epsprimal)) + lp->boundedvars++; + } + for(; i <= lp->sum; i++){ + if((lp->upbo[i] < lp->infinite) && (lp->upbo[i] > lp->epsprimal)) + lp->boundedvars++; + } +#ifdef UseLongStepDualPhase1 + allocINT(lp, &infeasibles, lp->columns + 1, FALSE); + infeasibles[0] = 0; +#endif + + /* Reinvert for initialization, if necessary */ + isbb = (MYBOOL) ((MIP_count(lp) > 0) && (lp->bb_level > 1)); + if(is_action(lp->spx_action, ACTION_REINVERT)) { + if(isbb && (lp->bb_bounds->nodessolved == 0)) +/* if(isbb && (lp->bb_basis->pivots == 0)) */ + recompute_solution(lp, INITSOL_SHIFTZERO); + else { + i = my_if(is_action(lp->spx_action, ACTION_REBASE), INITSOL_SHIFTZERO, INITSOL_USEZERO); + invert(lp, (MYBOOL) i, TRUE); + } + } + else if(is_action(lp->spx_action, ACTION_REBASE)) + recompute_solution(lp, INITSOL_SHIFTZERO); + + /* Optionally try to do bound flips to obtain dual feasibility */ + if(is_action(lp->improve, IMPROVE_DUALFEAS) || (lp->rows == 0)) + boundflip_count = &i; + else + boundflip_count = NULL; + + /* Loop for as long as is needed */ + while(lp->spx_status == RUNNING) { + + /* Check for dual and primal feasibility */ + dualfeasible = isbb || + isDualFeasible(lp, lp->epsprimal, boundflip_count, infeasibles, &dualoffset); + + /* Recompute if the dual feasibility check included bound flips */ + if(is_action(lp->spx_action, ACTION_RECOMPUTE)) + recompute_solution(lp, INITSOL_USEZERO); + primalfeasible = isPrimalFeasible(lp, lp->epsprimal, NULL, &primaloffset); + + if(userabort(lp, -1)) + break; + + if(lp->spx_trace) { + if(primalfeasible) + report(lp, NORMAL, "Start at primal feasible basis\n"); + else if(dualfeasible) + report(lp, NORMAL, "Start at dual feasible basis\n"); + else if(lost_feas_count > 0) + report(lp, NORMAL, "Continuing at infeasible basis\n"); + else + report(lp, NORMAL, "Start at infeasible basis\n"); + } + + /* Now do the simplex magic */ + if(((lp->simplex_strategy & SIMPLEX_Phase1_DUAL) == 0) || + ((MIP_count(lp) > 0) && (lp->total_iter == 0) && + is_presolve(lp, PRESOLVE_REDUCEMIP))) { + if(!lost_feas_state && primalfeasible && ((lp->simplex_strategy & SIMPLEX_Phase2_DUAL) > 0)) + lp->spx_status = SWITCH_TO_DUAL; + else + primloop(lp, primalfeasible, 0.0); + if(lp->spx_status == SWITCH_TO_DUAL) + dualloop(lp, TRUE, NULL, 0.0); + } + else { + if(!lost_feas_state && primalfeasible && ((lp->simplex_strategy & SIMPLEX_Phase2_PRIMAL) > 0)) + lp->spx_status = SWITCH_TO_PRIMAL; + else + dualloop(lp, dualfeasible, infeasibles, dualoffset); + if(lp->spx_status == SWITCH_TO_PRIMAL) + primloop(lp, TRUE, 0.0); + } + + /* Check for simplex outcomes that always involve breaking out of the loop; + this includes optimality, unboundedness, pure infeasibility (i.e. not + loss of feasibility), numerical failure and perturbation-based degeneracy + handling */ + i = lp->spx_status; + primalfeasible = (MYBOOL) (i == OPTIMAL); + if(primalfeasible || (i == UNBOUNDED)) + break; + else if(((i == INFEASIBLE) && is_anti_degen(lp, ANTIDEGEN_INFEASIBLE)) || + ((i == LOSTFEAS) && is_anti_degen(lp, ANTIDEGEN_LOSTFEAS)) || + ((i == NUMFAILURE) && is_anti_degen(lp, ANTIDEGEN_NUMFAILURE)) || + ((i == DEGENERATE) && is_anti_degen(lp, ANTIDEGEN_STALLING))) { + /* Check if we should not loop here, but do perturbations */ + if((lp->bb_level <= 1) || is_anti_degen(lp, ANTIDEGEN_DURINGBB)) + break; + + /* Assume that accuracy during B&B is high and that infeasibility is "real" */ +#ifdef AssumeHighAccuracyInBB + if((lp->bb_level > 1) && (i == INFEASIBLE)) + break; +#endif + } + + /* Check for outcomes that may involve trying another simplex loop */ + if(lp->spx_status == SINGULAR_BASIS) { + lost_feas_state = FALSE; + singular_count++; + if(singular_count >= DEF_MAXSINGULARITIES) { + report(lp, IMPORTANT, "spx_run: Failure due to too many singular bases.\n"); + lp->spx_status = NUMFAILURE; + break; + } + if(lp->spx_trace || (lp->verbose > DETAILED)) + report(lp, NORMAL, "spx_run: Singular basis; attempting to recover.\n"); + lp->spx_status = RUNNING; + /* Singular pivots are simply skipped by the inversion, leaving a row's + slack variable in the basis instead of the singular user variable. */ + } + else { + lost_feas_state = (MYBOOL) (lp->spx_status == LOSTFEAS); +#if 0 + /* Optionally handle loss of numerical accuracy as loss of feasibility, + but only attempt a single loop to try to recover from this. */ + lost_feas_state |= (MYBOOL) ((lp->spx_status == NUMFAILURE) && (lost_feas_count < 1)); +#endif + if(lost_feas_state) { + lost_feas_count++; + if(lost_feas_count < DEF_MAXSINGULARITIES) { + report(lp, DETAILED, "spx_run: Recover lost feasibility at iter %10.0f.\n", + (double) get_total_iter(lp)); + lp->spx_status = RUNNING; + } + else { + report(lp, IMPORTANT, "spx_run: Lost feasibility %d times - iter %10.0f and %9.0f nodes.\n", + lost_feas_count, (double) get_total_iter(lp), (double) lp->bb_totalnodes); + lp->spx_status = NUMFAILURE; + } + } + } + } + + /* Update iteration tallies before returning */ + lp->total_iter += lp->current_iter; + lp->current_iter = 0; + lp->total_bswap += lp->current_bswap; + lp->current_bswap = 0; + FREE(infeasibles); + + return(lp->spx_status); +} /* spx_run */ + +lprec *make_lag(lprec *lpserver) +{ + int i; + lprec *hlp; + MYBOOL ret; + LPSREAL *duals; + + /* Create a Lagrangean solver instance */ + hlp = make_lp(0, lpserver->columns); + + if(hlp != NULL) { + + /* First create and core variable data */ + set_sense(hlp, is_maxim(lpserver)); + hlp->lag_bound = lpserver->bb_limitOF; + for(i = 1; i <= lpserver->columns; i++) { + set_mat(hlp, 0, i, get_mat(lpserver, 0, i)); + if(is_binary(lpserver, i)) + set_binary(hlp, i, TRUE); + else { + set_int(hlp, i, is_int(lpserver, i)); + set_bounds(hlp, i, get_lowbo(lpserver, i), get_upbo(lpserver, i)); + } + } + /* Then fill data for the Lagrangean constraints */ + hlp->matL = lpserver->matA; + inc_lag_space(hlp, lpserver->rows, TRUE); + ret = get_ptr_sensitivity_rhs(hlp, &duals, NULL, NULL); + for(i = 1; i <= lpserver->rows; i++) { + hlp->lag_con_type[i] = get_constr_type(lpserver, i); + hlp->lag_rhs[i] = lpserver->orig_rhs[i]; + hlp->lambda[i] = (ret) ? duals[i - 1] : 0.0; + } + } + + return(hlp); +} + +STATIC int heuristics(lprec *lp, int mode) +/* Initialize / bound a MIP problem */ +{ + lprec *hlp; + int status = PROCFAIL; + + if(lp->bb_level > 1) + return( status ); + + status = RUNNING; + lp->bb_limitOF = my_chsign(is_maxim(lp), -lp->infinite); + if(FALSE && (lp->int_vars > 0)) { + + /* 1. Copy the problem into a new relaxed instance, extracting Lagrangean constraints */ + hlp = make_lag(lp); + + /* 2. Run the Lagrangean relaxation */ + status = solve(hlp); + + /* 3. Copy the key results (bound) into the original problem */ + lp->bb_heuristicOF = hlp->best_solution[0]; + + /* 4. Delete the helper heuristic */ + hlp->matL = NULL; + delete_lp(hlp); + } + + lp->timeheuristic = timeNow(); + return( status ); +} + +STATIC int lag_solve(lprec *lp, LPSREAL start_bound, int num_iter) +{ + int i, j, citer, nochange, oldpresolve; + MYBOOL LagFeas, AnyFeas, Converged, same_basis; + LPSREAL *OrigObj, *ModObj, *SubGrad, *BestFeasSol; + LPSREAL Zub, Zlb, Znow, Zprev, Zbest, rhsmod, hold; + LPSREAL Phi, StepSize = 0.0, SqrsumSubGrad; + + /* Make sure we have something to work with */ + if(lp->spx_status != OPTIMAL) { + lp->lag_status = NOTRUN; + return( lp->lag_status ); + } + + /* Allocate iteration arrays */ + if(!allocREAL(lp, &OrigObj, lp->columns + 1, FALSE) || + !allocREAL(lp, &ModObj, lp->columns + 1, TRUE) || + !allocREAL(lp, &SubGrad, get_Lrows(lp) + 1, TRUE) || + !allocREAL(lp, &BestFeasSol, lp->sum + 1, TRUE)) { + lp->lag_status = NOMEMORY; + return( lp->lag_status ); + } + lp->lag_status = RUNNING; + + /* Prepare for Lagrangean iterations using results from relaxed problem */ + oldpresolve = lp->do_presolve; + lp->do_presolve = PRESOLVE_NONE; + push_basis(lp, NULL, NULL, NULL); + + /* Initialize variables (assume minimization problem in overall structure) */ + Zlb = lp->best_solution[0]; + Zub = start_bound; + Zbest = Zub; + Znow = Zlb; + Zprev = lp->infinite; + rhsmod = 0; + + Phi = DEF_LAGCONTRACT; /* In the range 0-2.0 to guarantee convergence */ +/* Phi = 0.15; */ + LagFeas = FALSE; + Converged= FALSE; + AnyFeas = FALSE; + citer = 0; + nochange = 0; + + /* Initialize reference and solution vectors; don't bother about the + original OF offset since we are maintaining an offset locally. */ + +/* #define DirectOverrideOF */ + + get_row(lp, 0, OrigObj); +#ifdef DirectOverrideOF + set_OF_override(lp, ModObj); +#endif + OrigObj[0] = get_rh(lp, 0); + for(i = 1 ; i <= get_Lrows(lp); i++) + lp->lambda[i] = 0; + + /* Iterate to convergence, failure or user-specified termination */ + while((lp->lag_status == RUNNING) && (citer < num_iter)) { + + citer++; + + /* Compute constraint feasibility gaps and associated sum of squares, + and determine feasibility over the Lagrangean constraints; + SubGrad is the subgradient, which here is identical to the slack. */ + LagFeas = TRUE; + Converged = TRUE; + SqrsumSubGrad = 0; + for(i = 1; i <= get_Lrows(lp); i++) { + hold = lp->lag_rhs[i]; + for(j = 1; j <= lp->columns; j++) + hold -= mat_getitem(lp->matL, i, j) * lp->best_solution[lp->rows + j]; + if(LagFeas) { + if(lp->lag_con_type[i] == EQ) { + if(fabs(hold) > lp->epsprimal) + LagFeas = FALSE; + } + else if(hold < -lp->epsprimal) + LagFeas = FALSE; + } + /* Test for convergence and update */ + if(Converged && (fabs(my_reldiff(hold , SubGrad[i])) > lp->lag_accept)) + Converged = FALSE; + SubGrad[i] = hold; + SqrsumSubGrad += hold * hold; + } + SqrsumSubGrad = sqrt(SqrsumSubGrad); +#if 1 + Converged &= LagFeas; +#endif + if(Converged) + break; + + /* Modify step parameters and initialize ahead of next iteration */ + Znow = lp->best_solution[0] - rhsmod; + if(Znow > Zub) { + /* Handle exceptional case where we overshoot */ + Phi *= DEF_LAGCONTRACT; + StepSize *= (Zub-Zlb) / (Znow-Zlb); + } + else +#define LagBasisContract +#ifdef LagBasisContract +/* StepSize = Phi * (Zub - Znow) / SqrsumSubGrad; */ + StepSize = Phi * (2-DEF_LAGCONTRACT) * (Zub - Znow) / SqrsumSubGrad; +#else + StepSize = Phi * (Zub - Znow) / SqrsumSubGrad; +#endif + + /* Compute the new dual price vector (Lagrangean multipliers, lambda) */ + for(i = 1; i <= get_Lrows(lp); i++) { + lp->lambda[i] += StepSize * SubGrad[i]; + if((lp->lag_con_type[i] != EQ) && (lp->lambda[i] > 0)) { + /* Handle case where we overshoot and need to correct (see above) */ + if(Znow < Zub) + lp->lambda[i] = 0; + } + } +/* normalizeVector(lp->lambda, get_Lrows(lp)); */ + + /* Save the current vector if it is better */ + if(LagFeas && (Znow < Zbest)) { + + /* Recompute the objective function value in terms of the original values */ + MEMCOPY(BestFeasSol, lp->best_solution, lp->sum+1); + hold = OrigObj[0]; + for(i = 1; i <= lp->columns; i++) + hold += lp->best_solution[lp->rows + i] * OrigObj[i]; + BestFeasSol[0] = hold; + if(lp->lag_trace) + report(lp, NORMAL, "lag_solve: Improved feasible solution at iteration %d of %g\n", + citer, hold); + + /* Reset variables */ + Zbest = Znow; + AnyFeas = TRUE; + nochange = 0; + } + else if(Znow == Zprev) { + nochange++; + if(nochange > LAG_SINGULARLIMIT) { + Phi *= 0.5; + nochange = 0; + } + } + Zprev = Znow; + + /* Recompute the objective function values for the next iteration */ + for(j = 1; j <= lp->columns; j++) { + hold = 0; + for(i = 1; i <= get_Lrows(lp); i++) + hold += lp->lambda[i] * mat_getitem(lp->matL, i, j); + ModObj[j] = OrigObj[j] - my_chsign(is_maxim(lp), hold); +#ifndef DirectOverrideOF + set_mat(lp, 0, j, ModObj[j]); +#endif + } + + /* Recompute the fixed part of the new objective function */ + rhsmod = my_chsign(is_maxim(lp), get_rh(lp, 0)); + for(i = 1; i <= get_Lrows(lp); i++) + rhsmod += lp->lambda[i] * lp->lag_rhs[i]; + + /* Print trace/debugging information, if specified */ + if(lp->lag_trace) { + report(lp, IMPORTANT, "Zub: %10g Zlb: %10g Stepsize: %10g Phi: %10g Feas %d\n", + (double) Zub, (double) Zlb, (double) StepSize, (double) Phi, LagFeas); + for(i = 1; i <= get_Lrows(lp); i++) + report(lp, IMPORTANT, "%3d SubGrad %10g lambda %10g\n", + i, (double) SubGrad[i], (double) lp->lambda[i]); + if(lp->sum < 20) + print_lp(lp); + } + + /* Solve the Lagrangean relaxation, handle failures and compute + the Lagrangean objective value, if successful */ + i = spx_solve(lp); + if(lp->spx_status == UNBOUNDED) { + if(lp->lag_trace) { + report(lp, NORMAL, "lag_solve: Unbounded solution encountered with this OF:\n"); + for(i = 1; i <= lp->columns; i++) + report(lp, NORMAL, RESULTVALUEMASK " ", (double) ModObj[i]); + } + goto Leave; + } + else if((lp->spx_status == NUMFAILURE) || (lp->spx_status == PROCFAIL) || + (lp->spx_status == USERABORT) || (lp->spx_status == TIMEOUT) || + (lp->spx_status == INFEASIBLE)) { + lp->lag_status = lp->spx_status; + } + + /* Compare optimal bases and contract if we have basis stationarity */ +#ifdef LagBasisContract + same_basis = compare_basis(lp); + if(LagFeas && + !same_basis) { + pop_basis(lp, FALSE); + push_basis(lp, NULL, NULL, NULL); + Phi *= DEF_LAGCONTRACT; + } + if(lp->lag_trace) { + report(lp, DETAILED, "lag_solve: Simplex status code %d, same basis %s\n", + lp->spx_status, my_boolstr(same_basis)); + print_solution(lp, 1); + } +#endif + } + + /* Transfer solution values */ + if(AnyFeas) { + lp->lag_bound = my_chsign(is_maxim(lp), Zbest); + for(i = 0; i <= lp->sum; i++) + lp->solution[i] = BestFeasSol[i]; + transfer_solution(lp, TRUE); + if(!is_maxim(lp)) + for(i = 1; i <= get_Lrows(lp); i++) + lp->lambda[i] = my_flipsign(lp->lambda[i]); + } + + /* Do standard postprocessing */ +Leave: + + /* Set status variables and report */ + if(citer >= num_iter) { + if(AnyFeas) + lp->lag_status = FEASFOUND; + else + lp->lag_status = NOFEASFOUND; + } + else + lp->lag_status = lp->spx_status; + if(lp->lag_status == OPTIMAL) { + report(lp, NORMAL, "\nLagrangean convergence achieved in %d iterations\n", citer); + i = check_solution(lp, lp->columns, + lp->best_solution, lp->orig_upbo, lp->orig_lowbo, lp->epssolution); + } + else { + report(lp, NORMAL, "\nUnsatisfactory convergence achieved over %d Lagrangean iterations.\n", + citer); + if(AnyFeas) + report(lp, NORMAL, "The best feasible Lagrangean objective function value was %g\n", + lp->best_solution[0]); + } + + /* Restore the original objective function */ +#ifdef DirectOverrideOF + set_OF_override(lp, NULL); +#else + for(i = 1; i <= lp->columns; i++) + set_mat(lp, 0, i, OrigObj[i]); +#endif + + /* ... and then free memory */ + FREE(BestFeasSol); + FREE(SubGrad); + FREE(OrigObj); + FREE(ModObj); + pop_basis(lp, FALSE); + + lp->do_presolve = oldpresolve; + + return( lp->lag_status ); +} + +STATIC int spx_solve(lprec *lp) +{ + int status; + MYBOOL iprocessed; + + lp->total_iter = 0; + lp->total_bswap = 0; + lp->perturb_count = 0; + lp->bb_maxlevel = 1; + lp->bb_totalnodes = 0; + lp->bb_improvements = 0; + lp->bb_strongbranches= 0; + lp->is_strongbranch = FALSE; + lp->bb_level = 0; + lp->bb_solutionlevel = 0; + lp->best_solution[0] = my_chsign(is_maxim(lp), lp->infinite); + if(lp->invB != NULL) + lp->bfp_restart(lp); + + lp->spx_status = presolve(lp); + if(lp->spx_status == PRESOLVED) { + status = lp->spx_status; + goto Reconstruct; + } + else if(lp->spx_status != RUNNING) + goto Leave; + + iprocessed = !lp->wasPreprocessed; + if(!preprocess(lp) || userabort(lp, -1)) + goto Leave; + + if(mat_validate(lp->matA)) { + + /* Do standard initializations */ + lp->solutioncount = 0; + lp->real_solution = lp->infinite; + set_action(&lp->spx_action, ACTION_REBASE | ACTION_REINVERT); + lp->bb_break = FALSE; + + /* Do the call to the real underlying solver (note that + run_BB is replaceable with any compatible MIP solver) */ + status = run_BB(lp); + + /* Restore modified problem */ + if(iprocessed) + postprocess(lp); + + /* Restore data related to presolve (mainly a placeholder as of v5.1) */ +Reconstruct: + if(!postsolve(lp, status)) + report(lp, SEVERE, "spx_solve: Failure during postsolve.\n"); + + goto Leave; + } + + /* If we get here, mat_validate(lp) failed. */ + if(lp->bb_trace || lp->spx_trace) + report(lp, CRITICAL, "spx_solve: The current LP seems to be invalid\n"); + lp->spx_status = NUMFAILURE; + +Leave: + lp->timeend = timeNow(); + + if((lp->lag_status != RUNNING) && (lp->invB != NULL)) { + int itemp; + LPSREAL test; + + itemp = lp->bfp_nonzeros(lp, TRUE); + test = 100; + if(lp->total_iter > 0) + test *= (LPSREAL) lp->total_bswap/lp->total_iter; + report(lp, NORMAL, "\n "); + report(lp, NORMAL, "MEMO: lp_solve version %d.%d.%d.%d for %d bit OS, with %d bit LPSREAL variables.\n", + MAJORVERSION, MINORVERSION, RELEASE, BUILD, 8*sizeof(void *), 8*sizeof(LPSREAL)); + report(lp, NORMAL, " In the total iteration count %.0f, %.0f (%.1f%%) were bound flips.\n", + (double) lp->total_iter, (double) lp->total_bswap, test); + report(lp, NORMAL, " There were %d refactorizations, %d triggered by time and %d by density.\n", + lp->bfp_refactcount(lp, BFP_STAT_REFACT_TOTAL), + lp->bfp_refactcount(lp, BFP_STAT_REFACT_TIMED), + lp->bfp_refactcount(lp, BFP_STAT_REFACT_DENSE)); + report(lp, NORMAL, " ... on average %.1f major pivots per refactorization.\n", + get_refactfrequency(lp, TRUE)); + report(lp, NORMAL, " The largest [%s] fact(B) had %d NZ entries, %.1fx largest basis.\n", + lp->bfp_name(), itemp, lp->bfp_efficiency(lp)); + if(lp->perturb_count > 0) + report(lp, NORMAL, " The bounds were relaxed via perturbations %d times.\n", + lp->perturb_count); + if(MIP_count(lp) > 0) { + if(lp->bb_solutionlevel > 0) + report(lp, NORMAL, " The maximum B&B level was %d, %.1fx MIP order, %d at the optimal solution.\n", + lp->bb_maxlevel, (double) lp->bb_maxlevel / (MIP_count(lp)+lp->int_vars), lp->bb_solutionlevel); + else + report(lp, NORMAL, " The maximum B&B level was %d, %.1fx MIP order, with %.0f nodes explored.\n", + lp->bb_maxlevel, (double) lp->bb_maxlevel / (MIP_count(lp)+lp->int_vars), (double) get_total_nodes(lp)); + if(GUB_count(lp) > 0) + report(lp, NORMAL, " %d general upper-bounded (GUB) structures were employed during B&B.\n", + GUB_count(lp)); + } + report(lp, NORMAL, " The constraint matrix inf-norm is %g, with a dynamic range of %g.\n", + lp->matA->infnorm, lp->matA->dynrange); + report(lp, NORMAL, " Time to load data was %.3f seconds, presolve used %.3f seconds,\n", + lp->timestart-lp->timecreate, lp->timepresolved-lp->timestart); + report(lp, NORMAL, " ... %.3f seconds in simplex solver, in total %.3f seconds.\n", + lp->timeend-lp->timepresolved, lp->timeend-lp->timecreate); + } + return( lp->spx_status ); + +} /* spx_solve */ + +int lin_solve(lprec *lp) +{ + int status = NOTRUN; + + /* Don't do anything in case of an empty model */ + lp->lag_status = NOTRUN; + /* if(get_nonzeros(lp) == 0) { */ + if(lp->columns == 0) { + default_basis(lp); + lp->spx_status = NOTRUN; + return( /* OPTIMAL */ lp->spx_status); + } + + /* Otherwise reset selected arrays before solving */ + unset_OF_p1extra(lp); + free_duals(lp); + FREE(lp->drow); + FREE(lp->nzdrow); + if(lp->bb_cuttype != NULL) + freecuts_BB(lp); + + /* Reset/initialize timers */ + lp->timestart = timeNow(); + lp->timeheuristic = 0; + lp->timepresolved = 0; + lp->timeend = 0; + + /* Do heuristics ahead of solving the model */ + if(heuristics(lp, AUTOMATIC) != RUNNING) + return( INFEASIBLE ); + + /* Solve the full, prepared model */ + status = spx_solve(lp); + if((get_Lrows(lp) > 0) && (lp->lag_status == NOTRUN)) { + if(status == OPTIMAL) + status = lag_solve(lp, lp->bb_heuristicOF, DEF_LAGMAXITERATIONS); + else + report(lp, IMPORTANT, "\nCannot do Lagrangean optimization since root model was not solved.\n"); + } + + /* Reset heuristic in preparation for next run (if any) */ + lp->bb_heuristicOF = my_chsign(is_maxim(lp), lp->infinite); + + /* Check that correct status code is returned */ +/* + peno 26.12.07 + status was not set to SUBOPTIMAL, only lp->spx_status + Bug occured by a change in 5.5.0.10 when && (lp->bb_totalnodes > 0) was added + added status = + See UnitTest3 +*/ +/* + peno 12.01.08 + If an integer solution is found with the same objective value as the relaxed solution then + searching is stopped. This by setting lp->bb_break. However this resulted in a report of SUBOPTIMAL + solution. For this, && !bb_better(lp, OF_DUALLIMIT, OF_TEST_BE) is added in the test. + See UnitTest20 +*/ + if((lp->spx_status == OPTIMAL) && (lp->bb_totalnodes > 0)) { + if((lp->bb_break && !bb_better(lp, OF_DUALLIMIT, OF_TEST_BE)) /* || + ISMASKSET(lp->trace, TRACE_NOBBLIMIT) */) + status = lp->spx_status = SUBOPTIMAL; + } + + return( status ); +} diff --git a/src/external/lpsolve/build/lp_solve/lp_utils.c b/src/external/lpsolve/build/lp_solve/lp_utils.c new file mode 100644 index 00000000..46f3c067 --- /dev/null +++ b/src/external/lpsolve/build/lp_solve/lp_utils.c @@ -0,0 +1,1060 @@ +#define CODE_lp_utils + +#include +#include "commonlib.h" +#include "lp_lib.h" +#include "lp_utils.h" +#include +#include +#include "lp_bit.h" +#include "R_ext/Random.h" + +#ifdef FORTIFY +# include "lp_fortify.h" +#endif + + +/* + Miscellaneous utilities as implemented for lp_solve v5.0+ + ---------------------------------------------------------------------------------- + Author: Kjell Eikland + Contact: kjell.eikland@broadpark.no + License terms: GLPL. + + Requires: lp_utils.h, lp_lib.h + + Release notes: + v1.0.0 1 January 2003 Memory allocation, sorting, searching, time and + doubly linked list functions. + v1.1.0 15 May 2004 Added vector packing functionality + v1.2.0 10 January 2005 Added vector pushing/popping functionality + Modified return values and fixed problem in + linked list functions. + + ---------------------------------------------------------------------------------- +*/ + +STATIC MYBOOL allocCHAR(lprec *lp, char **ptr, int size, MYBOOL clear) +{ + if(clear == TRUE) + *ptr = (char *) calloc(size, sizeof(**ptr)); + else if(clear & AUTOMATIC) { + *ptr = (char *) realloc(*ptr, size * sizeof(**ptr)); + if(clear & TRUE) + MEMCLEAR(*ptr, size); + } + else + *ptr = (char *) malloc(size * sizeof(**ptr)); + if(((*ptr) == NULL) && (size > 0)) { + lp->report(lp, CRITICAL, "alloc of %d 'char' failed\n", size); + lp->spx_status = NOMEMORY; + return( FALSE ); + } + else + return( TRUE ); +} +STATIC MYBOOL allocMYBOOL(lprec *lp, MYBOOL **ptr, int size, MYBOOL clear) +{ + if(clear == TRUE) + *ptr = (MYBOOL *) calloc(size, sizeof(**ptr)); + else if(clear & AUTOMATIC) { + *ptr = (MYBOOL *) realloc(*ptr, size * sizeof(**ptr)); + if(clear & TRUE) + MEMCLEAR(*ptr, size); + } + else + *ptr = (MYBOOL *) malloc(size * sizeof(**ptr)); + if(((*ptr) == NULL) && (size > 0)) { + lp->report(lp, CRITICAL, "alloc of %d 'MYBOOL' failed\n", size); + lp->spx_status = NOMEMORY; + return( FALSE ); + } + else + return( TRUE ); +} +STATIC MYBOOL allocINT(lprec *lp, int **ptr, int size, MYBOOL clear) +{ + if(clear == TRUE) + *ptr = (int *) calloc(size, sizeof(**ptr)); + else if(clear & AUTOMATIC) { + *ptr = (int *) realloc(*ptr, size * sizeof(**ptr)); + if(clear & TRUE) + MEMCLEAR(*ptr, size); + } + else + *ptr = (int *) malloc(size * sizeof(**ptr)); + if(((*ptr) == NULL) && (size > 0)) { + lp->report(lp, CRITICAL, "alloc of %d 'INT' failed\n", size); + lp->spx_status = NOMEMORY; + return( FALSE ); + } + else + return( TRUE ); +} +STATIC MYBOOL allocREAL(lprec *lp, LPSREAL **ptr, int size, MYBOOL clear) +{ + if(clear == TRUE) + *ptr = (LPSREAL *) calloc(size, sizeof(**ptr)); + else if(clear & AUTOMATIC) { + *ptr = (LPSREAL *) realloc(*ptr, size * sizeof(**ptr)); + if(clear & TRUE) + MEMCLEAR(*ptr, size); + } + else + *ptr = (LPSREAL *) malloc(size * sizeof(**ptr)); + if(((*ptr) == NULL) && (size > 0)) { + lp->report(lp, CRITICAL, "alloc of %d 'LPSREAL' failed\n", size); + lp->spx_status = NOMEMORY; + return( FALSE ); + } + else + return( TRUE ); +} +STATIC MYBOOL allocLREAL(lprec *lp, LREAL **ptr, int size, MYBOOL clear) +{ + if(clear == TRUE) + *ptr = (LREAL *) calloc(size, sizeof(**ptr)); + else if(clear & AUTOMATIC) { + *ptr = (LREAL *) realloc(*ptr, size * sizeof(**ptr)); + if(clear & TRUE) + MEMCLEAR(*ptr, size); + } + else + *ptr = (LREAL *) malloc(size * sizeof(**ptr)); + if(((*ptr) == NULL) && (size > 0)) { + lp->report(lp, CRITICAL, "alloc of %d 'LREAL' failed\n", size); + lp->spx_status = NOMEMORY; + return( FALSE ); + } + else + return( TRUE ); +} + +STATIC MYBOOL allocFREE(lprec *lp, void **ptr) +{ + MYBOOL status = TRUE; + + if(*ptr != NULL) { + free(*ptr); + *ptr = NULL; + } + else { + status = FALSE; + lp->report(lp, CRITICAL, "free() failed on line %d of file %s\n", + __LINE__, __FILE__); + } + return(status); +} + +/* Do hoops to provide debugging info with FORTIFY */ +#undef CODE_lp_utils +#include "lp_utils.h" +/* alloc-routines should always be before this line! */ + +int comp_bits(MYBOOL *bitarray1, MYBOOL *bitarray2, int items) +{ + int i, items4, left = 0, right = 0; + MYBOOL comp1; + unsigned long comp4; + + /* Convert items count to 8-bit representation, if necessary */ + if(items > 0) { + i = items % 8; + items /= 8; + if(i) + items++; + } + else + items = -items; + + /* Do the wide unsigned integer part for speed */ + items4 = items / sizeof(unsigned long); + i = 0; + while(i < items4) { + comp4 = ((unsigned long *) bitarray1)[i] & ~((unsigned long *) bitarray2)[i]; + if(comp4) + left++; + comp4 = ((unsigned long *) bitarray2)[i] & ~((unsigned long *) bitarray1)[i]; + if(comp4) + right++; + i++; + } + + /* Do the trailing slow narrow unsigned integer part */ + i *= sizeof(unsigned long); + i++; + while(i < items) { + comp1 = bitarray1[i] & ~bitarray2[i]; + if(comp1) + left++; + comp1 = bitarray2[i] & ~bitarray1[i]; + if(comp1) + right++; + i++; + } + + /* Determine set comparison outcomes */ + if((left > 0) && (right == 0)) /* array1 is a superset of array2 */ + i = 1; + else if((left == 0) && (right > 0)) /* array2 is a superset of array1 */ + i = -1; + else if((left == 0) && (right == 0)) /* array1 and array2 are identical */ + i = 0; + else + i = -2; /* indicate all other outcomes */ + return( i ); +} + + +STATIC workarraysrec *mempool_create(lprec *lp) +{ + workarraysrec *temp; + temp = (workarraysrec *) calloc(1, sizeof(workarraysrec)); + temp->lp = lp; + return( temp ); +} +STATIC char *mempool_obtainVector(workarraysrec *mempool, int count, int unitsize) +{ + char *newmem = NULL; + MYBOOL *bnewmem = NULL; + int *inewmem = NULL, size, i, ib, ie, memMargin = 0; + LPSREAL *rnewmem = NULL; + + /* First find the iso-sized window (binary search) */ + size = count*unitsize; + memMargin += size; + ib = 0; + ie = mempool->count-1; + while(ie >= ib) { + i = (ib+ie) / 2; + if(abs(mempool->vectorsize[i]) > memMargin) + ie = i-1; + else if(abs(mempool->vectorsize[i]) < size) + ib = i+1; + else { + /* Find the beginning of the exact-sized array group */ + do { + ib = i; + i--; + } while((i >= 0) && (abs(mempool->vectorsize[i]) >= size)); + break; + } + } + + /* Check if we have a preallocated unused array of sufficient size */ + ie = mempool->count-1; + for(i = ib; i <= ie; i++) + if(mempool->vectorsize[i] < 0) + break; + + /* Obtain and activate existing, unused vector if we are permitted */ + if(i <= ie) { +#ifdef Paranoia + if((mempool->vectorsize[i] > 0) || (abs(mempool->vectorsize[i]) < size)) { + lprec *lp = mempool->lp; + lp->report(lp, SEVERE, "mempool_obtainVector: Invalid %s existing vector selected\n", + (ie < 0 ? "too small" : "occupied")); + lp->spx_status = NOMEMORY; + lp->bb_break = TRUE; + return( newmem ); + } +#endif + newmem = mempool->vectorarray[i]; + mempool->vectorsize[i] *= -1; + } + + /* Otherwise allocate a new vector */ + else if(unitsize == sizeof(MYBOOL)) { + allocMYBOOL(mempool->lp, &bnewmem, count, TRUE); + newmem = (char *) bnewmem; + } + else if(unitsize == sizeof(int)) { + allocINT(mempool->lp, &inewmem, count, TRUE); + newmem = (char *) inewmem; + } + else if(unitsize == sizeof(LPSREAL)) { + allocREAL(mempool->lp, &rnewmem, count, TRUE); + newmem = (char *) rnewmem; + } + + /* Insert into master array if necessary (maintain sort by ascending size) */ + if((i > ie) && (newmem != NULL)) { + mempool->count++; + if(mempool->count >= mempool->size) { + mempool->size += 10; + mempool->vectorarray = (char **) realloc(mempool->vectorarray, + sizeof(*(mempool->vectorarray))*mempool->size); + mempool->vectorsize = (int *) realloc(mempool->vectorsize, + sizeof(*(mempool->vectorsize))*mempool->size); + } + ie++; + i = ie + 1; + if(i < mempool->count) { + MEMMOVE(mempool->vectorarray+i, mempool->vectorarray+ie, 1); + MEMMOVE(mempool->vectorsize+i, mempool->vectorsize+ie, 1); + } + mempool->vectorarray[ie] = newmem; + mempool->vectorsize[ie] = size; + } + + return( newmem ); +} +STATIC MYBOOL mempool_releaseVector(workarraysrec *mempool, char *memvector, MYBOOL forcefree) +{ + int i; + +#if 0 + forcefree = TRUE; +#endif + + for(i = mempool->count-1; i >= 0; i--) + if(mempool->vectorarray[i] == memvector) + break; + + if((i < 0) || (mempool->vectorsize[i] < 0)) + return( FALSE ); + + if(forcefree) { + FREE(mempool->vectorarray[i]); + mempool->count--; + for(; i < mempool->count; i++) + mempool->vectorarray[i] = mempool->vectorarray[i+1]; + } + else + mempool->vectorsize[i] *= -1; + + return( TRUE ); +} +STATIC MYBOOL mempool_free(workarraysrec **mempool) +{ + int i = (*mempool)->count; + + while(i > 0) { + i--; + if((*mempool)->vectorsize[i] < 0) /* Handle unused vectors */ + (*mempool)->vectorsize[i] *= -1; + mempool_releaseVector(*mempool, (*mempool)->vectorarray[i], TRUE); + } + FREE((*mempool)->vectorarray); + FREE((*mempool)->vectorsize); + FREE(*mempool); + return( TRUE ); +} + +LPSREAL *cloneREAL(lprec *lp, LPSREAL *origlist, int size) +{ + LPSREAL *newlist; + + size += 1; + if(allocREAL(lp, &newlist, size, FALSE)) + MEMCOPY(newlist, origlist, size); + return(newlist); +} +MYBOOL *cloneMYBOOL(lprec *lp, MYBOOL *origlist, int size) +{ + MYBOOL *newlist; + + size += 1; + if(allocMYBOOL(lp, &newlist, size, FALSE)) + MEMCOPY(newlist, origlist, size); + return(newlist); +} +int *cloneINT(lprec *lp, int *origlist, int size) +{ + int *newlist; + + size += 1; + if(allocINT(lp, &newlist, size, FALSE)) + MEMCOPY(newlist, origlist, size); + return(newlist); +} + +STATIC void roundVector(LREAL *myvector, int endpos, LREAL roundzero) +{ + if(roundzero > 0) + for(; endpos >= 0; myvector++, endpos--) + if(fabs(*myvector) < roundzero) + *myvector = 0; +} + +STATIC LPSREAL normalizeVector(LPSREAL *myvector, int endpos) +/* Scale the ingoing vector so that its norm is unit, and return the original length */ +{ + int i; + LPSREAL SSQ; + + /* Cumulate squares */ + SSQ = 0; + for(i = 0; i <= endpos; myvector++, i++) + SSQ += (*myvector) * (*myvector); + + /* Normalize */ + SSQ = sqrt(SSQ); + if(SSQ > 0) + for(myvector--; i > 0; myvector--, i--) + (*myvector) /= SSQ; + + return( SSQ ); +} + +/* ---------------------------------------------------------------------------------- */ +/* Other general utilities */ +/* ---------------------------------------------------------------------------------- */ + +STATIC void swapINT(int *item1, int *item2) +{ + int hold = *item1; + *item1 = *item2; + *item2 = hold; +} + +STATIC void swapREAL(LPSREAL *item1, LPSREAL *item2) +{ + LPSREAL hold = *item1; + *item1 = *item2; + *item2 = hold; +} + +STATIC void swapPTR(void **item1, void **item2) +{ + void *hold; + hold = *item1; + *item1 = *item2; + *item2 = hold; +} + + +STATIC LPSREAL restoreINT(LPSREAL valREAL, LPSREAL epsilon) +{ + LPSREAL valINT, fracREAL, fracABS; + + fracREAL = modf(valREAL, &valINT); + fracABS = fabs(fracREAL); + if(fracABS < epsilon) + return(valINT); + else if(fracABS > 1-epsilon) { + if(fracREAL < 0) + return(valINT-1); + else + return(valINT+1); + } + return(valREAL); +} + +STATIC LPSREAL roundToPrecision(LPSREAL value, LPSREAL precision) +{ +#if 1 + LPSREAL vmod; + int vexp2, vexp10; + LLONG sign; + + if(precision == 0) + return(value); + + sign = my_sign(value); + value = fabs(value); + + /* Round to integer if possible */ + if(value < precision) + return( 0 ); + else if(value == floor(value)) + return( value*sign ); + else if((value < (LPSREAL) MAXINT64) && + (modf((LPSREAL) (value+precision), &vmod) < precision)) { + /* sign *= (LLONG) (value+precision); */ + sign *= (LLONG) (value+0.5); + return( (LPSREAL) sign ); + } + + /* Optionally round with base 2 representation for additional precision */ +#define roundPrecisionBase2 +#ifdef roundPrecisionBase2 + value = frexp(value, &vexp2); +#else + vexp2 = 0; +#endif + + /* Convert to desired precision */ + vexp10 = (int) log10(value); + precision *= pow(10.0, vexp10); + modf(value/precision+0.5, &value); + value *= sign*precision; + + /* Restore base 10 representation if base 2 was active */ + if(vexp2 != 0) + value = ldexp(value, vexp2); +#endif + + return( value ); +} + + +/* ---------------------------------------------------------------------------------- */ +/* Searching function specialized for lp_solve */ +/* ---------------------------------------------------------------------------------- */ +STATIC int searchFor(int target, int *attributes, int size, int offset, MYBOOL absolute) +{ + int beginPos, endPos; + int newPos, match; + + /* Set starting and ending index offsets */ + beginPos = offset; + endPos = beginPos + size - 1; + + /* Do binary search logic based on a sorted attribute vector */ + newPos = (beginPos + endPos) / 2; + match = attributes[newPos]; + if(absolute) + match = abs(match); + while(endPos - beginPos > LINEARSEARCH) { + if(match < target) { + beginPos = newPos + 1; + newPos = (beginPos + endPos) / 2; + match = attributes[newPos]; + if(absolute) + match = abs(match); + } + else if(match > target) { + endPos = newPos - 1; + newPos = (beginPos + endPos) / 2; + match = attributes[newPos]; + if(absolute) + match = abs(match); + } + else { + beginPos = newPos; + endPos = newPos; + } + } + + /* Do linear (unsorted) search logic */ + if(endPos - beginPos <= LINEARSEARCH) { + match = attributes[beginPos]; + if(absolute) + match = abs(match); + while((beginPos < endPos) && (match != target)) { + beginPos++; + match = attributes[beginPos]; + if(absolute) + match = abs(match); + } + if(match == target) + endPos = beginPos; + } + + /* Return the index if a match was found, or signal failure with a -1 */ + if((beginPos == endPos) && (match == target)) + return(beginPos); + else + return(-1); + +} + + +/* ---------------------------------------------------------------------------------- */ +/* Other supporting math routines */ +/* ---------------------------------------------------------------------------------- */ + +STATIC MYBOOL isINT(lprec *lp, LPSREAL value) +{ +#if 0 + return( (MYBOOL) (modf(fabs(value)+lp->epsint, &value) < 2*lp->epsint) ); +#elif 1 + value = fabs(value)+lp->epsint; + return( (MYBOOL) (my_reldiff(value, floor(value)) < 2*lp->epsint) ); +#elif 0 + LPSREAL hold; + value = fabs(value); + hold = pow(10, MIN(-2, log10(value+1)+log10(lp->epsint))); + return( (MYBOOL) (modf(value+lp->epsint, &value) < 2*hold) ); +#elif 0 + value -= (LPSREAL)floor(value); + return( (MYBOOL) ((value < lp->epsint) || (value > (1 - lp->epsint)) ); +#else + value += lp->epsint; + return( (MYBOOL) (fabs(value-floor(value)) < 2*lp->epsint) ); +#endif +} + +STATIC MYBOOL isOrigFixed(lprec *lp, int varno) +{ + return( (MYBOOL) (lp->orig_upbo[varno] - lp->orig_lowbo[varno] <= lp->epsmachine) ); +} + +STATIC void chsign_bounds(LPSREAL *lobound, LPSREAL *upbound) +{ + LPSREAL temp; + temp = *upbound; + if(fabs(*lobound) > 0) + *upbound = -(*lobound); + else + *upbound = 0; + if(fabs(temp) > 0) + *lobound = -temp; + else + *lobound = 0; +} + + +/* ---------------------------------------------------------------------------------- */ +/* Define randomization routine */ +/* ---------------------------------------------------------------------------------- */ +STATIC LPSREAL rand_uniform(lprec *lp, LPSREAL range) +{ + static MYBOOL randomized = FALSE; /* static ok here for reentrancy/multithreading */ + + if(!randomized) { + randomized = TRUE; + } + GetRNGstate(); + range *= (LPSREAL) unif_rand(); + PutRNGstate(); + return( range ); +} + + +/* ---------------------------------------------------------------------------------- */ +/* Define routines for doubly linked lists of integers */ +/* ---------------------------------------------------------------------------------- */ + +STATIC int createLink(int size, LLrec **linkmap, MYBOOL *usedpos) +{ + int i, j; + MYBOOL reverse; + + *linkmap = (LLrec *) calloc(1, sizeof(**linkmap)); + if(*linkmap == NULL) + return( -1 ); + + reverse = (MYBOOL) (size < 0); + if(reverse) + size = -size; + (*linkmap)->map = (int *) calloc(2*(size + 1), sizeof(int)); + if((*linkmap)->map == NULL) + return( -1 ); + + (*linkmap)->size = size; + j = 0; + if(usedpos == NULL) + (*linkmap)->map[0] = 0; + else { + for(i = 1; i <= size; i++) + if(!usedpos[i] ^ reverse) { + /* Set the forward link */ + (*linkmap)->map[j] = i; + /* Set the backward link */ + (*linkmap)->map[size+i] = j; + j = i; + if((*linkmap)->count == 0) + (*linkmap)->firstitem = i; + (*linkmap)->lastitem = i; + (*linkmap)->count++; + } + } + (*linkmap)->map[2*size+1] = j; + + return( (*linkmap)->count ); +} + +STATIC MYBOOL freeLink(LLrec **linkmap) +{ + MYBOOL status = TRUE; + + if((linkmap == NULL) || (*linkmap == NULL)) + status = FALSE; + else { + if((*linkmap)->map != NULL) + free((*linkmap)->map); + free(*linkmap); + *linkmap = NULL; + } + return( status ); +} + +STATIC int sizeLink(LLrec *linkmap) +{ + return(linkmap->size); +} + +STATIC MYBOOL isActiveLink(LLrec *linkmap, int itemnr) +{ + if((linkmap->map[itemnr] != 0) || + (linkmap->map[linkmap->size+itemnr] != 0) || + (linkmap->map[0] == itemnr)) + return( TRUE ); + else + return( FALSE ); +} + +STATIC int countActiveLink(LLrec *linkmap) +{ + return(linkmap->count); +} + +STATIC int countInactiveLink(LLrec *linkmap) +{ + return(linkmap->size-linkmap->count); +} + +STATIC int firstActiveLink(LLrec *linkmap) +{ + return(linkmap->map[0]); +} + +STATIC int lastActiveLink(LLrec *linkmap) +{ + return(linkmap->map[2*linkmap->size+1]); +} + +STATIC MYBOOL appendLink(LLrec *linkmap, int newitem) +{ + int k, size; + size = linkmap->size; + + if(linkmap->map[newitem] != 0) + return( FALSE ); + + /* Link forward */ + k = linkmap->map[2*size+1]; + linkmap->map[k] = newitem; + + /* Link backward */ + linkmap->map[size+newitem] = k; + linkmap->map[2*size+1] = newitem; + + /* Update count and return */ + if(linkmap->count == 0) + linkmap->firstitem = newitem; + linkmap->lastitem = newitem; + linkmap->count++; + + return( TRUE ); +} + +STATIC MYBOOL insertLink(LLrec *linkmap, int afteritem, int newitem) +{ + int k, size; + + size = linkmap->size; + + if(linkmap->map[newitem] != 0) + return( FALSE ); + + if(afteritem == linkmap->map[2*size+1]) + appendLink(linkmap, newitem); + else { + /* Link forward */ + k = linkmap->map[afteritem]; + linkmap->map[afteritem] = newitem; + linkmap->map[newitem] = k; + + /* Link backward */ + linkmap->map[size+k] = newitem; + linkmap->map[size+newitem] = afteritem; + + /* Update count */ + SETMIN(linkmap->firstitem, newitem); + SETMAX(linkmap->lastitem, newitem); + linkmap->count++; + } + + return( TRUE ); +} + +STATIC MYBOOL setLink(LLrec *linkmap, int newitem) +{ + if(isActiveLink(linkmap, newitem)) + return( FALSE ); + else + return( insertLink(linkmap, prevActiveLink(linkmap, newitem), newitem) ); +} + +STATIC MYBOOL fillLink(LLrec *linkmap) +{ + int k, size; + size = linkmap->size; + + k = firstActiveLink(linkmap); + if(k != 0) + return( FALSE ); + for(k = 1; k <= size; k++) + appendLink(linkmap, k); + return( TRUE ); +} + +STATIC int nextActiveLink(LLrec *linkmap, int backitemnr) +{ + if((backitemnr < 0) || (backitemnr > linkmap->size)) + return( -1 ); + else { + if(backitemnr < linkmap->lastitem) + while((backitemnr > linkmap->firstitem) && (linkmap->map[backitemnr] == 0)) + backitemnr--; + return(linkmap->map[backitemnr]); + } +} + +STATIC int prevActiveLink(LLrec *linkmap, int forwitemnr) +{ + if((forwitemnr <= 0) || (forwitemnr > linkmap->size+1)) + return( -1 ); + else { + if(forwitemnr > linkmap->lastitem) + return( linkmap->lastitem); + if(forwitemnr > linkmap->firstitem) { + forwitemnr += linkmap->size; + while((forwitemnr < linkmap->size + linkmap->lastitem) && (linkmap->map[forwitemnr] == 0)) + forwitemnr++; + } + else + forwitemnr += linkmap->size; + return(linkmap->map[forwitemnr]); + } +} + +STATIC int firstInactiveLink(LLrec *linkmap) +{ + int i, n; + + if(countInactiveLink(linkmap) == 0) + return( 0 ); + n = 1; + i = firstActiveLink(linkmap); + while(i == n) { + n++; + i = nextActiveLink(linkmap, i); + } + return( n ); +} + +STATIC int lastInactiveLink(LLrec *linkmap) +{ + int i, n; + + if(countInactiveLink(linkmap) == 0) + return( 0 ); + n = linkmap->size; + i = lastActiveLink(linkmap); + while(i == n) { + n--; + i = prevActiveLink(linkmap, i); + } + return( n ); +} + +STATIC int nextInactiveLink(LLrec *linkmap, int backitemnr) +{ + do { + backitemnr++; + } while((backitemnr <= linkmap->size) && isActiveLink(linkmap, backitemnr)); + if(backitemnr <= linkmap->size) + return( backitemnr ); + else + return( 0 ); +} + +STATIC int prevInactiveLink(LLrec *linkmap, int forwitemnr) +{ + return( 0 ); +} + +STATIC int removeLink(LLrec *linkmap, int itemnr) +{ + int size, prevnr, nextnr = -1; + + size = linkmap->size; + if((itemnr <= 0) || (itemnr > size)) + return( nextnr ); +#ifdef Paranoia + if(!isActiveLink(linkmap, itemnr)) + return( nextnr ); +#endif + + /* Get link data at the specified position */ + nextnr = linkmap->map[itemnr]; + prevnr = linkmap->map[size+itemnr]; + if(itemnr == linkmap->firstitem) + linkmap->firstitem = nextnr; + if(itemnr == linkmap->lastitem) + linkmap->lastitem = prevnr; + + /* Update forward link */ + linkmap->map[prevnr] = linkmap->map[itemnr]; + linkmap->map[itemnr] = 0; + + /* Update backward link */ + if(nextnr == 0) + linkmap->map[2*size+1] = prevnr; + else + linkmap->map[size+nextnr] = linkmap->map[size+itemnr]; + linkmap->map[size+itemnr] = 0; + + /* Decrement the count */ + linkmap->count--; + + /* Return the next active item */ + return( nextnr ); +} + +STATIC LLrec *cloneLink(LLrec *sourcemap, int newsize, MYBOOL freesource) +{ + LLrec *testmap = NULL; + + if((newsize == sourcemap->size) || (newsize <= 0)) { + createLink(sourcemap->size, &testmap, NULL); + MEMCOPY(testmap->map, sourcemap->map, 2*(sourcemap->size+1)); + testmap->firstitem = sourcemap->firstitem; + testmap->lastitem = sourcemap->lastitem; + testmap->size = sourcemap->size; + testmap->count = sourcemap->count; + } + else { + int j; + + createLink(newsize, &testmap, NULL); + for(j = firstActiveLink(sourcemap); (j != 0) && (j <= newsize); j = nextActiveLink(sourcemap, j)) + appendLink(testmap, j); + } + if(freesource) + freeLink(&sourcemap); + + return(testmap); +} + +STATIC int compareLink(LLrec *linkmap1, LLrec *linkmap2) +{ + int test; + + test = memcmp(&linkmap1->size, &linkmap2->size, sizeof(int)); + if(test == 0) + test = memcmp(&linkmap1->count, &linkmap2->count, sizeof(int)); + if(test == 0) + test = memcmp(linkmap1->map, linkmap2->map, sizeof(int)*(2*linkmap1->size+1)); + + return( test ); +} + +STATIC MYBOOL verifyLink(LLrec *linkmap, int itemnr, MYBOOL doappend) +{ + LLrec *testmap; + + testmap = cloneLink(linkmap, -1, FALSE); + if(doappend) { + appendLink(testmap, itemnr); + removeLink(testmap, itemnr); + } + else { + int previtem = prevActiveLink(testmap, itemnr); + removeLink(testmap, itemnr); + insertLink(testmap, previtem, itemnr); + } + itemnr = compareLink(linkmap, testmap); + freeLink(&testmap); + return((MYBOOL) (itemnr == 0)); +} + +/* Packed vector routines */ +STATIC PVrec *createPackedVector(int size, LPSREAL *values, int *workvector) +{ + int i, k; + REGISTER LPSREAL ref; + PVrec *newPV = NULL; + MYBOOL localWV = (MYBOOL) (workvector == NULL); + + if(localWV) + workvector = (int *) malloc((size+1)*sizeof(*workvector)); + + /* Tally equal-valued vector entries - also check if it is worth compressing */ + k = 0; + workvector[k] = 1; + ref = values[1]; + for(i = 2; i <= size; i++) { + if(fabs(ref - values[i]) > DEF_EPSMACHINE) { + k++; + workvector[k] = i; + ref = values[i]; + } + } + if(k > size / 2) { + if(localWV) + FREE(workvector); + return( newPV ); + } + + /* Create the packing object, adjust the position vector and allocate value vector */ + newPV = (PVrec *) malloc(sizeof(*newPV)); + k++; /* Adjust from index to to count */ + newPV->count = k; + if(localWV) + newPV->startpos = (int *) realloc(workvector, (k + 1)*sizeof(*(newPV->startpos))); + else { + newPV->startpos = (int *) malloc((k + 1)*sizeof(*(newPV->startpos))); + MEMCOPY(newPV->startpos, workvector, k); + } + newPV->startpos[k] = size + 1; /* Store terminal index + 1 for searching purposes */ + newPV->value = (LPSREAL *) malloc(k*sizeof(*(newPV->value))); + + /* Fill the values vector before returning */ + for(i = 0; i < k; i++) + newPV->value[i] = values[newPV->startpos[i]]; + + return( newPV ); +} + +STATIC MYBOOL unpackPackedVector(PVrec *PV, LPSREAL **target) +{ + int i, ii, k; + REGISTER LPSREAL ref; + + /* Test for validity of the target and create it if necessary */ + if(target == NULL) + return( FALSE ); + if(*target == NULL) + allocREAL(NULL, target, PV->startpos[PV->count], FALSE); + + /* Expand the packed vector into the target */ + i = PV->startpos[0]; + for(k = 0; k < PV->count; k++) { + ii = PV->startpos[k+1]; + ref = PV->value[k]; + while (i < ii) { + (*target)[i] = ref; + i++; + } + } + return( TRUE ); +} + +STATIC LPSREAL getvaluePackedVector(PVrec *PV, int index) +{ + index = searchFor(index, PV->startpos, PV->count, 0, FALSE); + index = abs(index)-1; + if(index >= 0) + return( PV->value[index] ); + else + return( 0 ); +} + +STATIC MYBOOL freePackedVector(PVrec **PV) +{ + if((PV == NULL) || (*PV == NULL)) + return( FALSE ); + + FREE((*PV)->value); + FREE((*PV)->startpos); + FREE(*PV); + return( TRUE ); +} + +STATIC void pushPackedVector(PVrec *PV, PVrec *parent) +{ + PV->parent = parent; +} + +STATIC PVrec *popPackedVector(PVrec *PV) +{ + PVrec *parent = PV->parent; + freePackedVector(&PV); + return( parent ); +} + diff --git a/src/external/lpsolve/build/lp_solve/lp_wlp.c b/src/external/lpsolve/build/lp_solve/lp_wlp.c new file mode 100644 index 00000000..30e2a161 --- /dev/null +++ b/src/external/lpsolve/build/lp_solve/lp_wlp.c @@ -0,0 +1,370 @@ +// Copyright(c) 2016-2018 Kjell Konis . +// Version: 5.5.2.0-17 +// Description: The lpSolveAPI package provides an R interface to 'lp_solve', +// a Mixed Integer Linear Programming (MILP) solver with support for pure +// linear, (mixed) integer/binary, semi-continuous and special ordered sets +// (SOS) models. +// License: LGPL-2 +// Repository: CRAN + +#include +#include +#include + +#include "commonlib.h" +#include "lp_lib.h" +#include "lp_scale.h" +#include "lp_utils.h" +#include "lp_report.h" +#include "lp_wlp.h" + +#ifdef FORTIFY +# include "lp_fortify.h" +#endif + +/* Define buffer-size controled function mapping */ +# if defined _MSC_VER +# define vsnprintf _vsnprintf +# endif + +/* ------------------------------------------------------------------------- */ +/* Input and output of lp format model files for lp_solve */ +/* ------------------------------------------------------------------------- */ + +static int write_data(void *userhandle, write_modeldata_func write_modeldata, char *format, ...) +{ + char buff[DEF_STRBUFSIZE+1]; + va_list ap; + int n; + + va_start(ap, format); + vsnprintf(buff, DEF_STRBUFSIZE, format, ap); + va_end(ap); + n = write_modeldata(userhandle, buff); + return(n); +} + +STATIC void write_lpcomment(void *userhandle, write_modeldata_func write_modeldata, char *string, MYBOOL newlinebefore) +{ + write_data(userhandle, write_modeldata, "%s/* %s */\n", (newlinebefore) ? "\n" : "", string); +} + +STATIC int write_lprow(lprec *lp, int rowno, void *userhandle, write_modeldata_func write_modeldata, int maxlen, int *idx, LPSREAL *val) +{ + int i, j, nchars, elements; + LPSREAL a; + MYBOOL first = TRUE; + char buf[50]; + + elements = get_rowex(lp, rowno, val, idx); + if(write_modeldata != NULL) { + nchars = 0; + for(i = 0; i < elements; i++) { + j = idx[i]; + if(is_splitvar(lp, j)) + continue; + a = val[i]; + if(!first) + nchars += write_data(userhandle, write_modeldata, " "); + else + first = FALSE; + sprintf(buf, "%+.12g", (double)a); + if(strcmp(buf, "-1") == 0) + nchars += write_data(userhandle, write_modeldata, "-"); + else if(strcmp(buf, "+1") == 0) + nchars += write_data(userhandle, write_modeldata, "+"); + else + nchars += write_data(userhandle, write_modeldata, "%s ", buf); + nchars += write_data(userhandle, write_modeldata, "%s", get_col_name(lp, j)); + /* Check if we should add a linefeed */ + if((maxlen > 0) && (nchars >= maxlen) && (i < elements-1)) { + write_data(userhandle, write_modeldata, "%s", "\n"); + nchars = 0; + } + } + } + return(elements); +} + +#if !defined LP_MAXLINELEN +# define LP_MAXLINELEN 100 +#endif + +MYBOOL __WINAPI write_lpex(lprec *lp, void *userhandle, write_modeldata_func write_modeldata) +{ + int i, j, b, + nrows = lp->rows, + ncols = lp->columns, + nchars, maxlen = LP_MAXLINELEN, + *idx; + MYBOOL ok; + LPSREAL a, *val; + char *ptr; + + if(!mat_validate(lp->matA)) { + report(lp, IMPORTANT, "LP_writefile: Could not validate the data matrix.\n"); + return(FALSE); + } + + /* Write name of model */ + ptr = get_lp_name(lp); + if(ptr != NULL) { + if(*ptr) + write_lpcomment(userhandle, write_modeldata, ptr, FALSE); + else + ptr = NULL; + } + + /* Write the objective function */ + write_lpcomment(userhandle, write_modeldata, "Objective function", (MYBOOL) (ptr != NULL)); + if(is_maxim(lp)) + write_data(userhandle, write_modeldata, "max: "); + else + write_data(userhandle, write_modeldata, "min: "); + + allocREAL(lp, &val, 1 + lp->columns, TRUE); + allocINT(lp, &idx, 1 + lp->columns, TRUE); + + write_lprow(lp, 0, userhandle, write_modeldata, maxlen, idx, val); + a = get_rh(lp, 0); + if(a != 0) + write_data(userhandle, write_modeldata, " %+.12g", a); + write_data(userhandle, write_modeldata, ";\n"); + + /* Write constraints */ + if(nrows > 0) + write_lpcomment(userhandle, write_modeldata, "Constraints", TRUE); + for(j = 1; j <= nrows; j++) { + if(((lp->names_used) && (lp->row_name[j] != NULL)) || (write_lprow(lp, j, userhandle, NULL, maxlen, idx, val) == 1)) + ptr = get_row_name(lp, j); + else + ptr = NULL; + if((ptr != NULL) && (*ptr)) + write_data(userhandle, write_modeldata, "%s: ", ptr); + +#ifndef SingleBoundedRowInLP + /* Write the ranged part of the constraint, if specified */ + if ((lp->orig_upbo[j]) && (lp->orig_upbo[j] < lp->infinite)) { + if(my_chsign(is_chsign(lp, j), lp->orig_rhs[j]) == -lp->infinite) + write_data(userhandle, write_modeldata, "-Inf %s ", (is_chsign(lp, j)) ? ">=" : "<="); + else if(my_chsign(is_chsign(lp, j), lp->orig_rhs[j]) == lp->infinite) + write_data(userhandle, write_modeldata, "+Inf %s ", (is_chsign(lp, j)) ? ">=" : "<="); + else + write_data(userhandle, write_modeldata, "%+.12g %s ", + (lp->orig_upbo[j]-lp->orig_rhs[j]) * (is_chsign(lp, j) ? 1.0 : -1.0) / (lp->scaling_used ? lp->scalars[j] : 1.0), + (is_chsign(lp, j)) ? ">=" : "<="); + } +#endif + + if((!write_lprow(lp, j, userhandle, write_modeldata, maxlen, idx, val)) && (ncols >= 1)) + write_data(userhandle, write_modeldata, "0 %s", get_col_name(lp, 1)); + + if(lp->orig_upbo[j] == 0) + write_data(userhandle, write_modeldata, " ="); + else if(is_chsign(lp, j)) + write_data(userhandle, write_modeldata, " >="); + else + write_data(userhandle, write_modeldata, " <="); + if(fabs(get_rh(lp, j) + lp->infinite) < 1) + write_data(userhandle, write_modeldata, " -Inf;\n"); + else if(fabs(get_rh(lp, j) - lp->infinite) < 1) + write_data(userhandle, write_modeldata, " +Inf;\n"); + else + write_data(userhandle, write_modeldata, " %.12g;\n", get_rh(lp, j)); + +#ifdef SingleBoundedRowInLP + /* Write the ranged part of the constraint, if specified */ + if ((lp->orig_upbo[j]) && (lp->orig_upbo[j] < lp->infinite)) { + if(((lp->names_used) && (lp->row_name[j] != NULL)) || (write_lprow(lp, j, userhandle, NULL, maxlen, idx, val) == 1)) + ptr = get_row_name(lp, j); + else + ptr = NULL; + if((ptr != NULL) && (*ptr)) + write_data(userhandle, write_modeldata, "%s: ", ptr); + if((!write_lprow(lp, j, userhandle, write_modeldata, maxlen, idx, val)) && (get_Ncolumns(lp) >= 1)) + write_data(userhandle, write_modeldata, "0 %s", get_col_name(lp, 1)); + write_data(userhandle, write_modeldata, " %s %g;\n", + (is_chsign(lp, j)) ? "<=" : ">=", + (lp->orig_upbo[j]-lp->orig_rhs[j]) * (is_chsign(lp, j) ? 1.0 : -1.0) / (lp->scaling_used ? lp->scalars[j] : 1.0)); + } +#endif + } + + /* Write bounds on variables */ + ok = FALSE; + for(i = nrows + 1; i <= lp->sum; i++) + if(!is_splitvar(lp, i - nrows)) { + if(lp->orig_lowbo[i] == lp->orig_upbo[i]) { + if(!ok) { + write_lpcomment(userhandle, write_modeldata, "Variable bounds", TRUE); + ok = TRUE; + } + write_data(userhandle, write_modeldata, "%s = %.12g;\n", get_col_name(lp, i - nrows), get_upbo(lp, i - nrows)); + } + else { +#ifndef SingleBoundedRowInLP + if((lp->orig_lowbo[i] != 0) && (lp->orig_upbo[i] < lp->infinite)) { + if(!ok) { + write_lpcomment(userhandle, write_modeldata, "Variable bounds", TRUE); + ok = TRUE; + } + if(lp->orig_lowbo[i] == -lp->infinite) + write_data(userhandle, write_modeldata, "-Inf"); + else + write_data(userhandle, write_modeldata, "%.12g", get_lowbo(lp, i - nrows)); + write_data(userhandle, write_modeldata, " <= %s <= ", get_col_name(lp, i - nrows)); + if(lp->orig_lowbo[i] == lp->infinite) + write_data(userhandle, write_modeldata, "+Inf"); + else + write_data(userhandle, write_modeldata, "%.12g", get_upbo(lp, i - nrows)); + write_data(userhandle, write_modeldata, ";\n"); + } + else +#endif + { + if(lp->orig_lowbo[i] != 0) { + if(!ok) { + write_lpcomment(userhandle, write_modeldata, "Variable bounds", TRUE); + ok = TRUE; + } + if(lp->orig_lowbo[i] == -lp->infinite) + write_data(userhandle, write_modeldata, "%s >= -Inf;\n", get_col_name(lp, i - nrows)); + else if(lp->orig_lowbo[i] == lp->infinite) + write_data(userhandle, write_modeldata, "%s >= +Inf;\n", get_col_name(lp, i - nrows)); + else + write_data(userhandle, write_modeldata, "%s >= %.12g;\n", + get_col_name(lp, i - nrows), get_lowbo(lp, i - nrows)); + } + if(lp->orig_upbo[i] != lp->infinite) { + if(!ok) { + write_lpcomment(userhandle, write_modeldata, "Variable bounds", TRUE); + ok = TRUE; + } + write_data(userhandle, write_modeldata, "%s <= %.12g;\n", + get_col_name(lp, i - nrows), get_upbo(lp, i - nrows)); + } + } + } + } + + /* Write optional integer section */ + if(lp->int_vars > 0) { + write_lpcomment(userhandle, write_modeldata, "Integer definitions", TRUE); + i = 1; + while((i <= ncols) && !is_int(lp, i)) + i++; + if(i <= ncols) { + nchars = write_data(userhandle, write_modeldata, "int %s", get_col_name(lp, i)); + i++; + for(; i <= ncols; i++) + if((!is_splitvar(lp, i)) && (is_int(lp, i))) { + if((maxlen!= 0) && (nchars > maxlen)) { + write_data(userhandle, write_modeldata, "%s", "\n"); + nchars = 0; + } + write_data(userhandle, write_modeldata, ",%s", get_col_name(lp, i)); + } + write_data(userhandle, write_modeldata, ";\n"); + } + } + + /* Write optional SEC section */ + if(lp->sc_vars > 0) { + write_lpcomment(userhandle, write_modeldata, "Semi-continuous variables", TRUE); + i = 1; + while((i <= ncols) && !is_semicont(lp, i)) + i++; + if(i <= ncols) { + nchars = write_data(userhandle, write_modeldata, "sec %s", get_col_name(lp, i)); + i++; + for(; i <= ncols; i++) + if((!is_splitvar(lp, i)) && (is_semicont(lp, i))) { + if((maxlen != 0) && (nchars > maxlen)) { + write_data(userhandle, write_modeldata, "%s", "\n"); + nchars = 0; + } + nchars += write_data(userhandle, write_modeldata, ",%s", get_col_name(lp, i)); + } + write_data(userhandle, write_modeldata, ";\n"); + } + } + + /* Write optional SOS section */ + if(SOS_count(lp) > 0) { + SOSgroup *SOS = lp->SOS; + write_lpcomment(userhandle, write_modeldata, "SOS definitions", TRUE); + write_data(userhandle, write_modeldata, "SOS\n"); + for(b = 0, i = 0; i < SOS->sos_count; b = SOS->sos_list[i]->priority, i++) { + nchars = write_data(userhandle, write_modeldata, "%s: ", + (SOS->sos_list[i]->name == NULL) || + (*SOS->sos_list[i]->name==0) ? "SOS" : SOS->sos_list[i]->name); /* formatnumber12((double) lp->sos_list[i]->priority) */ + + for(a = 0.0, j = 1; j <= SOS->sos_list[i]->size; a = SOS->sos_list[i]->weights[j], j++) { + if((maxlen != 0) && (nchars > maxlen)) { + write_data(userhandle, write_modeldata, "%s", "\n"); + nchars = 0; + } + if(SOS->sos_list[i]->weights[j] == ++a) + nchars += write_data(userhandle, write_modeldata, "%s%s", + (j > 1) ? "," : "", + get_col_name(lp, SOS->sos_list[i]->members[j])); + else + nchars += write_data(userhandle, write_modeldata, "%s%s:%.12g", + (j > 1) ? "," : "", + get_col_name(lp, SOS->sos_list[i]->members[j]), + SOS->sos_list[i]->weights[j]); + } + if(SOS->sos_list[i]->priority == ++b) + nchars += write_data(userhandle, write_modeldata, " <= %d;\n", SOS->sos_list[i]->type); + else + nchars += write_data(userhandle, write_modeldata, " <= %d:%d;\n", SOS->sos_list[i]->type, SOS->sos_list[i]->priority); + } + } + + FREE(val); + FREE(idx); + + ok = TRUE; + + return(ok); +} + +static int __WINAPI write_lpdata(void *userhandle, char *buf) +{ + return(fprintf((FILE *) userhandle, "%s", buf)); +} + +MYBOOL LP_writefile(lprec *lp, char *filename) +{ + FILE *output = stdout; + MYBOOL ok; + + if (filename != NULL) { + ok = (MYBOOL) ((output = fopen(filename, "w")) != NULL); + if(!ok) + return(ok); + } + else + output = lp->outstream; + + ok = write_lpex(lp, (void *) output, write_lpdata); + + if (filename != NULL) + fclose(output); + + return(ok); +} + +MYBOOL LP_writehandle(lprec *lp, FILE *output) +{ + MYBOOL ok; + + if (output != NULL) + set_outputstream(lp, output); + + output = lp->outstream; + + ok = write_lpex(lp, (void *) output, write_lpdata); + + return(ok); +} diff --git a/src/external/lpsolve/build/lp_solve/lusol.c b/src/external/lpsolve/build/lp_solve/lusol.c new file mode 100644 index 00000000..5573fe82 --- /dev/null +++ b/src/external/lpsolve/build/lp_solve/lusol.c @@ -0,0 +1,808 @@ + +/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + LUSOL routines from the Stanford Optimization Laboratory + The parts included are: + lusol1 Factor a given matrix A from scratch (lu1fac). + lusol2 Heap-management routines for lu1fac. + lusol6 Solve with the current LU factors. + lusol7 Utilities for all update routines. + lusol8 Replace a column (Bartels-Golub update). + ------------------------------------------------------------------ + 26 Apr 2002: TCP implemented using heap data structure. + 01 May 2002: lu1DCP implemented. + 07 May 2002: lu1mxc must put 0.0 at top of empty columns. + 09 May 2002: lu1mCP implements Markowitz with cols searched + in heap order. + Often faster (searching 20 or 40 cols) but more dense. + 11 Jun 2002: TRP implemented. + lu1mRP implements Markowitz with Threshold Rook + Pivoting. + lu1mxc maintains max col elements (was lu1max.) + lu1mxr maintains max row elements. + 12 Jun 2002: lu1mCP seems too slow on big problems (e.g. memplus). + Disabled it for the moment. (Use lu1mar + TCP.) + 14 Dec 2002: TSP implemented. + lu1mSP implements Markowitz with TSP. + 07 Mar 2003: character*1, character*2 changed to f90 form. + Comments changed from * in column to ! in column 1. + Comments kept within column 72 to avoid compiler + warning. + 06 Mar 2004: Translation to C by Kjell Eikland with the addition + of data wrappers, parametric constants, various + helper routines, and dynamic memory reallocation. + 26 May 2004: Added LUSOL_IP_UPDATELIMIT parameter and provided + for dynamic memory expansion based on possible + forward requirements. + 08 Jul 2004: Revised logic in lu6chk based on new code from + Michael Saunders. + 01 Dec 2005: Add support for CMEX interface (disable by undef MATLAB) + Also include various bug fixes (disable by undef YZHANG) + Yin Zhang + 01 Jan 2006: Added storage of singular indeces, not only the last. + ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ + +#include +#include +#include +#include +#include +#include +#include "lusol.h" +#include "myblas.h" +#ifdef MATLAB + #include "mex.h" +#endif + +#ifdef FORTIFY +# include "lp_fortify.h" +#endif + +/* LUSOL Object creation and destruction */ + +void *clean_realloc(void *oldptr, int width, int newsize, int oldsize) +{ + newsize *= width; + oldsize *= width; + oldptr = LUSOL_REALLOC(oldptr, newsize); + if(newsize > oldsize) +/* MEMCLEAR(oldptr+oldsize, newsize-oldsize); */ + memset((char *)oldptr+oldsize, '\0', newsize-oldsize); + return(oldptr); +} + +MYBOOL LUSOL_realloc_a(LUSOLrec *LUSOL, int newsize) +{ + int oldsize; + + if(newsize < 0) + newsize = LUSOL->lena + MAX(abs(newsize), LUSOL_MINDELTA_a); + + oldsize = LUSOL->lena; + LUSOL->lena = newsize; + if(newsize > 0) + newsize++; + if(oldsize > 0) + oldsize++; + + LUSOL->a = (LPSREAL *) clean_realloc(LUSOL->a, sizeof(*(LUSOL->a)), + newsize, oldsize); + LUSOL->indc = (int *) clean_realloc(LUSOL->indc, sizeof(*(LUSOL->indc)), + newsize, oldsize); + LUSOL->indr = (int *) clean_realloc(LUSOL->indr, sizeof(*(LUSOL->indr)), + newsize, oldsize); + if((newsize == 0) || + ((LUSOL->a != NULL) && (LUSOL->indc != NULL) && (LUSOL->indr != NULL))) + return( TRUE ); + else + return( FALSE ); +} + +MYBOOL LUSOL_expand_a(LUSOLrec *LUSOL, int *delta_lena, int *right_shift) +{ +#ifdef StaticMemAlloc + return( FALSE ); +#else + int LENA, NFREE, LFREE; + + /* Add expansion factor to avoid having to resize too often/too much; + (exponential formula suggested by Michael A. Saunders) */ + LENA = LUSOL->lena; + *delta_lena = DELTA_SIZE(*delta_lena, LENA); + + /* Expand it! */ + if((*delta_lena <= 0) || !LUSOL_realloc_a(LUSOL, LENA+(*delta_lena))) + return( FALSE ); + + /* Make sure we return the actual memory increase of a */ + *delta_lena = LUSOL->lena-LENA; + + /* Shift the used memory area to the right */ + LFREE = *right_shift; + NFREE = LFREE+*delta_lena; + LENA -= LFREE-1; + MEMMOVE(LUSOL->a+NFREE, LUSOL->a+LFREE, LENA); + MEMMOVE(LUSOL->indr+NFREE, LUSOL->indr+LFREE, LENA); + MEMMOVE(LUSOL->indc+NFREE, LUSOL->indc+LFREE, LENA); + + /* Also return the new starting position for the used memory area of a */ + *right_shift = NFREE; + + LUSOL->expanded_a++; + return( TRUE ); +#endif +} + +MYBOOL LUSOL_realloc_r(LUSOLrec *LUSOL, int newsize) +{ + int oldsize; + + if(newsize < 0) + newsize = LUSOL->maxm + MAX(abs(newsize), LUSOL_MINDELTA_rc); + + oldsize = LUSOL->maxm; + LUSOL->maxm = newsize; + if(newsize > 0) + newsize++; + if(oldsize > 0) + oldsize++; + + LUSOL->lenr = (int *) clean_realloc(LUSOL->lenr, sizeof(*(LUSOL->lenr)), + newsize, oldsize); + LUSOL->ip = (int *) clean_realloc(LUSOL->ip, sizeof(*(LUSOL->ip)), + newsize, oldsize); + LUSOL->iqloc = (int *) clean_realloc(LUSOL->iqloc, sizeof(*(LUSOL->iqloc)), + newsize, oldsize); + LUSOL->ipinv = (int *) clean_realloc(LUSOL->ipinv, sizeof(*(LUSOL->ipinv)), + newsize, oldsize); + LUSOL->locr = (int *) clean_realloc(LUSOL->locr, sizeof(*(LUSOL->locr)), + newsize, oldsize); + + if((newsize == 0) || + ((LUSOL->lenr != NULL) && + (LUSOL->ip != NULL) && (LUSOL->iqloc != NULL) && + (LUSOL->ipinv != NULL) && (LUSOL->locr != NULL))) { + +#ifndef ClassicHamaxR +#ifdef AlwaysSeparateHamaxR + if(LUSOL->luparm[LUSOL_IP_PIVOTTYPE] == LUSOL_PIVMOD_TRP) +#endif + { + LUSOL->amaxr = (LPSREAL *) clean_realloc(LUSOL->amaxr, sizeof(*(LUSOL->amaxr)), + newsize, oldsize); + if((newsize > 0) && (LUSOL->amaxr == NULL)) + return( FALSE ); + } +#endif + return( TRUE ); + } + else + return( FALSE ); +} + +MYBOOL LUSOL_realloc_c(LUSOLrec *LUSOL, int newsize) +{ + int oldsize; + + if(newsize < 0) + newsize = LUSOL->maxn + MAX(abs(newsize), LUSOL_MINDELTA_rc); + + oldsize = LUSOL->maxn; + LUSOL->maxn = newsize; + if(newsize > 0) + newsize++; + if(oldsize > 0) + oldsize++; + + LUSOL->lenc = (int *) clean_realloc(LUSOL->lenc, sizeof(*(LUSOL->lenc)), + newsize, oldsize); + LUSOL->iq = (int *) clean_realloc(LUSOL->iq, sizeof(*(LUSOL->iq)), + newsize, oldsize); + LUSOL->iploc = (int *) clean_realloc(LUSOL->iploc, sizeof(*(LUSOL->iploc)), + newsize, oldsize); + LUSOL->iqinv = (int *) clean_realloc(LUSOL->iqinv, sizeof(*(LUSOL->iqinv)), + newsize, oldsize); + LUSOL->locc = (int *) clean_realloc(LUSOL->locc, sizeof(*(LUSOL->locc)), + newsize, oldsize); + LUSOL->w = (LPSREAL *) clean_realloc(LUSOL->w, sizeof(*(LUSOL->w)), + newsize, oldsize); +#ifdef LUSOLSafeFastUpdate + LUSOL->vLU6L = (LPSREAL *) clean_realloc(LUSOL->vLU6L, sizeof(*(LUSOL->vLU6L)), + newsize, oldsize); +#else + LUSOL->vLU6L = LUSOL->w; +#endif + + if((newsize == 0) || + ((LUSOL->w != NULL) && (LUSOL->lenc != NULL) && + (LUSOL->iq != NULL) && (LUSOL->iploc != NULL) && + (LUSOL->iqinv != NULL) && (LUSOL->locc != NULL))) { + +#ifndef ClassicHamaxR + if(LUSOL->luparm[LUSOL_IP_PIVOTTYPE] == LUSOL_PIVMOD_TCP) { + LUSOL->Ha = (LPSREAL *) clean_realloc(LUSOL->Ha, sizeof(*(LUSOL->Ha)), + newsize, oldsize); + LUSOL->Hj = (int *) clean_realloc(LUSOL->Hj, sizeof(*(LUSOL->Hj)), + newsize, oldsize); + LUSOL->Hk = (int *) clean_realloc(LUSOL->Hk, sizeof(*(LUSOL->Hk)), + newsize, oldsize); + if((newsize > 0) && + ((LUSOL->Ha == NULL) || (LUSOL->Hj == NULL) || (LUSOL->Hk == NULL))) + return( FALSE ); + } +#endif +#ifndef ClassicdiagU + if(LUSOL->luparm[LUSOL_IP_KEEPLU] == FALSE) { + LUSOL->diagU = (LPSREAL *) clean_realloc(LUSOL->diagU, sizeof(*(LUSOL->diagU)), + newsize, oldsize); + if((newsize > 0) && (LUSOL->diagU == NULL)) + return( FALSE ); + } +#endif + + return( TRUE ); + } + else + return( FALSE ); +} + +LUSOLrec *LUSOL_create(FILE *outstream, int msgfil, int pivotmodel, int updatelimit) +{ + LUSOLrec *newLU; + + newLU = (LUSOLrec *) LUSOL_CALLOC(1, sizeof(*newLU)); + if(newLU == NULL) + return( newLU ); + + newLU->luparm[LUSOL_IP_SCALAR_NZA] = LUSOL_MULT_nz_a; + newLU->outstream = outstream; + newLU->luparm[LUSOL_IP_PRINTUNIT] = msgfil; + newLU->luparm[LUSOL_IP_PRINTLEVEL] = LUSOL_MSG_SINGULARITY; + + LUSOL_setpivotmodel(newLU, pivotmodel, LUSOL_PIVTOL_DEFAULT); + + newLU->parmlu[LUSOL_RP_GAMMA] = LUSOL_DEFAULT_GAMMA; + + newLU->parmlu[LUSOL_RP_ZEROTOLERANCE] = 3.0e-13; + + newLU->parmlu[LUSOL_RP_SMALLDIAG_U] = /*3.7e-11;*/ + newLU->parmlu[LUSOL_RP_EPSDIAG_U] = 3.7e-11; + + newLU->parmlu[LUSOL_RP_COMPSPACE_U] = 3.0e+0; + + newLU->luparm[LUSOL_IP_MARKOWITZ_MAXCOL] = 5; + newLU->parmlu[LUSOL_RP_MARKOWITZ_CONLY] = 0.3e+0; + newLU->parmlu[LUSOL_RP_MARKOWITZ_DENSE] = 0.5e+0; + + newLU->parmlu[LUSOL_RP_SMARTRATIO] = LUSOL_DEFAULT_SMARTRATIO; +#ifdef ForceRowBasedL0 + newLU->luparm[LUSOL_IP_ACCELERATION] = LUSOL_BASEORDER; +#endif + newLU->luparm[LUSOL_IP_KEEPLU] = TRUE; + newLU->luparm[LUSOL_IP_UPDATELIMIT] = updatelimit; + + init_BLAS(); + + return( newLU ); +} + +MYBOOL LUSOL_sizeto(LUSOLrec *LUSOL, int init_r, int init_c, int init_a) +{ + if(init_c == 0) + LUSOL_FREE(LUSOL->isingular); + if(LUSOL_realloc_a(LUSOL, init_a) && + LUSOL_realloc_r(LUSOL, init_r) && + LUSOL_realloc_c(LUSOL, init_c)) + return( TRUE ); + else + return( FALSE ); +} + +char *LUSOL_pivotLabel(LUSOLrec *LUSOL) +{ + static /*const*/ char *pivotText[LUSOL_PIVMOD_MAX+1] = + {"TPP", "TRP", "TCP", "TSP"}; + return(pivotText[LUSOL->luparm[LUSOL_IP_PIVOTTYPE]]); +} + +void LUSOL_setpivotmodel(LUSOLrec *LUSOL, int pivotmodel, int initlevel) +{ + LPSREAL newFM, newUM; + + /* Set pivotmodel if specified */ + if(pivotmodel > LUSOL_PIVMOD_NOCHANGE) { + if((pivotmodel <= LUSOL_PIVMOD_DEFAULT) || (pivotmodel > LUSOL_PIVMOD_MAX)) + pivotmodel = LUSOL_PIVMOD_TPP; + LUSOL->luparm[LUSOL_IP_PIVOTTYPE] = pivotmodel; + } + + /* Check if we need bother about changing tolerances */ + if((initlevel <= LUSOL_PIVTOL_NOCHANGE) || (initlevel > LUSOL_PIVTOL_MAX)) + return; + + /* Set default pivot tolerances + (note that UPDATEMAX should always be <= FACTORMAX) */ + if(initlevel == LUSOL_PIVTOL_BAGGY) { /* Extra-loose pivot thresholds */ + newFM = 500.0; + newUM = newFM / 20; + } + else if(initlevel == LUSOL_PIVTOL_LOOSE) { /* Moderately tight pivot tolerances */ + newFM = 100.0; + newUM = newFM / 10; + } + else if(initlevel == LUSOL_PIVTOL_NORMAL) { /* Standard pivot tolerances */ + newFM = 28.0; + newUM = newFM / 4; + } + else if(initlevel == LUSOL_PIVTOL_SLIM) { /* Better accuracy pivot tolerances */ + newFM = 10.0; + newUM = newFM / 2; + } + else if(initlevel == LUSOL_PIVTOL_TIGHT) { /* Enhanced accuracy pivot tolerances */ + newFM = 5.0; + newUM = newFM / 2; + } + else if(initlevel == LUSOL_PIVTOL_SUPER) { /* Very tight pivot tolerances for extra accuracy */ + newFM = 2.5; + newUM = 1.99; + } + else { /* Extremely tight pivot tolerances for extra accuracy */ + newFM = 1.99; + newUM = newFM / 1.49; + } + + /* Set the tolerances */ + LUSOL->parmlu[LUSOL_RP_FACTORMAX_Lij] = newFM; + LUSOL->parmlu[LUSOL_RP_UPDATEMAX_Lij] = newUM; +} + +MYBOOL LUSOL_tightenpivot(LUSOLrec *LUSOL) +{ +#if 0 + LPSREAL newvalue; +#endif + + /* Give up tightening if we are already less than limit and we cannot change strategy */ + if(MIN(LUSOL->parmlu[LUSOL_RP_FACTORMAX_Lij], + LUSOL->parmlu[LUSOL_RP_UPDATEMAX_Lij]) < 1.1) { + if(LUSOL->luparm[LUSOL_IP_PIVOTTYPE] >= LUSOL_PIVMOD_TRP) + return( FALSE ); + LUSOL_setpivotmodel(LUSOL, LUSOL->luparm[LUSOL_IP_PIVOTTYPE]+1, LUSOL_PIVTOL_DEFAULT+1); + return( 2 ); + } + + /* Otherwise tighten according to defined schedule */ +#if 0 /* This is Michael Saunder's proposed tightening procedure */ + newvalue = sqrt(LUSOL->parmlu[LUSOL_RP_FACTORMAX_Lij]); + LUSOL->parmlu[LUSOL_RP_FACTORMAX_Lij] = newvalue; + SETMIN(LUSOL->parmlu[LUSOL_RP_UPDATEMAX_Lij], newvalue); +#elif 0 /* This is Kjell Eikland's schedule #1 */ + newvalue = sqrt(LUSOL->parmlu[LUSOL_RP_FACTORMAX_Lij]); + LUSOL->parmlu[LUSOL_RP_FACTORMAX_Lij] = newvalue; + LUSOL->parmlu[LUSOL_RP_UPDATEMAX_Lij] = 1.0 + (newvalue - 1.0) / 2; +#else /* This was Kjell Eikland's schedule #2 */ + LUSOL->parmlu[LUSOL_RP_FACTORMAX_Lij] = 1.0 + LUSOL->parmlu[LUSOL_RP_FACTORMAX_Lij]/3.0; + LUSOL->parmlu[LUSOL_RP_UPDATEMAX_Lij] = 1.0 + LUSOL->parmlu[LUSOL_RP_UPDATEMAX_Lij]/3.0; +#endif + return( TRUE ); +} + +MYBOOL LUSOL_addSingularity(LUSOLrec *LUSOL, int singcol, int *inform) +{ + int NSING = LUSOL->luparm[LUSOL_IP_SINGULARITIES], + ASING = LUSOL->luparm[LUSOL_IP_SINGULARLISTSIZE]; + + /* Check if we need to allocated list memory to store multiple singularities */ + if((NSING > 0) && (NSING >= ASING)) { + + /* Increase list in "reasonable" steps */ + ASING += (int) (10.0 * (log10((LPSREAL) LUSOL->m)+1.0)); + LUSOL->isingular = (int *) LUSOL_REALLOC(LUSOL->isingular, sizeof(*LUSOL->isingular)*(ASING+1)); + if(LUSOL->isingular == NULL) { + LUSOL->luparm[LUSOL_IP_SINGULARLISTSIZE] = 0; + *inform = LUSOL_INFORM_NOMEMLEFT; + return( FALSE ); + } + LUSOL->luparm[LUSOL_IP_SINGULARLISTSIZE] = ASING; + + /* Transfer the first singularity if the list was just created */ + if(NSING == 1) + LUSOL->isingular[NSING] = LUSOL->luparm[LUSOL_IP_SINGULARINDEX]; + } + + /* Update singularity count and store its index */ + NSING++; + if(NSING > 1) { + LUSOL->isingular[0] = NSING; + LUSOL->isingular[NSING] = singcol; + } + LUSOL->luparm[LUSOL_IP_SINGULARITIES] = NSING; + + /* Mimic old logic by keeping the last singularity stored */ + LUSOL->luparm[LUSOL_IP_SINGULARINDEX] = singcol; + + return( TRUE ); +} + +int LUSOL_getSingularity(LUSOLrec *LUSOL, int singitem) +{ + if((singitem > LUSOL->luparm[LUSOL_IP_SINGULARITIES]) || (singitem < 0)) + singitem = -1; + else if(singitem == 0) + singitem = LUSOL->luparm[LUSOL_IP_SINGULARITIES]; + else if(singitem > 1) + singitem = LUSOL->isingular[singitem]; + else + singitem = LUSOL->luparm[LUSOL_IP_SINGULARINDEX]; + return( singitem ); +} + +int LUSOL_findSingularityPosition(LUSOLrec *LUSOL, int singcol) +/* The purpose of this routine is to find the slack row/column in + user-index that was singular in the last unsuccessful column + update; zero is returned if the search was unsuccessful. + By adding a slack at this position this particular singularity + should disappear. + (Source: Michael A. Saunders; private communication to KE) */ +{ +#if 0 /* Michael Saunders version */ + int j; + for(j = LUSOL->m; j > 0; j--) + if(LUSOL->iq[j] == singcol) + break; + singcol = j; +#else /* Kjell Eikland version (note that iqinv could be invalid in early versions of LUSOL) */ + singcol = LUSOL->iqinv[singcol]; +#endif + return( LUSOL->ip[singcol] ); +} + +char *LUSOL_informstr(LUSOLrec *LUSOL, int inform) +{ + static char *informText[LUSOL_INFORM_MAX-LUSOL_INFORM_MIN+1] = + {"LUSOL_RANKLOSS: Lost rank", + "LUSOL_LUSUCCESS: Success", + "LUSOL_LUSINGULAR: Singular A", + "LUSOL_LUUNSTABLE: Unstable factorization", + "LUSOL_ADIMERR: Row or column count exceeded", + "LUSOL_ADUPLICATE: Duplicate A matrix entry found", + "(Undefined message)", + "(Undefined message)", + "LUSOL_ANEEDMEM: Insufficient memory for factorization", + "LUSOL_FATALERR: Fatal internal error", + "LUSOL_NOPIVOT: Found no suitable pivot", + "LUSOL_NOMEMLEFT: Could not obtain more memory"}; + if((inform < LUSOL_INFORM_MIN) || (inform > LUSOL_INFORM_MAX)) + inform = LUSOL->luparm[LUSOL_IP_INFORM]; + return(informText[inform-LUSOL_INFORM_MIN]); +} + +void LUSOL_clear(LUSOLrec *LUSOL, MYBOOL nzonly) +{ + int len; + + LUSOL->nelem = 0; + if(!nzonly) { + + /* lena arrays */ + len = LUSOL->lena + LUSOL_ARRAYOFFSET; + MEMCLEAR(LUSOL->a, len); + MEMCLEAR(LUSOL->indc, len); + MEMCLEAR(LUSOL->indr, len); + + /* maxm arrays */ + len = LUSOL->maxm + LUSOL_ARRAYOFFSET; + MEMCLEAR(LUSOL->lenr, len); + MEMCLEAR(LUSOL->ip, len); + MEMCLEAR(LUSOL->iqloc, len); + MEMCLEAR(LUSOL->ipinv, len); + MEMCLEAR(LUSOL->locr, len); + +#ifndef ClassicHamaxR + if((LUSOL->amaxr != NULL) +#ifdef AlwaysSeparateHamaxR + && (LUSOL->luparm[LUSOL_IP_PIVOTTYPE] == LUSOL_PIVMOD_TRP) +#endif + ) + MEMCLEAR(LUSOL->amaxr, len); +#endif + + /* maxn arrays */ + len = LUSOL->maxn + LUSOL_ARRAYOFFSET; + MEMCLEAR(LUSOL->lenc, len); + MEMCLEAR(LUSOL->iq, len); + MEMCLEAR(LUSOL->iploc, len); + MEMCLEAR(LUSOL->iqinv, len); + MEMCLEAR(LUSOL->locc, len); + MEMCLEAR(LUSOL->w, len); + + if(LUSOL->luparm[LUSOL_IP_PIVOTTYPE] == LUSOL_PIVMOD_TCP) { + MEMCLEAR(LUSOL->Ha, len); + MEMCLEAR(LUSOL->Hj, len); + MEMCLEAR(LUSOL->Hk, len); + } +#ifndef ClassicdiagU + if(LUSOL->luparm[LUSOL_IP_KEEPLU] == FALSE) { + MEMCLEAR(LUSOL->diagU, len); + } +#endif + + } +} + +MYBOOL LUSOL_assign(LUSOLrec *LUSOL, int iA[], int jA[], LPSREAL Aij[], int nzcount, MYBOOL istriplet) +{ + int k, m, n, ij, kol; + + /* Adjust the size of the a structure */ + if(nzcount > (LUSOL->lena/LUSOL->luparm[LUSOL_IP_SCALAR_NZA]) && + !LUSOL_realloc_a(LUSOL, nzcount*LUSOL->luparm[LUSOL_IP_SCALAR_NZA])) + return( FALSE ); + + m = 0; + n = 0; + kol = 1; + for(k = 1; k <= nzcount; k++) { + /* First the row indicator */ + ij = iA[k]; + if(ij > m) { + m = ij; + if(m > LUSOL->maxm && + !LUSOL_realloc_r(LUSOL, -(m / LUSOL_MINDELTA_FACTOR + 1))) + return( FALSE ); + } + LUSOL->indc[k] = ij; + + /* Then the column indicator; + Handle both triplet and column count formats */ + if(istriplet) + ij = jA[k]; + else { + if(k >= jA[kol]) + kol++; + ij = kol; + } + if(ij > n) { + n = ij; + if(n > LUSOL->maxn && + !LUSOL_realloc_c(LUSOL, -(n / LUSOL_MINDELTA_FACTOR + 1))) + return( FALSE ); + } + LUSOL->indr[k] = ij; + + /* Lastly the matrix value itself */ + LUSOL->a[k] = Aij[k]; + } + LUSOL->m = m; + LUSOL->n = n; + LUSOL->nelem = nzcount; + return( TRUE ); +} + +int LUSOL_loadColumn(LUSOLrec *LUSOL, int iA[], int jA, LPSREAL Aij[], int nzcount, int offset1) +{ + int i, ii, nz, k; + + nz = LUSOL->nelem; + i = nz + nzcount; + if(i > (LUSOL->lena/LUSOL->luparm[LUSOL_IP_SCALAR_NZA]) && + !LUSOL_realloc_a(LUSOL, i*LUSOL->luparm[LUSOL_IP_SCALAR_NZA])) + return( -1 ); + + k = 0; + for(ii = 1; ii <= nzcount; ii++) { + i = ii + offset1; + if(Aij[i] == 0) + continue; + if(iA[i] <= 0 || iA[i] > LUSOL->m || + jA <= 0 || jA > LUSOL->n) { + LUSOL_report(LUSOL, 0, "Variable index outside of set bounds (r:%d/%d, c:%d/%d)\n", + iA[i], LUSOL->m, jA, LUSOL->n); + continue; + } + k++; + nz++; + LUSOL->a[nz] = Aij[i]; + LUSOL->indc[nz] = iA[i]; + LUSOL->indr[nz] = jA; + } + LUSOL->nelem = nz; + return( k ); +} + +void LUSOL_free(LUSOLrec *LUSOL) +{ + LUSOL_realloc_a(LUSOL, 0); + LUSOL_realloc_r(LUSOL, 0); + LUSOL_realloc_c(LUSOL, 0); + if(LUSOL->L0 != NULL) + LUSOL_matfree(&(LUSOL->L0)); + if(LUSOL->U != NULL) + LUSOL_matfree(&(LUSOL->U)); + if(!is_nativeBLAS()) + unload_BLAS(); + LUSOL_FREE(LUSOL); +} + +void LUSOL_report(LUSOLrec *LUSOL, int msglevel, char *format, ...) +{ + va_list ap; + + if(LUSOL == NULL) { + va_start(ap, format); + vfprintf(stderr, format, ap); + va_end(ap); + } + else if(msglevel >= 0 /*LUSOL->luparm[2]*/) { + if(LUSOL->writelog != NULL) { + char buff[255]; + + va_start(ap, format); + vsprintf(buff, format, ap); + va_end(ap); + LUSOL->writelog(LUSOL, LUSOL->loghandle, buff); + } + if(LUSOL->outstream != NULL) { + va_start(ap, format); + vfprintf(LUSOL->outstream, format, ap); + va_end(ap); + fflush(LUSOL->outstream); + } + } +} + +void LUSOL_timer(LUSOLrec *LUSOL, int timerid, char *text) +{ + LUSOL_report(LUSOL, -1, "TimerID %d at %s - %s\n", + timerid, "", text); +} + +int LUSOL_factorize(LUSOLrec *LUSOL) +{ + int inform; + + LU1FAC( LUSOL, &inform ); + return( inform ); +} + +int LUSOL_ftran(LUSOLrec *LUSOL, LPSREAL b[], int NZidx[], MYBOOL prepareupdate) +{ + int inform; + LPSREAL *vector; + + if(prepareupdate) + vector = LUSOL->vLU6L; + else + vector = LUSOL->w; + + /* Copy RHS vector, but make adjustment for offset since this + can create a memory error when the calling program uses + a 0-base vector offset back to comply with LUSOL. */ + MEMCOPY(vector+1, b+1, LUSOL->n); + if (vector != NULL) + vector[0] = 0; + + LU6SOL(LUSOL, LUSOL_SOLVE_Aw_v, vector, b, NZidx, &inform); + LUSOL->luparm[LUSOL_IP_FTRANCOUNT]++; + + return(inform); +} + + +int LUSOL_btran(LUSOLrec *LUSOL, LPSREAL b[], int NZidx[]) +{ + int inform; + + /* Copy RHS vector, but make adjustment for offset since this + can create a memory error when the calling program uses + a 0-base vector offset back to comply with LUSOL. */ + MEMCOPY(LUSOL->w+1, b+1, LUSOL->m); + if (LUSOL->w != NULL) + LUSOL->w[0] = 0; + + LU6SOL(LUSOL, LUSOL_SOLVE_Atv_w, b, LUSOL->w, NZidx, &inform); + LUSOL->luparm[LUSOL_IP_BTRANCOUNT]++; + + return(inform); +} + + +int LUSOL_replaceColumn(LUSOLrec *LUSOL, int jcol, LPSREAL v[]) +{ + int inform; + LPSREAL DIAG, VNORM; + + LU8RPC(LUSOL, LUSOL_UPDATE_OLDNONEMPTY, LUSOL_UPDATE_NEWNONEMPTY, + jcol, v, NULL, + &inform, &DIAG, &VNORM); + + LUSOL->replaced_c++; + return( inform ); +} + +LPSREAL LUSOL_vecdensity(LUSOLrec *LUSOL, LPSREAL V[]) +{ + int I, N = 0; + + for(I = 1; I <= LUSOL->m; I++) + if(fabs(V[I]) > 0) + N++; + return( (LPSREAL) N / (LPSREAL) LUSOL->m ); +} + +char relationChar(LPSREAL left, LPSREAL right) +{ + if(left > right) + return('>'); + else if(left == right) + return('='); + else + return('<'); +} + +/* Retrieve the core modules ordered by order of dependency */ + +#include "lusol2.c" /* Heap management */ +#include "lusol6a.c" /* Singularity checking and equation solving */ +#include "lusol1.c" /* Factorization and core components */ +#include "lusol7a.c" /* Utility routines for updates */ +#include "lusol8a.c" /* Column update */ + + +void LUSOL_dump(FILE *output, LUSOLrec *LUSOL) +{ + MYBOOL userfile = (MYBOOL) (output != NULL); + + if(!userfile) + output = fopen("LUSOL.dbg", "w"); + + blockWriteREAL(output, "a", LUSOL->a, 1, LUSOL->lena); + blockWriteINT(output, "indc", LUSOL->indc, 1, LUSOL->lena); + blockWriteINT(output, "indr", LUSOL->indr, 1, LUSOL->lena); + + blockWriteINT(output, "ip", LUSOL->ip, 1, LUSOL->m); + blockWriteINT(output, "iq", LUSOL->iq, 1, LUSOL->n); + blockWriteINT(output, "lenc", LUSOL->lenc, 1, LUSOL->n); + blockWriteINT(output, "lenr", LUSOL->lenr, 1, LUSOL->m); + + blockWriteINT(output, "locc", LUSOL->locc, 1, LUSOL->n); + blockWriteINT(output, "locr", LUSOL->locr, 1, LUSOL->m); + blockWriteINT(output, "iploc", LUSOL->iploc, 1, LUSOL->n); + blockWriteINT(output, "iqloc", LUSOL->iqloc, 1, LUSOL->m); + + blockWriteINT(output, "ipinv", LUSOL->ipinv, 1, LUSOL->m); + blockWriteINT(output, "iqinv", LUSOL->iqinv, 1, LUSOL->n); + + if(!userfile) + fclose(output); +} + +LUSOLmat *LUSOL_matcreate(int dim, int nz) +{ + LUSOLmat *newm; + + newm = (LUSOLmat *) LUSOL_CALLOC(1, sizeof(*newm)); + if(newm != NULL) { + newm->a = (LPSREAL *) LUSOL_MALLOC((nz+1)*sizeof(LPSREAL)); + newm->lenx = (int *) LUSOL_MALLOC((dim+1)*sizeof(int)); + newm->indx = (int *) LUSOL_MALLOC((dim+1)*sizeof(int)); + newm->indr = (int *) LUSOL_MALLOC((nz+1)*sizeof(int)); + newm->indc = (int *) LUSOL_MALLOC((nz+1)*sizeof(int)); + if((newm->a == NULL) || + (newm->lenx == NULL) || (newm->indx == NULL) || + (newm->indr == NULL) || (newm->indc == NULL)) + LUSOL_matfree(&newm); + } + return(newm); +} +void LUSOL_matfree(LUSOLmat **mat) +{ + if((mat == NULL) || (*mat == NULL)) + return; + LUSOL_FREE((*mat)->a); + LUSOL_FREE((*mat)->indc); + LUSOL_FREE((*mat)->indr); + LUSOL_FREE((*mat)->lenx); + LUSOL_FREE((*mat)->indx); + LUSOL_FREE(*mat); +} + diff --git a/src/external/lpsolve/build/lp_solve/lusol1.c b/src/external/lpsolve/build/lp_solve/lusol1.c new file mode 100644 index 00000000..90ef643e --- /dev/null +++ b/src/external/lpsolve/build/lp_solve/lusol1.c @@ -0,0 +1,3725 @@ + +/* ================================================================== + lu1DCP factors a dense m x n matrix A by Gaussian elimination, + using Complete Pivoting (row and column interchanges) for stability. + This version also uses column interchanges if all elements in a + pivot column are smaller than (or equal to) "small". Such columns + are changed to zero and permuted to the right-hand end. + As in LINPACK's dgefa, ipvt(!) keeps track of pivot rows. + Rows of U are interchanged, but we don't have to physically + permute rows of L. In contrast, column interchanges are applied + directly to the columns of both L and U, and to the column + permutation vector iq(*). + ------------------------------------------------------------------ + On entry: + a Array holding the matrix A to be factored. + lda The leading dimension of the array a. + m The number of rows in A. + n The number of columns in A. + small A drop tolerance. Must be zero or positive. + + On exit: + a An upper triangular matrix and the multipliers + which were used to obtain it. + The factorization can be written A = L*U where + L is a product of permutation and unit lower + triangular matrices and U is upper triangular. + nsing Number of singularities detected. + ipvt Records the pivot rows. + iq A vector to which column interchanges are applied. + ------------------------------------------------------------------ + 01 May 2002: First dense Complete Pivoting, derived from lu1DPP. + 07 May 2002: Another break needed at end of first loop. + 07 May 2002: Current version of lu1DCP. + ================================================================== */ +void LU1DCP(LUSOLrec *LUSOL, LPSREAL DA[], int LDA, int M, int N, LPSREAL SMALL, + int *NSING, int IPVT[], int IX[]) +{ + + int I, J, K, KP1, L, LAST, LENCOL, IMAX, JMAX, JLAST, JNEW; + LPSREAL AIJMAX, AJMAX; + register LPSREAL T; +#ifdef LUSOLFastDenseIndex + register LPSREAL *DA1, *DA2; + int IDA1, IDA2; +#else + register int IDA1, IDA2; +#endif + + *NSING = 0; + LENCOL = M+1; + LAST = N; +/* ----------------------------------------------------------------- + Start of elimination loop. + ----------------------------------------------------------------- */ + for(K = 1; K <= N; K++) { + KP1 = K+1; + LENCOL--; +/* Find the biggest aij in row imax and column jmax. */ + AIJMAX = ZERO; + IMAX = K; + JMAX = K; + JLAST = LAST; + for(J = K; J <= JLAST; J++) { +x10: + L = lps_idamax(LENCOL,DA+DAPOS(K,J)-LUSOL_ARRAYOFFSET,1)+K-1; + AJMAX = fabs(DA[DAPOS(L,J)]); + if(AJMAX<=SMALL) { +/* ======================================================== + Do column interchange, changing old column to zero. + Reduce "last" and try again with same j. + ======================================================== */ + (*NSING)++; + JNEW = IX[LAST]; + IX[LAST] = IX[J]; + IX[J] = JNEW; +#ifdef LUSOLFastDenseIndex + DA1 = DA+DAPOS(0,LAST); + DA2 = DA+DAPOS(0,J); + for(I = 1; I <= K-1; I++) { + DA1++; + DA2++; + T = *DA1; + *DA1 = *DA2; + *DA2 = T; +#else + for(I = 1; I <= K-1; I++) { + IDA1 = DAPOS(I,LAST); + IDA2 = DAPOS(I,J); + T = DA[IDA1]; + DA[IDA1] = DA[IDA2]; + DA[IDA2] = T; +#endif + } +#ifdef LUSOLFastDenseIndex + for(I = K; I <= M; I++) { + DA1++; + DA2++; + T = *DA1; + *DA1 = ZERO; + *DA2 = T; +#else + for(I = K; I <= M; I++) { + IDA1 = DAPOS(I,LAST); + IDA2 = DAPOS(I,J); + T = DA[IDA1]; + DA[IDA1] = ZERO; + DA[IDA2] = T; +#endif + } + LAST--; + if(J<=LAST) + goto x10; + break; + } +/* Check if this column has biggest aij so far. */ + if(AIJMAX=LAST) + break; + } + IPVT[K] = IMAX; + if(JMAX!=K) { +/* ========================================================== + Do column interchange (k and jmax). + ========================================================== */ + JNEW = IX[JMAX]; + IX[JMAX] = IX[K]; + IX[K] = JNEW; +#ifdef LUSOLFastDenseIndex + DA1 = DA+DAPOS(0,JMAX); + DA2 = DA+DAPOS(0,K); + for(I = 1; I <= M; I++) { + DA1++; + DA2++; + T = *DA1; + *DA1 = *DA2; + *DA2 = T; +#else + for(I = 1; I <= M; I++) { + IDA1 = DAPOS(I,JMAX); + IDA2 = DAPOS(I,K); + T = DA[IDA1]; + DA[IDA1] = DA[IDA2]; + DA[IDA2] = T; +#endif + } + } + if(M>K) { +/* =========================================================== + Do row interchange if necessary. + =========================================================== */ + if(IMAX!=K) { + IDA1 = DAPOS(IMAX,K); + IDA2 = DAPOS(K,K); + T = DA[IDA1]; + DA[IDA1] = DA[IDA2]; + DA[IDA2] = T; + } +/* =========================================================== + Compute multipliers. + Do row elimination with column indexing. + =========================================================== */ + T = -ONE/DA[DAPOS(K,K)]; + lps_dscal(M-K,T,DA+DAPOS(KP1,K)-LUSOL_ARRAYOFFSET,1); + for(J = KP1; J <= LAST; J++) { + IDA1 = DAPOS(IMAX,J); + T = DA[IDA1]; + if(IMAX!=K) { + IDA2 = DAPOS(K,J); + DA[IDA1] = DA[IDA2]; + DA[IDA2] = T; + } + lps_daxpy(M-K,T,DA+DAPOS(KP1,K)-LUSOL_ARRAYOFFSET,1, + DA+DAPOS(KP1,J)-LUSOL_ARRAYOFFSET,1); + } + } + else + break; + if(K>=LAST) + break; + } +/* Set ipvt(*) for singular rows. */ + for(K = LAST+1; K <= M; K++) + IPVT[K] = K; + +} + +/* ================================================================== + lu1DPP factors a dense m x n matrix A by Gaussian elimination, + using row interchanges for stability, as in dgefa from LINPACK. + This version also uses column interchanges if all elements in a + pivot column are smaller than (or equal to) "small". Such columns + are changed to zero and permuted to the right-hand end. + As in LINPACK, ipvt(*) keeps track of pivot rows. + Rows of U are interchanged, but we don't have to physically + permute rows of L. In contrast, column interchanges are applied + directly to the columns of both L and U, and to the column + permutation vector iq(*). + ------------------------------------------------------------------ + On entry: + a Array holding the matrix A to be factored. + lda The leading dimension of the array a. + m The number of rows in A. + n The number of columns in A. + small A drop tolerance. Must be zero or positive. + + On exit: + a An upper triangular matrix and the multipliers + which were used to obtain it. + The factorization can be written A = L*U where + L is a product of permutation and unit lower + triangular matrices and U is upper triangular. + nsing Number of singularities detected. + ipvt Records the pivot rows. + iq A vector to which column interchanges are applied. + ------------------------------------------------------------------ + 02 May 1989: First version derived from dgefa + in LINPACK (version dated 08/14/78). + 05 Feb 1994: Generalized to treat rectangular matrices + and use column interchanges when necessary. + ipvt is retained, but column permutations are applied + directly to iq(*). + 21 Dec 1994: Bug found via example from Steve Dirkse. + Loop 100 added to set ipvt(*) for singular rows. + ================================================================== */ +void LU1DPP(LUSOLrec *LUSOL, LPSREAL DA[], int LDA, int M, int N, LPSREAL SMALL, + int *NSING, int IPVT[], int IX[]) +{ + int I, J, K, KP1, L, LAST, LENCOL; + register LPSREAL T; +#ifdef LUSOLFastDenseIndex + register LPSREAL *DA1, *DA2; + int IDA1, IDA2; +#else + register int IDA1, IDA2; +#endif + + *NSING = 0; + K = 1; + LAST = N; +/* ------------------------------------------------------------------ + Start of elimination loop. + ------------------------------------------------------------------ */ +x10: + KP1 = K+1; + LENCOL = (M-K)+1; +/* Find l, the pivot row. */ + L = (lps_idamax(LENCOL,DA+DAPOS(K,K)-LUSOL_ARRAYOFFSET,1)+K)-1; + IPVT[K] = L; + if(fabs(DA[DAPOS(L,K)])<=SMALL) { +/* =============================================================== + Do column interchange, changing old pivot column to zero. + Reduce "last" and try again with same k. + =============================================================== */ + (*NSING)++; + J = IX[LAST]; + IX[LAST] = IX[K]; + IX[K] = J; +#ifdef LUSOLFastDenseIndex + DA1 = DA+DAPOS(0,LAST); + DA2 = DA+DAPOS(0,K); + for(I = 1; I <= K-1; I++) { + DA1++; + DA2++; + T = *DA1; + *DA1 = *DA2; + *DA2 = T; +#else + for(I = 1; I <= K-1; I++) { + IDA1 = DAPOS(I,LAST); + IDA2 = DAPOS(I,K); + T = DA[IDA1]; + DA[IDA1] = DA[IDA2]; + DA[IDA2] = T; +#endif + } +#ifdef LUSOLFastDenseIndex + for(I = K; I <= M; I++) { + DA1++; + DA2++; + T = *DA1; + *DA1 = ZERO; + *DA2 = T; +#else + for(I = K; I <= M; I++) { + IDA1 = DAPOS(I,LAST); + IDA2 = DAPOS(I,K); + T = DA[IDA1]; + DA[IDA1] = ZERO; + DA[IDA2] = T; +#endif + } + LAST = LAST-1; + if(K<=LAST) + goto x10; + } + else if(M>K) { +/* =============================================================== + Do row interchange if necessary. + =============================================================== */ + if(L!=K) { + IDA1 = DAPOS(L,K); + IDA2 = DAPOS(K,K); + T = DA[IDA1]; + DA[IDA1] = DA[IDA2]; + DA[IDA2] = T; + } +/* =============================================================== + Compute multipliers. + Do row elimination with column indexing. + =============================================================== */ + T = -ONE/DA[DAPOS(K,K)]; + lps_dscal(M-K,T,DA+DAPOS(KP1,K)-LUSOL_ARRAYOFFSET,1); + for(J = KP1; J <= LAST; J++) { + IDA1 = DAPOS(L,J); + T = DA[IDA1]; + if(L!=K) { + IDA2 = DAPOS(K,J); + DA[IDA1] = DA[IDA2]; + DA[IDA2] = T; + } + lps_daxpy(M-K,T,DA+DAPOS(KP1,K)-LUSOL_ARRAYOFFSET,1, + DA+DAPOS(KP1,J)-LUSOL_ARRAYOFFSET,1); + } + K++; + if(K<=LAST) + goto x10; + } +/* Set ipvt(*) for singular rows. */ + for(K = LAST+1; K <= M; K++) + IPVT[K] = K; + +} + + +/* ================================================================== + lu1pq1 constructs a permutation iperm from the array len. + ------------------------------------------------------------------ + On entry: + len(i) holds the number of nonzeros in the i-th row (say) + of an m by n matrix. + num(*) can be anything (workspace). + + On exit: + iperm contains a list of row numbers in the order + rows of length 0, rows of length 1,..., rows of length n. + loc(nz) points to the first row containing nz nonzeros, + nz = 1, n. + inv(i) points to the position of row i within iperm(*). + ================================================================== */ +void LU1PQ1(LUSOLrec *LUSOL, int M, int N, int LEN[], + int IPERM[], int LOC[], int INV[], int NUM[]) +{ + int NZEROS, NZ, I, L; + +/* Count the number of rows of each length. */ + NZEROS = 0; + for(NZ = 1; NZ <= N; NZ++) { + NUM[NZ] = 0; + LOC[NZ] = 0; + } + for(I = 1; I <= M; I++) { + NZ = LEN[I]; + if(NZ==0) + NZEROS++; + else + NUM[NZ]++; + } +/* Set starting locations for each length. */ + L = NZEROS+1; + for(NZ = 1; NZ <= N; NZ++) { + LOC[NZ] = L; + L += NUM[NZ]; + NUM[NZ] = 0; + } +/* Form the list. */ + NZEROS = 0; + for(I = 1; I <= M; I++) { + NZ = LEN[I]; + if(NZ==0) { + NZEROS++; + IPERM[NZEROS] = I; + } + else { + L = LOC[NZ]+NUM[NZ]; + IPERM[L] = I; + NUM[NZ]++; + } + } +/* Define the inverse of iperm. */ + for(L = 1; L <= M; L++) { + I = IPERM[L]; + INV[I] = L; + } +} + +/* ================================================================== + lu1pq2 frees the space occupied by the pivot row, + and updates the column permutation iq. + Also used to free the pivot column and update the row perm ip. + ------------------------------------------------------------------ + nzpiv (input) is the length of the pivot row (or column). + nzchng (output) is the net change in total nonzeros. + ------------------------------------------------------------------ + 14 Apr 1989 First version. + ================================================================== */ +void LU1PQ2(LUSOLrec *LUSOL, int NZPIV, int *NZCHNG, + int IND[], int LENOLD[], int LENNEW[], int IXLOC[], int IX[], int IXINV[]) +{ + int LR, J, NZ, NZNEW, L, NEXT, LNEW, JNEW; + + *NZCHNG = 0; + for(LR = 1; LR <= NZPIV; LR++) { + J = IND[LR]; + IND[LR] = 0; + NZ = LENOLD[LR]; + NZNEW = LENNEW[J]; + if(NZ!=NZNEW) { + L = IXINV[J]; + *NZCHNG = (*NZCHNG+NZNEW)-NZ; +/* l above is the position of column j in iq (so j = iq(l)). */ + if(NZNZNEW) + goto x120; + } + IX[LNEW] = J; + IXINV[J] = LNEW; + } + } +} + +/* ================================================================== + lu1pq3 looks at the permutation iperm(*) and moves any entries + to the end whose corresponding length len(*) is zero. + ------------------------------------------------------------------ + 09 Feb 1994: Added work array iw(*) to improve efficiency. + ================================================================== */ +void LU1PQ3(LUSOLrec *LUSOL, int MN, int LEN[], int IPERM[], int IW[], int *NRANK) +{ + int NZEROS, K, I; + + *NRANK = 0; + NZEROS = 0; + for(K = 1; K <= MN; K++) { + I = IPERM[K]; + if(LEN[I]==0) { + NZEROS++; + IW[NZEROS] = I; + } + else { + (*NRANK)++; + IPERM[*NRANK] = I; + } + } + for(K = 1; K <= NZEROS; K++) + IPERM[(*NRANK)+K] = IW[K]; +} + +/* ================================================================== + lu1rec + ------------------------------------------------------------------ + On exit: + ltop is the length of useful entries in ind(*), a(*). + ind(ltop+1) is "i" such that len(i), loc(i) belong to the last + item in ind(*), a(*). + ------------------------------------------------------------------ + 00 Jun 1983: Original version of lu1rec followed John Reid's + compression routine in LA05. It recovered + space in ind(*) and optionally a(*) + by eliminating entries with ind(l) = 0. + The elements of ind(*) could not be negative. + If len(i) was positive, entry i contained + that many elements, starting at loc(i). + Otherwise, entry i was eliminated. + 23 Mar 2001: Realised we could have len(i) = 0 in rare cases! + (Mostly during TCP when the pivot row contains + a column of length 1 that couldn't be a pivot.) + Revised storage scheme to + keep entries with ind(l) > 0, + squeeze out entries with -n <= ind(l) <= 0, + and to allow len(i) = 0. + Empty items are moved to the end of the compressed + ind(*) and/or a(*) arrays are given one empty space. + Items with len(i) < 0 are still eliminated. + 27 Mar 2001: Decided to use only ind(l) > 0 and = 0 in lu1fad. + Still have to keep entries with len(i) = 0. + ================================================================== */ +void LU1REC(LUSOLrec *LUSOL, int N, MYBOOL REALS, int *LTOP, + int IND[], int LEN[], int LOC[]) +{ + int NEMPTY, I, LENI, L, LEND, K, KLAST, ILAST, LPRINT; + + NEMPTY = 0; + for(I = 1; I <= N; I++) { + LENI = LEN[I]; + if(LENI>0) { + L = (LOC[I]+LENI)-1; + LEN[I] = IND[L]; + IND[L] = -(N+I); + } + else if(LENI==0) + NEMPTY++; + } + K = 0; +/* Previous k */ + KLAST = 0; +/* Last entry moved. */ + ILAST = 0; + LEND = *LTOP; + for(L = 1; L <= LEND; L++) { + I = IND[L]; + if(I>0) { + K++; + IND[K] = I; + if(REALS) + LUSOL->a[K] = LUSOL->a[L]; + } + else if(I<-N) { +/* This is the end of entry i. */ + I = -(N+I); + ILAST = I; + K++; + IND[K] = LEN[I]; + if(REALS) + LUSOL->a[K] = LUSOL->a[L]; + LOC[I] = KLAST+1; + LEN[I] = K-KLAST; + KLAST = K; + } + } +/* Move any empty items to the end, adding 1 free entry for each. */ + if(NEMPTY>0) { + for(I = 1; I <= N; I++) { + if(LEN[I]==0) { + K++; + LOC[I] = K; + IND[K] = 0; + ILAST = I; + } + } + } + LPRINT = LUSOL->luparm[LUSOL_IP_PRINTLEVEL]; + if(LPRINT>=LUSOL_MSG_PIVOT) + LUSOL_report(LUSOL, 0, "lu1rec. File compressed from %d to %d\n", + *LTOP,K,REALS,NEMPTY); +/* ncp */ + LUSOL->luparm[LUSOL_IP_COMPRESSIONS_LU]++; +/* Return ilast in ind(ltop + 1). */ + *LTOP = K; + IND[(*LTOP)+1] = ILAST; +} + +/* ================================================================== + lu1slk sets w(j) > 0 if column j is a unit vector. + ------------------------------------------------------------------ + 21 Nov 2000: First version. lu1fad needs it for TCP. + Note that w(*) is nominally an integer array, + but the only spare space is the double array w(*). + ================================================================== */ +void LU1SLK(LUSOLrec *LUSOL) +{ + int J, LC1, LQ, LQ1, LQ2; + + for(J = 1; J <= LUSOL->n; J++) { + LUSOL->w[J] = 0; + } + LQ1 = (LUSOL->iqloc ? LUSOL->iqloc[1] : LUSOL->n+1); +/* LQ1 = LUSOL->iqloc[1]; This is the original version; correction above by Yin Zhang */ + LQ2 = LUSOL->n; + if(LUSOL->m>1) + LQ2 = LUSOL->iqloc[2]-1; + for(LQ = LQ1; LQ <= LQ2; LQ++) { + J = LUSOL->iq[LQ]; + LC1 = LUSOL->locc[J]; + if(fabs(LUSOL->a[LC1])==1) { + LUSOL->w[J] = 1; + } + } +} + +/* ================================================================== + lu1gau does most of the work for each step of Gaussian elimination. + A multiple of the pivot column is added to each other column j + in the pivot row. The column list is fully updated. + The row list is updated if there is room, but some fill-ins may + remain, as indicated by ifill and jfill. + ------------------------------------------------------------------ + Input: + ilast is the row at the end of the row list. + jlast is the column at the end of the column list. + lfirst is the first column to be processed. + lu + 1 is the corresponding element of U in au(*). + nfill keeps track of pending fill-in. + a(*) contains the nonzeros for each column j. + indc(*) contains the row indices for each column j. + al(*) contains the new column of L. A multiple of it is + used to modify each column. + mark(*) has been set to -1, -2, -3, ... in the rows + corresponding to nonzero 1, 2, 3, ... of the col of L. + au(*) contains the new row of U. Each nonzero gives the + required multiple of the column of L. + + Workspace: + markl(*) marks the nonzeros of L actually used. + (A different mark, namely j, is used for each column.) + + Output: + ilast New last row in the row list. + jlast New last column in the column list. + lfirst = 0 if all columns were completed, + > 0 otherwise. + lu returns the position of the last nonzero of U + actually used, in case we come back in again. + nfill keeps track of the total extra space needed in the + row file. + ifill(ll) counts pending fill-in for rows involved in the new + column of L. + jfill(lu) marks the first pending fill-in stored in columns + involved in the new row of U. + ------------------------------------------------------------------ + 16 Apr 1989: First version of lu1gau. + 23 Apr 1989: lfirst, lu, nfill are now input and output + to allow re-entry if elimination is interrupted. + 23 Mar 2001: Introduced ilast, jlast. + 27 Mar 2001: Allow fill-in "in situ" if there is already room + up to but NOT INCLUDING the end of the + row or column file. + Seems safe way to avoid overwriting empty rows/cols + at the end. (May not be needed though, now that we + have ilast and jlast.) + ================================================================== */ +void LU1GAU(LUSOLrec *LUSOL, int MELIM, int NSPARE, + LPSREAL SMALL, int LPIVC1, int LPIVC2, int *LFIRST, int LPIVR2, + int LFREE, int MINFRE, int ILAST, int *JLAST, int *LROW, int *LCOL, + int *LU, int *NFILL, + int MARK[], LPSREAL AL[], int MARKL[], LPSREAL AU[], int IFILL[], int JFILL[]) +{ + MYBOOL ATEND; + int LR, J, LENJ, NFREE, LC1, LC2, NDONE, NDROP, L, I, LL, K, + LR1, LAST, LREP, L1, L2, LC, LENI; + register LPSREAL UJ; + LPSREAL AIJ; + + for(LR = *LFIRST; LR <= LPIVR2; LR++) { + J = LUSOL->indr[LR]; + LENJ = LUSOL->lenc[J]; + NFREE = LFREE - *LCOL; + if(NFREElocc[J]; + LC2 = (LC1+LENJ)-1; + ATEND = (MYBOOL) (J==*JLAST); + NDONE = 0; + if(LENJ==0) + goto x500; + NDROP = 0; + for(L = LC1; L <= LC2; L++) { + I = LUSOL->indc[L]; + LL = -MARK[I]; + if(LL>0) { + NDONE++; + MARKL[LL] = J; + LUSOL->a[L] += AL[LL]*UJ; + if(fabs(LUSOL->a[L])<=SMALL) { + NDROP++; + } + } + } +/* --------------------------------------------------------------- + Remove any negligible modified nonzeros from both + the column file and the row file. + --------------------------------------------------------------- */ + if(NDROP==0) + goto x500; + K = LC1; + for(L = LC1; L <= LC2; L++) { + I = LUSOL->indc[L]; + if(fabs(LUSOL->a[L])<=SMALL) + goto x460; + LUSOL->a[K] = LUSOL->a[L]; + LUSOL->indc[K] = I; + K++; + continue; +/* Delete the nonzero from the row file. */ +x460: + LENJ--; + LUSOL->lenr[I]--; + LR1 = LUSOL->locr[I]; + LAST = LR1+LUSOL->lenr[I]; + for(LREP = LR1; LREP <= LAST; LREP++) { + if(LUSOL->indr[LREP]==J) + break; + } + LUSOL->indr[LREP] = LUSOL->indr[LAST]; + LUSOL->indr[LAST] = 0; + if(I==ILAST) + (*LROW)--; + } +/* Free the deleted elements from the column file. */ +#ifdef LUSOLFastClear + MEMCLEAR(LUSOL->indc+K, LC2-K+1); +#else + for(L = K; L <= LC2; L++) + LUSOL->indc[L] = ZERO; +#endif + if(ATEND) + *LCOL = K-1; +/* --------------------------------------------------------------- + Deal with the fill-in in column j. + --------------------------------------------------------------- */ +x500: + if(NDONE==MELIM) + goto x590; +/* See if column j already has room for the fill-in. */ + if(ATEND) + goto x540; + LAST = (LC1+LENJ)-1; + L1 = LAST+1; + L2 = (LAST+MELIM)-NDONE; +/* 27 Mar 2001: Be sure it's not at or past end of the col file. */ + if(L2>=*LCOL) + goto x520; + for(L = L1; L <= L2; L++) { + if(LUSOL->indc[L]!=0) + goto x520; + } + goto x540; +/* We must move column j to the end of the column file. + First, leave some spare room at the end of the + current last column. */ +x520: +#if 1 + L1 = (*LCOL)+1; + L2 = (*LCOL)+NSPARE; + *LCOL = L2; + for(L = L1; L <= L2; L++) { +#else + for(L = (*LCOL)+1; L <= (*LCOL)+NSPARE; L++) { + *LCOL = L; /* ****** ERROR ???? */ +#endif +/* Spare space is free. */ + LUSOL->indc[L] = 0; + } + ATEND = TRUE; + *JLAST = J; + L1 = LC1; + L2 = *LCOL; + LC1 = L2+1; + LUSOL->locc[J] = LC1; + for(L = L1; L <= LAST; L++) { + L2++; + LUSOL->a[L2] = LUSOL->a[L]; + LUSOL->indc[L2] = LUSOL->indc[L]; +/* Free space. */ + LUSOL->indc[L] = 0; + } + *LCOL = L2; +/* --------------------------------------------------------------- + Inner loop for the fill-in in column j. + This is usually not very expensive. + --------------------------------------------------------------- */ +x540: + LAST = (LC1+LENJ)-1; + LL = 0; + for(LC = LPIVC1; LC <= LPIVC2; LC++) { + LL++; + if(MARKL[LL]==J) + continue; + AIJ = AL[LL]*UJ; + if(fabs(AIJ)<=SMALL) + continue; + LENJ++; + LAST++; + LUSOL->a[LAST] = AIJ; + I = LUSOL->indc[LC]; + LUSOL->indc[LAST] = I; + LENI = LUSOL->lenr[I]; +/* Add 1 fill-in to row i if there is already room. + 27 Mar 2001: Be sure it's not at or past the } + of the row file. */ + L = LUSOL->locr[I]+LENI; + if(L>=*LROW) + goto x550; + if(LUSOL->indr[L]>0) + goto x550; + LUSOL->indr[L] = J; + LUSOL->lenr[I] = LENI+1; + continue; +/* Row i does not have room for the fill-in. + Increment ifill(ll) to count how often this has + happened to row i. Also, add m to the row index + indc(last) in column j to mark it as a fill-in that is + still pending. + If this is the first pending fill-in for row i, + nfill includes the current length of row i + (since the whole row has to be moved later). + If this is the first pending fill-in for column j, + jfill(lu) records the current length of column j + (to shorten the search for pending fill-ins later). */ +x550: + if(IFILL[LL]==0) + (*NFILL) += LENI+NSPARE; + if(JFILL[*LU]==0) + JFILL[*LU] = LENJ; + (*NFILL)++; + IFILL[LL]++; + LUSOL->indc[LAST] = LUSOL->m+I; + } + if(ATEND) + *LCOL = LAST; +/* End loop for column j. Store its final length. */ +x590: + LUSOL->lenc[J] = LENJ; + } +/* Successful completion. */ + *LFIRST = 0; + return; +/* Interruption. We have to come back in after the + column file is compressed. Give lfirst a new value. + lu and nfill will retain their current values. */ +x900: + *LFIRST = LR; +} + +/* ================================================================== + lu1mar uses a Markowitz criterion to select a pivot element + for the next stage of a sparse LU factorization, + subject to a Threshold Partial Pivoting stability criterion (TPP) + that bounds the elements of L. + ------------------------------------------------------------------ + gamma is "gamma" in the tie-breaking rule TB4 in the LUSOL paper. + ------------------------------------------------------------------ + Search cols of length nz = 1, then rows of length nz = 1, + then cols of length nz = 2, then rows of length nz = 2, etc. + ------------------------------------------------------------------ + 00 Jan 1986 Version documented in LUSOL paper: + Gill, Murray, Saunders and Wright (1987), + Maintaining LU factors of a general sparse matrix, + Linear algebra and its applications 88/89, 239-270. + 02 Feb 1989 Following Suhl and Aittoniemi (1987), the largest + element in each column is now kept at the start of + the column, i.e. in position locc(j) of a and indc. + This should speed up the Markowitz searches. + 26 Apr 1989 Both columns and rows searched during spars1 phase. + Only columns searched during spars2 phase. + maxtie replaced by maxcol and maxrow. + 05 Nov 1993 Initializing "mbest = m * n" wasn't big enough when + m = 10, n = 3, and last column had 7 nonzeros. + 09 Feb 1994 Realised that "mbest = maxmn * maxmn" might overflow. + Changed to "mbest = maxmn * 1000". + 27 Apr 2000 On large example from Todd Munson, + that allowed "if (mbest .le. nz1**2) go to 900" + to exit before any pivot had been found. + Introduced kbest = mbest / nz1. + Most pivots can be rejected with no integer multiply. + TRUE merit is evaluated only if it's as good as the + best so far (or better). There should be no danger + of integer overflow unless A is incredibly + large and dense. + 10 Sep 2000 TCP, aijtol added for Threshold Complete Pivoting. + ================================================================== */ +void LU1MAR(LUSOLrec *LUSOL, int MAXMN, MYBOOL TCP, LPSREAL AIJTOL, LPSREAL LTOL, + int MAXCOL, int MAXROW, int *IBEST, int *JBEST, int *MBEST) +{ + int KBEST, NCOL, NROW, NZ1, NZ, LQ1, LQ2, LQ, J, LC1, LC2, LC, I, LEN1, MERIT, LP1, + LP2, LP, LR1, LR2, LR; + LPSREAL ABEST, LBEST, AMAX, AIJ, CMAX; + + ABEST = ZERO; + LBEST = ZERO; + *IBEST = 0; + *MBEST = -1; + KBEST = MAXMN+1; + NCOL = 0; + NROW = 0; + NZ1 = 0; + for(NZ = 1; NZ <= MAXMN; NZ++) { +/* nz1 = nz - 1 + if (mbest .le. nz1**2) go to 900 */ + if(KBEST<=NZ1) + goto x900; + if(*IBEST>0) { + if(NCOL>=MAXCOL) + goto x200; + } + if(NZ>LUSOL->m) + goto x200; +/* --------------------------------------------------------------- + Search the set of columns of length nz. + --------------------------------------------------------------- */ + LQ1 = LUSOL->iqloc[NZ]; + LQ2 = LUSOL->n; + if(NZm) + LQ2 = LUSOL->iqloc[NZ+1]-1; + for(LQ = LQ1; LQ <= LQ2; LQ++) { + NCOL = NCOL+1; + J = LUSOL->iq[LQ]; + LC1 = LUSOL->locc[J]; + LC2 = LC1+NZ1; + AMAX = fabs(LUSOL->a[LC1]); +/* Test all aijs in this column. + amax is the largest element (the first in the column). + cmax is the largest multiplier if aij becomes pivot. */ + if(TCP) { +/* Nothing in whole column */ + if(AMAXindc[LC]; + LEN1 = LUSOL->lenr[I]-1; +/* merit = nz1 * len1 + if (merit > mbest) continue; */ + if(LEN1>KBEST) + continue; +/* aij has a promising merit. + Apply the stability test. + We require aij to be sufficiently large compared to + all other nonzeros in column j. This is equivalent + to requiring cmax to be bounded by Ltol. */ + if(LC==LC1) { +/* This is the maximum element, amax. + Find the biggest element in the rest of the column + and hence get cmax. We know cmax .le. 1, but + we still want it exactly in order to break ties. + 27 Apr 2002: Settle for cmax = 1. */ + AIJ = AMAX; + CMAX = ONE; +/* cmax = zero + for (l = lc1 + 1; l <= lc2; l++) + cmax = max( cmax, abs( a(l) ) ); + cmax = cmax / amax; */ + } + else { +/* aij is not the biggest element, so cmax .ge. 1. + Bail out if cmax will be too big. */ + AIJ = fabs(LUSOL->a[LC]); +/* Absolute test for Complete Pivoting */ + if(TCP) { + if(AIJparmlu[LUSOL_RP_GAMMA] && + CMAX<=LUSOL->parmlu[LUSOL_RP_GAMMA]) { + if(ABEST>=AIJ) + continue; + } + else { + if(LBEST<=CMAX) + continue; + } + } +/* aij is the best pivot so far. */ + *IBEST = I; + *JBEST = J; + KBEST = LEN1; + *MBEST = MERIT; + ABEST = AIJ; + LBEST = CMAX; + if(NZ==1) + goto x900; + } +/* Finished with that column. */ + if(*IBEST>0) { + if(NCOL>=MAXCOL) + goto x200; + } + } +/* --------------------------------------------------------------- + Search the set of rows of length nz. + --------------------------------------------------------------- */ +x200: +/* if (mbest .le. nz*nz1) go to 900 */ + if(KBEST<=NZ) + goto x900; + if(*IBEST>0) { + if(NROW>=MAXROW) + goto x290; + } + if(NZ>LUSOL->n) + goto x290; + LP1 = LUSOL->iploc[NZ]; + LP2 = LUSOL->m; + if(NZn) + LP2 = LUSOL->iploc[NZ+1]-1; + for(LP = LP1; LP <= LP2; LP++) { + NROW++; + I = LUSOL->ip[LP]; + LR1 = LUSOL->locr[I]; + LR2 = LR1+NZ1; + for(LR = LR1; LR <= LR2; LR++) { + J = LUSOL->indr[LR]; + LEN1 = LUSOL->lenc[J]-1; +/* merit = nz1 * len1 + if (merit .gt. mbest) continue */ + if(LEN1>KBEST) + continue; +/* aij has a promising merit. + Find where aij is in column j. */ + LC1 = LUSOL->locc[J]; + LC2 = LC1+LEN1; + AMAX = fabs(LUSOL->a[LC1]); + for(LC = LC1; LC <= LC2; LC++) { + if(LUSOL->indc[LC]==I) + break; + } +/* Apply the same stability test as above. */ + AIJ = fabs(LUSOL->a[LC]); +/* Absolute test for Complete Pivoting */ + if(TCP) { + if(AIJparmlu[LUSOL_RP_GAMMA] && + CMAX<=LUSOL->parmlu[LUSOL_RP_GAMMA]) { + if(ABEST>=AIJ) + continue; + } + else { + if(LBEST<=CMAX) + continue; + } + } +/* aij is the best pivot so far. */ + *IBEST = I; + *JBEST = J; + *MBEST = MERIT; + KBEST = LEN1; + ABEST = AIJ; + LBEST = CMAX; + if(NZ==1) + goto x900; + } +/* Finished with that row. */ + if(*IBEST>0) { + if(NROW>=MAXROW) + goto x290; + } + } +/* See if it's time to quit. */ +x290: + if(*IBEST>0) { + if(NROW>=MAXROW && NCOL>=MAXCOL) + goto x900; + } +/* Press on with next nz. */ + NZ1 = NZ; + if(*IBEST>0) + KBEST = *MBEST/NZ1; + } +x900: +; +} + +/* ================================================================== + lu1mCP uses a Markowitz criterion to select a pivot element + for the next stage of a sparse LU factorization, + subject to a Threshold Complete Pivoting stability criterion (TCP) + that bounds the elements of L and U. + ------------------------------------------------------------------ + gamma is "gamma" in the tie-breaking rule TB4 in the LUSOL paper. + ------------------------------------------------------------------ + 09 May 2002: First version of lu1mCP. + It searches columns only, using the heap that + holds the largest element in each column. + 09 May 2002: Current version of lu1mCP. + ================================================================== */ +void LU1MCP(LUSOLrec *LUSOL, LPSREAL AIJTOL, int *IBEST, int *JBEST, int *MBEST, + int HLEN, LPSREAL HA[], int HJ[]) +{ + int J, KHEAP, LC, LC1, LC2, LENJ, MAXCOL, NCOL, NZ1, I, LEN1, MERIT; + LPSREAL ABEST, AIJ, AMAX, CMAX, LBEST; + +/* ------------------------------------------------------------------ + Search up to maxcol columns stored at the top of the heap. + The very top column helps initialize mbest. + ------------------------------------------------------------------ */ + ABEST = ZERO; + LBEST = ZERO; + *IBEST = 0; +/* Column at the top of the heap */ + *JBEST = HJ[1]; + LENJ = LUSOL->lenc[*JBEST]; +/* Bigger than any possible merit */ + *MBEST = LENJ*HLEN; +/* ??? Big question */ + MAXCOL = 40; +/* No. of columns searched */ + NCOL = 0; + for(KHEAP = 1; KHEAP <= HLEN; KHEAP++) { + AMAX = HA[KHEAP]; + if(AMAXlenc[J]; + NZ1 = LENJ-1; + LC1 = LUSOL->locc[J]; + LC2 = LC1+NZ1; +/* -- amax = abs( a(lc1) ) + Test all aijs in this column. + amax is the largest element (the first in the column). + cmax is the largest multiplier if aij becomes pivot. */ + for(LC = LC1; LC <= LC2; LC++) { + I = LUSOL->indc[LC]; + LEN1 = LUSOL->lenr[I]-1; + MERIT = NZ1*LEN1; + if(MERIT>*MBEST) + continue; +/* aij has a promising merit. */ + if(LC==LC1) { +/* This is the maximum element, amax. + Find the biggest element in the rest of the column + and hence get cmax. We know cmax .le. 1, but + we still want it exactly in order to break ties. + 27 Apr 2002: Settle for cmax = 1. */ + AIJ = AMAX; + CMAX = ONE; +/* cmax = ZERO; + for(l = lc1 + 1; l <= lc2; l++) + cmax = max( cmax, abs( a(l) ) ) + cmax = cmax / amax; */ + } + else { +/* aij is not the biggest element, so cmax .ge. 1. + Bail out if cmax will be too big. */ + AIJ = fabs(LUSOL->a[LC]); + if(AIJparmlu[LUSOL_RP_GAMMA] && + CMAX<=LUSOL->parmlu[LUSOL_RP_GAMMA]) { + if(ABEST>=AIJ) + continue; + } + else { + if(LBEST<=CMAX) + continue; + } + } +/* aij is the best pivot so far. */ + *IBEST = I; + *JBEST = J; + *MBEST = MERIT; + ABEST = AIJ; + LBEST = CMAX; +/* Col or row of length 1 */ + if(MERIT==0) + goto x900; + } + if(NCOL>=MAXCOL) + goto x900; + } +x900: +; +} + +/* ================================================================== + lu1mRP uses a Markowitz criterion to select a pivot element + for the next stage of a sparse LU factorization, + subject to a Threshold Rook Pivoting stability criterion (TRP) + that bounds the elements of L and U. + ------------------------------------------------------------------ + 11 Jun 2002: First version of lu1mRP derived from lu1mar. + 11 Jun 2002: Current version of lu1mRP. + ================================================================== */ +void LU1MRP(LUSOLrec *LUSOL, int MAXMN, LPSREAL LTOL, int MAXCOL, int MAXROW, + int *IBEST, int *JBEST, int *MBEST, LPSREAL AMAXR[]) +{ + int I, J, KBEST, LC, LC1, LC2, LEN1, LP, LP1, LP2, LQ, LQ1, + LQ2, LR, LR1, LR2, MERIT, NCOL, NROW, NZ, NZ1; + LPSREAL ABEST, AIJ, AMAX, ATOLI, ATOLJ; + +/* ------------------------------------------------------------------ + Search cols of length nz = 1, then rows of length nz = 1, + then cols of length nz = 2, then rows of length nz = 2, etc. + ------------------------------------------------------------------ */ + ABEST = ZERO; + *IBEST = 0; + KBEST = MAXMN+1; + *MBEST = -1; + NCOL = 0; + NROW = 0; + NZ1 = 0; + for(NZ = 1; NZ <= MAXMN; NZ++) { +/* nz1 = nz - 1 + if (mbest .le. nz1**2) go to 900 */ + if(KBEST<=NZ1) + goto x900; + if(*IBEST>0) { + if(NCOL>=MAXCOL) + goto x200; + } + if(NZ>LUSOL->m) + goto x200; +/* --------------------------------------------------------------- + Search the set of columns of length nz. + --------------------------------------------------------------- */ + LQ1 = LUSOL->iqloc[NZ]; + LQ2 = LUSOL->n; + if(NZm) + LQ2 = LUSOL->iqloc[NZ+1]-1; + for(LQ = LQ1; LQ <= LQ2; LQ++) { + NCOL = NCOL+1; + J = LUSOL->iq[LQ]; + LC1 = LUSOL->locc[J]; + LC2 = LC1+NZ1; + AMAX = fabs(LUSOL->a[LC1]); +/* Min size of pivots in col j */ + ATOLJ = AMAX/LTOL; +/* Test all aijs in this column. */ + for(LC = LC1; LC <= LC2; LC++) { + I = LUSOL->indc[LC]; + LEN1 = LUSOL->lenr[I]-1; +/* merit = nz1 * len1 + if (merit .gt. mbest) continue; */ + if(LEN1>KBEST) + continue; +/* aij has a promising merit. + Apply the Threshold Rook Pivoting stability test. + First we require aij to be sufficiently large + compared to other nonzeros in column j. + Then we require aij to be sufficiently large + compared to other nonzeros in row i. */ + AIJ = fabs(LUSOL->a[LC]); + if(AIJ=AIJ) + continue; + } +/* aij is the best pivot so far. */ + *IBEST = I; + *JBEST = J; + KBEST = LEN1; + *MBEST = MERIT; + ABEST = AIJ; + if(NZ==1) + goto x900; + } +/* Finished with that column. */ + if(*IBEST>0) { + if(NCOL>=MAXCOL) + goto x200; + } + } +/* --------------------------------------------------------------- + Search the set of rows of length nz. + --------------------------------------------------------------- */ +x200: +/* if (mbest .le. nz*nz1) go to 900 */ + if(KBEST<=NZ) + goto x900; + if(*IBEST>0) { + if(NROW>=MAXROW) + goto x290; + } + if(NZ>LUSOL->n) + goto x290; + LP1 = LUSOL->iploc[NZ]; + LP2 = LUSOL->m; + if(NZn) + LP2 = LUSOL->iploc[NZ+1]-1; + for(LP = LP1; LP <= LP2; LP++) { + NROW = NROW+1; + I = LUSOL->ip[LP]; + LR1 = LUSOL->locr[I]; + LR2 = LR1+NZ1; +/* Min size of pivots in row i */ + ATOLI = AMAXR[I]/LTOL; + for(LR = LR1; LR <= LR2; LR++) { + J = LUSOL->indr[LR]; + LEN1 = LUSOL->lenc[J]-1; +/* merit = nz1 * len1 + if (merit .gt. mbest) continue; */ + if(LEN1>KBEST) + continue; +/* aij has a promising merit. + Find where aij is in column j. */ + LC1 = LUSOL->locc[J]; + LC2 = LC1+LEN1; + AMAX = fabs(LUSOL->a[LC1]); + for(LC = LC1; LC <= LC2; LC++) { + if(LUSOL->indc[LC]==I) + break; + } +/* Apply the Threshold Rook Pivoting stability test. + First we require aij to be sufficiently large + compared to other nonzeros in row i. + Then we require aij to be sufficiently large + compared to other nonzeros in column j. */ + AIJ = fabs(LUSOL->a[LC]); + if(AIJ=AIJ) + continue; + } +/* aij is the best pivot so far. */ + *IBEST = I; + *JBEST = J; + KBEST = LEN1; + *MBEST = MERIT; + ABEST = AIJ; + if(NZ==1) + goto x900; + } +/* Finished with that row. */ + if(*IBEST>0) { + if(NROW>=MAXROW) + goto x290; + } + } +/* See if it's time to quit. */ +x290: + if(*IBEST>0) { + if(NROW>=MAXROW && NCOL>=MAXCOL) + goto x900; + } +/* Press on with next nz. */ + NZ1 = NZ; + if(*IBEST>0) + KBEST = *MBEST/NZ1; + } +x900: +; +} + +/* ================================================================== + lu1mSP is intended for symmetric matrices that are either + definite or quasi-definite. + lu1mSP uses a Markowitz criterion to select a pivot element for + the next stage of a sparse LU factorization of a symmetric matrix, + subject to a Threshold Symmetric Pivoting stability criterion + (TSP) restricted to diagonal elements to preserve symmetry. + This bounds the elements of L and U and should have rank-revealing + properties analogous to Threshold Rook Pivoting for unsymmetric + matrices. + ------------------------------------------------------------------ + 14 Dec 2002: First version of lu1mSP derived from lu1mRP. + There is no safeguard to ensure that A is symmetric. + 14 Dec 2002: Current version of lu1mSP. + ================================================================== */ +void LU1MSP(LUSOLrec *LUSOL, int MAXMN, LPSREAL LTOL, int MAXCOL, + int *IBEST, int *JBEST, int *MBEST) +{ + int I, J, KBEST, LC, LC1, LC2, LQ, LQ1, LQ2, MERIT, NCOL, NZ, NZ1; + LPSREAL ABEST, AIJ, AMAX, ATOLJ; + +/* ------------------------------------------------------------------ + Search cols of length nz = 1, then cols of length nz = 2, etc. + ------------------------------------------------------------------ */ + ABEST = ZERO; + *IBEST = 0; + *MBEST = -1; + KBEST = MAXMN+1; + NCOL = 0; + NZ1 = 0; + for(NZ = 1; NZ <= MAXMN; NZ++) { +/* nz1 = nz - 1 + if (mbest .le. nz1**2) go to 900 */ + if(KBEST<=NZ1) + goto x900; + if(*IBEST>0) { + if(NCOL>=MAXCOL) + goto x200; + } + if(NZ>LUSOL->m) + goto x200; +/* --------------------------------------------------------------- + Search the set of columns of length nz. + --------------------------------------------------------------- */ + LQ1 = LUSOL->iqloc[NZ]; + LQ2 = LUSOL->n; + if(NZm) + LQ2 = LUSOL->iqloc[NZ+1]-1; + for(LQ = LQ1; LQ <= LQ2; LQ++) { + NCOL++; + J = LUSOL->iq[LQ]; + LC1 = LUSOL->locc[J]; + LC2 = LC1+NZ1; + AMAX = fabs(LUSOL->a[LC1]); +/* Min size of pivots in col j */ + ATOLJ = AMAX/LTOL; +/* Test all aijs in this column. + Ignore everything except the diagonal. */ + for(LC = LC1; LC <= LC2; LC++) { + I = LUSOL->indc[LC]; +/* Skip off-diagonals. */ + if(I!=J) + continue; +/* merit = nz1 * nz1 + if (merit .gt. mbest) continue; */ + if(NZ1>KBEST) + continue; +/* aij has a promising merit. + Apply the Threshold Partial Pivoting stability test + (which is equivalent to Threshold Rook Pivoting for + symmetric matrices). + We require aij to be sufficiently large + compared to other nonzeros in column j. */ + AIJ = fabs(LUSOL->a[LC]); + if(AIJ=AIJ) + continue; + } +/* aij is the best pivot so far. */ + *IBEST = I; + *JBEST = J; + KBEST = NZ1; + *MBEST = MERIT; + ABEST = AIJ; + if(NZ==1) + goto x900; + } +/* Finished with that column. */ + if(*IBEST>0) { + if(NCOL>=MAXCOL) + goto x200; + } + } +/* See if it's time to quit. */ +x200: + if(*IBEST>0) { + if(NCOL>=MAXCOL) + goto x900; + } +/* Press on with next nz. */ + NZ1 = NZ; + if(*IBEST>0) + KBEST = *MBEST/NZ1; + } +x900: +; +} + +/* ================================================================== + lu1mxc moves the largest element in each of columns iq(k1:k2) + to the top of its column. + If k1 > k2, nothing happens. + ------------------------------------------------------------------ + 06 May 2002: (and earlier) + All columns k1:k2 must have one or more elements. + 07 May 2002: Allow for empty columns. The heap routines need to + find 0.0 as the "largest element". + 29 Nov 2005: Bug fix - avoiding overwriting the next column when + the current column is empty (i.e. LENJ==0) + Yin Zhang + ================================================================== */ +void LU1MXC(LUSOLrec *LUSOL, int K1, int K2, int IX[]) +{ + int I, J, K, L, LC, LENJ; + LPSREAL AMAX; + + for(K = K1; K <= K2; K++) { + J = IX[K]; + LC = LUSOL->locc[J]; + LENJ = LUSOL->lenc[J]; + if(LENJ==0) +/* LUSOL->a[LC] = ZERO; Removal suggested by Yin Zhang to avoid overwriting next column when current is empty */ + ; + else { + L = lps_idamax(LUSOL->lenc[J], LUSOL->a + LC - LUSOL_ARRAYOFFSET,1) + LC - 1; + if(L>LC) { + AMAX = LUSOL->a[L]; + LUSOL->a[L] = LUSOL->a[LC]; + LUSOL->a[LC] = AMAX; + I = LUSOL->indc[L]; + LUSOL->indc[L] = LUSOL->indc[LC]; + LUSOL->indc[LC] = I; + } + } + } +} + +/* ================================================================== + lu1mxr finds the largest element in each of row ip(k1:k2) + and stores it in Amaxr(*). The nonzeros are stored column-wise + in (a,indc,lenc,locc) and their structure is row-wise + in ( indr,lenr,locr). + If k1 > k2, nothing happens. + ------------------------------------------------------------------ + 11 Jun 2002: First version of lu1mxr. + Allow for empty columns. + ================================================================== */ +void LU1MXR(LUSOLrec *LUSOL, int K1, int K2, int IX[], LPSREAL AMAXR[]) +{ +#define FastMXR +#ifdef FastMXR + static int I, *J, *IC, K, LC, LC1, LC2, LR, LR1, LR2; + static LPSREAL AMAX; +#else + int I, J, K, LC, LC1, LC2, LR, LR1, LR2; + LPSREAL AMAX; +#endif + + for(K = K1; K <= K2; K++) { + AMAX = ZERO; + I = IX[K]; +/* Find largest element in row i. */ + LR1 = LUSOL->locr[I]; + LR2 = (LR1+LUSOL->lenr[I])-1; +#ifdef FastMXR + for(LR = LR1, J = LUSOL->indr + LR1; + LR <= LR2; LR++, J++) { +/* Find where aij is in column j. */ + LC1 = LUSOL->locc[*J]; + LC2 = LC1+LUSOL->lenc[*J]; + for(LC = LC1, IC = LUSOL->indc + LC1; + LC < LC2; LC++, IC++) { + if(*IC==I) + break; + } + SETMAX(AMAX,fabs(LUSOL->a[LC])); + } +#else + for(LR = LR1; LR <= LR2; LR++) { + J = LUSOL->indr[LR]; +/* Find where aij is in column j. */ + LC1 = LUSOL->locc[J]; + LC2 = (LC1+LUSOL->lenc[J])-1; + for(LC = LC1; LC <= LC2; LC++) { + if(LUSOL->indc[LC]==I) + break; + } + SETMAX(AMAX,fabs(LUSOL->a[LC])); + } +#endif + AMAXR[I] = AMAX; + } +} + + +/* ================================================================== + lu1ful computes a dense (full) LU factorization of the + mleft by nleft matrix that remains to be factored at the + beginning of the nrowu-th pass through the main loop of lu1fad. + ------------------------------------------------------------------ + 02 May 1989: First version. + 05 Feb 1994: Column interchanges added to lu1DPP. + 08 Feb 1994: ipinv reconstructed, since lu1pq3 may alter ip. + ================================================================== */ +void LU1FUL(LUSOLrec *LUSOL, int LEND, int LU1, MYBOOL TPP, + int MLEFT, int NLEFT, int NRANK, int NROWU, + int *LENL, int *LENU, int *NSING, + MYBOOL KEEPLU, LPSREAL SMALL, LPSREAL D[], int IPVT[]) +{ + int L, I, J, IPBASE, LDBASE, LQ, LC1, LC2, LC, LD, LKK, LKN, LU, K, L1, + L2, IBEST, JBEST, LA, LL, NROWD, NCOLD; + LPSREAL AI, AJ; + +/* ------------------------------------------------------------------ + If lu1pq3 moved any empty rows, reset ipinv = inverse of ip. + ------------------------------------------------------------------ */ + if(NRANKm) { + for(L = 1; L <= LUSOL->m; L++) { + I = LUSOL->ip[L]; + LUSOL->ipinv[I] = L; + } + } +/* ------------------------------------------------------------------ + Copy the remaining matrix into the dense matrix D. + ------------------------------------------------------------------ */ +#ifdef LUSOLFastClear + MEMCLEAR((D+1), LEND); +#else +/* dload(LEND, ZERO, D, 1); */ + for(J = 1; J <= LEND; J++) + D[J] = ZERO; +#endif + + IPBASE = NROWU-1; + LDBASE = 1-NROWU; + for(LQ = NROWU; LQ <= LUSOL->n; LQ++) { + J = LUSOL->iq[LQ]; + LC1 = LUSOL->locc[J]; + LC2 = (LC1+LUSOL->lenc[J])-1; + for(LC = LC1; LC <= LC2; LC++) { + I = LUSOL->indc[LC]; + LD = LDBASE+LUSOL->ipinv[I]; + D[LD] = LUSOL->a[LC]; + } + LDBASE += MLEFT; + } +/* ------------------------------------------------------------------ + Call our favorite dense LU factorizer. + ------------------------------------------------------------------ */ + if(TPP) + LU1DPP(LUSOL, D,MLEFT,MLEFT,NLEFT,SMALL,NSING,IPVT,LUSOL->iq+NROWU-LUSOL_ARRAYOFFSET); + else + LU1DCP(LUSOL, D,MLEFT,MLEFT,NLEFT,SMALL,NSING,IPVT,LUSOL->iq+NROWU-LUSOL_ARRAYOFFSET); + +/* ------------------------------------------------------------------ + Move D to the beginning of A, + and pack L and U at the top of a, indc, indr. + In the process, apply the row permutation to ip. + lkk points to the diagonal of U. + ------------------------------------------------------------------ */ +#ifdef LUSOLFastCopy + MEMCOPY(LUSOL->a+1,D+1,LEND); +#else + lps_dcopy(LEND,D,1,LUSOL->a,1); +#endif +#ifdef ClassicdiagU + LUSOL->diagU = LUSOL->a + (LUSOL->lena-LUSOL->n); +#endif + LKK = 1; + LKN = (LEND-MLEFT)+1; + LU = LU1; + for(K = 1; K <= MIN(MLEFT,NLEFT); K++) { + L1 = IPBASE+K; + L2 = IPBASE+IPVT[K]; + if(L1!=L2) { + I = LUSOL->ip[L1]; + LUSOL->ip[L1] = LUSOL->ip[L2]; + LUSOL->ip[L2] = I; + } + IBEST = LUSOL->ip[L1]; + JBEST = LUSOL->iq[L1]; + if(KEEPLU) { +/* =========================================================== + Pack the next column of L. + =========================================================== */ + LA = LKK; + LL = LU; + NROWD = 1; + for(I = K+1; I <= MLEFT; I++) { + LA++; + AI = LUSOL->a[LA]; + if(fabs(AI)>SMALL) { + NROWD = NROWD+1; + LL--; + LUSOL->a[LL] = AI; + LUSOL->indc[LL] = LUSOL->ip[IPBASE+I]; + LUSOL->indr[LL] = IBEST; + } + } +/* =========================================================== + Pack the next row of U. + We go backwards through the row of D + so the diagonal ends up at the front of the row of U. + Beware -- the diagonal may be zero. + =========================================================== */ + LA = LKN+MLEFT; + LU = LL; + NCOLD = 0; + for(J = NLEFT; J >= K; J--) { + LA = LA-MLEFT; + AJ = LUSOL->a[LA]; + if(fabs(AJ)>SMALL || J==K) { + NCOLD++; + LU--; + LUSOL->a[LU] = AJ; + LUSOL->indr[LU] = LUSOL->iq[IPBASE+J]; + } + } + LUSOL->lenr[IBEST] = -NCOLD; + LUSOL->lenc[JBEST] = -NROWD; + *LENL = ((*LENL)+NROWD)-1; + *LENU = (*LENU)+NCOLD; + LKN++; + } + else { +/* =========================================================== + Store just the diagonal of U, in natural order. + =========================================================== */ + LUSOL->diagU[JBEST] = LUSOL->a[LKK]; + } + LKK += MLEFT+1; + } +} + + +/* ================================================================== + lu1or1 organizes the elements of an m by n matrix A as + follows. On entry, the parallel arrays a, indc, indr, + contain nelem entries of the form aij, i, j, + in any order. nelem must be positive. + Entries not larger than the input parameter small are treated as + zero and removed from a, indc, indr. The remaining entries are + defined to be nonzero. numnz returns the number of such nonzeros + and Amax returns the magnitude of the largest nonzero. + The arrays lenc, lenr return the number of nonzeros in each + column and row of A. + inform = 0 on exit, except inform = 1 if any of the indices in + indc, indr imply that the element aij lies outside the m by n + dimensions of A. + ------------------------------------------------------------------ + xx Feb 1985: Original version. + 17 Oct 2000: a, indc, indr now have size lena to allow nelem = 0. + ================================================================== */ +void LU1OR1(LUSOLrec *LUSOL, LPSREAL SMALL, + LPSREAL *AMAX, int *NUMNZ, int *LERR, int *INFORM) +{ + int I, J, L, LDUMMY; + +#ifdef LUSOLFastClear + MEMCLEAR((LUSOL->lenr+1), LUSOL->m); + MEMCLEAR((LUSOL->lenc+1), LUSOL->n); +#else + for(I = 1; I <= LUSOL->m; I++) + LUSOL->lenr[I] = ZERO; + for(I = 1; I <= LUSOL->n; I++) + LUSOL->lenc[I] = ZERO; +#endif + + *AMAX = 0; + *NUMNZ = LUSOL->nelem; + L = LUSOL->nelem+1; + for(LDUMMY = 1; LDUMMY <= LUSOL->nelem; LDUMMY++) { + L--; + if(fabs(LUSOL->a[L])>SMALL) { + I = LUSOL->indc[L]; + J = LUSOL->indr[L]; + SETMAX(*AMAX,fabs(LUSOL->a[L])); + if(I<1 || I>LUSOL->m) + goto x910; + if(J<1 || J>LUSOL->n) + goto x910; + LUSOL->lenr[I]++; + LUSOL->lenc[J]++; + } + else { +/* Replace a negligible element by last element. Since + we are going backwards, we know the last element is ok. */ + LUSOL->a[L] = LUSOL->a[*NUMNZ]; + LUSOL->indc[L] = LUSOL->indc[*NUMNZ]; + LUSOL->indr[L] = LUSOL->indr[*NUMNZ]; + (*NUMNZ)--; + } + } + *LERR = 0; + *INFORM = LUSOL_INFORM_LUSUCCESS; + return; + +x910: + *LERR = L; + *INFORM = LUSOL_INFORM_LUSINGULAR; +} + +/* ================================================================== + lu1or2 sorts a list of matrix elements a(i,j) into column + order, given numa entries a(i,j), i, j in the parallel + arrays a, inum, jnum respectively. The matrix is assumed + to have n columns and an arbitrary number of rows. + On entry, len(*) must contain the length of each column. + On exit, a(*) and inum(*) are sorted, jnum(*) = 0, and + loc(j) points to the start of column j. + lu1or2 is derived from mc20ad, a routine in the Harwell + Subroutine Library, author J. K. Reid. + ------------------------------------------------------------------ + xx Feb 1985: Original version. + 17 Oct 2000: a, inum, jnum now have size lena to allow nelem = 0. + ================================================================== */ +void LU1OR2(LUSOLrec *LUSOL) +{ + LPSREAL ACE, ACEP; + int L, J, I, JCE, ICE, ICEP, JCEP, JA, JB; + +/* Set loc(j) to point to the beginning of column j. */ + L = 1; + for(J = 1; J <= LUSOL->n; J++) { + LUSOL->locc[J] = L; + L += LUSOL->lenc[J]; + } +/* Sort the elements into column order. + The algorithm is an in-place sort and is of order numa. */ + for(I = 1; I <= LUSOL->nelem; I++) { +/* Establish the current entry. */ + JCE = LUSOL->indr[I]; + if(JCE==0) + continue; + ACE = LUSOL->a[I]; + ICE = LUSOL->indc[I]; + LUSOL->indr[I] = 0; +/* Chain from current entry. */ + for(J = 1; J <= LUSOL->nelem; J++) { +/* The current entry is not in the correct position. + Determine where to store it. */ + L = LUSOL->locc[JCE]; + LUSOL->locc[JCE]++; +/* Save the contents of that location. */ + ACEP = LUSOL->a[L]; + ICEP = LUSOL->indc[L]; + JCEP = LUSOL->indr[L]; +/* Store current entry. */ + LUSOL->a[L] = ACE; + LUSOL->indc[L] = ICE; + LUSOL->indr[L] = 0; +/* If next current entry needs to be processed, + copy it into current entry. */ + if(JCEP==0) + break; + ACE = ACEP; + ICE = ICEP; + JCE = JCEP; + } + } +/* Reset loc(j) to point to the start of column j. */ + JA = 1; + for(J = 1; J <= LUSOL->n; J++) { + JB = LUSOL->locc[J]; + LUSOL->locc[J] = JA; + JA = JB; + } +} + +/* ================================================================== + lu1or3 looks for duplicate elements in an m by n matrix A + defined by the column list indc, lenc, locc. + iw is used as a work vector of length m. + ------------------------------------------------------------------ + xx Feb 1985: Original version. + 17 Oct 2000: indc, indr now have size lena to allow nelem = 0. + ================================================================== */ +void LU1OR3(LUSOLrec *LUSOL, int *LERR, int *INFORM) +{ + int I, J, L1, L2, L; + +#ifdef LUSOLFastClear + MEMCLEAR((LUSOL->ip+1), LUSOL->m); +#else + for(I = 1; I <= LUSOL->m; I++) + LUSOL->ip[I] = ZERO; +#endif + + for(J = 1; J <= LUSOL->n; J++) { + if(LUSOL->lenc[J]>0) { + L1 = LUSOL->locc[J]; + L2 = (L1+LUSOL->lenc[J])-1; + for(L = L1; L <= L2; L++) { + I = LUSOL->indc[L]; + if(LUSOL->ip[I]==J) + goto x910; + LUSOL->ip[I] = J; + } + } + } + *INFORM = LUSOL_INFORM_LUSUCCESS; + return; +x910: + *LERR = L; + *INFORM = LUSOL_INFORM_LUSINGULAR; +} + +/* ================================================================== + lu1or4 constructs a row list indr, locr + from a corresponding column list indc, locc, + given the lengths of both columns and rows in lenc, lenr. + ------------------------------------------------------------------ + xx Feb 1985: Original version. + 17 Oct 2000: indc, indr now have size lena to allow nelem = 0. + ================================================================== */ +void LU1OR4(LUSOLrec *LUSOL) +{ + int L, I, L2, J, JDUMMY, L1, LR; + +/* Initialize locr(i) to point just beyond where the + last component of row i will be stored. */ + L = 1; + for(I = 1; I <= LUSOL->m; I++) { + L += LUSOL->lenr[I]; + LUSOL->locr[I] = L; + } +/* By processing the columns backwards and decreasing locr(i) + each time it is accessed, it will end up pointing to the + beginning of row i as required. */ + L2 = LUSOL->nelem; + J = LUSOL->n+1; + for(JDUMMY = 1; JDUMMY <= LUSOL->n; JDUMMY++) { + J = J-1; + if(LUSOL->lenc[J]>0) { + L1 = LUSOL->locc[J]; + for(L = L1; L <= L2; L++) { + I = LUSOL->indc[L]; + LR = LUSOL->locr[I]-1; + LUSOL->locr[I] = LR; + LUSOL->indr[LR] = J; + } + L2 = L1-1; + } + } +} + +/* ================================================================== + lu1pen deals with pending fill-in in the row file. + ------------------------------------------------------------------ + ifill(ll) says if a row involved in the new column of L + has to be updated. If positive, it is the total + length of the final updated row. + jfill(lu) says if a column involved in the new row of U + contains any pending fill-ins. If positive, it points + to the first fill-in in the column that has yet to be + added to the row file. + ------------------------------------------------------------------ + 16 Apr 1989: First version of lu1pen. + 23 Mar 2001: ilast used and updated. + ================================================================== */ +void LU1PEN(LUSOLrec *LUSOL, int NSPARE, int *ILAST, + int LPIVC1, int LPIVC2, int LPIVR1, int LPIVR2, + int *LROW, int IFILL[], int JFILL[]) +{ + int LL, LC, L, I, LR1, LR2, LR, LU, J, LC1, LC2, LAST; + + LL = 0; + for(LC = LPIVC1; LC <= LPIVC2; LC++) { + LL++; + if(IFILL[LL]==0) + continue; +/* Another row has pending fill. + First, add some spare space at the } + of the current last row. */ +#if 1 + LC1 = (*LROW)+1; + LC2 = (*LROW)+NSPARE; + *LROW = LC2; + for(L = LC1; L <= LC2; L++) { +#else + for(L = (*LROW)+1; L <= (*LROW)+NSPARE; L++) { + *LROW = L; /* ******* ERROR ???? */ +#endif + LUSOL->indr[L] = 0; + } +/* Now move row i to the end of the row file. */ + I = LUSOL->indc[LC]; + *ILAST = I; + LR1 = LUSOL->locr[I]; + LR2 = (LR1+LUSOL->lenr[I])-1; + LUSOL->locr[I] = (*LROW)+1; + for(LR = LR1; LR <= LR2; LR++) { + (*LROW)++; + LUSOL->indr[*LROW] = LUSOL->indr[LR]; + LUSOL->indr[LR] = 0; + } + (*LROW) += IFILL[LL]; + } +/* Scan all columns of D and insert the pending fill-in + into the row file. */ + LU = 1; + for(LR = LPIVR1; LR <= LPIVR2; LR++) { + LU++; + if(JFILL[LU]==0) + continue; + J = LUSOL->indr[LR]; + LC1 = (LUSOL->locc[J]+JFILL[LU])-1; + LC2 = (LUSOL->locc[J]+LUSOL->lenc[J])-1; + for(LC = LC1; LC <= LC2; LC++) { + I = LUSOL->indc[LC]-LUSOL->m; + if(I>0) { + LUSOL->indc[LC] = I; + LAST = LUSOL->locr[I]+LUSOL->lenr[I]; + LUSOL->indr[LAST] = J; + LUSOL->lenr[I]++; + } + } + } +} + + +/* ================================================================== + lu1fad is a driver for the numerical phase of lu1fac. + At each stage it computes a column of L and a row of U, + using a Markowitz criterion to select the pivot element, + subject to a stability criterion that bounds the elements of L. + ------------------------------------------------------------------ + Local variables + --------------- + lcol is the length of the column file. It points to the last + nonzero in the column list. + lrow is the analogous quantity for the row file. + lfile is the file length (lcol or lrow) after the most recent + compression of the column list or row list. + nrowd and ncold are the number of rows and columns in the + matrix defined by the pivot column and row. They are the + dimensions of the submatrix D being altered at this stage. + melim and nelim are the number of rows and columns in the + same matrix D, excluding the pivot column and row. + mleft and nleft are the number of rows and columns + still left to be factored. + nzchng is the increase in nonzeros in the matrix that remains + to be factored after the current elimination + (usually negative). + nzleft is the number of nonzeros still left to be factored. + nspare is the space we leave at the end of the last row or + column whenever a row or column is being moved to the } + of its file. nspare = 1 or 2 might help reduce the + number of file compressions when storage is tight. + The row and column ordering permutes A into the form + ------------------------ + \ | + \ U1 | + \ | + -------------------- + |\ + | \ + | \ + P A Q = | \ + | \ + | -------------- + | | | + | | | + | L1 | A2 | + | | | + | | | + -------------------- + where the block A2 is factored as A2 = L2 U2. + The phases of the factorization are as follows. + Utri is true when U1 is being determined. + Any column of length 1 is accepted immediately (if TPP). + Ltri is true when L1 is being determined. + lu1mar exits as soon as an acceptable pivot is found + in a row of length 1. + spars1 is true while the density of the (modified) A2 is less + than the parameter dens1 = parmlu(7) = 0.3 say. + lu1mar searches maxcol columns and maxrow rows, + where maxcol = luparm(3), maxrow = maxcol - 1. + lu1mxc is used to keep the biggest element at the top + of all remaining columns. + spars2 is true while the density of the modified A2 is less + than the parameter dens2 = parmlu(8) = 0.6 say. + lu1mar searches maxcol columns and no rows. + lu1mxc could fix up only the first maxcol cols (with TPP). + 22 Sep 2000: For simplicity, lu1mxc fixes all + modified cols. + dense is true once the density of A2 reaches dens2. + lu1mar searches only 1 column (the shortest). + lu1mxc could fix up only the first column (with TPP). + ------------------------------------------------------------------ + 00 Jan 1986 Version documented in LUSOL paper: + Gill, Murray, Saunders and Wright (1987), + Maintaining LU factors of a general sparse matrix, + Linear algebra and its applications 88/89, 239-270. + 02 Feb 1989 Following Suhl and Aittoniemi (1987), the largest + element in each column is now kept at the start of + the column, i.e. in position locc(j) of a and indc. + This should speed up the Markowitz searches. + To save time on highly triangular matrices, we wait + until there are no further columns of length 1 + before setting and maintaining that property. + 12 Apr 1989 ipinv and iqinv added (inverses of ip and iq) + to save searching ip and iq for rows and columns + altered in each elimination step. (Used in lu1pq2) + 19 Apr 1989 Code segmented to reduce its size. + lu1gau does most of the Gaussian elimination work. + lu1mar does just the Markowitz search. + lu1mxc moves biggest elements to top of columns. + lu1pen deals with pending fill-in in the row list. + lu1pq2 updates the row and column permutations. + 26 Apr 1989 maxtie replaced by maxcol, maxrow in the Markowitz + search. maxcol, maxrow change as density increases. + 25 Oct 1993 keepLU implemented. + 07 Feb 1994 Exit main loop early to finish off with a dense LU. + densLU tells lu1fad whether to do it. + 21 Dec 1994 Bug fixed. nrank was wrong after the call to lu1ful. + 12 Nov 1999 A parallel version of dcopy gave trouble in lu1ful + during left-shift of dense matrix D within a(*). + Fixed this unexpected problem here in lu1fad + by making sure the first and second D don't overlap. + 13 Sep 2000 TCP (Threshold Complete Pivoting) implemented. + lu2max added + (finds aijmax from biggest elems in each col). + Utri, Ltri and Spars1 phases apply. + No switch to Dense CP yet. (Only TPP switches.) + 14 Sep 2000 imax needed to remember row containing aijmax. + 22 Sep 2000 For simplicity, lu1mxc always fixes all modified cols. + (TPP spars2 used to fix just the first maxcol cols.) + 08 Nov 2000: Speed up search for aijmax. + Don't need to search all columns if the elimination + didn't alter the col containing the current aijmax. + 21 Nov 2000: lu1slk implemented for Utri phase with TCP + to guard against deceptive triangular matrices. + (Utri used to have aijtol >= 0.9999 to include + slacks, but this allows other 1s to be accepted.) + Utri now accepts slacks, but applies normal aijtol + test to other pivots. + 28 Nov 2000: TCP with empty cols must call lu1mxc and lu2max + with ( lq1, n, ... ), not just ( 1, n, ... ). + 23 Mar 2001: lu1fad bug with TCP. + A col of length 1 might not be accepted as a pivot. + Later it appears in a pivot row and temporarily + has length 0 (when pivot row is removed + but before the column is filled in). If it is the + last column in storage, the preceding col also thinks + it is "last". Trouble arises when the preceding col + needs fill-in -- it overlaps the real "last" column. + (Very rarely, same trouble might have happened if + the drop tolerance caused columns to have length 0.) + Introduced ilast to record the last row in row file, + jlast to record the last col in col file. + lu1rec returns ilast = indr(lrow + 1) + or jlast = indc(lcol + 1). + (Should be an output parameter, but didn't want to + alter lu1rec's parameter list.) + lu1rec also treats empty rows or cols safely. + (Doesn't eliminate them!) + 26 Apr 2002: Heap routines added for TCP. + lu2max no longer needed. + imax, jmax used only for printing. + 01 May 2002: lu1DCP implemented (dense complete pivoting). + Both TPP and TCP now switch to dense LU + when density exceeds dens2. + 06 May 2002: In dense mode, store diag(U) in natural order. + 09 May 2002: lu1mCP implemented (Markowitz TCP via heap). + 11 Jun 2002: lu1mRP implemented (Markowitz TRP). + 28 Jun 2002: Fixed call to lu1mxr. + 14 Dec 2002: lu1mSP implemented (Markowitz TSP). + 15 Dec 2002: Both TPP and TSP can grab cols of length 1 + during Utri. + ================================================================== */ +void LU1FAD(LUSOLrec *LUSOL, +#ifdef ClassicHamaxR + int LENA2, int LENH, LPSREAL HA[], int HJ[], int HK[], LPSREAL AMAXR[], +#endif + int *INFORM, int *LENL, int *LENU, int *MINLEN, + int *MERSUM, int *NUTRI, int *NLTRI, + int *NDENS1, int *NDENS2, int *NRANK, + LPSREAL *LMAX, LPSREAL *UMAX, LPSREAL *DUMAX, LPSREAL *DUMIN, LPSREAL *AKMAX) +{ + MYBOOL UTRI, LTRI, SPARS1, SPARS2, DENSE, DENSLU, KEEPLU, TCP, TPP, TRP,TSP; + int HLEN, HOPS, H, LPIV, LPRINT, MAXCOL, MAXROW, ILAST, JLAST, LFILE, LROW, LCOL, + MINMN, MAXMN, NZLEFT, NSPARE, LU1, KK, J, LC, MLEFT, NLEFT, NROWU, + LQ1, LQ2, JBEST, LQ, I, IBEST, MBEST, LEND, NFREE, LD, NCOLD, NROWD, + MELIM, NELIM, JMAX, IMAX, LL1, LSAVE, LFREE, LIMIT, MINFRE, LPIVR, LPIVR1, LPIVR2, + L, LPIVC, LPIVC1, LPIVC2, KBEST, LU, LR, LENJ, LC1, LAST, LL, LS, + LENI, LR1, LFIRST, NFILL, NZCHNG, K, MRANK, NSING; + LPSREAL LIJ, LTOL, SMALL, USPACE, DENS1, DENS2, AIJMAX, AIJTOL, AMAX, ABEST, DIAG, V; +#ifdef ClassicHamaxR + int LDIAGU; +#else + int LENA2 = LUSOL->lena; +#endif + +#ifdef UseTimer + int eltime, mktime, ntime; + timer ( "start", 3 ); + ntime = LUSOL->n / 4; +#endif + +#ifdef ForceInitialization + AIJMAX = 0; + AIJTOL = 0; + HLEN = 0; + JBEST = 0; + IBEST = 0; + MBEST = 0; + LEND = 0; + LD = 0; +#endif + + LPRINT = LUSOL->luparm[LUSOL_IP_PRINTLEVEL]; + MAXCOL = LUSOL->luparm[LUSOL_IP_MARKOWITZ_MAXCOL]; + LPIV = LUSOL->luparm[LUSOL_IP_PIVOTTYPE]; + KEEPLU = (MYBOOL) (LUSOL->luparm[LUSOL_IP_KEEPLU]!=FALSE); +/* Threshold Partial Pivoting (normal). */ + TPP = (MYBOOL) (LPIV==LUSOL_PIVMOD_TPP); +/* Threshold Rook Pivoting */ + TRP = (MYBOOL) (LPIV==LUSOL_PIVMOD_TRP); +/* Threshold Complete Pivoting. */ + TCP = (MYBOOL) (LPIV==LUSOL_PIVMOD_TCP); +/* Threshold Symmetric Pivoting. */ + TSP = (MYBOOL) (LPIV==LUSOL_PIVMOD_TSP); + DENSLU = FALSE; + MAXROW = MAXCOL-1; +/* Assume row m is last in the row file. */ + ILAST = LUSOL->m; +/* Assume col n is last in the col file. */ + JLAST = LUSOL->n; + LFILE = LUSOL->nelem; + LROW = LUSOL->nelem; + LCOL = LUSOL->nelem; + MINMN = MIN(LUSOL->m,LUSOL->n); + MAXMN = MAX(LUSOL->m,LUSOL->n); + NZLEFT = LUSOL->nelem; + NSPARE = 1; + + if(KEEPLU) + LU1 = LENA2+1; + else { +/* Store only the diagonals of U in the top of memory. */ +#ifdef ClassicdiagU + LDIAGU = LENA2-LUSOL->n; + LU1 = LDIAGU+1; + LUSOL->diagU = LUSOL->a+LDIAGU; +#else + LU1 = LENA2+1; +#endif + } + + LTOL = LUSOL->parmlu[LUSOL_RP_FACTORMAX_Lij]; + SMALL = LUSOL->parmlu[LUSOL_RP_ZEROTOLERANCE]; + USPACE = LUSOL->parmlu[LUSOL_RP_COMPSPACE_U]; + DENS1 = LUSOL->parmlu[LUSOL_RP_MARKOWITZ_CONLY]; + DENS2 = LUSOL->parmlu[LUSOL_RP_MARKOWITZ_DENSE]; + UTRI = TRUE; + LTRI = FALSE; + SPARS1 = FALSE; + SPARS2 = FALSE; + DENSE = FALSE; +/* Check parameters. */ + SETMAX(LTOL,1.0001E+0); + SETMIN(DENS1,DENS2); +/* Initialize output parameters. + lenL, lenU, minlen, mersum, nUtri, nLtri, ndens1, ndens2, nrank + are already initialized by lu1fac. */ + *LMAX = ZERO; + *UMAX = ZERO; + *DUMAX = ZERO; + *DUMIN = LUSOL_BIGNUM; + if(LUSOL->nelem==0) + *DUMIN = ZERO; + *AKMAX = ZERO; + HOPS = 0; +/* More initialization. + Don't worry yet about lu1mxc. */ + if(TPP || TSP) { + AIJMAX = ZERO; + AIJTOL = ZERO; + HLEN = 1; +/* TRP or TCP */ + } + else { +/* Move biggest element to top of each column. + Set w(*) to mark slack columns (unit vectors). */ + LU1MXC(LUSOL, 1,LUSOL->n,LUSOL->iq); + LU1SLK(LUSOL); + } + if(TRP) +/* Find biggest element in each row. */ +#ifdef ClassicHamaxR + LU1MXR(LUSOL, 1,LUSOL->m,LUSOL->ip,AMAXR); +#else + LU1MXR(LUSOL, 1,LUSOL->m,LUSOL->ip,LUSOL->amaxr); +#endif + + if(TCP) { +/* Set Ha(1:Hlen) = biggest element in each column, + Hj(1:Hlen) = corresponding column indices. */ + HLEN = 0; + for(KK = 1; KK <= LUSOL->n; KK++) { + HLEN++; + J = LUSOL->iq[KK]; + LC = LUSOL->locc[J]; +#ifdef ClassicHamaxR + HA[HLEN] = fabs(LUSOL->a[LC]); + HJ[HLEN] = J; + HK[J] = HLEN; +#else + LUSOL->Ha[HLEN] = fabs(LUSOL->a[LC]); + LUSOL->Hj[HLEN] = J; + LUSOL->Hk[J] = HLEN; +#endif + } +/* Build the heap, creating new Ha, Hj and setting Hk(1:Hlen). */ +#ifdef ClassicHamaxR + HBUILD(HA,HJ,HK,HLEN,&HOPS); +#else + HBUILD(LUSOL->Ha,LUSOL->Hj,LUSOL->Hk,HLEN,&HOPS); +#endif + } +/* ------------------------------------------------------------------ + Start of main loop. + ------------------------------------------------------------------ */ + MLEFT = LUSOL->m+1; + NLEFT = LUSOL->n+1; + for(NROWU = 1; NROWU <= MINMN; NROWU++) { +#ifdef UseTimer + mktime = (nrowu / ntime) + 4; + eltime = (nrowu / ntime) + 9; +#endif + MLEFT--; + NLEFT--; +/* Bail out if there are no nonzero rows left. */ + if(LUSOL->iploc[1]>LUSOL->m) + goto x900; +/* For TCP, the largest Aij is at the top of the heap. */ + if(TCP) { +/* + Marvelously easy */ +#ifdef ClassicHamaxR + AIJMAX = HA[1]; +#else + AIJMAX = LUSOL->Ha[1]; +#endif + SETMAX(*AKMAX,AIJMAX); + AIJTOL = AIJMAX/LTOL; + } +/* =============================================================== + Find a suitable pivot element. + =============================================================== */ + if(UTRI) { +/* ------------------------------------------------------------ + So far all columns have had length 1. + We are still looking for the (backward) triangular part of A + that forms the first rows and columns of U. + ------------------------------------------------------------ */ + LQ1 = LUSOL->iqloc[1]; + LQ2 = LUSOL->n; + if(LUSOL->m>1) + LQ2 = LUSOL->iqloc[2]-1; +/* There are more cols of length 1. */ + if(LQ1<=LQ2) { + if(TPP || TSP) { +/* Grab the first one. */ + JBEST = LUSOL->iq[LQ1]; +/* Scan all columns of length 1 ... TRP or TCP */ + } + else { + JBEST = 0; + for(LQ = LQ1; LQ <= LQ2; LQ++) { + J = LUSOL->iq[LQ]; +/* Accept a slack */ + if(LUSOL->w[J]>ZERO) { + JBEST = J; + goto x250; + } + LC = LUSOL->locc[J]; + AMAX = fabs(LUSOL->a[LC]); + if(TRP) { + I = LUSOL->indc[LC]; +#ifdef ClassicHamaxR + AIJTOL = AMAXR[I]/LTOL; +#else + AIJTOL = LUSOL->amaxr[I]/LTOL; +#endif + } + if(AMAX>=AIJTOL) { + JBEST = J; + goto x250; + } + } + } +x250: + if(JBEST>0) { + LC = LUSOL->locc[JBEST]; + IBEST = LUSOL->indc[LC]; + MBEST = 0; + goto x300; + } + } +/* This is the end of the U triangle. + We will not return to this part of the code. + TPP and TSP call lu1mxc for the first time + (to move biggest element to top of each column). */ + if(LPRINT>=LUSOL_MSG_PIVOT) + LUSOL_report(LUSOL, 0, "Utri ended. spars1 = TRUE\n"); + UTRI = FALSE; + LTRI = TRUE; + SPARS1 = TRUE; + *NUTRI = NROWU-1; + if(TPP || TSP) + LU1MXC(LUSOL, LQ1,LUSOL->n,LUSOL->iq); + } + if(SPARS1) { +/* ------------------------------------------------------------ + Perform a Markowitz search. + Search cols of length 1, then rows of length 1, + then cols of length 2, then rows of length 2, etc. + ------------------------------------------------------------ */ +#ifdef UseTimer + timer ( "start", mktime ); +#endif +/* 12 Jun 2002: Next line disables lu1mCP below + if (TPP) then */ + if(TPP || TCP) { + LU1MAR(LUSOL, MAXMN,TCP,AIJTOL,LTOL,MAXCOL,MAXROW,&IBEST,&JBEST,&MBEST); + } + else if(TRP) { +#ifdef ClassicHamaxR + LU1MRP(LUSOL, MAXMN,LTOL,MAXCOL,MAXROW,&IBEST,&JBEST,&MBEST,AMAXR); +#else + LU1MRP(LUSOL, MAXMN,LTOL,MAXCOL,MAXROW,&IBEST,&JBEST,&MBEST,LUSOL->amaxr); +#endif +/* else if (TCP) { + lu1mCP( m , n , lena , aijtol, + ibest, jbest , mbest , + a , indc , indr , + lenc , lenr , locc , + Hlen , Ha , Hj ) */ + } + else if(TSP) { + LU1MSP(LUSOL, MAXMN,LTOL,MAXCOL,&IBEST,&JBEST,&MBEST); + if(IBEST==0) + goto x990; + } +#ifdef UseTimer + timer ( "finish", mktime ); +#endif + if(LTRI) { +/* So far all rows have had length 1. + We are still looking for the (forward) triangle of A + that forms the first rows and columns of L. */ + if(MBEST>0) { + LTRI = FALSE; + *NLTRI = NROWU-1-*NUTRI; + if(LPRINT>=LUSOL_MSG_PIVOT) + LUSOL_report(LUSOL, 0, "Ltri ended.\n"); + } + } + else { +/* See if what's left is as dense as dens1. */ + if(NZLEFT>=(DENS1*MLEFT)*NLEFT) { + SPARS1 = FALSE; + SPARS2 = TRUE; + *NDENS1 = NLEFT; + MAXROW = 0; + if(LPRINT>=LUSOL_MSG_PIVOT) + LUSOL_report(LUSOL, 0, "spars1 ended. spars2 = TRUE\n"); + } + } + } + else if(SPARS2 || DENSE) { +/* ------------------------------------------------------------ + Perform a restricted Markowitz search, + looking at only the first maxcol columns. (maxrow = 0.) + ------------------------------------------------------------ */ +#ifdef UseTimer + timer ( "start", mktime ); +#endif +/* 12 Jun 2002: Next line disables lu1mCP below + if (TPP) then */ + if(TPP || TCP) { + LU1MAR(LUSOL, MAXMN,TCP,AIJTOL,LTOL,MAXCOL,MAXROW,&IBEST,&JBEST,&MBEST); + } + else if(TRP) { +#ifdef ClassicHamaxR + LU1MRP(LUSOL, MAXMN,LTOL,MAXCOL,MAXROW,&IBEST,&JBEST,&MBEST,AMAXR); +#else + LU1MRP(LUSOL, MAXMN,LTOL,MAXCOL,MAXROW,&IBEST,&JBEST,&MBEST,LUSOL->amaxr); +#endif +/* else if (TCP) { + lu1mCP( m , n , lena , aijtol, + ibest, jbest , mbest , + a , indc , indr , + lenc , lenr , locc , + Hlen , Ha , Hj ) */ + } + else if(TSP) { + LU1MSP(LUSOL, MAXMN,LTOL,MAXCOL,&IBEST,&JBEST,&MBEST); + if(IBEST==0) + goto x985; + } +#ifdef UseTimer + timer ( "finish", mktime ); +#endif +/* See if what's left is as dense as dens2. */ + if(SPARS2) { + if(NZLEFT>=(DENS2*MLEFT)*NLEFT) { + SPARS2 = FALSE; + DENSE = TRUE; + *NDENS2 = NLEFT; + MAXCOL = 1; + if(LPRINT>=LUSOL_MSG_PIVOT) + LUSOL_report(LUSOL, 0, "spars2 ended. dense = TRUE\n"); + } + } + } +/* --------------------------------------------------------------- + See if we can finish quickly. + --------------------------------------------------------------- */ + if(DENSE) { + LEND = MLEFT*NLEFT; + NFREE = LU1-1; + if(NFREE>=2*LEND) { +/* There is room to treat the remaining matrix as + a dense matrix D. + We may have to compress the column file first. + 12 Nov 1999: D used to be put at the + beginning of free storage (lD = lcol + 1). + Now put it at the end (lD = lu1 - lenD) + so the left-shift in lu1ful will not + involve overlapping storage + (fatal with parallel dcopy). + */ + DENSLU = TRUE; + *NDENS2 = NLEFT; + LD = LU1-LEND; + if(LCOL>=LD) { + LU1REC(LUSOL, LUSOL->n,TRUE,&LCOL, + LUSOL->indc,LUSOL->lenc,LUSOL->locc); + LFILE = LCOL; + JLAST = LUSOL->indc[LCOL+1]; + } + goto x900; + } + } +/* =============================================================== + The best aij has been found. + The pivot row ibest and the pivot column jbest + Define a dense matrix D of size nrowd by ncold. + =============================================================== */ +x300: + NCOLD = LUSOL->lenr[IBEST]; + NROWD = LUSOL->lenc[JBEST]; + MELIM = NROWD-1; + NELIM = NCOLD-1; + (*MERSUM) += MBEST; + (*LENL) += MELIM; + (*LENU) += NCOLD; + if(LPRINT>=LUSOL_MSG_PIVOT) { + if(NROWU==1) + LUSOL_report(LUSOL, 0, "lu1fad debug:\n"); + if(TPP || TRP || TSP) { + LUSOL_report(LUSOL, 0, "nrowu:%7d i,jbest:%7d,%7d nrowd,ncold:%6d,%6d\n", + NROWU, IBEST,JBEST, NROWD,NCOLD); +/* TCP */ + } + else { +#ifdef ClassicHamaxR + JMAX = HJ[1]; +#else + JMAX = LUSOL->Hj[1]; +#endif + IMAX = LUSOL->indc[LUSOL->locc[JMAX]]; + LUSOL_report(LUSOL, 0, "nrowu:%7d i,jbest:%7d,%7d nrowd,ncold:%6d,%6d i,jmax:%7d,%7d aijmax:%g\n", + NROWU, IBEST,JBEST, NROWD,NCOLD, IMAX,JMAX, AIJMAX); + } + } +/* =============================================================== + Allocate storage for the next column of L and next row of U. + Initially the top of a, indc, indr are used as follows: + ncold melim ncold melim + a |...........|...........|ujbest..ujn|li1......lim| + indc |...........| lenr(i) | lenc(j) | markl(i) | + indr |...........| iqloc(i) | jfill(j) | ifill(i) | + ^ ^ ^ ^ ^ + lfree lsave lu1 ll1 oldlu1 + Later the correct indices are inserted: + indc | | | |i1........im| + indr | | |jbest....jn|ibest..ibest| + =============================================================== */ + if(!KEEPLU) { +/* Always point to the top spot. + Only the current column of L and row of U will + take up space, overwriting the previous ones. */ +#ifdef ClassicHamaxR + LU1 = LDIAGU+1; +#else + LU1 = LENA2+1; +#endif + } + /* Update (left-shift) pointers to make room for the new data */ + LL1 = LU1-MELIM; + LU1 = LL1-NCOLD; + LSAVE = LU1-NROWD; + LFREE = LSAVE-NCOLD; + + /* Check if we need to allocate more memory, and allocate if necessary */ +#if 0 /* Proposal by Michael A. Saunders (logic based on Markowitz' rule) */ + L = NROWD*NCOLD; + + /* Try to avoid future expansions by anticipating further updates - KE extension */ + if(LUSOL->luparm[LUSOL_IP_UPDATELIMIT] > 0) +#if 1 + L *= (int) (log(LUSOL->luparm[LUSOL_IP_UPDATELIMIT]-LUSOL->luparm[LUSOL_IP_UPDATECOUNT]+2.0) + 1); +#else + L *= (LUSOL->luparm[LUSOL_IP_UPDATELIMIT]-LUSOL->luparm[LUSOL_IP_UPDATECOUNT]) / 2 + 1; +#endif + +#else /* Version by Kjell Eikland (from luparm[LUSOL_IP_MINIMUMLENA] and safety margin) */ + L = (KEEPLU ? MAX(LROW, LCOL) + 2*(LUSOL->m+LUSOL->n) : 0); + L *= LUSOL_MULT_nz_a; + SETMAX(L, NROWD*NCOLD); +#endif + + /* Do the memory expansion */ + if((L > LFREE-LCOL) && LUSOL_expand_a(LUSOL, &L, &LFREE)) { + LL1 += L; + LU1 += L; + LSAVE += L; +#ifdef ClassicdiagU + LUSOL->diagU += L; +#endif +#ifdef ClassicHamaxR + HA += L; + HJ += L; + HK += L; + AMAXR += L; +#endif + } + LIMIT = (int) (USPACE*LFILE)+LUSOL->m+LUSOL->n+1000; + +/* Make sure the column file has room. + Also force a compression if its length exceeds a certain limit. */ +#ifdef StaticMemAlloc + MINFRE = NCOLD+MELIM; +#else + MINFRE = NROWD*NCOLD; +#endif + NFREE = LFREE-LCOL; + if(NFREELIMIT) { + LU1REC(LUSOL, LUSOL->n,TRUE,&LCOL, + LUSOL->indc,LUSOL->lenc,LUSOL->locc); + LFILE = LCOL; + JLAST = LUSOL->indc[LCOL+1]; + NFREE = LFREE-LCOL; + if(NFREELIMIT) { + LU1REC(LUSOL, LUSOL->m,FALSE,&LROW, + LUSOL->indr,LUSOL->lenr,LUSOL->locr); + LFILE = LROW; + ILAST = LUSOL->indr[LROW+1]; + NFREE = LFREE-LROW; + if(NFREElocr[IBEST]; + LPIVR1 = LPIVR+1; + LPIVR2 = LPIVR+NELIM; + for(L = LPIVR; L <= LPIVR2; L++) { + if(LUSOL->indr[L]==JBEST) + break; + } + + LUSOL->indr[L] = LUSOL->indr[LPIVR]; + LUSOL->indr[LPIVR] = JBEST; + LPIVC = LUSOL->locc[JBEST]; + LPIVC1 = LPIVC+1; + LPIVC2 = LPIVC+MELIM; + for(L = LPIVC; L <= LPIVC2; L++) { + if(LUSOL->indc[L]==IBEST) + break; + } + LUSOL->indc[L] = LUSOL->indc[LPIVC]; + LUSOL->indc[LPIVC] = IBEST; + ABEST = LUSOL->a[L]; + LUSOL->a[L] = LUSOL->a[LPIVC]; + LUSOL->a[LPIVC] = ABEST; + if(!KEEPLU) +/* Store just the diagonal of U, in natural order. + !! a[ldiagU + nrowu] = abest ! This was in pivot order. */ + LUSOL->diagU[JBEST] = ABEST; + +/* ============================================================== + Delete pivot col from heap. + Hk tells us where it is in the heap. + ============================================================== */ + if(TCP) { +#ifdef ClassicHamaxR + KBEST = HK[JBEST]; + HDELETE(HA,HJ,HK,&HLEN,KBEST,&H); +#else + KBEST = LUSOL->Hk[JBEST]; + HDELETE(LUSOL->Ha,LUSOL->Hj,LUSOL->Hk,&HLEN,KBEST,&H); +#endif + HOPS += H; + } +/* =============================================================== + Delete the pivot row from the column file + and store it as the next row of U. + set indr(lu) = 0 to initialize jfill ptrs on columns of D, + indc(lu) = lenj to save the original column lengths. + =============================================================== */ + LUSOL->a[LU1] = ABEST; + LUSOL->indr[LU1] = JBEST; + LUSOL->indc[LU1] = NROWD; + LU = LU1; + DIAG = fabs(ABEST); + SETMAX(*UMAX,DIAG); + SETMAX(*DUMAX,DIAG); + SETMIN(*DUMIN,DIAG); + for(LR = LPIVR1; LR <= LPIVR2; LR++) { + LU++; + J = LUSOL->indr[LR]; + LENJ = LUSOL->lenc[J]; + LUSOL->lenc[J] = LENJ-1; + LC1 = LUSOL->locc[J]; + LAST = LC1+LUSOL->lenc[J]; + for(L = LC1; L <= LAST; L++) { + if(LUSOL->indc[L]==IBEST) + break; + } + LUSOL->a[LU] = LUSOL->a[L]; + LUSOL->indr[LU] = 0; + LUSOL->indc[LU] = LENJ; + SETMAX(*UMAX,fabs(LUSOL->a[LU])); + LUSOL->a[L] = LUSOL->a[LAST]; + LUSOL->indc[L] = LUSOL->indc[LAST]; +/* Free entry */ + LUSOL->indc[LAST] = 0; +/* ??? if (j .eq. jlast) lcol = lcol - 1 */ + } +/* =============================================================== + Delete the pivot column from the row file + and store the nonzeros of the next column of L. + Set indc(ll) = 0 to initialize markl(*) markers, + indr(ll) = 0 to initialize ifill(*) row fill-in cntrs, + indc(ls) = leni to save the original row lengths, + indr(ls) = iqloc(i) to save parts of iqloc(*), + iqloc(i) = lsave - ls to point to the nonzeros of L + = -1, -2, -3, ... in mark(*). + =============================================================== */ + LUSOL->indc[LSAVE] = NCOLD; + if(MELIM==0) + goto x700; + LL = LL1-1; + LS = LSAVE; + ABEST = ONE/ABEST; + for(LC = LPIVC1; LC <= LPIVC2; LC++) { + LL++; + LS++; + I = LUSOL->indc[LC]; + LENI = LUSOL->lenr[I]; + LUSOL->lenr[I] = LENI-1; + LR1 = LUSOL->locr[I]; + LAST = LR1+LUSOL->lenr[I]; + for(L = LR1; L <= LAST; L++) { + if(LUSOL->indr[L]==JBEST) + break; + } + LUSOL->indr[L] = LUSOL->indr[LAST]; +/* Free entry */ + LUSOL->indr[LAST] = 0; + LUSOL->a[LL] = -LUSOL->a[LC]*ABEST; + LIJ = fabs(LUSOL->a[LL]); + SETMAX(*LMAX,LIJ); + LUSOL->indc[LL] = 0; + LUSOL->indr[LL] = 0; + LUSOL->indc[LS] = LENI; + LUSOL->indr[LS] = LUSOL->iqloc[I]; + LUSOL->iqloc[I] = LSAVE-LS; + } +/* =============================================================== + Do the Gaussian elimination. + This involves adding a multiple of the pivot column + to all other columns in the pivot row. + Sometimes more than one call to lu1gau is needed to allow + compression of the column file. + lfirst says which column the elimination should start with. + minfre is a bound on the storage needed for any one column. + lu points to off-diagonals of u. + nfill keeps track of pending fill-in in the row file. + =============================================================== */ + if(NELIM==0) + goto x700; + LFIRST = LPIVR1; + MINFRE = MLEFT+NSPARE; + LU = 1; + NFILL = 0; + +x400: +#ifdef UseTimer + timer ( "start", eltime ); +#endif + LU1GAU(LUSOL, MELIM,NSPARE,SMALL,LPIVC1,LPIVC2,&LFIRST,LPIVR2, + LFREE,MINFRE,ILAST,&JLAST,&LROW,&LCOL,&LU,&NFILL, + LUSOL->iqloc, LUSOL->a+LL1-LUSOL_ARRAYOFFSET, + LUSOL->indc+LL1-LUSOL_ARRAYOFFSET, LUSOL->a+LU1-LUSOL_ARRAYOFFSET, + LUSOL->indr+LL1-LUSOL_ARRAYOFFSET, LUSOL->indr+LU1-LUSOL_ARRAYOFFSET); +#ifdef UseTimer + timer ( "finish", eltime ); +#endif + if(LFIRST>0) { +/* The elimination was interrupted. + Compress the column file and try again. + lfirst, lu and nfill have appropriate new values. */ + LU1REC(LUSOL, LUSOL->n,TRUE,&LCOL, + LUSOL->indc,LUSOL->lenc,LUSOL->locc); + LFILE = LCOL; + JLAST = LUSOL->indc[LCOL+1]; + LPIVC = LUSOL->locc[JBEST]; + LPIVC1 = LPIVC+1; + LPIVC2 = LPIVC+MELIM; + NFREE = LFREE-LCOL; + if(NFREE0) { +/* Compress the row file if necessary. + lu1gau has set nfill to be the number of pending fill-ins + plus the current length of any rows that need to be moved. */ + MINFRE = NFILL; + NFREE = LFREE-LROW; + if(NFREEm,FALSE,&LROW, + LUSOL->indr,LUSOL->lenr,LUSOL->locr); + LFILE = LROW; + ILAST = LUSOL->indr[LROW+1]; + LPIVR = LUSOL->locr[IBEST]; + LPIVR1 = LPIVR+1; + LPIVR2 = LPIVR+NELIM; + NFREE = LFREE-LROW; + if(NFREEindr+LL1-LUSOL_ARRAYOFFSET,LUSOL->indr+LU1-LUSOL_ARRAYOFFSET); + } +/* =============================================================== + Restore the saved values of iqloc. + Insert the correct indices for the col of L and the row of U. + =============================================================== */ +x700: + LUSOL->lenr[IBEST] = 0; + LUSOL->lenc[JBEST] = 0; + LL = LL1-1; + LS = LSAVE; + for(LC = LPIVC1; LC <= LPIVC2; LC++) { + LL++; + LS++; + I = LUSOL->indc[LC]; + LUSOL->iqloc[I] = LUSOL->indr[LS]; + LUSOL->indc[LL] = I; + LUSOL->indr[LL] = IBEST; + } + LU = LU1-1; + for(LR = LPIVR; LR <= LPIVR2; LR++) { + LU++; + LUSOL->indr[LU] = LUSOL->indr[LR]; + } +/* =============================================================== + Free the space occupied by the pivot row + and update the column permutation. + Then free the space occupied by the pivot column + and update the row permutation. + nzchng is found in both calls to lu1pq2, but we use it only + after the second. + =============================================================== */ + LU1PQ2(LUSOL, NCOLD, &NZCHNG, + LUSOL->indr+LPIVR-LUSOL_ARRAYOFFSET, + LUSOL->indc+LU1-LUSOL_ARRAYOFFSET, LUSOL->lenc, + LUSOL->iqloc, LUSOL->iq, LUSOL->iqinv); + LU1PQ2(LUSOL, NROWD, &NZCHNG, + LUSOL->indc+LPIVC-LUSOL_ARRAYOFFSET, + LUSOL->indc+LSAVE-LUSOL_ARRAYOFFSET, LUSOL->lenr, + LUSOL->iploc, LUSOL->ip, LUSOL->ipinv); + NZLEFT += NZCHNG; + +/* =============================================================== + lu1mxr resets Amaxr(i) in each modified row i. + lu1mxc moves the largest aij to the top of each modified col j. + 28 Jun 2002: Note that cols of L have an implicit diag of 1.0, + so lu1mxr is called with ll1, not ll1+1, whereas + lu1mxc is called with lu1+1. + =============================================================== */ + if(UTRI && TPP) { +/* Relax -- we're not keeping big elements at the top yet. */ + } + else { + if(TRP && MELIM>0) +#ifdef ClassicHamaxR + LU1MXR(LUSOL, LL1,LL,LUSOL->indc,AMAXR); +#else + LU1MXR(LUSOL, LL1,LL,LUSOL->indc,LUSOL->amaxr); +#endif + + if(NELIM>0) { + LU1MXC(LUSOL, LU1+1,LU,LUSOL->indr); +/* Update modified columns in heap */ + if(TCP) { + for(KK = LU1+1; KK <= LU; KK++) { + J = LUSOL->indr[KK]; +#ifdef ClassicHamaxR + K = HK[J]; +#else + K = LUSOL->Hk[J]; +#endif +/* Biggest aij in column j */ + V = fabs(LUSOL->a[LUSOL->locc[J]]); +#ifdef ClassicHamaxR + HCHANGE(HA,HJ,HK,HLEN,K,V,J,&H); +#else + HCHANGE(LUSOL->Ha,LUSOL->Hj,LUSOL->Hk,HLEN,K,V,J,&H); +#endif + HOPS += H; + } + } + } + } +/* =============================================================== + Negate lengths of pivot row and column so they will be + eliminated during compressions. + =============================================================== */ + LUSOL->lenr[IBEST] = -NCOLD; + LUSOL->lenc[JBEST] = -NROWD; + +/* Test for fatal bug: row or column lists overwriting L and U. */ + if(LROW>LSAVE || LCOL>LSAVE) + goto x980; + +/* Reset the file lengths if pivot row or col was at the end. */ + if(IBEST==ILAST) + LROW = LUSOL->locr[IBEST]; + + if(JBEST==JLAST) + LCOL = LUSOL->locc[JBEST]; + + } +/* ------------------------------------------------------------------ + End of main loop. + ------------------------------------------------------------------ + ------------------------------------------------------------------ + Normal exit. + Move empty rows and cols to the end of ip, iq. + Then finish with a dense LU if necessary. + ------------------------------------------------------------------ */ +x900: + *INFORM = LUSOL_INFORM_LUSUCCESS; + LU1PQ3(LUSOL, LUSOL->m,LUSOL->lenr,LUSOL->ip,LUSOL->ipinv,&MRANK); + LU1PQ3(LUSOL, LUSOL->n,LUSOL->lenc,LUSOL->iq,LUSOL->iqinv,NRANK); + SETMIN(*NRANK, MRANK); + if(DENSLU) { +#ifdef UseTimer + timer ( "start", 17 ); +#endif + LU1FUL(LUSOL, LEND,LU1,TPP,MLEFT,NLEFT,*NRANK,NROWU,LENL,LENU, + &NSING,KEEPLU,SMALL,LUSOL->a+LD-LUSOL_ARRAYOFFSET,LUSOL->locr); +/* *** 21 Dec 1994: Bug in next line. + *** nrank = nrank - nsing */ + *NRANK = MINMN-NSING; +#ifdef UseTimer + timer ( "finish", 17 ); +#endif + } + *MINLEN = (*LENL)+(*LENU)+2*(LUSOL->m+LUSOL->n); + goto x990; +/* Not enough space free after a compress. + Set minlen to an estimate of the necessary value of lena. */ +x970: + *INFORM = LUSOL_INFORM_ANEEDMEM; + *MINLEN = LENA2+LFILE+2*(LUSOL->m+LUSOL->n); + goto x990; +/* Fatal error. This will never happen! + (Famous last words.) */ +x980: + *INFORM = LUSOL_INFORM_FATALERR; + goto x990; +/* Fatal error with TSP. Diagonal pivot not found. */ +x985: + *INFORM = LUSOL_INFORM_NOPIVOT; +/* Exit. */ +x990: +#ifdef UseTimer + timer ( "finish", 3 ); +#endif +; +} + + +/* ================================================================== + lu1fac computes a factorization A = L*U, where A is a sparse + matrix with m rows and n columns, P*L*P' is lower triangular + and P*U*Q is upper triangular for certain permutations P, Q + (which are returned in the arrays ip, iq). + Stability is ensured by limiting the size of the elements of L. + The nonzeros of A are input via the parallel arrays a, indc, indr, + which should contain nelem entries of the form aij, i, j + in any order. There should be no duplicate pairs i, j. + + ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + + Beware !!! The row indices i must be in indc, + + + and the column indices j must be in indr. + + + (Not the other way round!) + + ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + + It does not matter if some of the entries in a(*) are zero. + Entries satisfying abs( a(i) ) .le. parmlu(3) are ignored. + Other parameters in luparm and parmlu are described below. + The matrix A may be singular. On exit, nsing = luparm(11) gives + the number of apparent singularities. This is the number of + "small" diagonals of the permuted factor U, as judged by + the input tolerances Utol1 = parmlu(4) and Utol2 = parmlu(5). + The diagonal element diagj associated with column j of A is + "small" if + abs( diagj ) .le. Utol1 + or + abs( diagj ) .le. Utol2 * max( uj ), + where max( uj ) is the maximum element in the j-th column of U. + The position of such elements is returned in w(*). In general, + w(j) = + max( uj ), but if column j is a singularity, + w(j) = - max( uj ). Thus, w(j) .le. 0 if column j appears to be + dependent on the other columns of A. + NOTE: lu1fac (like certain other sparse LU packages) does not + treat dense columns efficiently. This means it will be slow + on "arrow matrices" of the form + A = (x a) + ( x b) + ( x c) + ( x d) + (x x x x e) + if the numerical values in the dense column allow it to be + chosen LATE in the pivot order. + With TPP (Threshold Partial Pivoting), the dense column is + likely to be chosen late. + With TCP (Threshold Complete Pivoting), if any of a,b,c,d + is significantly larger than other elements of A, it will + be chosen as the first pivot and the dense column will be + eliminated, giving reasonably sparse factors. + However, if element e is so big that TCP chooses it, the factors + will become dense. (It's hard to win on these examples!) + ------------------------------------------------------------------ + + Notes on the array names + ------------------------ + During the LU factorization, the sparsity pattern of the matrix + being factored is stored twice: in a column list and a row list. + The column list is ( a, indc, locc, lenc ) + where + a(*) holds the nonzeros, + indc(*) holds the indices for the column list, + locc(j) points to the start of column j in a(*) and indc(*), + lenc(j) is the number of nonzeros in column j. + The row list is ( indr, locr, lenr ) + where + indr(*) holds the indices for the row list, + locr(i) points to the start of row i in indr(*), + lenr(i) is the number of nonzeros in row i. + At all stages of the LU factorization, ip contains a complete + row permutation. At the start of stage k, ip(1), ..., ip(k-1) + are the first k-1 rows of the final row permutation P. + The remaining rows are stored in an ordered list + ( ip, iploc, ipinv ) + where + iploc(nz) points to the start in ip(*) of the set of rows + that currently contain nz nonzeros, + ipinv(i) points to the position of row i in ip(*). + For example, + iploc(1) = k (and this is where rows of length 1 {), + iploc(2) = k+p if there are p rows of length 1 + (and this is where rows of length 2 {). + Similarly for iq, iqloc, iqinv. + --------------------------------------------------------------------- + INPUT PARAMETERS + m (not altered) is the number of rows in A. + n (not altered) is the number of columns in A. + nelem (not altered) is the number of matrix entries given in + the arrays a, indc, indr. + lena (not altered) is the dimension of a, indc, indr. + This should be significantly larger than nelem. + Typically one should have + lena > max( 2*nelem, 10*m, 10*n, 10000 ) + but some applications may need more. + On machines with virtual memory it is safe to have + lena "far bigger than necessary", since not all of the + arrays will be used. + a (overwritten) contains entries Aij in a(1:nelem). + indc (overwritten) contains the indices i in indc(1:nelem). + indr (overwritten) contains the indices j in indr(1:nelem). + luparm input parameters: Typical value + luparm( 1) = nout File number for printed messages. 6 + luparm( 2) = lprint Print level. 0 + < 0 suppresses output. + = 0 gives error messages. + >= 10 gives statistics about the LU factors. + >= 50 gives debug output from lu1fac + (the pivot row and column and the + no. of rows and columns involved at + each elimination step). + luparm( 3) = maxcol lu1fac: maximum number of columns 5 + searched allowed in a Markowitz-type + search for the next pivot element. + For some of the factorization, the + number of rows searched is + maxrow = maxcol - 1. + luparm( 6) = 0 => TPP: Threshold Partial Pivoting. 0 + = 1 => TRP: Threshold Rook Pivoting. + = 2 => TCP: Threshold Complete Pivoting. + = 3 => TSP: Threshold Symmetric Pivoting. + = 4 => TDP: Threshold Diagonal Pivoting. + (TDP not yet implemented). + TRP and TCP are more expensive than TPP but + more stable and better at revealing rank. + Take care with setting parmlu(1), especially + with TCP. + NOTE: TSP and TDP are for symmetric matrices + that are either definite or quasi-definite. + TSP is effectively TRP for symmetric matrices. + TDP is effectively TCP for symmetric matrices. + luparm( 8) = keepLU lu1fac: keepLU = 1 means the numerical 1 + factors will be computed if possible. + keepLU = 0 means L and U will be discarded + but other information such as the row and + column permutations will be returned. + The latter option requires less storage. + parmlu input parameters: Typical value + parmlu( 1) = Ltol1 Max Lij allowed during Factor. + TPP 10.0 or 100.0 + TRP 4.0 or 10.0 + TCP 5.0 or 10.0 + TSP 4.0 or 10.0 + With TRP and TCP (Rook and Complete Pivoting), + values less than 25.0 may be expensive + on badly scaled data. However, + values less than 10.0 may be needed + to obtain a reliable rank-revealing + factorization. + parmlu( 2) = Ltol2 Max Lij allowed during Updates. 10.0 + during updates. + parmlu( 3) = small Absolute tolerance for eps**0.8 = 3.0d-13 + treating reals as zero. + parmlu( 4) = Utol1 Absolute tol for flagging eps**0.67= 3.7d-11 + small diagonals of U. + parmlu( 5) = Utol2 Relative tol for flagging eps**0.67= 3.7d-11 + small diagonals of U. + (eps = machine precision) + parmlu( 6) = Uspace Factor limiting waste space in U. 3.0 + In lu1fac, the row or column lists + are compressed if their length + exceeds Uspace times the length of + either file after the last compression. + parmlu( 7) = dens1 The density at which the Markowitz 0.3 + pivot strategy should search maxcol + columns and no rows. + (Use 0.3 unless you are experimenting + with the pivot strategy.) + parmlu( 8) = dens2 the density at which the Markowitz 0.5 + strategy should search only 1 column, + or (if storage is available) + the density at which all remaining + rows and columns will be processed + by a dense LU code. + For example, if dens2 = 0.1 and lena is + large enough, a dense LU will be used + once more than 10 per cent of the + remaining matrix is nonzero. + + OUTPUT PARAMETERS + a, indc, indr contain the nonzero entries in the LU factors of A. + If keepLU = 1, they are in a form suitable for use + by other parts of the LUSOL package, such as lu6sol. + U is stored by rows at the start of a, indr. + L is stored by cols at the end of a, indc. + If keepLU = 0, only the diagonals of U are stored, at the + end of a. + ip, iq are the row and column permutations defining the + pivot order. For example, row ip(1) and column iq(1) + defines the first diagonal of U. + lenc(1:numl0) contains the number of entries in nontrivial + columns of L (in pivot order). + lenr(1:m) contains the number of entries in each row of U + (in original order). + locc(1:n) = 0 (ready for the LU update routines). + locr(1:m) points to the beginning of the rows of U in a, indr. + iploc, iqloc, ipinv, iqinv are undefined. + w indicates singularity as described above. + inform = 0 if the LU factors were obtained successfully. + = 1 if U appears to be singular, as judged by lu6chk. + = 3 if some index pair indc(l), indr(l) lies outside + the matrix dimensions 1:m , 1:n. + = 4 if some index pair indc(l), indr(l) duplicates + another such pair. + = 7 if the arrays a, indc, indr were not large enough. + Their length "lena" should be increase to at least + the value "minlen" given in luparm(13). + = 8 if there was some other fatal error. (Shouldn't happen!) + = 9 if no diagonal pivot could be found with TSP or TDP. + The matrix must not be sufficiently definite + or quasi-definite. + luparm output parameters: + luparm(10) = inform Return code from last call to any LU routine. + luparm(11) = nsing No. of singularities marked in the + output array w(*). + luparm(12) = jsing Column index of last singularity. + luparm(13) = minlen Minimum recommended value for lena. + luparm(14) = maxlen ? + luparm(15) = nupdat No. of updates performed by the lu8 routines. + luparm(16) = nrank No. of nonempty rows of U. + luparm(17) = ndens1 No. of columns remaining when the density of + the matrix being factorized reached dens1. + luparm(18) = ndens2 No. of columns remaining when the density of + the matrix being factorized reached dens2. + luparm(19) = jumin The column index associated with DUmin. + luparm(20) = numL0 No. of columns in initial L. + luparm(21) = lenL0 Size of initial L (no. of nonzeros). + luparm(22) = lenU0 Size of initial U. + luparm(23) = lenL Size of current L. + luparm(24) = lenU Size of current U. + luparm(25) = lrow Length of row file. + luparm(26) = ncp No. of compressions of LU data structures. + luparm(27) = mersum lu1fac: sum of Markowitz merit counts. + luparm(28) = nUtri lu1fac: triangular rows in U. + luparm(29) = nLtri lu1fac: triangular rows in L. + luparm(30) = + parmlu output parameters: + parmlu(10) = Amax Maximum element in A. + parmlu(11) = Lmax Maximum multiplier in current L. + parmlu(12) = Umax Maximum element in current U. + parmlu(13) = DUmax Maximum diagonal in U. + parmlu(14) = DUmin Minimum diagonal in U. + parmlu(15) = Akmax Maximum element generated at any stage + during TCP factorization. + parmlu(16) = growth TPP: Umax/Amax TRP, TCP, TSP: Akmax/Amax + parmlu(17) = + parmlu(18) = + parmlu(19) = + parmlu(20) = resid lu6sol: residual after solve with U or U'. + ... + parmlu(30) = + ------------------------------------------------------------------ + 00 Jun 1983 Original version. + 00 Jul 1987 nrank saved in luparm(16). + 12 Apr 1989 ipinv, iqinv added as workspace. + 26 Apr 1989 maxtie replaced by maxcol in Markowitz search. + 16 Mar 1992 jumin saved in luparm(19). + 10 Jun 1992 lu1fad has to move empty rows and cols to the bottom + (via lu1pq3) before doing the dense LU. + 12 Jun 1992 Deleted dense LU (lu1ful, lu1vlu). + 25 Oct 1993 keepLU implemented. + 07 Feb 1994 Added new dense LU (lu1ful, lu1den). + 21 Dec 1994 Bugs fixed in lu1fad (nrank) and lu1ful (ipvt). + 08 Aug 1995 Use ip instead of w as parameter to lu1or3 (for F90). + 13 Sep 2000 TPP and TCP options implemented. + 17 Oct 2000 Fixed troubles due to A = empty matrix (Todd Munson). + 01 Dec 2000 Save Lmax, Umax, etc. after both lu1fad and lu6chk. + lu1fad sets them when keepLU = false. + lu6chk sets them otherwise, and includes items + from the dense LU. + 11 Mar 2001 lu6chk now looks at diag(U) when keepLU = false. + 26 Apr 2002 New TCP implementation using heap routines to + store largest element in each column. + New workspace arrays Ha, Hj, Hk required. + For compatibility, borrow space from a, indc, indr + rather than adding new input parameters. + 01 May 2002 lu1den changed to lu1DPP (dense partial pivoting). + lu1DCP implemented (dense complete pivoting). + Both TPP and TCP now switch to dense mode and end. + ================================================================== */ +void LU1FAC(LUSOLrec *LUSOL, int *INFORM) +{ + MYBOOL KEEPLU, TCP, TPP, TRP, TSP; + int LPIV, NELEM0, LPRINT, MINLEN, NUML0, LENL, LENU, LROW, MERSUM, + NUTRI, NLTRI, NDENS1, NDENS2, NRANK, NSING, JSING, JUMIN, NUMNZ, LERR, + LU, LL, LM, LTOPL, K, I, LENUK, J, LENLK, IDUMMY, LLSAVE, NMOVE, L2, L, NCP, NBUMP; +#ifdef ClassicHamaxR + int LENH, LENA2, LOCH, LMAXR; +#endif + + LPSREAL LMAX, LTOL, SMALL, AMAX, UMAX, DUMAX, DUMIN, AKMAX, DM, DN, DELEM, DENSTY, + AGRWTH, UGRWTH, GROWTH, CONDU, DINCR, AVGMER; + +/* Free row-based version of L0 (regenerated by LUSOL_btran). */ + if(LUSOL->L0 != NULL) + LUSOL_matfree(&(LUSOL->L0)); + +/* Grab relevant input parameters. */ + NELEM0 = LUSOL->nelem; + LPRINT = LUSOL->luparm[LUSOL_IP_PRINTLEVEL]; + LPIV = LUSOL->luparm[LUSOL_IP_PIVOTTYPE]; + KEEPLU = (MYBOOL) (LUSOL->luparm[LUSOL_IP_KEEPLU]!=FALSE); +/* Limit on size of Lij */ + LTOL = LUSOL->parmlu[LUSOL_RP_FACTORMAX_Lij]; +/* Drop tolerance */ + SMALL = LUSOL->parmlu[LUSOL_RP_ZEROTOLERANCE]; + TPP = (MYBOOL) (LPIV==LUSOL_PIVMOD_TPP); + TRP = (MYBOOL) (LPIV==LUSOL_PIVMOD_TRP); + TCP = (MYBOOL) (LPIV==LUSOL_PIVMOD_TCP); + TSP = (MYBOOL) (LPIV==LUSOL_PIVMOD_TSP); +/* Initialize output parameters. */ + *INFORM = LUSOL_INFORM_LUSUCCESS; + LERR = 0; + MINLEN = LUSOL->nelem + 2*(LUSOL->m+LUSOL->n); + NUML0 = 0; + LENL = 0; + LENU = 0; + LROW = 0; + MERSUM = 0; + NUTRI = LUSOL->m; + NLTRI = 0; + NDENS1 = 0; + NDENS2 = 0; + NRANK = 0; + NSING = 0; + JSING = 0; + JUMIN = 0; + AMAX = ZERO; + LMAX = ZERO; + UMAX = ZERO; + DUMAX = ZERO; + DUMIN = ZERO; + AKMAX = ZERO; + +/* Float version of dimensions. */ + DM = LUSOL->m; + DN = LUSOL->n; + DELEM = LUSOL->nelem; + +/* Initialize workspace parameters. */ + LUSOL->luparm[LUSOL_IP_COMPRESSIONS_LU] = 0; + if(LUSOL->lena < MINLEN) { + if(!LUSOL_realloc_a(LUSOL, MINLEN)) + goto x970; + } + +/* ------------------------------------------------------------------ + Organize the aij's in a, indc, indr. + lu1or1 deletes small entries, tests for illegal i,j's, + and counts the nonzeros in each row and column. + lu1or2 reorders the elements of A by columns. + lu1or3 uses the column list to test for duplicate entries + (same indices i,j). + lu1or4 constructs a row list from the column list. + ------------------------------------------------------------------ */ + LU1OR1(LUSOL, SMALL,&AMAX,&NUMNZ,&LERR,INFORM); + if(LPRINT>=LUSOL_MSG_STATISTICS) { + DENSTY = (100*DELEM)/(DM*DN); + LUSOL_report(LUSOL, 0, "m:%6d %c n:%6d nzcount:%9d Amax:%g Density:%g\n", + LUSOL->m, relationChar(LUSOL->m, LUSOL->n), LUSOL->n, + LUSOL->nelem, AMAX, DENSTY); + } + if(*INFORM!=LUSOL_INFORM_LUSUCCESS) + goto x930; + LUSOL->nelem = NUMNZ; + LU1OR2(LUSOL); + LU1OR3(LUSOL, &LERR,INFORM); + if(*INFORM!=LUSOL_INFORM_LUSUCCESS) + goto x940; + LU1OR4(LUSOL); +/* ------------------------------------------------------------------ + Set up lists of rows and columns with equal numbers of nonzeros, + using indc(*) as workspace. + ------------------------------------------------------------------ */ + LU1PQ1(LUSOL, LUSOL->m,LUSOL->n,LUSOL->lenr, + LUSOL->ip,LUSOL->iploc,LUSOL->ipinv, + LUSOL->indc+LUSOL->nelem); /* LUSOL_ARRAYOFFSET implied */ + LU1PQ1(LUSOL, LUSOL->n,LUSOL->m,LUSOL->lenc, + LUSOL->iq,LUSOL->iqloc,LUSOL->iqinv, + LUSOL->indc+LUSOL->nelem); /* LUSOL_ARRAYOFFSET implied */ +/* ------------------------------------------------------------------ + For TCP, Ha, Hj, Hk are allocated separately, similarly amaxr + for TRP. Then compute the factorization A = L*U. + ------------------------------------------------------------------ */ +#ifdef ClassicHamaxR + if(TPP || TSP) { + LENH = 1; + LENA2 = LUSOL->lena; + LOCH = LUSOL->lena; + LMAXR = 1; + } + else if(TRP) { + LENH = 1; /* Dummy */ + LENA2 = LUSOL->lena-LUSOL->m; /* Reduced length of a */ + LOCH = LUSOL->lena; /* Dummy */ + LMAXR = LENA2+1; /* Start of Amaxr in a */ + } + else if(TCP) { + LENH = LUSOL->n; /* Length of heap */ + LENA2 = LUSOL->lena-LENH; /* Reduced length of a, indc, indr */ + LOCH = LENA2+1; /* Start of Ha, Hj, Hk in a, indc, indr */ + LMAXR = 1; /* Dummy */ + } + LU1FAD(LUSOL, + LENA2,LENH, + LUSOL->a+LOCH-LUSOL_ARRAYOFFSET, + LUSOL->indc+LOCH-LUSOL_ARRAYOFFSET, + LUSOL->indr+LOCH-LUSOL_ARRAYOFFSET, + LUSOL->a+LMAXR-LUSOL_ARRAYOFFSET, + INFORM,&LENL,&LENU, + &MINLEN,&MERSUM,&NUTRI,&NLTRI,&NDENS1,&NDENS2, + &NRANK,&LMAX,&UMAX,&DUMAX,&DUMIN,&AKMAX); +#else + LU1FAD(LUSOL, + INFORM,&LENL,&LENU, + &MINLEN,&MERSUM,&NUTRI,&NLTRI,&NDENS1,&NDENS2, + &NRANK,&LMAX,&UMAX,&DUMAX,&DUMIN,&AKMAX); +#endif + LUSOL->luparm[LUSOL_IP_RANK_U] = NRANK; + LUSOL->luparm[LUSOL_IP_NONZEROS_L] = LENL; + if(*INFORM==LUSOL_INFORM_ANEEDMEM) + goto x970; + if(*INFORM==LUSOL_INFORM_NOPIVOT) + goto x985; + if(*INFORM>LUSOL_INFORM_LUSUCCESS) + goto x980; + if(KEEPLU) { +/* --------------------------------------------------------------- + The LU factors are at the top of a, indc, indr, + with the columns of L and the rows of U in the order + ( free ) ... ( u3 ) ( l3 ) ( u2 ) ( l2 ) ( u1 ) ( l1 ). + Starting with ( l1 ) and ( u1 ), move the rows of U to the + left and the columns of L to the right, giving + ( u1 ) ( u2 ) ( u3 ) ... ( free ) ... ( l3 ) ( l2 ) ( l1 ). + Also, set numl0 = the number of nonempty columns of U. + --------------------------------------------------------------- */ + LU = 0; + LL = LUSOL->lena+1; +#ifdef ClassicHamaxR + LM = LENA2+1; +#else + LM = LL; +#endif + LTOPL = LL-LENL-LENU; + LROW = LENU; + for(K = 1; K <= NRANK; K++) { + I = LUSOL->ip[K]; + LENUK = -LUSOL->lenr[I]; + LUSOL->lenr[I] = LENUK; + J = LUSOL->iq[K]; + LENLK = -LUSOL->lenc[J]-1; + if(LENLK>0) { + NUML0++; + LUSOL->iqloc[NUML0] = LENLK; + } + if(LU+LENUKa[LL] = LUSOL->a[LM]; + LUSOL->indc[LL] = LUSOL->indc[LM]; + LUSOL->indr[LL] = LUSOL->indr[LM]; + } + } + else { +/* ========================================================= + There is no room for ( uk ) yet. We have to + right-shift the whole of the remaining LU file. + Note that ( lk ) ends up in the correct place. + ========================================================= */ + LLSAVE = LL-LENLK; + NMOVE = LM-LTOPL; + for(IDUMMY = 1; IDUMMY <= NMOVE; IDUMMY++) { + LL--; + LM--; + LUSOL->a[LL] = LUSOL->a[LM]; + LUSOL->indc[LL] = LUSOL->indc[LM]; + LUSOL->indr[LL] = LUSOL->indr[LM]; + } + LTOPL = LL; + LL = LLSAVE; + LM = LL; + } +/* ====================================================== + Left-shift ( uk ). + ====================================================== */ + LUSOL->locr[I] = LU+1; + L2 = LM-1; + LM = LM-LENUK; + for(L = LM; L <= L2; L++) { + LU = LU+1; + LUSOL->a[LU] = LUSOL->a[L]; + LUSOL->indr[LU] = LUSOL->indr[L]; + } + } +/* --------------------------------------------------------------- + Save the lengths of the nonempty columns of L, + and initialize locc(j) for the LU update routines. + --------------------------------------------------------------- */ + for(K = 1; K <= NUML0; K++) { + LUSOL->lenc[K] = LUSOL->iqloc[K]; + } + for(J = 1; J <= LUSOL->n; J++) { + LUSOL->locc[J] = 0; + } +/* --------------------------------------------------------------- + Test for singularity. + lu6chk sets nsing, jsing, jumin, Lmax, Umax, DUmax, DUmin + (including entries from the dense LU). + inform = 1 if there are singularities (nsing gt 0). + --------------------------------------------------------------- */ + LU6CHK(LUSOL, 1,LUSOL->lena,INFORM); + NSING = LUSOL->luparm[LUSOL_IP_SINGULARITIES]; + JSING = LUSOL->luparm[LUSOL_IP_SINGULARINDEX]; + JUMIN = LUSOL->luparm[LUSOL_IP_COLINDEX_DUMIN]; + LMAX = LUSOL->parmlu[LUSOL_RP_MAXMULT_L]; + UMAX = LUSOL->parmlu[LUSOL_RP_MAXELEM_U]; + DUMAX = LUSOL->parmlu[LUSOL_RP_MAXELEM_DIAGU]; + DUMIN = LUSOL->parmlu[LUSOL_RP_MINELEM_DIAGU]; + } + else { +/* --------------------------------------------------------------- + keepLU = 0. L and U were not kept, just the diagonals of U. + lu1fac will probably be called again soon with keepLU = .true. + 11 Mar 2001: lu6chk revised. We can call it with keepLU = 0, + but we want to keep Lmax, Umax from lu1fad. + 05 May 2002: Allow for TCP with new lu1DCP. Diag(U) starts + below lena2, not lena. Need lena2 in next line. + --------------------------------------------------------------- */ +#ifdef ClassicHamaxR + LU6CHK(LUSOL, 1,LENA2,INFORM); +#else + LU6CHK(LUSOL, 1,LUSOL->lena,INFORM); +#endif + NSING = LUSOL->luparm[LUSOL_IP_SINGULARITIES]; + JSING = LUSOL->luparm[LUSOL_IP_SINGULARINDEX]; + JUMIN = LUSOL->luparm[LUSOL_IP_COLINDEX_DUMIN]; + DUMAX = LUSOL->parmlu[LUSOL_RP_MAXELEM_DIAGU]; + DUMIN = LUSOL->parmlu[LUSOL_RP_MINELEM_DIAGU]; + } + goto x990; +/* ------------ + Error exits. + ------------ */ +x930: + *INFORM = LUSOL_INFORM_ADIMERR; + if(LPRINT>=LUSOL_MSG_SINGULARITY) + LUSOL_report(LUSOL, 0, "lu1fac error...\nentry a[%d] has an illegal row (%d) or column (%d) index\n", + LERR,LUSOL->indc[LERR],LUSOL->indr[LERR]); + goto x990; +x940: + *INFORM = LUSOL_INFORM_ADUPLICATE; + if(LPRINT>=LUSOL_MSG_SINGULARITY) + LUSOL_report(LUSOL, 0, "lu1fac error...\nentry a[%d] is a duplicate with indeces indc=%d, indr=%d\n", + LERR,LUSOL->indc[LERR],LUSOL->indr[LERR]); + goto x990; +x970: + *INFORM = LUSOL_INFORM_ANEEDMEM; + if(LPRINT>=LUSOL_MSG_SINGULARITY) + LUSOL_report(LUSOL, 0, "lu1fac error...\ninsufficient storage; increase lena from %d to at least %d\n", + LUSOL->lena, MINLEN); + goto x990; +x980: + *INFORM = LUSOL_INFORM_FATALERR; + if(LPRINT>=LUSOL_MSG_SINGULARITY) + LUSOL_report(LUSOL, 0, "lu1fac error...\nfatal bug (sorry --- this should never happen)\n"); + goto x990; +x985: + *INFORM = LUSOL_INFORM_NOPIVOT; + if(LPRINT>=LUSOL_MSG_SINGULARITY) + LUSOL_report(LUSOL, 0, "lu1fac error...\nTSP used but diagonal pivot could not be found\n"); + +/* Finalize and store output parameters. */ +x990: + LUSOL->nelem = NELEM0; + LUSOL->luparm[LUSOL_IP_SINGULARITIES] = NSING; + LUSOL->luparm[LUSOL_IP_SINGULARINDEX] = JSING; + LUSOL->luparm[LUSOL_IP_MINIMUMLENA] = MINLEN; + LUSOL->luparm[LUSOL_IP_UPDATECOUNT] = 0; + LUSOL->luparm[LUSOL_IP_RANK_U] = NRANK; + LUSOL->luparm[LUSOL_IP_COLCOUNT_DENSE1] = NDENS1; + LUSOL->luparm[LUSOL_IP_COLCOUNT_DENSE2] = NDENS2; + LUSOL->luparm[LUSOL_IP_COLINDEX_DUMIN] = JUMIN; + LUSOL->luparm[LUSOL_IP_COLCOUNT_L0] = NUML0; + LUSOL->luparm[LUSOL_IP_ROWCOUNT_L0] = 0; + LUSOL->luparm[LUSOL_IP_NONZEROS_L0] = LENL; + LUSOL->luparm[LUSOL_IP_NONZEROS_U0] = LENU; + LUSOL->luparm[LUSOL_IP_NONZEROS_L] = LENL; + LUSOL->luparm[LUSOL_IP_NONZEROS_U] = LENU; + LUSOL->luparm[LUSOL_IP_NONZEROS_ROW] = LROW; + LUSOL->luparm[LUSOL_IP_MARKOWITZ_MERIT] = MERSUM; + LUSOL->luparm[LUSOL_IP_TRIANGROWS_U] = NUTRI; + LUSOL->luparm[LUSOL_IP_TRIANGROWS_L] = NLTRI; + LUSOL->parmlu[LUSOL_RP_MAXELEM_A] = AMAX; + LUSOL->parmlu[LUSOL_RP_MAXMULT_L] = LMAX; + LUSOL->parmlu[LUSOL_RP_MAXELEM_U] = UMAX; + LUSOL->parmlu[LUSOL_RP_MAXELEM_DIAGU] = DUMAX; + LUSOL->parmlu[LUSOL_RP_MINELEM_DIAGU] = DUMIN; + LUSOL->parmlu[LUSOL_RP_MAXELEM_TCP] = AKMAX; + AGRWTH = AKMAX/(AMAX+LUSOL_SMALLNUM); + UGRWTH = UMAX/(AMAX+LUSOL_SMALLNUM); + if(TPP) + GROWTH = UGRWTH; +/* TRP or TCP or TSP */ + else + GROWTH = AGRWTH; + LUSOL->parmlu[LUSOL_RP_GROWTHRATE] = GROWTH; + + LUSOL->luparm[LUSOL_IP_FTRANCOUNT] = 0; + LUSOL->luparm[LUSOL_IP_BTRANCOUNT] = 0; + +/* ------------------------------------------------------------------ + Set overall status variable. + ------------------------------------------------------------------ */ + LUSOL->luparm[LUSOL_IP_INFORM] = *INFORM; + if(*INFORM == LUSOL_INFORM_NOMEMLEFT) + LUSOL_report(LUSOL, 0, "lu1fac error...\ninsufficient memory available\n"); + +/* ------------------------------------------------------------------ + Print statistics for the LU factors. + ------------------------------------------------------------------ */ + NCP = LUSOL->luparm[LUSOL_IP_COMPRESSIONS_LU]; + CONDU = DUMAX/MAX(DUMIN,LUSOL_SMALLNUM); + DINCR = (LENL+LENU)-LUSOL->nelem; + DINCR = (DINCR*100)/MAX(DELEM,ONE); + AVGMER = MERSUM; + AVGMER = AVGMER/DM; + NBUMP = LUSOL->m-NUTRI-NLTRI; + if(LPRINT>=LUSOL_MSG_STATISTICS) { + if(TPP) { + LUSOL_report(LUSOL, 0, "Merit %g %d %d %d %g %d %d %g %g %d %d %d\n", + AVGMER,LENL,LENL+LENU,NCP,DINCR,NUTRI,LENU, + LTOL,UMAX,UGRWTH,NLTRI,NDENS1,LMAX); + } + else { + LUSOL_report(LUSOL, 0, "Merit %s %g %d %d %d %g %d %d %g %g %d %d %d %g %g\n", + LUSOL_pivotLabel(LUSOL), + AVGMER,LENL,LENL+LENU,NCP,DINCR,NUTRI,LENU, + LTOL,UMAX,UGRWTH,NLTRI,NDENS1,LMAX,AKMAX,AGRWTH); + } + LUSOL_report(LUSOL, 0, "bump%9d dense2%7d DUmax%g DUmin%g conDU%g\n", + NBUMP,NDENS2,DUMAX,DUMIN,CONDU); + } +} + + diff --git a/src/external/lpsolve/build/lp_solve/lusol2.c b/src/external/lpsolve/build/lp_solve/lusol2.c new file mode 100644 index 00000000..49fb8a21 --- /dev/null +++ b/src/external/lpsolve/build/lp_solve/lusol2.c @@ -0,0 +1,204 @@ + +/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + File lusol2 LUSOL heap management routines + Hbuild Hchange Hdelete Hdown Hinsert Hup + Heap-management routines for LUSOL's lu1fac. + May be useful for other applications. + ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + For LUSOL, the heap structure involves three arrays of length N. + N is the current number of entries in the heap. + Ha(1:N) contains the values that the heap is partially sorting. + For LUSOL they are double precision values -- the largest + element in each remaining column of the updated matrix. + The biggest entry is in Ha(1), the top of the heap. + Hj(1:N) contains column numbers j. + Ha(k) is the biggest entry in column j = Hj(k). + Hk(1:N) contains indices within the heap. It is the + inverse of Hj(1:N), so k = Hk(j) <=> j = Hj(k). + Column j is entry k in the heap. + hops is the number of heap operations, + i.e., the number of times an entry is moved + (the number of "hops" up or down the heap). + Together, Hj and Hk let us find values inside the heap + whenever we want to change one of the values in Ha. + For other applications, Ha may need to be some other data type, + like the keys that sort routines operate on. + ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + 11 Feb 2002: MATLAB version derived from "Algorithms" by + R. Sedgewick + 03 Mar 2002: F77 version derived from MATLAB version. + 07 May 2002: Safeguard input parameters k, N, Nk. + We don't want them to be output! + 07 May 2002: Current version of lusol2.f. + ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ + +/* ================================================================== + Hdown updates heap by moving down tree from node k. + ------------------------------------------------------------------ + 01 May 2002: Need Nk for length of Hk. + 05 May 2002: Change input paramter k to kk to stop k being output. + 05 May 2002: Current version of Hdown. + ================================================================== */ +void HDOWN(LPSREAL HA[], int HJ[], int HK[], int N, int K, int *HOPS) +{ + int J, JJ, JV, N2; + LPSREAL V; + + *HOPS = 0; + V = HA[K]; + JV = HJ[K]; + N2 = N/2; +/* while 1 + break */ +x100: + if(K>N2) + goto x200; + (*HOPS)++; + J = K+K; + if(J=HA[J]) + goto x200; + HA[K] = HA[J]; + JJ = HJ[J]; + HJ[K] = JJ; + HK[JJ] = K; + K = J; + goto x100; +/* end while */ +x200: + HA[K] = V; + HJ[K] = JV; + HK[JV] = K; +} + +/* ================================================================== + Hup updates heap by moving up tree from node k. + ------------------------------------------------------------------ + 01 May 2002: Need Nk for length of Hk. + 05 May 2002: Change input paramter k to kk to stop k being output. + 05 May 2002: Current version of Hup. + ================================================================== */ +void HUP(LPSREAL HA[], int HJ[], int HK[], int K, int *HOPS) +{ + int J, JV, K2; + LPSREAL V; + + *HOPS = 0; + V = HA[K]; + JV = HJ[K]; +/* while 1 + break */ +x100: + if(K<2) + goto x200; + K2 = K/2; +/* break */ + if(V n - nrank may occur. + If keepLU = 0, + Lmax and Umax are already set by lu1fac. + The diagonals of U are in the top of A. + Only Utol1 is used in the singularity test to set w(*). + inform = 0 if A appears to have full column rank (nsing = 0). + inform = 1 otherwise (nsing .gt. 0). + ------------------------------------------------------------------ + 00 Jul 1987: Early version. + 09 May 1988: f77 version. + 11 Mar 2001: Allow for keepLU = 0. + 17 Nov 2001: Briefer output for singular factors. + 05 May 2002: Comma needed in format 1100 (via Kenneth Holmstrom). + 06 May 2002: With keepLU = 0, diags of U are in natural order. + They were not being extracted correctly. + 23 Apr 2004: TRP can judge singularity better by comparing + all diagonals to DUmax. + 27 Jun 2004: (PEG) Allow write only if nout .gt. 0. + ================================================================== */ +#ifdef UseOld_LU6CHK_20040510 +void LU6CHK(LUSOLrec *LUSOL, int MODE, int LENA2, int *INFORM) +{ + MYBOOL KEEPLU; + int I, J, JUMIN, K, L, L1, L2, LENL, LPRINT, NDEFIC, NRANK; + LPSREAL AIJ, DIAG, DUMAX, DUMIN, LMAX, UMAX, UTOL1, UTOL2; + + LPRINT = LUSOL->luparm[LUSOL_IP_PRINTLEVEL]; + KEEPLU = (MYBOOL) (LUSOL->luparm[LUSOL_IP_KEEPLU]!=0); + NRANK = LUSOL->luparm[LUSOL_IP_RANK_U]; + LENL = LUSOL->luparm[LUSOL_IP_NONZEROS_L]; + UTOL1 = LUSOL->parmlu[LUSOL_RP_SMALLDIAG_U]; + UTOL2 = LUSOL->parmlu[LUSOL_RP_EPSDIAG_U]; + *INFORM = LUSOL_INFORM_LUSUCCESS; + LMAX = ZERO; + UMAX = ZERO; + LUSOL->luparm[LUSOL_IP_SINGULARITIES] = 0; + LUSOL->luparm[LUSOL_IP_SINGULARINDEX] = 0; + JUMIN = 0; + DUMAX = ZERO; + DUMIN = LUSOL_BIGNUM; + +#ifdef LUSOLFastClear + MEMCLEAR(LUSOL->w+1, LUSOL->n); +#else + for(I = 1; I <= LUSOL->n; I++) + LUSOL->w[I] = ZERO; +#endif + + if(KEEPLU) { +/* -------------------------------------------------------------- + Find Lmax. + -------------------------------------------------------------- */ + for(L = (LENA2+1)-LENL; L <= LENA2; L++) { + SETMAX(LMAX,fabs(LUSOL->a[L])); + } +/* -------------------------------------------------------------- + Find Umax and set w(j) = maximum element in j-th column of U. + -------------------------------------------------------------- */ + for(K = 1; K <= NRANK; K++) { + I = LUSOL->ip[K]; + L1 = LUSOL->locr[I]; + L2 = (L1+LUSOL->lenr[I])-1; + for(L = L1; L <= L2; L++) { + J = LUSOL->indr[L]; + AIJ = fabs(LUSOL->a[L]); + SETMAX(LUSOL->w[J],AIJ); + SETMAX(UMAX,AIJ); + } + } +/* -------------------------------------------------------------- + Negate w(j) if the corresponding diagonal of U is + too small in absolute terms or relative to the other elements + in the same column of U. + Also find DUmax and DUmin, the extreme diagonals of U. + -------------------------------------------------------------- */ + for(K = 1; K <= LUSOL->n; K++) { + J = LUSOL->iq[K]; + if(K>NRANK) + DIAG = ZERO; + else { + I = LUSOL->ip[K]; + L1 = LUSOL->locr[I]; + DIAG = fabs(LUSOL->a[L1]); + SETMAX(DUMAX,DIAG); + if(DUMIN>DIAG) { + DUMIN = DIAG; + JUMIN = J; + } + } + if((DIAG<=UTOL1) || (DIAG<=UTOL2*LUSOL->w[J])) { + LUSOL_addSingularity(LUSOL, J, INFORM); + LUSOL->w[J] = -LUSOL->w[J]; + } + } + LUSOL->parmlu[LUSOL_RP_MAXMULT_L] = LMAX; + LUSOL->parmlu[LUSOL_RP_MAXELEM_U] = UMAX; + } + else { +/* -------------------------------------------------------------- + keepLU = 0. + Only diag(U) is stored. Set w(*) accordingly. + -------------------------------------------------------------- */ + for(K = 1; K <= LUSOL->n; K++) { + J = LUSOL->iq[K]; + if(K>NRANK) + DIAG = ZERO; + else { +/* ! diag = abs( diagU(k) ) ! 06 May 2002: Diags are in natural order */ + DIAG = fabs(LUSOL->diagU[J]); + LUSOL->w[J] = DIAG; + SETMAX(DUMAX,DIAG); + if(DUMIN>DIAG) { + DUMIN = DIAG; + JUMIN = J; + } + } + if(DIAG<=UTOL1) { + LUSOL_addSingularity(LUSOL, J, INFORM); + LUSOL->w[J] = -LUSOL->w[J]; + } + } + } +/* ----------------------------------------------------------------- + Set output parameters. + ----------------------------------------------------------------- */ + if(JUMIN==0) + DUMIN = ZERO; + LUSOL->luparm[LUSOL_IP_COLINDEX_DUMIN] = JUMIN; + LUSOL->parmlu[LUSOL_RP_MAXELEM_DIAGU] = DUMAX; + LUSOL->parmlu[LUSOL_RP_MINELEM_DIAGU] = DUMIN; +/* The matrix has been judged singular. */ + if(LUSOL->luparm[LUSOL_IP_SINGULARITIES]>0) { + *INFORM = LUSOL_INFORM_LUSINGULAR; + NDEFIC = LUSOL->n-NRANK; + if(LPRINT>=LUSOL_MSG_SINGULARITY) { + LUSOL_report(LUSOL, 0, "Singular(m%cn) rank:%9d n-rank:%8d nsing:%9d\n", + relationChar(LUSOL->m, LUSOL->n),NRANK,NDEFIC, + LUSOL->luparm[LUSOL_IP_SINGULARITIES]); + } + } +/* Exit. */ + LUSOL->luparm[LUSOL_IP_INFORM] = *INFORM; +} +#else +void LU6CHK(LUSOLrec *LUSOL, int MODE, int LENA2, int *INFORM) +{ + MYBOOL KEEPLU, TRP; + int I, J, JUMIN, K, L, L1, L2, LENL, LDIAGU, LPRINT, NDEFIC, NRANK; + LPSREAL AIJ, DIAG, DUMAX, DUMIN, LMAX, UMAX, UTOL1, UTOL2; + + LPRINT = LUSOL->luparm[LUSOL_IP_PRINTLEVEL]; + KEEPLU = (MYBOOL) (LUSOL->luparm[LUSOL_IP_KEEPLU] != 0); + TRP = (MYBOOL) (LUSOL->luparm[LUSOL_IP_PIVOTTYPE] == LUSOL_PIVMOD_TRP); + NRANK = LUSOL->luparm[LUSOL_IP_RANK_U]; + LENL = LUSOL->luparm[LUSOL_IP_NONZEROS_L]; + UTOL1 = LUSOL->parmlu[LUSOL_RP_SMALLDIAG_U]; + UTOL2 = LUSOL->parmlu[LUSOL_RP_EPSDIAG_U]; + *INFORM = LUSOL_INFORM_LUSUCCESS; + LMAX = ZERO; + UMAX = ZERO; + LUSOL->luparm[LUSOL_IP_SINGULARITIES] = 0; + LUSOL->luparm[LUSOL_IP_SINGULARINDEX] = 0; + JUMIN = 0; + DUMAX = ZERO; + DUMIN = LUSOL_BIGNUM; + +#ifdef LUSOLFastClear + MEMCLEAR(LUSOL->w+1, LUSOL->n); +#else + for(I = 1; I <= LUSOL->n; I++) + LUSOL->w[I] = ZERO; +#endif + + if(KEEPLU) { +/* -------------------------------------------------------------- + Find Lmax. + -------------------------------------------------------------- */ + for(L = (LENA2+1)-LENL; L <= LENA2; L++) { + SETMAX(LMAX,fabs(LUSOL->a[L])); + } +/* -------------------------------------------------------------- + Find Umax and set w(j) = maximum element in j-th column of U. + -------------------------------------------------------------- */ + for(K = 1; K <= NRANK; K++) { + I = LUSOL->ip[K]; + L1 = LUSOL->locr[I]; + L2 = (L1+LUSOL->lenr[I])-1; + for(L = L1; L <= L2; L++) { + J = LUSOL->indr[L]; + AIJ = fabs(LUSOL->a[L]); + SETMAX(LUSOL->w[J],AIJ); + SETMAX(UMAX,AIJ); + } + } + LUSOL->parmlu[LUSOL_RP_MAXMULT_L] = LMAX; + LUSOL->parmlu[LUSOL_RP_MAXELEM_U] = UMAX; +/* -------------------------------------------------------------- + Find DUmax and DUmin, the extreme diagonals of U. + -------------------------------------------------------------- */ + for(K = 1; K <= NRANK; K++) { + J = LUSOL->iq[K]; + I = LUSOL->ip[K]; + L1 = LUSOL->locr[I]; + DIAG = fabs(LUSOL->a[L1]); + SETMAX( DUMAX, DIAG ); + if(DUMIN > DIAG) { + DUMIN = DIAG; + JUMIN = J; + } + } + } + else { +/* -------------------------------------------------------------- + keepLU = 0. + Only diag(U) is stored. Set w(*) accordingly. + Find DUmax and DUmin, the extreme diagonals of U. + -------------------------------------------------------------- */ + LDIAGU = LENA2 - LUSOL->n; + for(K = 1; K <= NRANK; K++) { + J = LUSOL->iq[K]; + DIAG = fabs( LUSOL->a[LDIAGU + J] ); /* are in natural order */ + LUSOL->w[J] = DIAG; + SETMAX( DUMAX, DIAG ); + if(DUMIN > DIAG) { + DUMIN = DIAG; + JUMIN = J; + } + } + } +/* -------------------------------------------------------------- + Negate w(j) if the corresponding diagonal of U is + too small in absolute terms or relative to the other elements + in the same column of U. + + 23 Apr 2004: TRP ensures that diags are NOT small relative to + other elements in their own column. + Much better, we can compare all diags to DUmax. + -------------------------------------------------------------- */ + if((MODE == 1) && TRP) { + SETMAX( UTOL1, UTOL2*DUMAX ); + } + + if(KEEPLU) { + for(K = 1; K <= LUSOL->n; K++) { + J = LUSOL->iq[K]; + if(K>NRANK) + DIAG = ZERO; + else { + I = LUSOL->ip[K]; + L1 = LUSOL->locr[I]; + DIAG = fabs(LUSOL->a[L1]); + } + if((DIAG<=UTOL1) || (DIAG<=UTOL2*LUSOL->w[J])) { + LUSOL_addSingularity(LUSOL, J, INFORM); + LUSOL->w[J] = -LUSOL->w[J]; + } + } + } + else { /* keepLU = FALSE */ + for(K = 1; K <= LUSOL->n; K++) { + J = LUSOL->iq[K]; + DIAG = LUSOL->w[J]; + if(DIAG<=UTOL1) { + LUSOL_addSingularity(LUSOL, J, INFORM); + LUSOL->w[J] = -LUSOL->w[J]; + } + } + } +/* ----------------------------------------------------------------- + Set output parameters. + ----------------------------------------------------------------- */ + if(JUMIN==0) + DUMIN = ZERO; + LUSOL->luparm[LUSOL_IP_COLINDEX_DUMIN] = JUMIN; + LUSOL->parmlu[LUSOL_RP_MAXELEM_DIAGU] = DUMAX; + LUSOL->parmlu[LUSOL_RP_MINELEM_DIAGU] = DUMIN; +/* The matrix has been judged singular. */ + if(LUSOL->luparm[LUSOL_IP_SINGULARITIES]>0) { + *INFORM = LUSOL_INFORM_LUSINGULAR; + NDEFIC = LUSOL->n-NRANK; + if((LUSOL->outstream!=NULL) && (LPRINT>=LUSOL_MSG_SINGULARITY)) { + LUSOL_report(LUSOL, 0, "Singular(m%cn) rank:%9d n-rank:%8d nsing:%9d\n", + relationChar(LUSOL->m, LUSOL->n),NRANK,NDEFIC, + LUSOL->luparm[LUSOL_IP_SINGULARITIES]); + } + } +/* Exit. */ + LUSOL->luparm[LUSOL_IP_INFORM] = *INFORM; +} +#endif + + +/* ------------------------------------------------------------------ + Include routines for row-based L0. + 20 Apr 2005 Current version - KE. + ------------------------------------------------------------------ */ +#include "lusol6l0.c" + + +/* ------------------------------------------------------------------ + lu6L solves L v = v(input). + ------------------------------------------------------------------ + 15 Dec 2002: First version derived from lu6sol. + 15 Dec 2002: Current version. + ------------------------------------------------------------------ */ +void LU6L(LUSOLrec *LUSOL, int *INFORM, LPSREAL V[], int NZidx[]) +{ + int JPIV, K, L, L1, LEN, LENL, LENL0, NUML, NUML0; + LPSREAL SMALL; + register LPSREAL VPIV; +#ifdef LUSOLFastSolve + LPSREAL *aptr; + int *iptr, *jptr; +#else + int I, J; +#endif + + NUML0 = LUSOL->luparm[LUSOL_IP_COLCOUNT_L0]; + LENL0 = LUSOL->luparm[LUSOL_IP_NONZEROS_L0]; + LENL = LUSOL->luparm[LUSOL_IP_NONZEROS_L]; + SMALL = LUSOL->parmlu[LUSOL_RP_ZEROTOLERANCE]; + *INFORM = LUSOL_INFORM_LUSUCCESS; + L1 = LUSOL->lena+1; + for(K = 1; K <= NUML0; K++) { + LEN = LUSOL->lenc[K]; + L = L1; + L1 -= LEN; + JPIV = LUSOL->indr[L1]; + VPIV = V[JPIV]; + if(fabs(VPIV)>SMALL) { +/* ***** This loop could be coded specially. */ +#ifdef LUSOLFastSolve + L--; + for(aptr = LUSOL->a+L, iptr = LUSOL->indc+L; + LEN > 0; LEN--, aptr--, iptr--) + V[*iptr] += (*aptr) * VPIV; +#else + for(; LEN > 0; LEN--) { + L--; + I = LUSOL->indc[L]; + V[I] += LUSOL->a[L]*VPIV; + } +#endif + } +#ifdef SetSmallToZero + else + V[JPIV] = 0; +#endif + } + L = (LUSOL->lena-LENL0)+1; + NUML = LENL-LENL0; +/* ***** This loop could be coded specially. */ +#ifdef LUSOLFastSolve + L--; + for(aptr = LUSOL->a+L, jptr = LUSOL->indr+L, iptr = LUSOL->indc+L; + NUML > 0; NUML--, aptr--, jptr--, iptr--) { + if(fabs(V[*jptr])>SMALL) + V[*iptr] += (*aptr) * V[*jptr]; +#ifdef SetSmallToZero + else + V[*jptr] = 0; +#endif + } +#else + for(; NUML > 0; NUML--) { + L--; + J = LUSOL->indr[L]; + if(fabs(V[J])>SMALL) { + I = LUSOL->indc[L]; + V[I] += LUSOL->a[L]*V[J]; + } +#ifdef SetSmallToZero + else + V[J] = 0; +#endif + } +#endif +/* Exit. */ + LUSOL->luparm[LUSOL_IP_INFORM] = *INFORM; +} + +/* ================================================================== + lu6LD assumes lu1fac has computed factors A = LU of a + symmetric definite or quasi-definite matrix A, + using Threshold Symmetric Pivoting (TSP), luparm(6) = 3, + or Threshold Diagonal Pivoting (TDP), luparm(6) = 4. + It also assumes that no updates have been performed. + In such cases, U = D L', where D = diag(U). + lu6LDL returns v as follows: + + mode + 1 v solves L D v = v(input). + 2 v solves L|D|v = v(input). + ------------------------------------------------------------------ + 15 Dec 2002: First version of lu6LD. + 15 Dec 2002: Current version. + ================================================================== */ +void LU6LD(LUSOLrec *LUSOL, int *INFORM, int MODE, LPSREAL V[], int NZidx[]) +{ + int IPIV, K, L, L1, LEN, NUML0; + LPSREAL DIAG, SMALL; + register LPSREAL VPIV; +#ifdef LUSOLFastSolve + LPSREAL *aptr; + int *jptr; +#else + int J; +#endif + +/* Solve L D v(new) = v or L|D|v(new) = v, depending on mode. + The code for L is the same as in lu6L, + but when a nonzero entry of v arises, we divide by + the corresponding entry of D or |D|. */ + NUML0 = LUSOL->luparm[LUSOL_IP_COLCOUNT_L0]; + SMALL = LUSOL->parmlu[LUSOL_RP_ZEROTOLERANCE]; + *INFORM = LUSOL_INFORM_LUSUCCESS; + L1 = LUSOL->lena+1; + for(K = 1; K <= NUML0; K++) { + LEN = LUSOL->lenc[K]; + L = L1; + L1 -= LEN; + IPIV = LUSOL->indr[L1]; + VPIV = V[IPIV]; + if(fabs(VPIV)>SMALL) { +/* ***** This loop could be coded specially. */ +#ifdef LUSOLFastSolve + L--; + for(aptr = LUSOL->a+L, jptr = LUSOL->indc+L; + LEN > 0; LEN--, aptr--, jptr--) + V[*jptr] += (*aptr)*VPIV; +#else + for(; LEN > 0; LEN--) { + L--; + J = LUSOL->indc[L]; + V[J] += LUSOL->a[L]*VPIV; + } +#endif +/* Find diag = U(ipiv,ipiv) and divide by diag or |diag|. */ + L = LUSOL->locr[IPIV]; + DIAG = LUSOL->a[L]; + if(MODE==2) + DIAG = fabs(DIAG); + V[IPIV] = VPIV/DIAG; + } +#ifdef SetSmallToZero + else + V[IPIV] = 0; +#endif + } +} + + +/* ================================================================== + lu6Lt solves L'v = v(input). + ------------------------------------------------------------------ + 15 Dec 2002: First version derived from lu6sol. + 15 Dec 2002: Current version. + ================================================================== */ +void LU6LT(LUSOLrec *LUSOL, int *INFORM, LPSREAL V[], int NZidx[]) +{ +#ifdef DoTraceL0 + LPSREAL TEMP; +#endif + int K, L, L1, L2, LEN, LENL, LENL0, NUML0; + LPSREAL SMALL; + register REALXP SUM; + register LPSREAL HOLD; +#if (defined LUSOLFastSolve) && !(defined DoTraceL0) + LPSREAL *aptr; + int *iptr, *jptr; +#else + int I, J; +#endif + + NUML0 = LUSOL->luparm[LUSOL_IP_COLCOUNT_L0]; + LENL0 = LUSOL->luparm[LUSOL_IP_NONZEROS_L0]; + LENL = LUSOL->luparm[LUSOL_IP_NONZEROS_L]; + SMALL = LUSOL->parmlu[LUSOL_RP_ZEROTOLERANCE]; + *INFORM = LUSOL_INFORM_LUSUCCESS; + L1 = (LUSOL->lena-LENL)+1; + L2 = LUSOL->lena-LENL0; + +/* ***** This loop could be coded specially. */ +#if (defined LUSOLFastSolve) && !(defined DoTraceL0) + for(L = L1, aptr = LUSOL->a+L1, iptr = LUSOL->indr+L1, jptr = LUSOL->indc+L1; + L <= L2; L++, aptr++, iptr++, jptr++) { + HOLD = V[*jptr]; + if(fabs(HOLD)>SMALL) + V[*iptr] += (*aptr)*HOLD; +#ifdef SetSmallToZero + else + V[*jptr] = 0; +#endif + } +#else + for(L = L1; L <= L2; L++) { + J = LUSOL->indc[L]; + HOLD = V[J]; + if(fabs(HOLD)>SMALL) { + I = LUSOL->indr[L]; + V[I] += LUSOL->a[L]*HOLD; + } +#ifdef SetSmallToZero + else + V[J] = 0; +#endif + } +#endif + + /* Do row-based L0 version, if available */ + if((LUSOL->L0 != NULL) || + ((LUSOL->luparm[LUSOL_IP_BTRANCOUNT] == 0) && LU1L0(LUSOL, &(LUSOL->L0), INFORM))) { + LU6L0T_v(LUSOL, LUSOL->L0, V, NZidx, INFORM); + } + + /* Alternatively, do the standard column-based L0 version */ + else { + /* Perform loop over columns */ + for(K = NUML0; K >= 1; K--) { + SUM = ZERO; + LEN = LUSOL->lenc[K]; + L1 = L2+1; + L2 += LEN; +/* ***** This loop could be coded specially. */ +#if (defined LUSOLFastSolve) && !(defined DoTraceL0) + for(L = L1, aptr = LUSOL->a+L1, jptr = LUSOL->indc+L1; + L <= L2; L++, aptr++, jptr++) + SUM += (*aptr) * V[*jptr]; +#else + for(L = L1; L <= L2; L++) { + J = LUSOL->indc[L]; +#ifndef DoTraceL0 + SUM += LUSOL->a[L]*V[J]; +#else + TEMP = V[LUSOL->indr[L1]] + SUM; + SUM += LUSOL->a[L]*V[J]; + printf("V[%3d] = V[%3d] + L[%d,%d]*V[%3d]\n", LUSOL->indr[L1], LUSOL->indr[L1], J,LUSOL->indr[L1], J); + printf("%6g = %6g + %6g*%6g\n", V[LUSOL->indr[L1]] + SUM, TEMP, LUSOL->a[L], V[J]); +#endif + } +#endif + V[LUSOL->indr[L1]] += (LPSREAL) SUM; + } + } + +/* Exit. */ + LUSOL->luparm[LUSOL_IP_INFORM] = *INFORM; +} + +void print_L0(LUSOLrec *LUSOL) +{ + int I, J, K, L, L1, L2, LEN, LENL0, NUML0; + LPSREAL *denseL0 = (LPSREAL*) calloc(LUSOL->m+1, (LUSOL->n+1)*sizeof(*denseL0)); + + NUML0 = LUSOL->luparm[LUSOL_IP_COLCOUNT_L0]; + LENL0 = LUSOL->luparm[LUSOL_IP_NONZEROS_L0]; + + L2 = LUSOL->lena-LENL0; + for(K = NUML0; K >= 1; K--) { + LEN = LUSOL->lenc[K]; + L1 = L2+1; + L2 += LEN; + for(L = L1; L <= L2; L++) { + I = LUSOL->indc[L]; + I = LUSOL->ipinv[I]; /* Undo row mapping */ + J = LUSOL->indr[L]; + denseL0[(LUSOL->n+1)*(J-1) + I] = LUSOL->a[L]; + } + } + + for(I = 1; I <= LUSOL->n; I++) { + for(J = 1; J <= LUSOL->m; J++) + fprintf(stdout, "%10g", denseL0[(LUSOL->n+1)*(J-1) + I]); + fprintf(stdout, "\n"); + } + LUSOL_FREE(denseL0); +} + + +/* ------------------------------------------------------------------ + Include routines for column-based U. + 5 Feb 2006 Current version - KE. + ------------------------------------------------------------------ */ +#include "lusol6u.c" + + +/* ================================================================== + lu6U solves U w = v. v is not altered. + ------------------------------------------------------------------ + 15 Dec 2002: First version derived from lu6sol. + 15 Dec 2002: Current version. + ================================================================== */ +void LU6U(LUSOLrec *LUSOL, int *INFORM, LPSREAL V[], LPSREAL W[], int NZidx[]) +{ + /* Do column-based U version, if available */ + if((LUSOL->U != NULL) || + ((LUSOL->luparm[LUSOL_IP_FTRANCOUNT] == 0) && LU1U0(LUSOL, &(LUSOL->U), INFORM))) { + LU6U0_v(LUSOL, LUSOL->U, V, W, NZidx, INFORM); + } + /* Alternatively, do the standard column-based L0 version */ + else { + int I, J, K, KLAST, L, L1, L2, L3, NRANK, NRANK1; + LPSREAL SMALL; + register REALXP T; +#ifdef LUSOLFastSolve + LPSREAL *aptr; + int *jptr; +#endif + NRANK = LUSOL->luparm[LUSOL_IP_RANK_U]; + SMALL = LUSOL->parmlu[LUSOL_RP_ZEROTOLERANCE]; + *INFORM = LUSOL_INFORM_LUSUCCESS; + NRANK1 = NRANK+1; +/* Find the first nonzero in v(1:nrank), counting backwards. */ + for(KLAST = NRANK; KLAST >= 1; KLAST--) { + I = LUSOL->ip[KLAST]; + if(fabs(V[I])>SMALL) + break; + } + L = LUSOL->n; +#ifdef LUSOLFastSolve + for(K = KLAST+1, jptr = LUSOL->iq+K; K <= L; K++, jptr++) + W[*jptr] = ZERO; +#else + for(K = KLAST+1; K <= L; K++) { + J = LUSOL->iq[K]; + W[J] = ZERO; + } +#endif +/* Do the back-substitution, using rows 1:klast of U. */ + for(K = KLAST; K >= 1; K--) { + I = LUSOL->ip[K]; + T = V[I]; + L1 = LUSOL->locr[I]; + L2 = L1+1; + L3 = (L1+LUSOL->lenr[I])-1; +/* ***** This loop could be coded specially. */ +#ifdef LUSOLFastSolve + for(L = L2, aptr = LUSOL->a+L2, jptr = LUSOL->indr+L2; + L <= L3; L++, aptr++, jptr++) + T -= (*aptr) * W[*jptr]; +#else + for(L = L2; L <= L3; L++) { + J = LUSOL->indr[L]; + T -= LUSOL->a[L]*W[J]; + } +#endif + J = LUSOL->iq[K]; + if(fabs((LPSREAL) T)<=SMALL) + T = ZERO; + else + T /= LUSOL->a[L1]; + W[J] = (LPSREAL) T; + } +/* Compute residual for overdetermined systems. */ + T = ZERO; + for(K = NRANK1; K <= LUSOL->m; K++) { + I = LUSOL->ip[K]; + T += fabs(V[I]); + } +/* Exit. */ + if(T>ZERO) + *INFORM = LUSOL_INFORM_LUSINGULAR; + LUSOL->luparm[LUSOL_IP_INFORM] = *INFORM; + LUSOL->parmlu[LUSOL_RP_RESIDUAL_U] = (LPSREAL) T; + } +} + +/* ================================================================== + lu6Ut solves U'v = w. w is destroyed. + ------------------------------------------------------------------ + 15 Dec 2002: First version derived from lu6sol. + 15 Dec 2002: Current version. + ================================================================== */ +void LU6UT(LUSOLrec *LUSOL, int *INFORM, LPSREAL V[], LPSREAL W[], int NZidx[]) +{ + int I, J, K, L, L1, L2, NRANK, NRANK1, + *ip = LUSOL->ip + 1, *iq = LUSOL->iq + 1; + LPSREAL SMALL; + register LPSREAL T; +#ifdef LUSOLFastSolve + LPSREAL *aptr; + int *jptr; +#endif + + NRANK = LUSOL->luparm[LUSOL_IP_RANK_U]; + SMALL = LUSOL->parmlu[LUSOL_RP_ZEROTOLERANCE]; + *INFORM = LUSOL_INFORM_LUSUCCESS; + NRANK1 = NRANK+1; + L = LUSOL->m; +#ifdef LUSOLFastSolve + for(K = NRANK1, jptr = LUSOL->ip+K; K <= L; K++, jptr++) + V[*jptr] = ZERO; +#else + for(K = NRANK1; K <= L; K++) { + I = LUSOL->ip[K]; + V[I] = ZERO; + } +#endif +/* Do the forward-substitution, skipping columns of U(transpose) + when the associated element of w(*) is negligible. */ +#if 0 + for(K = 1; K <= NRANK; K++) { + I = LUSOL->ip[K]; + J = LUSOL->iq[K]; +#else + for(K = 1; K <= NRANK; K++, ip++, iq++) { + I = *ip; + J = *iq; +#endif + T = W[J]; + if(fabs(T)<=SMALL) { + V[I] = ZERO; + continue; + } + L1 = LUSOL->locr[I]; + T /= LUSOL->a[L1]; + V[I] = T; + L2 = (L1+LUSOL->lenr[I])-1; + L1++; +/* ***** This loop could be coded specially. */ +#ifdef LUSOLFastSolve + for(L = L1, aptr = LUSOL->a+L1, jptr = LUSOL->indr+L1; + L <= L2; L++, aptr++, jptr++) + W[*jptr] -= T * (*aptr); +#else + for(L = L1; L <= L2; L++) { + J = LUSOL->indr[L]; + W[J] -= T*LUSOL->a[L]; + } +#endif + } +/* Compute residual for overdetermined systems. */ + T = ZERO; + for(K = NRANK1; K <= LUSOL->n; K++) { + J = LUSOL->iq[K]; + T += fabs(W[J]); + } +/* Exit. */ + if(T>ZERO) + *INFORM = LUSOL_INFORM_LUSINGULAR; + LUSOL->luparm[LUSOL_IP_INFORM] = *INFORM; + LUSOL->parmlu[LUSOL_RP_RESIDUAL_U] = T; +} + +/* ================================================================== + lu6sol uses the factorization A = L U as follows: + ------------------------------------------------------------------ + mode + 1 v solves L v = v(input). w is not touched. + 2 v solves L'v = v(input). w is not touched. + 3 w solves U w = v. v is not altered. + 4 v solves U'v = w. w is destroyed. + 5 w solves A w = v. v is altered as in 1. + 6 v solves A'v = w. w is destroyed. + + If mode = 3,4,5,6, v and w must not be the same arrays. + If lu1fac has just been used to factorize a symmetric matrix A + (which must be definite or quasi-definite), the factors A = L U + may be regarded as A = LDL', where D = diag(U). In such cases, + + mode + 7 v solves A v = L D L'v = v(input). w is not touched. + 8 v solves L |D| L'v = v(input). w is not touched. + + ip(*), iq(*) hold row and column numbers in pivotal order. + lenc(k) is the length of the k-th column of initial L. + lenr(i) is the length of the i-th row of U. + locc(*) is not used. + locr(i) is the start of the i-th row of U. + + U is assumed to be in upper-trapezoidal form (nrank by n). + The first entry for each row is the diagonal element + (according to the permutations ip, iq). It is stored at + location locr(i) in a(*), indr(*). + + On exit, inform = 0 except as follows. + if(mode = 3,4,5,6 and if U (and hence A) is singular,) + inform = 1 if there is a nonzero residual in solving the system + involving U. parmlu(20) returns the norm of the residual. + ------------------------------------------------------------------ + July 1987: Early version. + 09 May 1988: f77 version. + 27 Apr 2000: Abolished the dreaded "computed go to". + But hard to change other "go to"s to "if then else". + 15 Dec 2002: lu6L, lu6Lt, lu6U, lu6Ut added to modularize lu6sol. + ================================================================== */ +void LU6SOL(LUSOLrec *LUSOL, int MODE, LPSREAL V[], LPSREAL W[], int NZidx[], int *INFORM) +{ + if(MODE==LUSOL_SOLVE_Lv_v) { /* Solve L v(new) = v. */ + LU6L(LUSOL, INFORM,V, NZidx); + } + else if(MODE==LUSOL_SOLVE_Ltv_v) { /* Solve L'v(new) = v. */ + LU6LT(LUSOL, INFORM,V, NZidx); + } + else if(MODE==LUSOL_SOLVE_Uw_v) { /* Solve U w = v. */ + LU6U(LUSOL, INFORM,V,W, NZidx); + } + else if(MODE==LUSOL_SOLVE_Utv_w) { /* Solve U'v = w. */ + LU6UT(LUSOL, INFORM,V,W, NZidx); + } + else if(MODE==LUSOL_SOLVE_Aw_v) { /* Solve A w = v (i.e. FTRAN) */ + LU6L(LUSOL, INFORM,V, NZidx); /* via L v(new) = v */ + LU6U(LUSOL, INFORM,V,W, NULL); /* ... and U w = v(new). */ + } + else if(MODE==LUSOL_SOLVE_Atv_w) { /* Solve A'v = w (i.e. BTRAN) */ + LU6UT(LUSOL, INFORM,V,W, NZidx); /* via U'v = w */ + LU6LT(LUSOL, INFORM,V, NULL); /* ... and L'v(new) = v. */ + } + else if(MODE==LUSOL_SOLVE_Av_v) { /* Solve LDv(bar) = v */ + LU6LD(LUSOL, INFORM,1,V, NZidx); /* and L'v(new) = v(bar). */ + LU6LT(LUSOL, INFORM,V, NULL); + } + else if(MODE==LUSOL_SOLVE_LDLtv_v) { /* Solve L|D|v(bar) = v */ + LU6LD(LUSOL, INFORM,2,V, NZidx); /* and L'v(new) = v(bar). */ + LU6LT(LUSOL, INFORM,V, NULL); + } +} + diff --git a/src/external/lpsolve/build/lp_solve/lusol6l0.c b/src/external/lpsolve/build/lp_solve/lusol6l0.c new file mode 100644 index 00000000..c7555e27 --- /dev/null +++ b/src/external/lpsolve/build/lp_solve/lusol6l0.c @@ -0,0 +1,171 @@ +// Copyright(c) 2016-2018 Kjell Konis . +// Version: 5.5.2.0-17 +// Description: The lpSolveAPI package provides an R interface to 'lp_solve', +// a Mixed Integer Linear Programming (MILP) solver with support for pure +// linear, (mixed) integer/binary, semi-continuous and special ordered sets +// (SOS) models. +// License: LGPL-2 +// Repository: CRAN + +/* Create a row-based version of L0. + This makes it possible to solve L0'x=h (btran) faster for sparse h, + since we only run down the columns of L0' (rows of LO) for which + the corresponding entry in h is non-zero. */ +MYBOOL LU1L0(LUSOLrec *LUSOL, LUSOLmat **mat, int *inform) +{ + MYBOOL status = FALSE; + int K, L, LL, L1, L2, LENL0, NUML0, I; + int *lsumr; + + /* Assume success */ + *inform = LUSOL_INFORM_LUSUCCESS; + + /* Check if there is anything worth doing */ + if(mat == NULL) + return( status ); + if(*mat != NULL) + LUSOL_matfree(mat); + NUML0 = LUSOL->luparm[LUSOL_IP_COLCOUNT_L0]; + LENL0 = LUSOL->luparm[LUSOL_IP_NONZEROS_L0]; + if((NUML0 == 0) || (LENL0 == 0) || + (LUSOL->luparm[LUSOL_IP_ACCELERATION] == LUSOL_BASEORDER) || + ((LUSOL->luparm[LUSOL_IP_ACCELERATION] & LUSOL_ACCELERATE_L0) == 0)) + return( status ); + + /* Allocate temporary array */ + lsumr = (int *) LUSOL_CALLOC((LUSOL->m+1), sizeof(*lsumr)); + if(lsumr == NULL) { + *inform = LUSOL_INFORM_NOMEMLEFT; + return( status ); + } + + /* Compute non-zero counts by permuted row index (order is unimportant) */ + K = 0; + L2 = LUSOL->lena; + L1 = L2-LENL0+1; + for(L = L1; L <= L2; L++) { + I = LUSOL->indc[L]; + lsumr[I]++; + if(lsumr[I] == 1) + K++; + } + LUSOL->luparm[LUSOL_IP_ROWCOUNT_L0] = K; + + /* Check if we should apply "smarts" before proceeding to the row matrix creation */ + if((LUSOL->luparm[LUSOL_IP_ACCELERATION] & LUSOL_AUTOORDER) && + ((LPSREAL) LUSOL->luparm[LUSOL_IP_ROWCOUNT_L0] / +#if 0 + LUSOL->luparm[LUSOL_IP_COLCOUNT_L0] +#else + LUSOL->m +#endif + > LUSOL->parmlu[LUSOL_RP_SMARTRATIO])) + goto Finish; + + /* We are Ok to create the new matrix object */ + *mat = LUSOL_matcreate(LUSOL->m, LENL0); + if(*mat == NULL) { + *inform = LUSOL_INFORM_NOMEMLEFT; + goto Finish; + } + + /* Cumulate row counts to get vector offsets; first row is leftmost + (stick with Fortran array offset for consistency) */ + (*mat)->lenx[0] = 1; + for(K = 1; K <= LUSOL->m; K++) { + (*mat)->lenx[K] = (*mat)->lenx[K-1] + lsumr[K]; + lsumr[K] = (*mat)->lenx[K-1]; + } + + /* Map the matrix into row order by permuted index; + Note: The first permuted row is located leftmost in the array. + The column order is irrelevant, since the indeces will + refer to constant / resolved values of V[] during solve. */ + L2 = LUSOL->lena; + L1 = L2-LENL0+1; + for(L = L1; L <= L2; L++) { + I = LUSOL->indc[L]; + LL = lsumr[I]++; + (*mat)->a[LL] = LUSOL->a[L]; + (*mat)->indr[LL] = LUSOL->indr[L]; + (*mat)->indc[LL] = I; + } + + /* Pack row starting positions, and set mapper from original index to packed */ + I = 0; + for(L = 1; L <= LUSOL->m; L++) { + K = LUSOL->ip[L]; + if((*mat)->lenx[K] > (*mat)->lenx[K-1]) { + I++; + (*mat)->indx[I] = K; + } + } + + /* Confirm that everything went well */ + status = TRUE; + + /* Clean up */ +Finish: + FREE(lsumr); + return( status ); +} + +/* Solve L0' v = v based on row-based version of L0, constructed by LU1L0 */ +void LU6L0T_v(LUSOLrec *LUSOL, LUSOLmat *mat, LPSREAL V[], int NZidx[], int *INFORM) +{ +#ifdef DoTraceL0 + LPSREAL TEMP; +#endif + int LEN, K, KK, L, L1, NUML0; + LPSREAL SMALL; + register LPSREAL VPIV; +#if (defined LUSOLFastSolve) && !(defined DoTraceL0) + LPSREAL *aptr; + int *jptr; +#else + int J; +#endif + + NUML0 = LUSOL->luparm[LUSOL_IP_ROWCOUNT_L0]; + SMALL = LUSOL->parmlu[LUSOL_RP_ZEROTOLERANCE]; + + /* Loop over the nz columns of L0' - from the end, going forward. */ + for(K = NUML0; K > 0; K--) { + KK = mat->indx[K]; + L = mat->lenx[KK]; + L1 = mat->lenx[KK-1]; + LEN = L - L1; + if(LEN == 0) + continue; + /* Get value of the corresponding active entry of V[] */ + VPIV = V[KK]; + /* Only process the column of L0' if the value of V[] is non-zero */ + if(fabs(VPIV)>SMALL) { +/* ***** This loop could be coded specially. */ +#if (defined LUSOLFastSolve) && !(defined DoTraceL0) + L--; + for(aptr = mat->a+L, jptr = mat->indr+L; + LEN > 0; LEN--, aptr--, jptr--) + V[*jptr] += VPIV * (*aptr); +#else + for(; LEN > 0; LEN--) { + L--; + J = mat->indr[L]; +#ifndef DoTraceL0 + V[J] += VPIV * mat->a[L]; +#else + TEMP = V[J]; + V[J] += VPIV * mat->a[L]; + printf("V[%3d] = V[%3d] + L[%d,%d]*V[%3d]\n", J, J, KK,J, KK); + printf("%6g = %6g + %6g*%6g\n", V[J], TEMP, mat->a[L], VPIV); +#endif + } +#endif + } +#ifdef SetSmallToZero + else + V[KK] = 0; +#endif + } + +} diff --git a/src/external/lpsolve/build/lp_solve/lusol6u.c b/src/external/lpsolve/build/lp_solve/lusol6u.c new file mode 100644 index 00000000..5e1e3bf4 --- /dev/null +++ b/src/external/lpsolve/build/lp_solve/lusol6u.c @@ -0,0 +1,184 @@ +// Copyright(c) 2016-2018 Kjell Konis . +// Version: 5.5.2.0-17 +// Description: The lpSolveAPI package provides an R interface to 'lp_solve', +// a Mixed Integer Linear Programming (MILP) solver with support for pure +// linear, (mixed) integer/binary, semi-continuous and special ordered sets +// (SOS) models. +// License: LGPL-2 +// Repository: CRAN + +/* Create a column-based version of U. + This makes it possible to solve Ux=h (ftran) faster for sparse h, + since we only run down the rows of U (columns of U') for which + the corresponding entry in h is non-zero. */ +MYBOOL LU1U0(LUSOLrec *LUSOL, LUSOLmat **mat, int *inform) +{ + MYBOOL status = FALSE; + int K, L, LL, LENU, NUMU, J; + int *lsumc; + + /* Assume success */ + *inform = LUSOL_INFORM_LUSUCCESS; + + /* Check if there is anything worth doing */ + if(mat == NULL) + return( status ); + if(*mat != NULL) + LUSOL_matfree(mat); + NUMU = LUSOL->luparm[LUSOL_IP_RANK_U]; + LENU = LUSOL->luparm[LUSOL_IP_NONZEROS_U]; + if((NUMU == 0) || (LENU == 0) || + (LUSOL->luparm[LUSOL_IP_ACCELERATION] == LUSOL_BASEORDER) || + ((LUSOL->luparm[LUSOL_IP_ACCELERATION] & LUSOL_ACCELERATE_U) == 0)) + return( status ); + + /* Allocate temporary array */ + lsumc = (int *) LUSOL_CALLOC((LUSOL->n+1), sizeof(*lsumc)); + if(lsumc == NULL) { + *inform = LUSOL_INFORM_NOMEMLEFT; + return( status ); + } + + /* Compute non-zero counts by permuted column index (order is unimportant) */ + for(L = 1; L <= LENU; L++) { + J = LUSOL->indr[L]; + lsumc[J]++; + } + + /* Check if we should apply "smarts" before proceeding to the column matrix creation */ + if((LUSOL->luparm[LUSOL_IP_ACCELERATION] & LUSOL_AUTOORDER) && + ((LPSREAL) sqrt((LPSREAL) NUMU/LENU) > LUSOL->parmlu[LUSOL_RP_SMARTRATIO])) + goto Finish; + + /* We are Ok to create the new matrix object */ + *mat = LUSOL_matcreate(LUSOL->n, LENU); + if(*mat == NULL) { + *inform = LUSOL_INFORM_NOMEMLEFT; + goto Finish; + } + + /* Cumulate row counts to get vector offsets; first column is leftmost + (stick with Fortran array offset for consistency) */ + (*mat)->lenx[0] = 1; + for(K = 1; K <= LUSOL->n; K++) { + (*mat)->lenx[K] = (*mat)->lenx[K-1] + lsumc[K]; + lsumc[K] = (*mat)->lenx[K-1]; + } + + /* Map the matrix into column order by permuted index; + Note: The first permuted column is located leftmost in the array. + The row order is irrelevant, since the indeces will + refer to constant / resolved values of V[] during solve. */ + for(L = 1; L <= LENU; L++) { + J = LUSOL->indr[L]; + LL = lsumc[J]++; + (*mat)->a[LL] = LUSOL->a[L]; + (*mat)->indr[LL] = J; + (*mat)->indc[LL] = LUSOL->indc[L]; + } + + /* Pack column starting positions, and set mapper from original index to packed */ + J = 0; + for(L = 1; L <= LUSOL->n; L++) { + K = LUSOL->iq[L]; +#if 1 /* Deactivate to produce a full-rank version (implicit unit diagonals) */ + if((*mat)->lenx[K] > (*mat)->lenx[K-1]) +#endif + { + J++; + (*mat)->indx[J] = K; + } + } + + /* Confirm that everything went well */ + status = TRUE; + + /* Clean up */ +Finish: + FREE(lsumc); + return( status ); +} + +/* Solve U w = v based on column-based version of U, constructed by LU1U0 */ +void LU6U0_v(LUSOLrec *LUSOL, LUSOLmat *mat, LPSREAL V[], LPSREAL W[], int NZidx[], int *INFORM) +{ +#ifdef DoTraceU0 + LPSREAL TEMP; +#endif + int LEN, I, K, L, L1, NRANK, NRANK1, KLAST; + LPSREAL SMALL; + register LPSREAL T; +#if (defined xxLUSOLFastSolve) && !(defined DoTraceU0) + LPSREAL *aptr; + int *jptr; +#else + int J; +#endif + + NRANK = LUSOL->luparm[LUSOL_IP_RANK_U]; + SMALL = LUSOL->parmlu[LUSOL_RP_ZEROTOLERANCE]; + *INFORM = LUSOL_INFORM_LUSUCCESS; + NRANK1 = NRANK+1; +/* Find the first nonzero in v(1:nrank), counting backwards. */ + for(KLAST = NRANK; KLAST >= 1; KLAST--) { + I = LUSOL->ip[KLAST]; + if(fabs(V[I])>SMALL) + break; + } + L = LUSOL->n; +#ifdef xxLUSOLFastSolve + for(K = KLAST+1, jptr = LUSOL->iq+K; K <= L; K++, jptr++) + W[*jptr] = ZERO; +#else + for(K = KLAST+1; K <= L; K++) { + J = LUSOL->iq[K]; + W[J] = ZERO; + } +#endif + /* Loop over the nz columns of U - from the right, going left. */ + for(K = NRANK; K > 0; K--) { + I = mat->indx[K]; + L = mat->lenx[I]; + L1 = mat->lenx[I-1]; + LEN = L - L1; + T = V[I]; + if(fabs(T)<=SMALL) { + W[K] = ZERO; + continue; + } + T /= mat->a[L1]; /* Should it be L or L1 ? */ + W[K] = T; + LEN--; +/* ***** This loop could be coded specially. */ +#ifdef xxLUSOLFastSolve + L--; + for(aptr = mat->a+L, jptr = mat->indc+L; + LEN > 0; LEN--, aptr--, jptr--) + V[*jptr] -= T * (*aptr); +#else + for(; LEN > 0; LEN--) { + L--; + J = mat->indc[L]; +#ifndef DoTraceL0 + V[J] -= T * mat->a[L]; +#else + TEMP = V[J]; + V[J] += T * mat->a[L]; + printf("V[%3d] = V[%3d] + L[%d,%d]*V[%3d]\n", J, J, I,J, I); + printf("%6g = %6g + %6g*%6g\n", V[J], TEMP, mat->a[L], T); +#endif + } +#endif + } +/* Compute residual for overdetermined systems. */ + T = ZERO; + for(K = NRANK1; K <= LUSOL->m; K++) { + I = LUSOL->ip[K]; + T += fabs(V[I]); + } +/* Exit. */ + if(T>ZERO) + *INFORM = LUSOL_INFORM_LUSINGULAR; + LUSOL->luparm[LUSOL_IP_INFORM] = *INFORM; + LUSOL->parmlu[LUSOL_RP_RESIDUAL_U] = (LPSREAL) T; +} diff --git a/src/external/lpsolve/build/lp_solve/lusol7a.c b/src/external/lpsolve/build/lp_solve/lusol7a.c new file mode 100644 index 00000000..128362f8 --- /dev/null +++ b/src/external/lpsolve/build/lp_solve/lusol7a.c @@ -0,0 +1,704 @@ + +/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + File lusol7a + lu7add lu7cyc lu7elm lu7for lu7rnk lu7zap + Utilities for LUSOL's update routines. + lu7for is the most important -- the forward sweep. + 01 May 2002: Derived from LUSOL's original lu7a.f file. + 01 May 2002: Current version of lusol7a.f. + ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ + +/* ================================================================== + lu7add inserts the first nrank elements of the vector v(*) + as column jadd of U. We assume that U does not yet have any + entries in this column. + Elements no larger than parmlu(3) are treated as zero. + klast will be set so that the last row to be affected + (in pivotal order) is row ip(klast). + ------------------------------------------------------------------ + 09 May 1988: First f77 version. + ================================================================== */ +void LU7ADD(LUSOLrec *LUSOL, int JADD, LPSREAL V[], int LENL, int *LENU, + int *LROW, int NRANK, int *INFORM, int *KLAST, LPSREAL *VNORM) +{ + LPSREAL SMALL; + int K, I, LENI, MINFRE, NFREE, LR1, LR2, L; +#ifndef LUSOLFastMove + int J; +#endif + + SMALL = LUSOL->parmlu[LUSOL_RP_ZEROTOLERANCE]; + *VNORM = ZERO; + *KLAST = 0; + for(K = 1; K <= NRANK; K++) { + I = LUSOL->ip[K]; + if(fabs(V[I])<=SMALL) + continue; + *KLAST = K; + (*VNORM) += fabs(V[I]); + LENI = LUSOL->lenr[I]; +/* Compress row file if necessary. */ + MINFRE = LENI+1; + NFREE = LUSOL->lena - LENL - *LROW; + if(NFREEm, TRUE,LROW,LUSOL->indr,LUSOL->lenr,LUSOL->locr); + NFREE = LUSOL->lena - LENL - *LROW; + if(NFREElocr[I] = (*LROW) + 1; + LR1 = LUSOL->locr[I]; + LR2 = (LR1+LENI)-1; + if(LR2==*LROW) + goto x150; + if(LUSOL->indr[LR2+1]==0) + goto x180; + LUSOL->locr[I] = (*LROW) + 1; +#ifdef LUSOLFastMove + L = LR2-LR1+1; + if(L > 0) { + LR2 = (*LROW)+1; + MEMMOVE(LUSOL->a+LR2, LUSOL->a+LR1, L); + MEMMOVE(LUSOL->indr+LR2, LUSOL->indr+LR1, L); + MEMCLEAR(LUSOL->indr+LR1, L); + *LROW += L; + } +#else + for(L = LR1; L <= LR2; L++) { + (*LROW)++; + LUSOL->a[*LROW] = LUSOL->a[L]; + J = LUSOL->indr[L]; + LUSOL->indr[L] = 0; + LUSOL->indr[*LROW] = J; + } +#endif +x150: + LR2 = *LROW; + (*LROW)++; +/* Add the element of v. */ +x180: + LR2++; + LUSOL->a[LR2] = V[I]; + LUSOL->indr[LR2] = JADD; + LUSOL->lenr[I] = LENI+1; + (*LENU)++; + } +/* Normal exit. */ + *INFORM = LUSOL_INFORM_LUSUCCESS; + goto x990; +/* Not enough storage. */ +x970: + *INFORM = LUSOL_INFORM_ANEEDMEM; +x990: +; +} + +/* ================================================================== + lu7cyc performs a cyclic permutation on the row or column ordering + stored in ip, moving entry kfirst down to klast. + If kfirst .ge. klast, lu7cyc should not be called. + Sometimes klast = 0 and nothing should happen. + ------------------------------------------------------------------ + 09 May 1988: First f77 version. + ================================================================== */ +void LU7CYC(LUSOLrec *LUSOL, int KFIRST, int KLAST, int IX[]) +{ + if(KFIRST 0, y has just become column jelm of the matrix A. + lu7elm should not be called unless m is greater than nrank. + inform = 0 if y contained no subdiagonal nonzeros to eliminate. + inform = 1 if y contained at least one nontrivial subdiagonal. + inform = 7 if there is insufficient storage. + ------------------------------------------------------------------ + 09 May 1988: First f77 version. + No longer calls lu7for at end. lu8rpc, lu8mod do so. + ================================================================== */ +void LU7ELM(LUSOLrec *LUSOL, int JELM, LPSREAL V[], int *LENL, + int *LROW, int NRANK, int *INFORM, LPSREAL *DIAG) +{ + LPSREAL VI, VMAX, SMALL; + int NRANK1, MINFRE, NFREE, KMAX, L, K, I, LMAX, IMAX, L1, L2; + +#ifdef ForceInitialization + LMAX = 0; +#endif + + SMALL = LUSOL->parmlu[LUSOL_RP_ZEROTOLERANCE]; + NRANK1 = NRANK+1; + *DIAG = ZERO; +/* Compress row file if necessary. */ + MINFRE = LUSOL->m-NRANK; + NFREE = LUSOL->lena-(*LENL)-(*LROW); + if(NFREE>=MINFRE) + goto x100; + LU1REC(LUSOL, LUSOL->m,TRUE,LROW,LUSOL->indr,LUSOL->lenr,LUSOL->locr); + NFREE = LUSOL->lena-(*LENL)-(*LROW); + if(NFREElena-(*LENL))+1; + for(K = NRANK1; K <= LUSOL->m; K++) { + I = LUSOL->ip[K]; + VI = fabs(V[I]); + if(VI<=SMALL) + continue; + L--; + LUSOL->a[L] = V[I]; + LUSOL->indc[L] = I; + if(VMAX>=VI) + continue; + VMAX = VI; + KMAX = K; + LMAX = L; + } + if(KMAX==0) + goto x900; +/* ------------------------------------------------------------------ + Remove vmax by overwriting it with the last packed v(i). + Then set the multipliers in L for the other elements. + ------------------------------------------------------------------ */ + IMAX = LUSOL->ip[KMAX]; + VMAX = LUSOL->a[LMAX]; + LUSOL->a[LMAX] = LUSOL->a[L]; + LUSOL->indc[LMAX] = LUSOL->indc[L]; + L1 = L+1; + L2 = LUSOL->lena-(*LENL); + *LENL = ((*LENL)+L2)-L; + for(L = L1; L <= L2; L++) { + LUSOL->a[L] /= -VMAX; + LUSOL->indr[L] = IMAX; + } +/* Move the row containing vmax to pivotal position nrank + 1. */ + LUSOL->ip[KMAX] = LUSOL->ip[NRANK1]; + LUSOL->ip[NRANK1] = IMAX; + *DIAG = VMAX; +/* ------------------------------------------------------------------ + If jelm is positive, insert vmax into a new row of U. + This is now the only subdiagonal element. + ------------------------------------------------------------------ */ + if(JELM>0) { + (*LROW)++; + LUSOL->locr[IMAX] = *LROW; + LUSOL->lenr[IMAX] = 1; + LUSOL->a[*LROW] = VMAX; + LUSOL->indr[*LROW] = JELM; + } + *INFORM = LUSOL_INFORM_LUSINGULAR; + goto x990; +/* No elements to eliminate. */ +x900: + *INFORM = LUSOL_INFORM_LUSUCCESS; + goto x990; +/* Not enough storage. */ +x970: + *INFORM = LUSOL_INFORM_ANEEDMEM; +x990: +; +} + +/* ================================================================== + lu7for (forward sweep) updates the LU factorization A = L*U + when row iw = ip(klast) of U is eliminated by a forward + sweep of stabilized row operations, leaving ip * U * iq upper + triangular. + The row permutation ip is updated to preserve stability and/or + sparsity. The column permutation iq is not altered. + kfirst is such that row ip(kfirst) is the first row involved + in eliminating row iw. (Hence, kfirst marks the first nonzero + in row iw in pivotal order.) If kfirst is unknown it may be + input as 1. + klast is such that row ip(klast) is the row being eliminated. + klast is not altered. + lu7for should be called only if kfirst .le. klast. + If kfirst = klast, there are no nonzeros to eliminate, but the + diagonal element of row ip(klast) may need to be moved to the + front of the row. + ------------------------------------------------------------------ + On entry, locc(*) must be zero. + + On exit: + inform = 0 if row iw has a nonzero diagonal (could be small). + inform = 1 if row iw has no diagonal. + inform = 7 if there is not enough storage to finish the update. + + On a successful exit (inform le 1), locc(*) will again be zero. + ------------------------------------------------------------------ + Jan 1985: Final f66 version. + 09 May 1988: First f77 version. + ================================================================== */ +void LU7FOR(LUSOLrec *LUSOL, int KFIRST, int KLAST, int *LENL, int *LENU, + int *LROW, int *INFORM, LPSREAL *DIAG) +{ + MYBOOL SWAPPD; + int KBEGIN, IW, LENW, LW1, LW2, JFIRST, MINFRE, NFREE, L, J, KSTART, KSTOP, K, + LFIRST, IV, LENV, LV1, JLAST, LV2, LV3, LV, JV, LW, LDIAG, LIMIT; + LPSREAL AMULT, LTOL, USPACE, SMALL, VJ, WJ; + + LTOL = LUSOL->parmlu[LUSOL_RP_UPDATEMAX_Lij]; + SMALL = LUSOL->parmlu[LUSOL_RP_ZEROTOLERANCE]; + USPACE = LUSOL->parmlu[LUSOL_RP_COMPSPACE_U]; + KBEGIN = KFIRST; + SWAPPD = FALSE; + +/* We come back here from below if a row interchange is performed. */ +x100: + IW = LUSOL->ip[KLAST]; + LENW = LUSOL->lenr[IW]; + if(LENW==0) + goto x910; + LW1 = LUSOL->locr[IW]; + LW2 = (LW1+LENW)-1; + JFIRST = LUSOL->iq[KBEGIN]; + if(KBEGIN>=KLAST) + goto x700; +/* Make sure there is room at the end of the row file + in case row iw is moved there and fills in completely. */ + MINFRE = LUSOL->n+1; + NFREE = LUSOL->lena-(*LENL)-(*LROW); + if(NFREEm,TRUE,LROW,LUSOL->indr,LUSOL->lenr,LUSOL->locr); + LW1 = LUSOL->locr[IW]; + LW2 = (LW1+LENW)-1; + NFREE = LUSOL->lena-(*LENL)-(*LROW); + if(NFREEindr[L]; + LUSOL->locc[J] = L; + } +/* ================================================================== + Main elimination loop. + ================================================================== */ + KSTART = KBEGIN; + KSTOP = MIN(KLAST,LUSOL->n); + for(K = KSTART; K <= KSTOP; K++) { + JFIRST = LUSOL->iq[K]; + LFIRST = LUSOL->locc[JFIRST]; + if(LFIRST==0) + goto x490; +/* Row iw has its first element in column jfirst. */ + WJ = LUSOL->a[LFIRST]; + if(K==KLAST) + goto x490; +/* --------------------------------------------------------------- + We are about to use the first element of row iv + to eliminate the first element of row iw. + However, we may wish to interchange the rows instead, + to preserve stability and/or sparsity. + --------------------------------------------------------------- */ + IV = LUSOL->ip[K]; + LENV = LUSOL->lenr[IV]; + LV1 = LUSOL->locr[IV]; + VJ = ZERO; + if(LENV==0) + goto x150; + if(LUSOL->indr[LV1]!=JFIRST) + goto x150; + VJ = LUSOL->a[LV1]; + if(SWAPPD) + goto x200; + if(LTOL*fabs(WJ)ip[KLAST] = IV; + LUSOL->ip[K] = IW; + KBEGIN = K; + SWAPPD = TRUE; + goto x600; +/* --------------------------------------------------------------- + Delete the eliminated element from row iw + by overwriting it with the last element. + --------------------------------------------------------------- */ +x200: + LUSOL->a[LFIRST] = LUSOL->a[LW2]; + JLAST = LUSOL->indr[LW2]; + LUSOL->indr[LFIRST] = JLAST; + LUSOL->indr[LW2] = 0; + LUSOL->locc[JLAST] = LFIRST; + LUSOL->locc[JFIRST] = 0; + LENW--; + (*LENU)--; + if(*LROW==LW2) + (*LROW)--; + LW2 = LW2-1; +/* --------------------------------------------------------------- + Form the multiplier and store it in the L file. + --------------------------------------------------------------- */ + if(fabs(WJ)<=SMALL) + goto x490; + AMULT = -WJ/VJ; + L = LUSOL->lena-(*LENL); + LUSOL->a[L] = AMULT; + LUSOL->indr[L] = IV; + LUSOL->indc[L] = IW; + (*LENL)++; +/* --------------------------------------------------------------- + Add the appropriate multiple of row iv to row iw. + We use two different inner loops. The first one is for the + case where row iw is not at the end of storage. + --------------------------------------------------------------- */ + if(LENV==1) + goto x490; + LV2 = LV1+1; + LV3 = (LV1+LENV)-1; + if(LW2==*LROW) + goto x400; +/* ............................................................... + This inner loop will be interrupted only if + fill-in occurs enough to bump into the next row. + ............................................................... */ + for(LV = LV2; LV <= LV3; LV++) { + JV = LUSOL->indr[LV]; + LW = LUSOL->locc[JV]; + if(LW>0) { +/* No fill-in. */ + LUSOL->a[LW] += AMULT*LUSOL->a[LV]; + if(fabs(LUSOL->a[LW])<=SMALL) { +/* Delete small computed element. */ + LUSOL->a[LW] = LUSOL->a[LW2]; + J = LUSOL->indr[LW2]; + LUSOL->indr[LW] = J; + LUSOL->indr[LW2] = 0; + LUSOL->locc[J] = LW; + LUSOL->locc[JV] = 0; + (*LENU)--; + LENW--; + LW2--; + } + } + else { +/* Row iw doesn't have an element in column jv yet + so there is a fill-in. */ + if(LUSOL->indr[LW2+1]!=0) + goto x360; + (*LENU)++; + LENW++; + LW2++; + LUSOL->a[LW2] = AMULT*LUSOL->a[LV]; + LUSOL->indr[LW2] = JV; + LUSOL->locc[JV] = LW2; + } + } + goto x490; +/* Fill-in interrupted the previous loop. + Move row iw to the end of the row file. */ +x360: + LV2 = LV; + LUSOL->locr[IW] = (*LROW)+1; + +#ifdef LUSOLFastMove + L = LW2-LW1+1; + if(L > 0) { + int loci, *locp; + for(loci = LW1, locp = LUSOL->indr+LW1; + loci <= LW2; loci++, locp++) { + (*LROW)++; + LUSOL->locc[*locp] = *LROW; + } + LW2 = (*LROW)-L+1; + MEMMOVE(LUSOL->a+LW2, LUSOL->a+LW1, L); + MEMMOVE(LUSOL->indr+LW2, LUSOL->indr+LW1, L); + MEMCLEAR(LUSOL->indr+LW1, L); + } +#else + for(L = LW1; L <= LW2; L++) { + (*LROW)++; + LUSOL->a[*LROW] = LUSOL->a[L]; + J = LUSOL->indr[L]; + LUSOL->indr[L] = 0; + LUSOL->indr[*LROW] = J; + LUSOL->locc[J] = *LROW; + } +#endif + LW1 = LUSOL->locr[IW]; + LW2 = *LROW; +/* ............................................................... + Inner loop with row iw at the end of storage. + ............................................................... */ +x400: + for(LV = LV2; LV <= LV3; LV++) { + JV = LUSOL->indr[LV]; + LW = LUSOL->locc[JV]; + if(LW>0) { +/* No fill-in. */ + LUSOL->a[LW] += AMULT*LUSOL->a[LV]; + if(fabs(LUSOL->a[LW])<=SMALL) { +/* Delete small computed element. */ + LUSOL->a[LW] = LUSOL->a[LW2]; + J = LUSOL->indr[LW2]; + LUSOL->indr[LW] = J; + LUSOL->indr[LW2] = 0; + LUSOL->locc[J] = LW; + LUSOL->locc[JV] = 0; + (*LENU)--; + LENW--; + LW2--; + } + } + else { +/* Row iw doesn't have an element in column jv yet + so there is a fill-in. */ + (*LENU)++; + LENW++; + LW2++; + LUSOL->a[LW2] = AMULT*LUSOL->a[LV]; + LUSOL->indr[LW2] = JV; + LUSOL->locc[JV] = LW2; + } + } + *LROW = LW2; +/* The k-th element of row iw has been processed. + Reset swappd before looking at the next element. */ +x490: + SWAPPD = FALSE; + } +/* ================================================================== + End of main elimination loop. + ================================================================== + + Cancel markers on row iw. */ +x600: + LUSOL->lenr[IW] = LENW; + if(LENW==0) + goto x910; + for(L = LW1; L <= LW2; L++) { + J = LUSOL->indr[L]; + LUSOL->locc[J] = 0; + } +/* Move the diagonal element to the front of row iw. + At this stage, lenw gt 0 and klast le n. */ +x700: + for(L = LW1; L <= LW2; L++) { + LDIAG = L; + if(LUSOL->indr[L]==JFIRST) + goto x730; + } + goto x910; + +x730: + *DIAG = LUSOL->a[LDIAG]; + LUSOL->a[LDIAG] = LUSOL->a[LW1]; + LUSOL->a[LW1] = *DIAG; + LUSOL->indr[LDIAG] = LUSOL->indr[LW1]; + LUSOL->indr[LW1] = JFIRST; +/* If an interchange is needed, repeat from the beginning with the + new row iw, knowing that the opposite interchange cannot occur. */ + if(SWAPPD) + goto x100; + *INFORM = LUSOL_INFORM_LUSUCCESS; + goto x950; +/* Singular. */ +x910: + *DIAG = ZERO; + *INFORM = LUSOL_INFORM_LUSINGULAR; +/* Force a compression if the file for U is much longer than the + no. of nonzeros in U (i.e. if lrow is much bigger than lenU). + This should prevent memory fragmentation when there is far more + memory than necessary (i.e. when lena is huge). */ +x950: + LIMIT = (int) (USPACE*(*LENU))+LUSOL->m+LUSOL->n+1000; + if(*LROW>LIMIT) + LU1REC(LUSOL, LUSOL->m,TRUE,LROW,LUSOL->indr,LUSOL->lenr,LUSOL->locr); + goto x990; +/* Not enough storage. */ +x970: + *INFORM = LUSOL_INFORM_ANEEDMEM; +/* Exit. */ +x990: +; +} + +/* ================================================================== + lu7rnk (check rank) assumes U is currently nrank by n + and determines if row nrank contains an acceptable pivot. + If not, the row is deleted and nrank is decreased by 1. + jsing is an input parameter (not altered). If jsing is positive, + column jsing has already been judged dependent. A substitute + (if any) must be some other column. + ------------------------------------------------------------------ + -- Jul 1987: First version. + 09 May 1988: First f77 version. + ================================================================== */ +void LU7RNK(LUSOLrec *LUSOL, int JSING, int *LENU, + int *LROW, int *NRANK, int *INFORM, LPSREAL *DIAG) +{ + LPSREAL UTOL1, UMAX; + int IW, LENW, L1, L2, LMAX, L, JMAX, KMAX; + +#ifdef ForceInitialization + L1 = 0; + L2 = 0; +#endif + + UTOL1 = LUSOL->parmlu[LUSOL_RP_SMALLDIAG_U]; + *DIAG = ZERO; +/* Find Umax, the largest element in row nrank. */ + IW = LUSOL->ip[*NRANK]; + LENW = LUSOL->lenr[IW]; + if(LENW==0) + goto x400; + L1 = LUSOL->locr[IW]; + L2 = (L1+LENW)-1; + UMAX = ZERO; + LMAX = L1; + for(L = L1; L <= L2; L++) { + if(UMAXa[L])) { + UMAX = fabs(LUSOL->a[L]); + LMAX = L; + } + } +/* Find which column that guy is in (in pivotal order). + Interchange him with column nrank, then move him to be + the new diagonal at the front of row nrank. */ + *DIAG = LUSOL->a[LMAX]; + JMAX = LUSOL->indr[LMAX]; + for(KMAX = *NRANK; KMAX <= LUSOL->n; KMAX++) { + if(LUSOL->iq[KMAX]==JMAX) + break; + } + LUSOL->iq[KMAX] = LUSOL->iq[*NRANK]; + LUSOL->iq[*NRANK] = JMAX; + LUSOL->a[LMAX] = LUSOL->a[L1]; + LUSOL->a[L1] = *DIAG; + LUSOL->indr[LMAX] = LUSOL->indr[L1]; + LUSOL->indr[L1] = JMAX; +/* See if the new diagonal is big enough. */ + if(UMAX<=UTOL1) + goto x400; + if(JMAX==JSING) + goto x400; +/* ------------------------------------------------------------------ + The rank stays the same. + ------------------------------------------------------------------ */ + *INFORM = LUSOL_INFORM_LUSUCCESS; + return; +/* ------------------------------------------------------------------ + The rank decreases by one. + ------------------------------------------------------------------ */ +x400: + *INFORM = LUSOL_INFORM_RANKLOSS; + (*NRANK)--; + if(LENW>0) { +/* Delete row nrank from U. */ + LENU = LENU-LENW; + LUSOL->lenr[IW] = 0; + for(L = L1; L <= L2; L++) { + LUSOL->indr[L] = 0; + } + if(L2==*LROW) { +/* This row was at the end of the data structure. + We have to reset lrow. + Preceding rows might already have been deleted, so we + have to be prepared to go all the way back to 1. */ + for(L = 1; L <= L2; L++) { + if(LUSOL->indr[*LROW]>0) + goto x900; + (*LROW)--; + } + } + } +x900: +; +} + +/* ================================================================== + lu7zap eliminates all nonzeros in column jzap of U. + It also sets kzap to the position of jzap in pivotal order. + Thus, on exit we have iq(kzap) = jzap. + ------------------------------------------------------------------ + -- Jul 1987: nrank added. + 10 May 1988: First f77 version. + ================================================================== */ +void LU7ZAP(LUSOLrec *LUSOL, int JZAP, int *KZAP, int *LENU, int *LROW, + int NRANK) +{ + int K, I, LENI, LR1, LR2, L; + + for(K = 1; K <= NRANK; K++) { + I = LUSOL->ip[K]; + LENI = LUSOL->lenr[I]; + if(LENI==0) + goto x90; + LR1 = LUSOL->locr[I]; + LR2 = (LR1+LENI)-1; + for(L = LR1; L <= LR2; L++) { + if(LUSOL->indr[L]==JZAP) + goto x60; + } + goto x90; +/* Delete the old element. */ +x60: + LUSOL->a[L] = LUSOL->a[LR2]; + LUSOL->indr[L] = LUSOL->indr[LR2]; + LUSOL->indr[LR2] = 0; + LUSOL->lenr[I] = LENI-1; + (*LENU)--; +/* Stop if we know there are no more rows containing jzap. */ +x90: + *KZAP = K; + if(LUSOL->iq[K]==JZAP) + goto x800; + } +/* nrank must be smaller than n because we haven't found kzap yet. */ + L = LUSOL->n; + for(K = NRANK+1; K <= L; K++) { + *KZAP = K; + if(LUSOL->iq[K]==JZAP) + break; + } +/* See if we zapped the last element in the file. */ +x800: + if(*LROW>0) { + if(LUSOL->indr[*LROW]==0) + (*LROW)--; + } + +} + diff --git a/src/external/lpsolve/build/lp_solve/lusol8a.c b/src/external/lpsolve/build/lp_solve/lusol8a.c new file mode 100644 index 00000000..2bb8005c --- /dev/null +++ b/src/external/lpsolve/build/lp_solve/lusol8a.c @@ -0,0 +1,279 @@ + +/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + File lusol8a + lu8rpc + Sparse LU update: Replace Column + LUSOL's sparse implementation of the Bartels-Golub update. + + 01 May 2002: Derived from LUSOL's original lu8a.f file. + 01 May 2002: Current version of lusol8a.f. + ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ + +/* ================================================================== + lu8rpc updates the LU factorization A = L*U when column jrep + is replaced by some vector a(new). + lu8rpc is an implementation of the Bartels-Golub update, + designed for the case where A is rectangular and/or singular. + L is a product of stabilized eliminations (m x m, nonsingular). + P U Q is upper trapezoidal (m x n, rank nrank). + + If mode1 = 0, the old column is taken to be zero + (so it does not have to be removed from U). + If mode1 = 1, the old column need not have been zero. + If mode2 = 0, the new column is taken to be zero. + v(*) is not used or altered. + If mode2 = 1, v(*) must contain the new column a(new). + On exit, v(*) will satisfy L*v = a(new). + If mode2 = 2, v(*) must satisfy L*v = a(new). + + The array w(*) is not used or altered. + On entry, all elements of locc are assumed to be zero. + On a successful exit (inform != 7), this will again be true. + On exit: + + inform = -1 if the rank of U decreased by 1. + inform = 0 if the rank of U stayed the same. + inform = 1 if the rank of U increased by 1. + inform = 2 if the update seemed to be unstable + (diag much bigger than vnorm). + inform = 7 if the update was not completed (lack of storage). + inform = 8 if jrep is not between 1 and n. + ------------------------------------------------------------------ + -- Jan 1985: Original F66 version. + -- Jul 1987: Modified to maintain U in trapezoidal form. + 10 May 1988: First f77 version. + 16 Oct 2000: Added test for instability (inform = 2). + ================================================================== */ +void LU8RPC(LUSOLrec *LUSOL, int MODE1, int MODE2, + int JREP, LPSREAL V[], LPSREAL W[], + int *INFORM, LPSREAL *DIAG, LPSREAL *VNORM) +{ + MYBOOL SINGLR; + int LPRINT, NRANK, LENL, LENU, LROW, NRANK0, KREP, KLAST, IW, L1, J1, JSING; + LPSREAL UTOL1, UTOL2; + + LPRINT = LUSOL->luparm[LUSOL_IP_PRINTLEVEL]; + NRANK = LUSOL->luparm[LUSOL_IP_RANK_U]; + LENL = LUSOL->luparm[LUSOL_IP_NONZEROS_L]; + LENU = LUSOL->luparm[LUSOL_IP_NONZEROS_U]; + LROW = LUSOL->luparm[LUSOL_IP_NONZEROS_ROW]; + UTOL1 = LUSOL->parmlu[LUSOL_RP_SMALLDIAG_U]; + UTOL2 = LUSOL->parmlu[LUSOL_RP_EPSDIAG_U]; + NRANK0 = NRANK; + *DIAG = ZERO; + *VNORM = ZERO; + if(JREP<1) + goto x980; + if(JREP>LUSOL->n) + goto x980; + +/* ------------------------------------------------------------------ + If mode1 = 0, there are no elements to be removed from U + but we still have to set krep (using a backward loop). + Otherwise, use lu7zap to remove column jrep from U + and set krep at the same time. + ------------------------------------------------------------------ */ + if(MODE1==LUSOL_UPDATE_OLDEMPTY) { + KREP = LUSOL->n+1; +x10: + KREP--; + if(LUSOL->iq[KREP]!=JREP) + goto x10; + } + else + LU7ZAP(LUSOL, JREP,&KREP,&LENU,&LROW,NRANK); + +/* ------------------------------------------------------------------ + Insert a new column of u and find klast. + ------------------------------------------------------------------ */ + if(MODE2==LUSOL_UPDATE_NEWEMPTY) { + KLAST = 0; + } + else { + if(MODE2==LUSOL_UPDATE_NEWNONEMPTY) { +/* Transform v = a(new) to satisfy L*v = a(new). */ + LU6SOL(LUSOL, LUSOL_SOLVE_Lv_v, V,W, NULL, INFORM); + } + else if(V==NULL) +/* Otherwise, the V vector is taken to satisfy this already, or stored earlier. */ + V=LUSOL->vLU6L; + + +/* Insert into U any nonzeros in the top of v. + row ip(klast) will contain the last nonzero in pivotal order. + Note that klast will be in the range ( 0, nrank ). */ + LU7ADD(LUSOL, JREP,V,LENL,&LENU,&LROW,NRANK,INFORM,&KLAST,VNORM); + if(*INFORM==LUSOL_INFORM_ANEEDMEM) + goto x970; + } +/* ------------------------------------------------------------------ + In general, the new column causes U to look like this: + krep n krep n + ....a......... ..........a... + . a . . a . + . a . . a . + .a . . a . + P U Q = a . or . a . + b. . . a . + b . . . a . + b . . . a . + b ...... ..a... nrank + c c + c c + c c m + klast points to the last nonzero "a" or "b". + klast = 0 means all "a" and "b" entries are zero. + ------------------------------------------------------------------ */ + if(MODE2==LUSOL_UPDATE_NEWEMPTY) { + if(KREP>NRANK) + goto x900; + } + else if(NRANKm) { +/* Eliminate any "c"s (in either case). + Row nrank + 1 may end up containing one nonzero. */ + LU7ELM(LUSOL, JREP,V,&LENL,&LROW,NRANK,INFORM,DIAG); + if(*INFORM==LUSOL_INFORM_ANEEDMEM) + goto x970; + if(*INFORM==LUSOL_INFORM_LUSINGULAR) { +/* The nonzero is apparently significant. + Increase nrank by 1 and make klast point to the bottom. */ + NRANK++; + KLAST = NRANK; + } + } + if(NRANKn) { +/* The column rank is low. + In the first case, we want the new column to end up in + position nrank, so the trapezoidal columns will have a chance + later on (in lu7rnk) to pivot in that position. + Otherwise the new column is not part of the triangle. We + swap it into position nrank so we can judge it for singularity. + lu7rnk might choose some other trapezoidal column later. */ + if(KREPiq[KREP] = LUSOL->iq[NRANK]; + LUSOL->iq[NRANK] = JREP; + KREP = NRANK; + } + } +/* ------------------------------------------------------------------ + If krep .lt. klast, there are some "b"s to eliminate: + krep + ....a......... + . a . + . a . + .a . + P U Q = a . krep + b. . + b . . + b . . + b ...... nrank + If krep .eq. klast, there are no "b"s, but the last "a" still + has to be moved to the front of row krep (by lu7for). + ------------------------------------------------------------------ */ + if(KREP<=KLAST) { +/* Perform a cyclic permutation on the current pivotal order, + and eliminate the resulting row spike. krep becomes klast. + The final diagonal (if any) will be correctly positioned at + the front of the new krep-th row. nrank stays the same. */ + LU7CYC(LUSOL, KREP,KLAST,LUSOL->ip); + LU7CYC(LUSOL, KREP,KLAST,LUSOL->iq); + LU7FOR(LUSOL, KREP,KLAST,&LENL,&LENU,&LROW,INFORM,DIAG); + if(*INFORM==LUSOL_INFORM_ANEEDMEM) + goto x970; + KREP = KLAST; +/* Test for instability (diag much bigger than vnorm). */ + SINGLR = (MYBOOL) ((*VNORM)ip[KREP]; + SINGLR = (MYBOOL) (LUSOL->lenr[IW]==0); + if(!SINGLR) { + L1 = LUSOL->locr[IW]; + J1 = LUSOL->indr[L1]; + SINGLR = (MYBOOL) (J1!=JREP); + if(!SINGLR) { + *DIAG = LUSOL->a[L1]; + SINGLR = (MYBOOL) (fabs(*DIAG)<=UTOL1 || fabs(*DIAG)<=UTOL2*(*VNORM)); + } + } + if(SINGLR && (KREPip); + LU7CYC(LUSOL, KREP,LUSOL->n,LUSOL->iq); + LU7FOR(LUSOL, KREP,NRANK,&LENL,&LENU,&LROW,INFORM,DIAG); + if(*INFORM==LUSOL_INFORM_ANEEDMEM) + goto x970; + } +/* Find the best column to be in position nrank. + If singlr, it can't be the new column, jrep. + If nothing satisfactory exists, nrank will be decreased. */ + if(SINGLR || (NRANKn)) { + JSING = 0; + if(SINGLR) + JSING = JREP; + LU7RNK(LUSOL, JSING,&LENU,&LROW,&NRANK,INFORM,DIAG); + } + +/* ------------------------------------------------------------------ + Update indeces of optional row-based version of L0. + ------------------------------------------------------------------ */ +#if 0 + if(LUSOL->L0 != NULL) + LU1L0UPD(LUSOL, INFORM); +#endif + +/* ------------------------------------------------------------------ + Set inform for exit. + ------------------------------------------------------------------ */ +x900: + if(NRANK==NRANK0) + *INFORM = LUSOL_INFORM_LUSUCCESS; + else if(NRANKn) { + if(LPRINT>=LUSOL_MSG_SINGULARITY) + LUSOL_report(LUSOL, 0, "lu8rpc warning...\nSingularity after replacing column. jrep=%8d diag=%g\n", + JREP,DIAG); + } + } + else + *INFORM = LUSOL_INFORM_LUSINGULAR; + goto x990; +/* Instability. */ +x920: + *INFORM = LUSOL_INFORM_LUUNSTABLE; + if(LPRINT>=LUSOL_MSG_SINGULARITY) + LUSOL_report(LUSOL, 0, "lu8rpc warning...\nInstability after replacing column. jrep=%8d diag=%g\n", + JREP,DIAG); + goto x990; +/* Not enough storage. */ +x970: + *INFORM = LUSOL_INFORM_ANEEDMEM; + if(LPRINT>=LUSOL_MSG_SINGULARITY) + LUSOL_report(LUSOL, 0, "lu8rpc error...\nInsufficient memory. lena=%8d\n", + LUSOL->lena); + goto x990; +/* jrep is out of range. */ +x980: + *INFORM = LUSOL_INFORM_FATALERR; + if(LPRINT>=LUSOL_MSG_SINGULARITY) + LUSOL_report(LUSOL, 0, "lu8rpc error...\njrep is out of range. m=%8d n=%8d jrep=%8d\n", + LUSOL->m,LUSOL->n,JREP); +/* Exit. */ +x990: + LUSOL->luparm[LUSOL_IP_UPDATECOUNT]++; + LUSOL->luparm[LUSOL_IP_RANK_U] = NRANK; + LUSOL->luparm[LUSOL_IP_NONZEROS_L] = LENL; + LUSOL->luparm[LUSOL_IP_NONZEROS_U] = LENU; + LUSOL->luparm[LUSOL_IP_NONZEROS_ROW] = LROW; + LUSOL->luparm[LUSOL_IP_INFORM] = *INFORM; +} diff --git a/src/external/lpsolve/build/lp_solve/mmio.c b/src/external/lpsolve/build/lp_solve/mmio.c new file mode 100644 index 00000000..185ef51b --- /dev/null +++ b/src/external/lpsolve/build/lp_solve/mmio.c @@ -0,0 +1,496 @@ +/* +* Matrix Market I/O library for ANSI C +* +* See http://math.nist.gov/MatrixMarket for details. +* +* (Version 1.01, 5/2003) +*/ + + +#include +#include +#include +#include + +#include "mmio.h" + +int mm_read_unsymmetric_sparse(const char *fname, int *M_, int *N_, int *nz_, + double **val_, int **I_, int **J_) +{ + FILE *f; + MM_typecode matcode; + int M, N, nz; + int i; + double *val; + int *I, *J; + int x; + + if ((f = fopen(fname, "r")) == NULL) + return -1; + + + if (mm_read_banner(f, &matcode) != 0) + { + printf("mm_read_unsymetric: Could not process Matrix Market banner "); + printf(" in file [%s]\n", fname); + return -1; + } + + + + if ( !(mm_is_real(matcode) && mm_is_matrix(matcode) && + mm_is_sparse(matcode))) + { + fprintf(stderr, "Sorry, this application does not support "); + fprintf(stderr, "Market Market type: [%s]\n", + mm_typecode_to_str(matcode)); + return -1; + } + + /* find out size of sparse matrix: M, N, nz .... */ + + if (mm_read_mtx_crd_size(f, &M, &N, &nz) !=0) + { + fprintf(stderr, "read_unsymmetric_sparse(): could not parse matrix size.\n"); + return -1; + } + + *M_ = M; + *N_ = N; + *nz_ = nz; + + /* reseve memory for matrices */ + + I = (int *) malloc(nz * sizeof(int)); + J = (int *) malloc(nz * sizeof(int)); + val = (double *) malloc(nz * sizeof(double)); + + *val_ = val; + *I_ = I; + *J_ = J; + + /* NOTE: when reading in doubles, ANSI C requires the use of the "l" */ + /* specifier as in "%lg", "%lf", "%le", otherwise errors will occur */ + /* (ANSI C X3.159-1989, Sec. 4.9.6.2, p. 136 lines 13-15) */ + + for (i=0; i= 2) + return 0; + + else + do { + num_items_read = fscanf(f, "%d %d %d", M, N, nz); + if (num_items_read == EOF) return MM_PREMATURE_EOF; + } while (num_items_read < 2); + + return 0; +} + + +int mm_read_mtx_array_size(FILE *f, int *M, int *N) +{ + char line[MM_MAX_LINE_LENGTH]; + int num_items_read; + /* set return null parameter values, in case we exit with errors */ + *M = *N = 0; + + /* now continue scanning until you reach the end-of-comments */ + do + { + if (fgets(line,MM_MAX_LINE_LENGTH,f) == NULL) + return MM_PREMATURE_EOF; + }while (line[0] == '%'); + + /* line[] is either blank or has M,N, nz */ + if (sscanf(line, "%d %d", M, N) == 2) + return 0; + + else /* we have a blank line */ + do + { + num_items_read = fscanf(f, "%d %d", M, N); + if (num_items_read == EOF) return MM_PREMATURE_EOF; + } + while (num_items_read != 2); + + return 0; +} + +int mm_write_mtx_array_size(FILE *f, int M, int N) +{ + if (fprintf(f, "%d %d\n", M, N) < 0) + return MM_COULD_NOT_WRITE_FILE; + else + return 0; +} + + + +/*-------------------------------------------------------------------------*/ + +/******************************************************************/ +/* use when I[], J[], and val[]J, and val[] are already allocated */ +/******************************************************************/ + +int mm_read_mtx_crd_data(FILE *f, int M, int N, int nz, int I[], int J[], + double val[], MM_typecode matcode) +{ + int i; + if (mm_is_complex(matcode)) + { + for (i=0; i +#include +/*#include */ +#include +#include +#include "myblas.h" +#include "R_ext/BLAS.h" + +#ifdef FORTIFY +# include "lp_fortify.h" +#endif + +/* ************************************************************************ */ +/* Initialize BLAS interfacing routines */ +/* ************************************************************************ */ + +MYBOOL mustinitBLAS = TRUE; +#ifdef WIN32 + HINSTANCE hBLAS = NULL; +#else + void *hBLAS = NULL; +#endif + + +/* ************************************************************************ */ +/* Define the BLAS interfacing routines */ +/* ************************************************************************ */ + +void init_BLAS(void) +{ + if(mustinitBLAS) { + load_BLAS(NULL); + mustinitBLAS = FALSE; + } +} + +MYBOOL is_nativeBLAS(void) +{ +#ifdef LoadableBlasLib + return( (MYBOOL) (hBLAS == NULL) ); +#else + return( TRUE ); +#endif +} + +MYBOOL load_BLAS(char *libname) +{ + MYBOOL result = TRUE; + return( result ); +} + +MYBOOL unload_BLAS(void) +{ + return( load_BLAS(NULL) ); +} + + +/* ************************************************************************ */ +/* Now define the unoptimized local BLAS functions */ +/* ************************************************************************ */ + +void lps_daxpy( int n, LPSREAL da, LPSREAL *dx, int incx, LPSREAL *dy, int incy) +{ + dx++; + dy++; + F77_CALL(daxpy) ( &n, &da, dx, &incx, dy, &incy); +} + + +/* ************************************************************************ */ + +void lps_dcopy( int n, LPSREAL *dx, int incx, LPSREAL *dy, int incy) +{ + dx++; + dy++; + F77_CALL(dcopy) ( &n, dx, &incx, dy, &incy); +} + + +/* ************************************************************************ */ + +void lps_dscal (int n, LPSREAL da, LPSREAL *dx, int incx) +{ + dx++; + F77_CALL(dscal) (&n, &da, dx, &incx); +} + + +/* ************************************************************************ */ + +int lps_idamax( int n, LPSREAL *x, int is ) +{ + x++; + return ( F77_CALL(idamax)( &n, x, &is ) ); +} + + + + + diff --git a/src/external/lpsolve/build/lp_solve/yacc_read.c b/src/external/lpsolve/build/lp_solve/yacc_read.c new file mode 100644 index 00000000..e762edd3 --- /dev/null +++ b/src/external/lpsolve/build/lp_solve/yacc_read.c @@ -0,0 +1,1284 @@ +/* + ============================================================================ + NAME : yacc_read.c + + PURPOSE : translation of lp-problem and storage in sparse matrix + + SHORT : Subroutines for yacc program to store the input in an intermediate + data-structure. The yacc and lex programs translate the input. First the + problemsize is determined and the date is read into an intermediate + structure, then readinput fills the sparse matrix. + + USAGE : call yyparse(); to start reading the input. call readinput(); to + fill the sparse matrix. + ============================================================================ + Rows : contains the amount of rows + 1. Rows-1 is the amount of constraints + (no bounds) Rows also contains the rownr 0 which is the objective function + + Columns : contains the amount of columns (different variable names found in + the constraints) + + Nonnuls : contains the amount of nonnuls = sum of different entries of all + columns in the constraints and in the objectfunction + + Hash_tab : contains all columnnames on the first level of the structure the + row information is kept under each column structure in a linked list (also + the objective funtion is in this structure) Bound information is also + stored under under the column name + + First_rside : points to a linked list containing all relational operators + and the righthandside values of the constraints the linked list is in + reversed order with respect to the rownumbers + ============================================================================ */ +#include +#include +#include +#include "lpkit.h" +#include "yacc_read.h" + +#ifdef FORTIFY +# include "lp_fortify.h" +#endif + +#define tol 1.0e-10 +#define coldatastep 100 + +#define HASHSIZE 10007 /* A prime number! */ + +struct structSOSvars { + char *name; + int col; + LPSREAL weight; + struct structSOSvars *next; +}; + +struct structSOS { + char *name; + short type; + int Nvars; + int weight; + struct structSOSvars *SOSvars, *LastSOSvars; + struct structSOS *next; +}; + +struct SOSrow { + int col; + LPSREAL value; + struct SOSrow *next; +}; + +struct SOSrowdata { + short type; + char *name; + struct SOSrow *SOSrow; +}; + +struct rside /* contains relational operator and rhs value */ +{ + int row; + LPSREAL value; + LPSREAL range_value; + struct rside *next; + short relat; + short range_relat; + char negate; + short SOStype; +}; + +struct column +{ + int row; + LPSREAL value; + struct column *next; + struct column *prev; +}; + +struct structcoldata { + int must_be_int; + int must_be_sec; + int must_be_free; + LPSREAL upbo; + LPSREAL lowbo; + struct column *firstcol; + struct column *col; +}; + +static void error(parse_parm *pp, int verbose, char *string) +{ + if(pp == NULL) + report(NULL, CRITICAL, string); + else if(pp->Verbose >= verbose) + report(NULL, verbose, "%s on line %d\n", string, pp->lineno); +} + +/* + * error handling routine for yyparse() + */ +void read_error(parse_parm *pp, void *scanner, char *string) +{ + error(pp, CRITICAL, string); +} + +/* called when lex gets a fatal error */ +void lex_fatal_error(parse_parm *pp, void *scanner, char *msg) +{ + read_error(pp, scanner, msg); + longjmp(pp->jump_buf, 1); +} + +void add_row(parse_parm *pp) +{ + pp->Rows++; + pp->rs = NULL; + pp->Lin_term_count = 0; +} + +void add_sos_row(parse_parm *pp, short SOStype) +{ + if (pp->rs != NULL) + pp->rs->SOStype = SOStype; + pp->Rows++; + pp->rs = NULL; + pp->Lin_term_count = 0; +} + +void check_int_sec_sos_free_decl(parse_parm *pp, int within_int_decl, int within_sec_decl, int sos_decl0, int within_free_decl) +{ + pp->Ignore_int_decl = TRUE; + pp->Ignore_sec_decl = TRUE; + pp->Ignore_free_decl = TRUE; + pp->sos_decl = 0; + if(within_int_decl) { + pp->Ignore_int_decl = FALSE; + pp->int_decl = (char) within_int_decl; + if(within_sec_decl) + pp->Ignore_sec_decl = FALSE; + } + else if(within_sec_decl) { + pp->Ignore_sec_decl = FALSE; + } + else if(sos_decl0) { + pp->sos_decl = (char) sos_decl0; + } + else if(within_free_decl) { + pp->Ignore_free_decl = FALSE; + } +} + +static void add_int_var(parse_parm *pp, char *name, short int_decl) +{ + hashelem *hp; + + if((hp = findhash(name, pp->Hash_tab)) == NULL) { + char buf[256]; + + sprintf(buf, "Unknown variable %s declared integer, ignored", name); + error(pp, NORMAL, buf); + } + else if(pp->coldata[hp->index].must_be_int) { + char buf[256]; + + sprintf(buf, "Variable %s declared integer more than once, ignored", name); + error(pp, NORMAL, buf); + } + else { + pp->coldata[hp->index].must_be_int = TRUE; + if(int_decl == 2) { + if(pp->coldata[hp->index].lowbo != -DEF_INFINITE * (LPSREAL) 10.0) { + char buf[256]; + + sprintf(buf, "Variable %s: lower bound on variable redefined", name); + error(pp, NORMAL, buf); + } + pp->coldata[hp->index].lowbo = 0; + if(pp->coldata[hp->index].upbo < DEF_INFINITE) { + char buf[256]; + + sprintf(buf, "Variable %s: upper bound on variable redefined", name); + error(pp, NORMAL, buf); + } + pp->coldata[hp->index].upbo = 1; + } + else if(int_decl == 3) { + if(pp->coldata[hp->index].upbo == DEF_INFINITE * (LPSREAL) 10.0) + pp->coldata[hp->index].upbo = 1.0; + } + } +} + +static void add_sec_var(parse_parm *pp, char *name) +{ + hashelem *hp; + + if((hp = findhash(name, pp->Hash_tab)) == NULL) { + char buf[256]; + + sprintf(buf, "Unknown variable %s declared semi-continuous, ignored", name); + error(pp, NORMAL, buf); + } + else if(pp->coldata[hp->index].must_be_sec) { + char buf[256]; + + sprintf(buf, "Variable %s declared semi-continuous more than once, ignored", name); + error(pp, NORMAL, buf); + } + else + pp->coldata[hp->index].must_be_sec = TRUE; +} + +int set_sec_threshold(parse_parm *pp, char *name, LPSREAL threshold) +{ + hashelem *hp; + + if((hp = findhash(name, pp->Hash_tab)) == NULL) { + char buf[256]; + + sprintf(buf, "Unknown variable %s declared semi-continuous, ignored", name); + error(pp, NORMAL, buf); + return(FALSE); + } + + if ((pp->coldata[hp->index].lowbo > 0.0) && (threshold > 0.0)) { + char buf[256]; + + pp->coldata[hp->index].must_be_sec = FALSE; + sprintf(buf, "Variable %s declared semi-continuous, but it has a non-negative lower bound (%f), ignored", name, pp->coldata[hp->index].lowbo); + error(pp, NORMAL, buf); + } + if (threshold > pp->coldata[hp->index].lowbo) + pp->coldata[hp->index].lowbo = threshold; + + return(pp->coldata[hp->index].must_be_sec); +} + +static void add_free_var(parse_parm *pp, char *name) +{ + hashelem *hp; + + if((hp = findhash(name, pp->Hash_tab)) == NULL) { + char buf[256]; + + sprintf(buf, "Unknown variable %s declared free, ignored", name); + error(pp, NORMAL, buf); + } + else if(pp->coldata[hp->index].must_be_free) { + char buf[256]; + + sprintf(buf, "Variable %s declared free more than once, ignored", name); + error(pp, NORMAL, buf); + } + else + pp->coldata[hp->index].must_be_free = TRUE; +} + +static int add_sos_name(parse_parm *pp, char *name) +{ + struct structSOS *SOS; + + if(CALLOC(SOS, 1, struct structSOS) == NULL) + return(FALSE); + + if(MALLOC(SOS->name, strlen(name) + 1, char) == NULL) + { + FREE(SOS); + return(FALSE); + } + strcpy(SOS->name, name); + SOS->type = 0; + + if(pp->FirstSOS == NULL) + pp->FirstSOS = SOS; + else + pp->LastSOS->next = SOS; + pp->LastSOS = SOS; + + return(TRUE); +} + +static int add_sos_var(parse_parm *pp, char *name) +{ + struct structSOSvars *SOSvar; + + if(name != NULL) { + if(CALLOC(SOSvar, 1, struct structSOSvars) == NULL) + return(FALSE); + + if(MALLOC(SOSvar->name, strlen(name) + 1, char) == NULL) + { + FREE(SOSvar); + return(FALSE); + } + strcpy(SOSvar->name, name); + + if(pp->LastSOS->SOSvars == NULL) + pp->LastSOS->SOSvars = SOSvar; + else + pp->LastSOS->LastSOSvars->next = SOSvar; + pp->LastSOS->LastSOSvars = SOSvar; + pp->LastSOS->Nvars = pp->LastSOS->Nvars + 1; + } + pp->LastSOS->LastSOSvars->weight = 0; + + return(TRUE); +} + +void storevarandweight(parse_parm *pp, char *name) +{ + if(!pp->Ignore_int_decl) { + add_int_var(pp, name, pp->int_decl); + if(!pp->Ignore_sec_decl) + add_sec_var(pp, name); + } + else if(!pp->Ignore_sec_decl) + add_sec_var(pp, name); + else if(pp->sos_decl==1) + add_sos_name(pp, name); + else if(pp->sos_decl==2) + add_sos_var(pp, name); + else if(!pp->Ignore_free_decl) + add_free_var(pp, name); +} + +int set_sos_type(parse_parm *pp, int SOStype) +{ + if(pp->LastSOS != NULL) + pp->LastSOS->type = (short) SOStype; + return(TRUE); +} + +int set_sos_weight(parse_parm *pp, double weight, int sos_decl) +{ + if(pp->LastSOS != NULL) { + if(sos_decl==1) + pp->LastSOS->weight = (int) (weight+.1); + else + pp->LastSOS->LastSOSvars->weight = weight; + } + return(TRUE); +} + +static int inccoldata(parse_parm *pp) +{ + long Columns = pp->Columns; + + if(Columns == 0) + CALLOC(pp->coldata, coldatastep, struct structcoldata); + else if((Columns%coldatastep) == 0) + REALLOC(pp->coldata, Columns + coldatastep, struct structcoldata); + + if(pp->coldata != NULL) { + pp->coldata[Columns].upbo = (LPSREAL) DEF_INFINITE * (LPSREAL) 10.0; + pp->coldata[Columns].lowbo = (LPSREAL) -DEF_INFINITE * (LPSREAL) 10.0; /* temporary. If still this value then 0 will be taken */ + pp->coldata[Columns].col = NULL; + pp->coldata[Columns].firstcol = NULL; + pp->coldata[Columns].must_be_int = FALSE; + pp->coldata[Columns].must_be_sec = FALSE; + pp->coldata[Columns].must_be_free = FALSE; + } + + return(pp->coldata != NULL); +} + +/* + * initialisation of hashstruct and globals. + */ +static int init_read(parse_parm *pp, int verbose) +{ + int ok = FALSE; + + pp->Verbose = verbose; + set_obj_dir(pp, TRUE); + pp->Rows = 0; + pp->Non_zeros = 0; + pp->Columns = 0; + pp->FirstSOS = pp->LastSOS = NULL; + pp->Lin_term_count = 0; + if (CALLOC(pp->First_rside, 1, struct rside) != NULL) { + pp->rs = pp->First_rside; + pp->rs->value = pp->rs->range_value = 0; + /* first row (nr 0) is always the objective function */ + pp->rs->relat = OF; + pp->rs->range_relat = -1; + pp->rs->SOStype = 0; + pp->Hash_tab = NULL; + pp->Hash_constraints = NULL; + if (((pp->Hash_tab = create_hash_table(HASHSIZE, 0)) == NULL) || + ((pp->Hash_constraints = create_hash_table(HASHSIZE, 0)) == NULL)){ + FREE(pp->First_rside); + FREE(pp->Hash_tab); + FREE(pp->Hash_constraints); + } + else + ok = TRUE; + } + return(ok); +} /* init */ + +/* + * clears the tmp_store variable after all information has been copied + */ +void null_tmp_store(parse_parm *pp, int init_Lin_term_count) +{ + pp->tmp_store.value = 0; + pp->tmp_store.rhs_value = 0; + FREE(pp->tmp_store.name); + if(init_Lin_term_count) + pp->Lin_term_count = 0; +} + +/* + * variable : pointer to text array with name of variable + * row : the rownumber of the constraint + * value : value of matrixelement + * A(row, variable). + * Sign : (global) determines the sign of value. + * store() : stores value in matrix + * A(row, variable). If A(row, variable) already contains data, + * value is added to the existing value. + */ +static int store(parse_parm *pp, char *variable, + int row, + LPSREAL value) +{ + hashelem *h_tab_p; + struct column *col_p; + + if(value == 0) { + char buf[256]; + + sprintf(buf, "(store) Warning, variable %s has an effective coefficient of 0, Ignored", variable); + error(pp, NORMAL, buf); + /* return(TRUE); */ + } + + if((h_tab_p = findhash(variable, pp->Hash_tab)) == NULL) { + if (((h_tab_p = puthash(variable, pp->Columns, NULL, pp->Hash_tab)) == NULL) + ) return(FALSE); + inccoldata(pp); + pp->Columns++; /* counter for calloc of final array */ + if(value) { + if (CALLOC(col_p, 1, struct column) == NULL) + return(FALSE); + pp->Non_zeros++; /* for calloc of final arrays */ + col_p->row = row; + col_p->value = value; + pp->coldata[h_tab_p->index].firstcol = pp->coldata[h_tab_p->index].col = col_p; + } + } + else if((pp->coldata[h_tab_p->index].col == NULL) || (pp->coldata[h_tab_p->index].col->row != row)) { + if(value) { + if (CALLOC(col_p, 1, struct column) == NULL) + return(FALSE); + pp->Non_zeros++; /* for calloc of final arrays */ + if(pp->coldata[h_tab_p->index].col != NULL) + pp->coldata[h_tab_p->index].col->prev = col_p; + else + pp->coldata[h_tab_p->index].firstcol = col_p; + col_p->value = value; + col_p->row = row; + col_p->next = pp->coldata[h_tab_p->index].col; + pp->coldata[h_tab_p->index].col = col_p; + } + } + else if(value) { + pp->coldata[h_tab_p->index].col->value += value; + if(fabs(pp->coldata[h_tab_p->index].col->value) < tol) /* eliminitate rounding errors */ + pp->coldata[h_tab_p->index].col->value = 0; + } + return(TRUE); +} /* store */ + +static int storefirst(parse_parm *pp) +{ + struct rside *rp; + + if ((pp->rs != NULL) && (pp->rs->row == pp->tmp_store.row)) + return(TRUE); + + /* make space for the rhs information */ + if (CALLOC(rp, 1, struct rside) == NULL) + return(FALSE); + rp->next = pp->First_rside; + pp->First_rside = pp->rs = rp; + pp->rs->row = /* row */ pp->tmp_store.row; + pp->rs->value = pp->tmp_store.rhs_value; + pp->rs->relat = pp->tmp_store.relat; + pp->rs->range_relat = -1; + pp->rs->SOStype = 0; + + if(pp->tmp_store.name != NULL) { + if(pp->tmp_store.value != 0) { + if (!store(pp, pp->tmp_store.name, pp->tmp_store.row, pp->tmp_store.value)) + return(FALSE); + } + else { + char buf[256]; + + sprintf(buf, "Warning, variable %s has an effective coefficient of 0, ignored", pp->tmp_store.name); + error(pp, NORMAL, buf); + } + } + null_tmp_store(pp, FALSE); + return(TRUE); +} + +/* + * store relational operator given in yylex[0] in the rightside list. + * Also checks if it constraint was a bound and if so stores it in the + * boundslist + */ +int store_re_op(parse_parm *pp, char OP, int HadConstraint, int HadVar, int Had_lineair_sum) +{ + short tmp_relat; + + switch(OP) { + + case '=': + tmp_relat = EQ; + break; + + case '>': + tmp_relat = GE; + break; + + case '<': + tmp_relat = LE; + break; + + case 0: + if(pp->rs != NULL) + tmp_relat = pp->rs->relat; + else + tmp_relat = pp->tmp_store.relat; + break; + + default: + { + char buf[256]; + + sprintf(buf, "Error: unknown relational operator %c", OP); + error(pp, CRITICAL, buf); + } + return(FALSE); + break; + } + + if(/* pp->Lin_term_count > 1 */ HadConstraint && HadVar) {/* it is not a bound */ + if(pp->Lin_term_count <= 1) + if(!storefirst(pp)) + return(FALSE); + pp->rs->relat = tmp_relat; + } + else if(/* pp->Lin_term_count == 0 */ HadConstraint && !Had_lineair_sum /* HadVar */ /* && (pp->rs != NULL) */) { /* it is a range */ + if(pp->Lin_term_count == 1) + if(!storefirst(pp)) + return(FALSE); + if(pp->rs == NULL) { /* range before row, already reported */ + error(pp, CRITICAL, "Error: range for undefined row"); + return(FALSE); + } + + if(pp->rs->negate) + switch (tmp_relat) { + case LE: + tmp_relat = GE; + break; + case GE: + tmp_relat = LE; + break; + } + + if(pp->rs->range_relat != -1) { + error(pp, CRITICAL, "Error: There was already a range for this row"); + return(FALSE); + } + else if(tmp_relat == pp->rs->relat) { + error(pp, CRITICAL, "Error: relational operator for range is the same as relation operator for equation"); + return(FALSE); + } + else + pp->rs->range_relat = tmp_relat; + } + else /* could be a bound */ + pp->tmp_store.relat = tmp_relat; + + return(TRUE); +} /* store_re_op */ + +int negate_constraint(parse_parm *pp) +{ + if(pp->rs != NULL) + pp->rs->negate = TRUE; + + return(TRUE); +} + +/* + * store RHS value in the rightside structure + * if type = true then + */ +int rhs_store(parse_parm *pp, LPSREAL value, int HadConstraint, int HadVar, int Had_lineair_sum) +{ + if(/* pp->Lin_term_count > 1 */ (HadConstraint && HadVar) || (pp->Rows == 0)){ /* not a bound */ + if (pp->Rows == 0) + value = -value; + /* if(pp->Lin_term_count < 2) */ + if(pp->rs == NULL) + pp->tmp_store.rhs_value += value; + else + + if(pp->rs == NULL) { + error(pp, CRITICAL, "Error: No variable specified"); + return(FALSE); + } + else + pp->rs->value += value; + } + else if(/* pp->Lin_term_count == 0 */ HadConstraint && !HadVar) { /* a range */ + if(pp->rs == NULL) /* if range before row, already reported */ + pp->tmp_store.rhs_value += value; + else if(pp->rs->range_relat < 0) /* was a bad range; ignore */; + else { + if(pp->rs->negate) + value = -value; + if(((pp->rs->relat == LE) && (pp->rs->range_relat == GE) && + (pp->rs->value < value)) || + ((pp->rs->relat == GE) && (pp->rs->range_relat == LE) && + (pp->rs->value > value)) || + ((pp->rs->relat == EQ) || (pp->rs->range_relat == EQ))) { + pp->rs->range_relat = -2; + error(pp, CRITICAL, "Error: range restriction conflicts"); + return(FALSE); + } + else + pp->rs->range_value += value; + } + } + else /* a bound */ + pp->tmp_store.rhs_value += value; + return(TRUE); +} /* RHS_store */ + +/* + * store all data in the right place + * count the amount of lineair terms in a constraint + * only store in data-structure if the constraint is not a bound + */ +int var_store(parse_parm *pp, char *var, LPSREAL value, int HadConstraint, int HadVar, int Had_lineair_sum) +{ + int row; + + row = pp->Rows; + + /* also in a bound the same var name can occur more than once. Check for + this. Don't increment Lin_term_count */ + + if(pp->Lin_term_count != 1 || pp->tmp_store.name == NULL || strcmp(pp->tmp_store.name, var) != 0) + pp->Lin_term_count++; + + /* always store objective function with rownr == 0. */ + if(row == 0) + return(store(pp, var, row, value)); + + if(pp->Lin_term_count == 1) { /* don't store yet. could be a bound */ + if(MALLOC(pp->tmp_store.name, strlen(var) + 1, char) != NULL) + strcpy(pp->tmp_store.name, var); + pp->tmp_store.row = row; + pp->tmp_store.value += value; + return(TRUE); + } + + if(pp->Lin_term_count == 2) { /* now you can also store the first variable */ + if(!storefirst(pp)) + return(FALSE); + /* null_tmp_store(pp, FALSE); */ + } + + return(store(pp, var, row, value)); +} /* var_store */ + + + +/* + * store the information in tmp_store because it is a bound + */ +int store_bounds(parse_parm *pp, int warn) +{ + if(pp->tmp_store.value != 0) { + hashelem *h_tab_p; + LPSREAL boundvalue; + + if((h_tab_p = findhash(pp->tmp_store.name, pp->Hash_tab)) == NULL) { + /* a new columnname is found, create an entry in the hashlist */ + if ((h_tab_p = puthash(pp->tmp_store.name, pp->Columns, NULL, pp->Hash_tab)) == NULL) { + error(pp, CRITICAL, "Not enough memory"); + return(FALSE); + } + inccoldata(pp); + pp->Columns++; /* counter for calloc of final array */ + } + + if(pp->tmp_store.value < 0) { /* divide by negative number, */ + /* relational operator may change */ + if(pp->tmp_store.relat == GE) + pp->tmp_store.relat = LE; + else if(pp->tmp_store.relat == LE) + pp->tmp_store.relat = GE; + } + + boundvalue = pp->tmp_store.rhs_value / pp->tmp_store.value; + +#if FALSE + /* Check sanity of bound; all variables should be positive */ + if( ((pp->tmp_store.relat == EQ) && (boundvalue < 0)) + || ((pp->tmp_store.relat == LE) && (boundvalue < 0))) { /* Error */ + error(pp, CRITICAL, "Error: variables must always be non-negative"); + return(FALSE); + } +#endif + +#if FALSE + if((pp->tmp_store.relat == GE) && (boundvalue <= 0)) /* Warning */ + error(pp, NORMAL, "Warning: useless bound; variables are always >= 0"); +#endif + + /* bound seems to be sane, add it */ + if((pp->tmp_store.relat == GE) || (pp->tmp_store.relat == EQ)) { + if(boundvalue > pp->coldata[h_tab_p->index].lowbo - tol) + pp->coldata[h_tab_p->index].lowbo = boundvalue; + else if(warn) + error(pp, NORMAL, "Ineffective lower bound, ignored"); + } + if((pp->tmp_store.relat == LE) || (pp->tmp_store.relat == EQ)) { + if(boundvalue < pp->coldata[h_tab_p->index].upbo + tol) + pp->coldata[h_tab_p->index].upbo = boundvalue; + else if (warn) + error(pp, NORMAL, "Ineffective upper bound, ignored"); + } + + /* check for empty range */ + if((warn) && (pp->coldata[h_tab_p->index].upbo + tol < pp->coldata[h_tab_p->index].lowbo)) { + error(pp, CRITICAL, "Error: bound contradicts earlier bounds"); + return(FALSE); + } + } + else /* pp->tmp_store.value = 0 ! */ { + char buf[256]; + + if((pp->tmp_store.rhs_value == 0) || + ((pp->tmp_store.rhs_value > 0) && (pp->tmp_store.relat == LE)) || + ((pp->tmp_store.rhs_value < 0) && (pp->tmp_store.relat == GE))) { + sprintf(buf, "Variable %s has an effective coefficient of 0 in bound, ignored", + pp->tmp_store.name); + if(warn) + error(pp, NORMAL, buf); + } + else { + sprintf(buf, "Error, variable %s has an effective coefficient of 0 in bound", + pp->tmp_store.name); + error(pp, CRITICAL, buf); + return(FALSE); + } + } + + /* null_tmp_store(pp, FALSE); */ + pp->tmp_store.rhs_value = 0; + + return(TRUE); +} /* store_bounds */ + +int set_title(parse_parm *pp, char *name) +{ + pp->title = strdup(name); + return(TRUE); +} + +int add_constraint_name(parse_parm *pp, char *name) +{ + int row; + hashelem *hp; + + if((hp = findhash(name, pp->Hash_constraints)) != NULL) { + row = hp->index; + pp->rs = pp->First_rside; + while ((pp->rs != NULL) && (pp->rs->row != row)) + pp->rs = pp->rs->next; + } + else { + row = pp->Rows; + if (((hp = puthash(name, row, NULL, pp->Hash_constraints)) == NULL) + ) return(FALSE); + if(row) + pp->rs = NULL; + } + + return(TRUE); +} + +/* + * transport the data from the intermediate structure to the sparse matrix + * and free the intermediate structure + */ +static int readinput(parse_parm *pp, lprec *lp) +{ + int i, i1, count, index, col; + struct column *cp, *tcp; + hashelem *hp; + struct rside *rp; + signed char *negateAndSOS = NULL; + LPSREAL *row = NULL, a; + int *rowno = NULL; + MYBOOL SOSinMatrix = FALSE; + struct SOSrowdata *SOSrowdata = NULL; + struct SOSrow *SOSrow, *SOSrow1; + + if(lp != NULL) { + if (CALLOC(negateAndSOS, 1 + pp->Rows, signed char) == NULL) + return(FALSE); + + rp = pp->First_rside; + for(i = pp->Rows; (i >= 0) && (rp != NULL); i--) { + if(rp->SOStype == 0) + negateAndSOS[i] = (rp->negate ? -1 : 0); + else + negateAndSOS[i] = (signed char) rp->SOStype; + + rp = rp->next; + } + + /* fill names with the rownames */ + hp = pp->Hash_constraints->first; + while(hp != NULL) { + if (/* (negateAndSOS[hp->index] <= 0) && */ (!set_row_name(lp, hp->index, hp->name))) + return(FALSE); + hp = hp->nextelem; + } + } + + for(i = pp->Rows; i >= 0; i--) { + rp = pp->First_rside; + if((lp != NULL) && (rp != NULL)) { + if(rp->SOStype == 0) { + if (rp->negate) { + switch (rp->relat) { + case LE: + rp->relat = GE; + break; + case GE: + rp->relat = LE; + break; + } + switch (rp->range_relat) { + case LE: + rp->range_relat = GE; + break; + case GE: + rp->range_relat = LE; + break; + } + rp->range_value = -rp->range_value; + rp->value = -rp->value; + } + + if((rp->range_relat >= 0) && (rp->value == lp->infinite)) { + rp->value = rp->range_value; + rp->relat = rp->range_relat; + rp->range_relat = -1; + } + else if((rp->range_relat >= 0) && (rp->value == -lp->infinite)) { + rp->value = rp->range_value; + rp->relat = rp->range_relat; + rp->range_relat = -1; + } + if ((rp->range_relat >= 0) && (rp->range_value == rp->value)) { + rp->relat = EQ; + rp->range_relat = EQ; + } + if(i) { + set_constr_type(lp, i, rp->relat); + pp->relat[i] = rp->relat; + } + set_rh(lp, i, rp->value); + if (rp->range_relat >= 0) + set_rh_range(lp, i, rp->range_value - rp->value); + } + else { + SOSinMatrix = TRUE; + if(i) + pp->relat[i] = rp->relat; + } + } + if(rp != NULL) { + pp->First_rside = rp->next; + free(rp); /* free memory when data has been read */ + } + else + pp->First_rside = NULL; + } + + while(pp->First_rside != NULL) { + rp = pp->First_rside; + pp->First_rside = rp->next; + free(rp); /* free memory when data has been read */ + } + + /* start reading the Hash_list structure */ + index = 0; + + if((SOSinMatrix) && (CALLOC(SOSrowdata, 1 + pp->Rows, struct SOSrowdata) == NULL)) { + FREE(negateAndSOS); + FREE(row); + FREE(rowno); + return(FALSE); + } + + if((lp != NULL) && + ((MALLOC(row, 1 + pp->Rows, LPSREAL) == NULL) || (MALLOC(rowno, 1 + pp->Rows, int) == NULL))) { + FREE(SOSrowdata); + FREE(negateAndSOS); + FREE(row); + FREE(rowno); + return(FALSE); + } + + /* for(i = 0; i < pp->Hash_tab->size; i++) { + hp = pp->Hash_tab->table[i]; */ + hp = pp->Hash_tab->first; + while(hp != NULL) { + count = 0; + index++; + cp = pp->coldata[hp->index].firstcol; + col = hp->index + 1; + while(cp != NULL) { + if(lp != NULL) { + if (negateAndSOS[cp->row] <= 0) { + rowno[count] = cp->row; + a = cp->value; + if (negateAndSOS[cp->row]) + a = -a; + row[count++] = a; + } + else { + if (MALLOC(SOSrow, 1, struct SOSrow) == NULL) { + FREE(SOSrowdata); + FREE(negateAndSOS); + FREE(row); + FREE(rowno); + return(FALSE); + } + if(SOSrowdata[cp->row].SOSrow == NULL) + SOSrowdata[cp->row].name = strdup(get_row_name(lp, cp->row)); + SOSrow->next = SOSrowdata[cp->row].SOSrow; + SOSrowdata[cp->row].SOSrow = SOSrow; + SOSrowdata[cp->row].type = negateAndSOS[cp->row]; + SOSrow->col = col; + SOSrow->value = cp->value; + } + } + tcp = cp; + /* cp = cp->next; */ + cp = cp->prev; + free(tcp); /* free memory when data has been read */ + } + + if(lp != NULL) { + add_columnex(lp, count, row, rowno); + /* check for bound */ + if(pp->coldata[hp->index].lowbo == -DEF_INFINITE * 10.0) + /* lp->orig_lowbo[pp->Rows+index] = 0.0; */ + set_lowbo(lp, index, 0); + else + /* lp->orig_lowbo[pp->Rows+index] = pp->coldata[hp->index].lowbo; */ + set_lowbo(lp, index, pp->coldata[hp->index].lowbo); + /* lp->orig_upbo[pp->Rows+index] = pp->coldata[hp->index].upbo; */ + if(pp->coldata[hp->index].upbo >= DEF_INFINITE) + set_upbo(lp, index, DEF_INFINITE); + else + set_upbo(lp, index, pp->coldata[hp->index].upbo); + + /* check if it must be an integer variable */ + if(pp->coldata[hp->index].must_be_int) { + /* lp->must_be_int[pp->Rows + index]=TRUE; */ + set_int(lp, index, TRUE); + } + if(pp->coldata[hp->index].must_be_sec) { + set_semicont(lp, index, TRUE); + } + if(pp->coldata[hp->index].must_be_free) { + set_unbounded(lp, index); + } + + /* copy name of column variable */ + if (!set_col_name(lp, index, hp->name)) { + FREE(SOSrowdata); + FREE(negateAndSOS); + FREE(row); + FREE(rowno); + return(FALSE); + } + + /* put matrix values in intermediate row */ + /* cp = hp->col; */ + /* cp = hp->firstcol; */ + } + + /* thp = hp; */ + /* hp = hp->next; */ + /* free(thp->name); */ + /* free(thp); */ /* free memory when data has been read */ + + hp = hp->nextelem; + + } + /* pp->Hash_tab->table[i] = NULL; */ + + FREE(pp->coldata); + + if(SOSrowdata != NULL) { + struct structSOS *structSOS; + struct structSOSvars *SOSvars, *SOSvars1; + int SOSweight = 0; + + for(i = 1; i <= pp->Rows; i++) { + SOSrow = SOSrowdata[i].SOSrow; + if(SOSrow != NULL) { + if(MALLOC(structSOS, 1, struct structSOS) == NULL) { + FREE(SOSrowdata); + FREE(negateAndSOS); + FREE(row); + FREE(rowno); + return(FALSE); + } + structSOS->Nvars = 0; + structSOS->type = SOSrowdata[i].type; + structSOS->weight = ++SOSweight; + structSOS->name = strdup(SOSrowdata[i].name); + structSOS->LastSOSvars = NULL; + structSOS->next = pp->FirstSOS; + pp->FirstSOS = structSOS; + SOSvars = NULL; + while(SOSrow != NULL) { + SOSvars1 = SOSvars; + MALLOC(SOSvars, 1, struct structSOSvars); + SOSvars->next = SOSvars1; + SOSvars->col = SOSrow->col; + SOSvars->weight = SOSrow->value; + SOSvars->name = NULL; + structSOS->Nvars++; + SOSrow1 = SOSrow->next; + FREE(SOSrow); + SOSrow = SOSrow1; + } + structSOS->SOSvars = SOSvars; + } + } + FREE(SOSrowdata); + } + + while(pp->FirstSOS != NULL) + { + struct structSOSvars *SOSvars, *SOSvars1; + int *sosvars, n, col; + LPSREAL *weights; + hashelem *hp; + + pp->LastSOS = pp->FirstSOS; + pp->FirstSOS = pp->FirstSOS->next; + SOSvars = pp->LastSOS->SOSvars; + if(lp != NULL) { + MALLOC(sosvars, pp->LastSOS->Nvars, int); + MALLOC(weights, pp->LastSOS->Nvars, double); + } + else { + sosvars = NULL; + weights = NULL; + } + n = 0; + while(SOSvars != NULL) + { + SOSvars1 = SOSvars; + SOSvars = SOSvars->next; + if(lp != NULL) { + col = SOSvars1->col; + if(col == 0) + if((hp = findhash(SOSvars1->name, lp->colname_hashtab)) != NULL) + col = hp->index; + if (col) { + sosvars[n] = col; + weights[n++] = SOSvars1->weight; + } + } + FREE(SOSvars1->name); + FREE(SOSvars1); + } + if(lp != NULL) { + add_SOS(lp, pp->LastSOS->name, pp->LastSOS->type, pp->LastSOS->weight, n, sosvars, weights); + FREE(weights); + FREE(sosvars); + } + FREE(pp->LastSOS->name); + FREE(pp->LastSOS); + } + + if(negateAndSOS != NULL) { + for(i1 = 0, i = 1; i <= pp->Rows; i++) + if(negateAndSOS[i] <= 0) + pp->relat[++i1] = pp->relat[i]; + +#if 01 + for(i = pp->Rows; i > 0; i--) + if(negateAndSOS[i] > 0) { + del_constraint(lp, i); + pp->Rows--; + } +#endif + } + + /* the following should be replaced by a call to the MPS print routine MB */ + +#if 0 + if(pp->Verbose) { + int j; + + printf("\n"); + printf("**********Data read**********\n"); + printf("Rows : %d\n", pp->Rows); + printf("Columns : %d\n", pp->Columns); + printf("Nonnuls : %d\n", pp->Non_zeros); + printf("NAME LPPROB\n"); + printf("ROWS\n"); + for(i = 0; i <= pp->Rows; i++) { + if(pp->relat[i] == LE) + printf(" L "); + else if(pp->relat[i] == EQ) + printf(" E "); + else if(pp->relat[i] == GE) + printf(" G "); + else if(pp->relat[i] == OF) + printf(" N "); + printf("%s\n", get_row_name(lp, i)); + } + + printf("COLUMNS\n"); + j = 0; + for(i = 0; i < pp->Non_zeros; i++) { + if(i == lp->col_end[j]) + j++; + printf(" %-8s %-8s %g\n", get_col_name(lp, j), + get_row_name(lp, lp->mat[i].row_nr), (double)lp->mat[i].value); + } + + printf("RHS\n"); + for(i = 0; i <= pp->Rows; i++) { + printf(" RHS %-8s %g\n", get_row_name(lp, i), + (double)lp->orig_rhs[i]); + } + + printf("RANGES\n"); + for(i = 1; i <= pp->Rows; i++) + if((lp->orig_upbo[i] != lp->infinite) && (lp->orig_upbo[i] != 0)) { + printf(" RGS %-8s %g\n", get_row_name(lp, i), + (double)lp->orig_upbo[i]); + } + else if((lp->orig_lowbo[i] != 0)) { + printf(" RGS %-8s %g\n", get_row_name(lp, i), + (double)-lp->orig_lowbo[i]); + } + + printf("BOUNDS\n"); + for(i = pp->Rows + 1; i <= pp->Rows + pp->Columns; i++) { + if((lp->orig_lowbo[i] != 0) && (lp->orig_upbo[i] < lp->infinite) && + (lp->orig_lowbo[i] == lp->orig_upbo[i])) { + printf(" FX BND %-8s %g\n", get_col_name(lp, i - pp->Rows), + (double)lp->orig_upbo[i]); + } + else { + if(lp->orig_upbo[i] < lp->infinite) + printf(" UP BND %-8s %g\n", get_col_name(lp, i - pp->Rows), + (double)lp->orig_upbo[i]); + if(lp->orig_lowbo[i] > 0) + printf(" LO BND %-8s %g\n", get_col_name(lp, i - pp->Rows), + (double)lp->orig_lowbo[i]); + } + } + + printf("ENDATA\n"); + } +#endif + + FREE(row); + FREE(rowno); + FREE(negateAndSOS); + return(TRUE); +} /* readinput */ + +lprec *yacc_read(lprec *lp, int verbose, char *lp_name, int (*parse) (parse_parm *pp), parse_parm *pp, void (*delete_allocated_memory) (parse_parm *pp)) +{ + LPSREAL *orig_upbo; + int stat = -1; + lprec *lp0 = lp; + + pp->title = lp_name; + + if(!init_read(pp, verbose)) + error(pp, CRITICAL, "init_read failed"); + else if (setjmp(pp->jump_buf) == 0) + stat = parse(pp); + + delete_allocated_memory(pp); + + pp->Rows--; + + pp->relat = NULL; + if((stat != 0) || (CALLOC(pp->relat, pp->Rows + 1, short) != NULL)) { + if(stat == 0) { + if(lp == NULL) { + lp = make_lp(pp->Rows, 0); + } + else { + int NRows; + + for(NRows = get_Nrows(lp); NRows < pp->Rows; NRows++) + add_constraintex(lp, 0, NULL, NULL, LE, 0); + } + } + else + lp = NULL; + if ((stat != 0) || (lp != NULL)) { + if(lp != NULL) { + set_verbose(lp, pp->Verbose); + } + + if (!readinput(pp, lp)) { + if((lp != NULL) && (lp0 == NULL)) + delete_lp(lp); + lp = NULL; + } + + if(lp != NULL) { + set_lp_name(lp, pp->title); + if(pp->Maximise) + set_maxim(lp); + + if(pp->Rows) { + int row; + + MALLOCCPY(orig_upbo, lp->orig_upbo, 1 + pp->Rows, LPSREAL); + for(row = 1; row <= pp->Rows; row++) + set_constr_type(lp, row, pp->relat[row]); + + memcpy(lp->orig_upbo, orig_upbo, (1 + pp->Rows) * sizeof(*orig_upbo)); /* restore upper bounds (range) */ + FREE(orig_upbo); + } + } + if((pp->title != NULL) && (pp->title != lp_name)) + free(pp->title); + + free_hash_table(pp->Hash_tab); + free_hash_table(pp->Hash_constraints); + } + FREE(pp->relat); + } + null_tmp_store(pp, FALSE); + return(lp); +} diff --git a/src/external/lpsolve/headers/include/colamd.h b/src/external/lpsolve/headers/include/colamd.h new file mode 100644 index 00000000..e8539922 --- /dev/null +++ b/src/external/lpsolve/headers/include/colamd.h @@ -0,0 +1,286 @@ +/* ========================================================================== */ +/* === colamd/symamd prototypes and definitions ============================= */ +/* ========================================================================== */ + +/* + You must include this file (colamd.h) in any routine that uses colamd, + symamd, or the related macros and definitions. + + Authors: + + The authors of the code itself are Stefan I. Larimore and Timothy A. + Davis (davis@cise.ufl.edu), University of Florida. The algorithm was + developed in collaboration with John Gilbert, Xerox PARC, and Esmond + Ng, Oak Ridge National Laboratory. + + Date: + + May 4, 2001. Version 2.1. + + Acknowledgements: + + This work was supported by the National Science Foundation, under + grants DMS-9504974 and DMS-9803599. + + Notice: + + Copyright (c) 1998-2001 by the University of Florida. + All Rights Reserved. + + THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY + EXPRESSED OR IMPLIED. ANY USE IS AT YOUR OWN RISK. + + Permission is hereby granted to use or copy this program for any + purpose, provided the above notices are retained on all copies. + User documentation of any code that uses this code must cite the + Authors, the Copyright, and "Used by permission." If this code is + accessible from within Matlab, then typing "help colamd" and "help + symamd" must cite the Authors. Permission to modify the code and to + distribute modified code is granted, provided the above notices are + retained, and a notice that the code was modified is included with the + above copyright notice. You must also retain the Availability + information below, of the original version. + + This software is provided free of charge. + + Availability: + + The colamd/symamd library is available at + + http://www.cise.ufl.edu/research/sparse/colamd + + This is the http://www.cise.ufl.edu/research/sparse/colamd/colamd.h + file. It is required by the colamd.c, colamdmex.c, and symamdmex.c + files, and by any C code that calls the routines whose prototypes are + listed below, or that uses the colamd/symamd definitions listed below. + +*/ + +#ifndef COLAMD_H +#define COLAMD_H + +/* ========================================================================== */ +/* === Include files ======================================================== */ +/* ========================================================================== */ + +#include + +/* ========================================================================== */ +/* === Knob and statistics definitions ====================================== */ +/* ========================================================================== */ + +/* size of the knobs [ ] array. Only knobs [0..1] are currently used. */ +#define COLAMD_KNOBS 20 + +/* number of output statistics. Only stats [0..6] are currently used. */ +#define COLAMD_STATS 20 + +/* knobs [0] and stats [0]: dense row knob and output statistic. */ +#define COLAMD_DENSE_ROW 0 + +/* knobs [1] and stats [1]: dense column knob and output statistic. */ +#define COLAMD_DENSE_COL 1 + +/* stats [2]: memory defragmentation count output statistic */ +#define COLAMD_DEFRAG_COUNT 2 + +/* stats [3]: colamd status: zero OK, > 0 warning or notice, < 0 error */ +#define COLAMD_STATUS 3 + +/* stats [4..6]: error info, or info on jumbled columns */ +#define COLAMD_INFO1 4 +#define COLAMD_INFO2 5 +#define COLAMD_INFO3 6 + +/* error codes returned in stats [3]: */ +#define COLAMD_OK (0) +#define COLAMD_OK_BUT_JUMBLED (1) +#define COLAMD_ERROR_A_not_present (-1) +#define COLAMD_ERROR_p_not_present (-2) +#define COLAMD_ERROR_nrow_negative (-3) +#define COLAMD_ERROR_ncol_negative (-4) +#define COLAMD_ERROR_nnz_negative (-5) +#define COLAMD_ERROR_p0_nonzero (-6) +#define COLAMD_ERROR_A_too_small (-7) +#define COLAMD_ERROR_col_length_negative (-8) +#define COLAMD_ERROR_row_index_out_of_bounds (-9) +#define COLAMD_ERROR_out_of_memory (-10) +#define COLAMD_ERROR_internal_error (-999) + + + +/* ========================================================================== */ +/* === Row and Column structures ============================================ */ +/* ========================================================================== */ + +/* User code that makes use of the colamd/symamd routines need not directly */ +/* reference these structures. They are used only for the COLAMD_RECOMMENDED */ +/* macro. */ + +typedef struct Colamd_Col_struct +{ + int start ; /* index for A of first row in this column, or DEAD */ + /* if column is dead */ + int length ; /* number of rows in this column */ + union + { + int thickness ; /* number of original columns represented by this */ + /* col, if the column is alive */ + int parent ; /* parent in parent tree super-column structure, if */ + /* the column is dead */ + } shared1 ; + union + { + int score ; /* the score used to maintain heap, if col is alive */ + int order ; /* pivot ordering of this column, if col is dead */ + } shared2 ; + union + { + int headhash ; /* head of a hash bucket, if col is at the head of */ + /* a degree list */ + int hash ; /* hash value, if col is not in a degree list */ + int prev ; /* previous column in degree list, if col is in a */ + /* degree list (but not at the head of a degree list) */ + } shared3 ; + union + { + int degree_next ; /* next column, if col is in a degree list */ + int hash_next ; /* next column, if col is in a hash list */ + } shared4 ; + +} Colamd_Col ; + +typedef struct Colamd_Row_struct +{ + int start ; /* index for A of first col in this row */ + int length ; /* number of principal columns in this row */ + union + { + int degree ; /* number of principal & non-principal columns in row */ + int p ; /* used as a row pointer in init_rows_cols () */ + } shared1 ; + union + { + int mark ; /* for computing set differences and marking dead rows*/ + int first_column ;/* first column in row (used in garbage collection) */ + } shared2 ; + +} Colamd_Row ; + +/* ========================================================================== */ +/* === Colamd recommended memory size ======================================= */ +/* ========================================================================== */ + +/* + The recommended length Alen of the array A passed to colamd is given by + the COLAMD_RECOMMENDED (nnz, n_row, n_col) macro. It returns -1 if any + argument is negative. 2*nnz space is required for the row and column + indices of the matrix. COLAMD_C (n_col) + COLAMD_R (n_row) space is + required for the Col and Row arrays, respectively, which are internal to + colamd. An additional n_col space is the minimal amount of "elbow room", + and nnz/5 more space is recommended for run time efficiency. + + This macro is not needed when using symamd. +*/ + +#define COLAMD_C(n_col) (((n_col) + 1) * sizeof (Colamd_Col) / sizeof (int)) +#define COLAMD_R(n_row) (((n_row) + 1) * sizeof (Colamd_Row) / sizeof (int)) + +#define COLAMD_RECOMMENDED(nnz, n_row, n_col) \ +( \ +((nnz) < 0 || (n_row) < 0 || (n_col) < 0) \ +? \ + (-1) \ +: \ + (int) (2 * (nnz) + COLAMD_C (n_col) + COLAMD_R (n_row) + (n_col) + ((nnz) / 5)) \ +) + +/* ========================================================================== */ +/* === Prototypes of user-callable routines ================================= */ +/* ========================================================================== */ + +/* +#ifdef __cplusplus + #define __EXTERN_C extern "C" +#else + #define __EXTERN_C +#endif +*/ + +#ifndef __BORLANDC__ + + #ifdef __cplusplus + #define __EXTERN_C extern "C" + #else + #define __EXTERN_C + #endif + +#else /* Otherwise set up for the Borland compiler */ + + #define __EXTERN_C extern "C" + +#endif + +#ifdef __cplusplus +__EXTERN_C { +#endif + + + +int colamd_recommended /* returns recommended value of Alen, */ + /* or (-1) if input arguments are erroneous */ +( + int nnz, /* nonzeros in A */ + int n_row, /* number of rows in A */ + int n_col /* number of columns in A */ +) ; + +void colamd_set_defaults /* sets default parameters */ +( /* knobs argument is modified on output */ + double knobs [COLAMD_KNOBS] /* parameter settings for colamd */ +) ; + +int colamd /* returns (1) if successful, (0) otherwise*/ +( /* A and p arguments are modified on output */ + int n_row, /* number of rows in A */ + int n_col, /* number of columns in A */ + int Alen, /* size of the array A */ + int A [], /* row indices of A, of size Alen */ + int p [], /* column pointers of A, of size n_col+1 */ + double knobs [COLAMD_KNOBS],/* parameter settings for colamd */ + int stats [COLAMD_STATS] /* colamd output statistics and error codes */ +) ; + +int symamd /* return (1) if OK, (0) otherwise */ +( + int n, /* number of rows and columns of A */ + int A [], /* row indices of A */ + int p [], /* column pointers of A */ + int perm [], /* output permutation, size n_col+1 */ + double knobs [COLAMD_KNOBS], /* parameters (uses defaults if NULL) */ + int stats [COLAMD_STATS], /* output statistics and error codes */ + void * (*allocate) (size_t, size_t), + /* pointer to calloc (ANSI C) or */ + /* mxCalloc (for Matlab mexFunction) */ + void (*release) (void *) + /* pointer to free (ANSI C) or */ + /* mxFree (for Matlab mexFunction) */ +) ; + +void colamd_report +( + int stats [COLAMD_STATS] +) ; + +void symamd_report +( + int stats [COLAMD_STATS] +) ; + +#endif /* COLAMD_H */ + + +#ifdef __cplusplus +} +#endif + diff --git a/src/external/lpsolve/headers/include/commonlib.h b/src/external/lpsolve/headers/include/commonlib.h new file mode 100644 index 00000000..d5fe84be --- /dev/null +++ b/src/external/lpsolve/headers/include/commonlib.h @@ -0,0 +1,344 @@ +// Copyright(c) 2016-2018 Kjell Konis . +// Version: 5.5.2.0-17 +// Description: The lpSolveAPI package provides an R interface to 'lp_solve', +// a Mixed Integer Linear Programming (MILP) solver with support for pure +// linear, (mixed) integer/binary, semi-continuous and special ordered sets +// (SOS) models. +// License: LGPL-2 +// Repository: CRAN + + +#ifndef HEADER_commonlib +#define HEADER_commonlib + +#include +#include +#ifdef WIN32 + #include +#endif + +/* static char SpaceChars[3] = {" " "\7"}; */ +/* static char NumChars[14] = {"0123456789-+."}; */ + +#define BIGNUMBER 1.0e+30 +#define TINYNUMBER 1.0e-04 +#define MACHINEPREC 2.22e-16 +#define MATHPREC 1.0e-16 +#define ERRLIMIT 1.0e-06 + +#ifndef LINEARSEARCH + #define LINEARSEARCH 5 +#endif + +#if 0 + #define INTEGERTIME +#endif + +/* ************************************************************************ */ +/* Define loadable library function headers */ +/* ************************************************************************ */ +#if (defined WIN32) || (defined WIN64) + #define my_LoadLibrary(name) LoadLibrary(name) + #define my_GetProcAddress(handle, name) GetProcAddress(handle, name) + #define my_FreeLibrary(handle) FreeLibrary(handle); \ + handle = NULL +#else + #define my_LoadLibrary(name) dlopen(name, RTLD_LAZY) + #define my_GetProcAddress(handle, name) dlsym(handle, name) + #define my_FreeLibrary(handle) dlclose(handle); \ + handle = NULL +#endif + + +/* ************************************************************************ */ +/* Define sizes of standard number types */ +/* ************************************************************************ */ +#ifndef LLONG + #if defined __BORLANDC__ + #define LLONG __int64 + #elif !defined _MSC_VER || _MSC_VER >= 1310 + #define LLONG long long + #else + #define LLONG __int64 + #endif +#endif + +#ifndef MYBOOL + #if 0 + #define MYBOOL unsigned int + #else + #define MYBOOL unsigned char + #endif +#endif + +#ifndef LPSREAL + #define LPSREAL double +#endif +#ifndef BLAS_prec + #define BLAS_prec "d" /* The BLAS precision prefix must correspond to the LPSREAL type */ +#endif + +#ifndef REALXP + #if 1 + #define REALXP long double /* Set local accumulation variable as long double */ + #else + #define REALXP LPSREAL /* Set local accumulation as default precision */ + #endif +#endif + +#ifndef my_boolstr + #define my_boolstr(x) (!(x) ? "FALSE" : "TRUE") +#endif + +#ifndef NULL + #define NULL 0 +#endif + +#ifndef FALSE + #define FALSE 0 + #define TRUE 1 +#endif + +#ifndef DEF_STRBUFSIZE + #define DEF_STRBUFSIZE 512 +#endif +#ifndef MAXINT32 + #define MAXINT32 2147483647 +#endif +#ifndef MAXUINT32 + #define MAXUINT32 4294967295 +#endif + +#ifndef MAXINT64 + #if defined _LONGLONG || defined __LONG_LONG_MAX__ || defined LLONG_MAX + #define MAXINT64 9223372036854775807ll + #else + #define MAXINT64 9223372036854775807l + #endif +#endif +#ifndef MAXUINT64 + #if defined _LONGLONG || defined __LONG_LONG_MAX__ || defined LLONG_MAX + #define MAXUINT64 18446744073709551615ll + #else + #define MAXUINT64 18446744073709551615l + #endif +#endif + +#ifndef DOFASTMATH + #define DOFASTMATH +#endif + + +#ifndef CALLOC +#define CALLOC(ptr, nr)\ + if(!((void *) ptr = calloc((size_t)(nr), sizeof(*ptr))) && nr) {\ + printf("calloc of %d bytes failed on line %d of file %s\n",\ + (size_t) nr * sizeof(*ptr), __LINE__, __FILE__);\ + } +#endif + +#ifndef MALLOC +#define MALLOC(ptr, nr)\ + if(!((void *) ptr = malloc((size_t)((size_t) (nr) * sizeof(*ptr)))) && nr) {\ + printf("malloc of %d bytes failed on line %d of file %s\n",\ + (size_t) nr * sizeof(*ptr), __LINE__, __FILE__);\ + } +#endif + +#ifndef REALLOC +#define REALLOC(ptr, nr)\ + if(!((void *) ptr = realloc(ptr, (size_t)((size_t) (nr) * sizeof(*ptr)))) && nr) {\ + printf("realloc of %d bytes failed on line %d of file %s\n",\ + (size_t) nr * sizeof(*ptr), __LINE__, __FILE__);\ + } +#endif + +#ifndef FREE +#define FREE(ptr)\ + if((void *) ptr != NULL) {\ + free(ptr);\ + ptr = NULL; \ + } +#endif + +#ifndef MEMCOPY +#define MEMCOPY(nptr, optr, nr)\ + memcpy((nptr), (optr), (size_t)((size_t)(nr) * sizeof(*(optr)))) +#endif + +#ifndef MEMMOVE +#define MEMMOVE(nptr, optr, nr)\ + memmove((nptr), (optr), (size_t)((size_t)(nr) * sizeof(*(optr)))) +#endif + +#ifndef MEMALLOCCOPY +#define MEMALLOCCOPY(nptr, optr, nr)\ + {MALLOC(nptr, (size_t)(nr));\ + MEMCOPY(nptr, optr, (size_t)(nr));} +#endif + +#ifndef STRALLOCCOPY +#define STRALLOCCOPY(nstr, ostr)\ + {nstr = (char *) malloc((size_t) (strlen(ostr) + 1));\ + strcpy(nstr, ostr);} +#endif + +#ifndef MEMCLEAR +/*#define useMMX*/ +#ifdef useMMX + #define MEMCLEAR(ptr, nr)\ + mem_set((ptr), '\0', (size_t)((size_t)(nr) * sizeof(*(ptr)))) +#else + #define MEMCLEAR(ptr, nr)\ + memset((ptr), '\0', (size_t)((size_t)(nr) * sizeof(*(ptr)))) +#endif +#endif + + +#define MIN(x, y) ((x) < (y) ? (x) : (y)) +#define MAX(x, y) ((x) > (y) ? (x) : (y)) +#define SETMIN(x, y) if((x) > (y)) x = y +#define SETMAX(x, y) if((x) < (y)) x = y +#define LIMIT(lo, x, hi) ((x < (lo) ? lo : ((x) > hi ? hi : x))) +#define BETWEEN(x, a, b) (MYBOOL) (((x)-(a)) * ((x)-(b)) <= 0) +#define IF(t, x, y) ((t) ? (x) : (y)) +#define SIGN(x) ((x) < 0 ? -1 : 1) + +#define DELTA_SIZE(newSize, oldSize) ((int) ((newSize) * MIN(1.33, pow(1.5, fabs((double)newSize)/((oldSize+newSize)+1))))) + +#ifndef CMP_CALLMODEL +#if (defined WIN32) || (defined WIN64) + #define CMP_CALLMODEL _cdecl +#else + #define CMP_CALLMODEL +#endif +#endif + +typedef int (CMP_CALLMODEL findCompare_func)(const void *current, const void *candidate); +#define CMP_COMPARE(current, candidate) ( current < candidate ? -1 : (current > candidate ? 1 : 0) ) +#define CMP_ATTRIBUTES(item) (((char *) attributes)+(item)*recsize) +#define CMP_TAGS(item) (((char *) tags)+(item)*tagsize) + +#ifndef UNIONTYPE + #ifdef __cplusplus + #define UNIONTYPE + #else + #define UNIONTYPE union + #endif +#endif + +/* This defines a 16 byte sort record (in both 32 and 64 bit OS-es) */ +typedef struct _QSORTrec1 +{ + void *ptr; + void *ptr2; +} QSORTrec1; +typedef struct _QSORTrec2 +{ + void *ptr; + double realval; +} QSORTrec2; +typedef struct _QSORTrec3 +{ + void *ptr; + int intval; + int intpar1; +} QSORTrec3; +typedef struct _QSORTrec4 +{ + LPSREAL realval; + int intval; + int intpar1; +} QSORTrec4; +typedef struct _QSORTrec5 +{ + double realval; + long int longval; +} QSORTrec5; +typedef struct _QSORTrec6 +{ + double realval; + double realpar1; +} QSORTrec6; +typedef struct _QSORTrec7 +{ + int intval; + int intpar1; + int intpar2; + int intpar3; +} QSORTrec7; +union QSORTrec +{ + QSORTrec1 pvoid2; + QSORTrec2 pvoidreal; + QSORTrec3 pvoidint2; + QSORTrec4 realint2; + QSORTrec5 reallong; + QSORTrec6 real2; + QSORTrec7 int4; +}; + + +#ifdef __cplusplus + extern "C" { +#endif + +int intpow(int base, int exponent); +int mod(int n, int d); + +void strtoup(char *s); +void strtolo(char *s); +void strcpyup(char *t, char *s); +void strcpylo(char *t, char *s); + +MYBOOL so_stdname(char *stdname, char *descname, int buflen); +int gcd(LLONG a, LLONG b, int *c, int *d); + +int findIndex(int target, int *attributes, int count, int offset); +int findIndexEx(void *target, void *attributes, int count, int offset, int recsize, findCompare_func findCompare, MYBOOL ascending); + +void qsortex_swap(void *attributes, int l, int r, int recsize, + void *tags, int tagsize, char *save, char *savetag); + +int qsortex(void *attributes, int count, int offset, int recsize, MYBOOL descending, findCompare_func findCompare, void *tags, int tagsize); + +int CMP_CALLMODEL compareCHAR(const void *current, const void *candidate); +int CMP_CALLMODEL compareINT(const void *current, const void *candidate); +int CMP_CALLMODEL compareREAL(const void *current, const void *candidate); +void hpsort(void *attributes, int count, int offset, int recsize, MYBOOL descending, findCompare_func findCompare); +void hpsortex(void *attributes, int count, int offset, int recsize, MYBOOL descending, findCompare_func findCompare, int *tags); + +void QS_swap(UNIONTYPE QSORTrec a[], int i, int j); +int QS_addfirst(UNIONTYPE QSORTrec a[], void *mydata); +int QS_append(UNIONTYPE QSORTrec a[], int ipos, void *mydata); +void QS_replace(UNIONTYPE QSORTrec a[], int ipos, void *mydata); +void QS_insert(UNIONTYPE QSORTrec a[], int ipos, void *mydata, int epos); +void QS_delete(UNIONTYPE QSORTrec a[], int ipos, int epos); +MYBOOL QS_execute(UNIONTYPE QSORTrec a[], int count, findCompare_func findCompare, int *nswaps); + +int sortByREAL(int *item, LPSREAL *weight, int size, int offset, MYBOOL unique); +int sortByINT(int *item, int *weight, int size, int offset, MYBOOL unique); +LPSREAL sortREALByINT(LPSREAL *item, int *weight, int size, int offset, MYBOOL unique); + +double timeNow(void); + +void blockWriteBOOL(FILE *output, char *label, MYBOOL *myvector, int first, int last, MYBOOL asRaw); +void blockWriteINT(FILE *output, char *label, int *myvector, int first, int last); +void blockWriteREAL(FILE *output, char *label, LPSREAL *myvector, int first, int last); + +void printvec( int n, LPSREAL *x, int modulo ); +void printmatSQ( int size, int n, LPSREAL *X, int modulo ); +void printmatUT( int size, int n, LPSREAL *U, int modulo ); + +unsigned int catchFPU(unsigned int mask); + +#if defined _MSC_VER +int fileCount( char *filemask ); +MYBOOL fileSearchPath( char *envvar, char *searchfile, char *foundpath ); +#endif + +#ifdef __cplusplus + } +#endif + +#endif /* HEADER_commonlib */ diff --git a/src/external/lpsolve/headers/include/ini.h b/src/external/lpsolve/headers/include/ini.h new file mode 100644 index 00000000..e707ee01 --- /dev/null +++ b/src/external/lpsolve/headers/include/ini.h @@ -0,0 +1,26 @@ +// Copyright(c) 2016-2018 Kjell Konis . +// Version: 5.5.2.0-17 +// Description: The lpSolveAPI package provides an R interface to 'lp_solve', +// a Mixed Integer Linear Programming (MILP) solver with support for pure +// linear, (mixed) integer/binary, semi-continuous and special ordered sets +// (SOS) models. +// License: LGPL-2 +// Repository: CRAN + +#include + +#ifdef __cplusplus +__EXTERN_C { +#endif + +extern FILE *ini_create(char *filename); +extern FILE *ini_open(char *filename); +extern void ini_writecomment(FILE *fp, char *comment); +extern void ini_writeheader(FILE *fp, char *header, int addnewline); +extern void ini_writedata(FILE *fp, char *name, char *data); +extern int ini_readdata(FILE *fp, char *data, int szdata, int withcomment); +extern void ini_close(FILE *fp); + +#ifdef __cplusplus +} +#endif diff --git a/src/external/lpsolve/headers/include/lp_BFP.h b/src/external/lpsolve/headers/include/lp_BFP.h new file mode 100644 index 00000000..0f36ec28 --- /dev/null +++ b/src/external/lpsolve/headers/include/lp_BFP.h @@ -0,0 +1,90 @@ +// Copyright(c) 2016-2018 Kjell Konis . +// Version: 5.5.2.0-17 +// Description: The lpSolveAPI package provides an R interface to 'lp_solve', +// a Mixed Integer Linear Programming (MILP) solver with support for pure +// linear, (mixed) integer/binary, semi-continuous and special ordered sets +// (SOS) models. +// License: LGPL-2 +// Repository: CRAN + +/* ---------------------------------------------------------------------------------- */ +/* lp_solve v5+ headers for basis inversion / factorization libraries */ +/* ---------------------------------------------------------------------------------- */ +#define BFP_STATUS_RANKLOSS -1 +#define BFP_STATUS_SUCCESS 0 +#define BFP_STATUS_SINGULAR 1 +#define BFP_STATUS_UNSTABLE 2 +#define BFP_STATUS_NOPIVOT 3 +#define BFP_STATUS_DIMERROR 4 +#define BFP_STATUS_DUPLICATE 5 +#define BFP_STATUS_NOMEMORY 6 +#define BFP_STATUS_ERROR 7 /* Unspecified, command-related error */ +#define BFP_STATUS_FATAL 8 + +#define BFP_STAT_ERROR -1 +#define BFP_STAT_REFACT_TOTAL 0 +#define BFP_STAT_REFACT_TIMED 1 +#define BFP_STAT_REFACT_DENSE 2 + +#ifndef BFP_CALLMODEL + #ifdef WIN32 + #define BFP_CALLMODEL __stdcall /* "Standard" call model */ + #else + #define BFP_CALLMODEL + #endif +#endif + +#ifdef RoleIsExternalInvEngine + #define __BFP_EXPORT_TYPE __EXPORT_TYPE +#else + #define __BFP_EXPORT_TYPE +#endif + + +/* Routines with UNIQUE implementations for each inversion engine */ +/* ---------------------------------------------------------------------------------- */ +char __BFP_EXPORT_TYPE *(BFP_CALLMODEL bfp_name)(void); +void __BFP_EXPORT_TYPE (BFP_CALLMODEL bfp_free)(lprec *lp); +MYBOOL __BFP_EXPORT_TYPE (BFP_CALLMODEL bfp_resize)(lprec *lp, int newsize); +int __BFP_EXPORT_TYPE (BFP_CALLMODEL bfp_nonzeros)(lprec *lp, MYBOOL maximum); +int __BFP_EXPORT_TYPE (BFP_CALLMODEL bfp_memallocated)(lprec *lp); +int __BFP_EXPORT_TYPE (BFP_CALLMODEL bfp_preparefactorization)(lprec *lp); +int __BFP_EXPORT_TYPE (BFP_CALLMODEL bfp_factorize)(lprec *lp, int uservars, int Bsize, MYBOOL *usedpos, MYBOOL final); +MYBOOL __BFP_EXPORT_TYPE (BFP_CALLMODEL bfp_finishupdate)(lprec *lp, MYBOOL changesign); +void __BFP_EXPORT_TYPE (BFP_CALLMODEL bfp_ftran_normal)(lprec *lp, LPSREAL *pcol, int *nzidx); +void __BFP_EXPORT_TYPE (BFP_CALLMODEL bfp_ftran_prepare)(lprec *lp, LPSREAL *pcol, int *nzidx); +void __BFP_EXPORT_TYPE (BFP_CALLMODEL bfp_btran_normal)(lprec *lp, LPSREAL *prow, int *nzidx); +int __BFP_EXPORT_TYPE (BFP_CALLMODEL bfp_status)(lprec *lp); +int __BFP_EXPORT_TYPE (BFP_CALLMODEL bfp_findredundant)(lprec *lp, int items, getcolumnex_func cb, int *maprow, int*mapcol); + + +/* Routines SHARED for all inverse implementations; located in lp_BFP1.c */ +/* ---------------------------------------------------------------------------------- */ +MYBOOL __BFP_EXPORT_TYPE (BFP_CALLMODEL bfp_compatible)(lprec *lp, int bfpversion, int lpversion, int sizeofvar); +int __BFP_EXPORT_TYPE (BFP_CALLMODEL bfp_indexbase)(lprec *lp); +int __BFP_EXPORT_TYPE (BFP_CALLMODEL bfp_rowoffset)(lprec *lp); +int __BFP_EXPORT_TYPE (BFP_CALLMODEL bfp_pivotmax)(lprec *lp); +LPSREAL __BFP_EXPORT_TYPE (BFP_CALLMODEL bfp_efficiency)(lprec *lp); +LPSREAL __BFP_EXPORT_TYPE *(BFP_CALLMODEL bfp_pivotvector)(lprec *lp); +int __BFP_EXPORT_TYPE (BFP_CALLMODEL bfp_pivotcount)(lprec *lp); +MYBOOL __BFP_EXPORT_TYPE (BFP_CALLMODEL bfp_mustrefactorize)(lprec *lp); +int __BFP_EXPORT_TYPE (BFP_CALLMODEL bfp_refactcount)(lprec *lp, int kind); +MYBOOL __BFP_EXPORT_TYPE (BFP_CALLMODEL bfp_isSetI)(lprec *lp); +int *bfp_createMDO(lprec *lp, MYBOOL *usedpos, int count, MYBOOL doMDO); +void __BFP_EXPORT_TYPE (BFP_CALLMODEL bfp_updaterefactstats)(lprec *lp); +int BFP_CALLMODEL bfp_rowextra(lprec *lp); + +/* Routines with OPTIONAL SHARED code; template routines suitable for canned */ +/* inverse engines are located in lp_BFP2.c */ +/* ---------------------------------------------------------------------------------- */ +MYBOOL __BFP_EXPORT_TYPE (BFP_CALLMODEL bfp_init)(lprec *lp, int size, int deltasize, char *options); +MYBOOL __BFP_EXPORT_TYPE (BFP_CALLMODEL bfp_restart)(lprec *lp); +MYBOOL __BFP_EXPORT_TYPE (BFP_CALLMODEL bfp_implicitslack)(lprec *lp); +MYBOOL __BFP_EXPORT_TYPE (BFP_CALLMODEL bfp_pivotalloc)(lprec *lp, int newsize); +int __BFP_EXPORT_TYPE (BFP_CALLMODEL bfp_colcount)(lprec *lp); +MYBOOL __BFP_EXPORT_TYPE (BFP_CALLMODEL bfp_canresetbasis)(lprec *lp); +void __BFP_EXPORT_TYPE (BFP_CALLMODEL bfp_finishfactorization)(lprec *lp); +LREAL __BFP_EXPORT_TYPE (BFP_CALLMODEL bfp_prepareupdate)(lprec *lp, int row_nr, int col_nr, LPSREAL *pcol); +LPSREAL __BFP_EXPORT_TYPE (BFP_CALLMODEL bfp_pivotRHS)(lprec *lp, LREAL theta, LPSREAL *pcol); +void __BFP_EXPORT_TYPE (BFP_CALLMODEL bfp_btran_double)(lprec *lp, LPSREAL *prow, int *pnzidx, LPSREAL *drow, int *dnzidx); + diff --git a/src/external/lpsolve/headers/include/lp_Hash.h b/src/external/lpsolve/headers/include/lp_Hash.h new file mode 100644 index 00000000..13befcb4 --- /dev/null +++ b/src/external/lpsolve/headers/include/lp_Hash.h @@ -0,0 +1,52 @@ +// Copyright(c) 2016-2018 Kjell Konis . +// Version: 5.5.2.0-17 +// Description: The lpSolveAPI package provides an R interface to 'lp_solve', +// a Mixed Integer Linear Programming (MILP) solver with support for pure +// linear, (mixed) integer/binary, semi-continuous and special ordered sets +// (SOS) models. +// License: LGPL-2 +// Repository: CRAN + +#ifndef HEADER_lp_hash +#define HEADER_lp_hash + +/* For row and column name hash tables */ + +typedef struct _hashelem +{ + char *name; + int index; + struct _hashelem *next; + struct _hashelem *nextelem; +} hashelem; + +typedef struct /* _hashtable */ +{ + hashelem **table; + int size; + int base; + int count; + struct _hashelem *first; + struct _hashelem *last; +} hashtable; + +#ifdef __cplusplus +extern "C" { +#endif + +STATIC hashtable *create_hash_table(int size, int base); +STATIC void free_hash_table(hashtable *ht); +STATIC hashelem *findhash(const char *name, hashtable *ht); +STATIC hashelem *puthash(const char *name, int index, hashelem **list, hashtable *ht); +STATIC void drophash(const char *name, hashelem **list, hashtable *ht); +STATIC void free_hash_item(hashelem **hp); +STATIC hashtable *copy_hash_table(hashtable *ht, hashelem **list, int newsize); +STATIC int find_var(lprec *lp, char *name, MYBOOL verbose); +STATIC int find_row(lprec *lp, char *name, MYBOOL Unconstrained_rows_found); + +#ifdef __cplusplus + } +#endif + +#endif /* HEADER_lp_hash */ + diff --git a/src/external/lpsolve/headers/include/lp_LUSOL.h b/src/external/lpsolve/headers/include/lp_LUSOL.h new file mode 100644 index 00000000..2babd203 --- /dev/null +++ b/src/external/lpsolve/headers/include/lp_LUSOL.h @@ -0,0 +1,72 @@ +// Copyright(c) 2016-2018 Kjell Konis . +// Version: 5.5.2.0-17 +// Description: The lpSolveAPI package provides an R interface to 'lp_solve', +// a Mixed Integer Linear Programming (MILP) solver with support for pure +// linear, (mixed) integer/binary, semi-continuous and special ordered sets +// (SOS) models. +// License: LGPL-2 +// Repository: CRAN + +#ifndef HEADER_lp_LUSOL +#define HEADER_lp_LUSOL + +/* Include libraries for this inverse system */ +#include "lp_types.h" +#include "lusol.h" + +/* LUSOL defines */ +#ifdef WIN32 +# define LUSOL_UseBLAS +#endif +/*#define MAPSINGULARCOLUMN*/ +#define MATINDEXBASE LUSOL_ARRAYOFFSET /* Inversion engine index start for arrays */ +#define LU_START_SIZE 10000 /* Start size of LU; realloc'ed if needed */ +#define DEF_MAXPIVOT 250 /* Maximum number of pivots before refactorization */ +#define MAX_DELTAFILLIN 2.0 /* Do refactorizations based on sparsity considerations */ +#define TIGHTENAFTER 10 /* Tighten LU pivot criteria only after this number of singularities */ + +/* typedef */ struct _INVrec +{ + int status; /* Last operation status code */ + int dimcount; /* The actual number of LU rows/columns */ + int dimalloc; /* The allocated LU rows/columns size */ + int user_colcount; /* The number of user LU columns */ + LUSOLrec *LUSOL; + int col_enter; /* The full index of the entering column */ + int col_leave; /* The full index of the leaving column */ + int col_pos; /* The B column to be changed at the next update using data in value[.]*/ + LPSREAL *value; + LPSREAL *pcol; /* Reference to the elimination vector */ + LPSREAL theta_enter; /* Value of the entering column theta */ + + int max_Bsize; /* The largest B matrix of user variables */ + int max_colcount; /* The maximum number of user columns in LU */ + int max_LUsize; /* The largest NZ-count of LU-files generated */ + int num_refact; /* Number of times the basis was refactored */ + int num_timed_refact; + int num_dense_refact; + double time_refactstart; /* Time since start of last refactorization-pivots cyle */ + double time_refactnext; /* Time estimated to next refactorization */ + int num_pivots; /* Number of pivots since last refactorization */ + int num_singular; /* The total number of singular updates */ + char *opts; + MYBOOL is_dirty; /* Specifies if a column is incompletely processed */ + MYBOOL force_refact; /* Force refactorization at the next opportunity */ + MYBOOL timed_refact; /* Set if timer-driven refactorization should be active */ + MYBOOL set_Bidentity; /* Force B to be the identity matrix at the next refactorization */ +} /* INVrec */; + + +#ifdef __cplusplus +/* namespace LUSOL */ +extern "C" { +#endif + +/* Put function headers here */ +#include "lp_BFP.h" + +#ifdef __cplusplus + } +#endif + +#endif /* HEADER_lp_LUSOL */ diff --git a/src/external/lpsolve/headers/include/lp_MDO.h b/src/external/lpsolve/headers/include/lp_MDO.h new file mode 100644 index 00000000..60eb330a --- /dev/null +++ b/src/external/lpsolve/headers/include/lp_MDO.h @@ -0,0 +1,27 @@ +// Copyright(c) 2016-2018 Kjell Konis . +// Version: 5.5.2.0-17 +// Description: The lpSolveAPI package provides an R interface to 'lp_solve', +// a Mixed Integer Linear Programming (MILP) solver with support for pure +// linear, (mixed) integer/binary, semi-continuous and special ordered sets +// (SOS) models. +// License: LGPL-2 +// Repository: CRAN + +#ifndef HEADER_MDO +#define HEADER_MDO + +#include "lp_types.h" + + +#ifdef __cplusplus +extern "C" { +#endif + +int __WINAPI getMDO(lprec *lp, MYBOOL *usedpos, int *colorder, int *size, MYBOOL symmetric); + +#ifdef __cplusplus + } +#endif + +#endif /* HEADER_MDO */ + diff --git a/src/external/lpsolve/headers/include/lp_MPS.h b/src/external/lpsolve/headers/include/lp_MPS.h new file mode 100644 index 00000000..9b7dab88 --- /dev/null +++ b/src/external/lpsolve/headers/include/lp_MPS.h @@ -0,0 +1,42 @@ +// Copyright(c) 2016-2018 Kjell Konis . +// Version: 5.5.2.0-17 +// Description: The lpSolveAPI package provides an R interface to 'lp_solve', +// a Mixed Integer Linear Programming (MILP) solver with support for pure +// linear, (mixed) integer/binary, semi-continuous and special ordered sets +// (SOS) models. +// License: LGPL-2 +// Repository: CRAN + +#ifndef HEADER_lp_MPS +#define HEADER_lp_MPS + +#include "lp_types.h" + +/* For MPS file reading and writing */ +#define ROWNAMEMASK "R%d" +#define ROWNAMEMASK2 "r%d" +#define COLNAMEMASK "C%d" +#define COLNAMEMASK2 "c%d" + +#ifdef __cplusplus +extern "C" { +#endif + +/* Read an MPS file */ +MYBOOL MPS_readfile(lprec **newlp, char *filename, int typeMPS, int verbose); +MYBOOL __WINAPI MPS_readhandle(lprec **newlp, FILE *filehandle, int typeMPS, int verbose); + +/* Write a MPS file to output */ +MYBOOL MPS_writefile(lprec *lp, int typeMPS, char *filename); +MYBOOL MPS_writehandle(lprec *lp, int typeMPS, FILE *output); + +/* Read and write BAS files */ +MYBOOL MPS_readBAS(lprec *lp, int typeMPS, char *filename, char *info); +MYBOOL MPS_writeBAS(lprec *lp, int typeMPS, char *filename); + +#ifdef __cplusplus + } +#endif + +#endif /* HEADER_lp_MPS */ + diff --git a/src/external/lpsolve/headers/include/lp_SOS.h b/src/external/lpsolve/headers/include/lp_SOS.h new file mode 100644 index 00000000..98bd4b02 --- /dev/null +++ b/src/external/lpsolve/headers/include/lp_SOS.h @@ -0,0 +1,117 @@ +// Copyright(c) 2016-2018 Kjell Konis . +// Version: 5.5.2.0-17 +// Description: The lpSolveAPI package provides an R interface to 'lp_solve', +// a Mixed Integer Linear Programming (MILP) solver with support for pure +// linear, (mixed) integer/binary, semi-continuous and special ordered sets +// (SOS) models. +// License: LGPL-2 +// Repository: CRAN + +#ifndef HEADER_lp_SOS +#define HEADER_lp_SOS + +/* Specially Ordered Sets (SOS) prototypes and settings */ +/* ------------------------------------------------------------------------- */ + +#include "lp_types.h" +#include "lp_utils.h" +#include "lp_matrix.h" + + +/* SOS constraint defines */ +/* ------------------------------------------------------------------------- */ +#define SOS1 1 +#define SOS2 2 +#define SOS3 -1 +#define SOSn MAXINT32 +#define SOS_START_SIZE 10 /* Start size of SOS_list array; realloced if needed */ + +/* Define SOS_is_feasible() return values */ +/* ------------------------------------------------------------------------- */ +#define SOS3_INCOMPLETE -2 +#define SOS_INCOMPLETE -1 +#define SOS_COMPLETE 0 +#define SOS_INFEASIBLE 1 +#define SOS_INTERNALERROR 2 + + +typedef struct _SOSgroup SOSgroup; + +typedef struct _SOSrec +{ + SOSgroup *parent; + int tagorder; + char *name; + int type; + MYBOOL isGUB; + int size; + int priority; + int *members; + LPSREAL *weights; + int *membersSorted; + int *membersMapped; +} SOSrec; + +/* typedef */ struct _SOSgroup +{ + lprec *lp; /* Pointer to owner */ + SOSrec **sos_list; /* Array of pointers to SOS lists */ + int sos_alloc; /* Size allocated to specially ordered sets (SOS1, SOS2...) */ + int sos_count; /* Number of specially ordered sets (SOS1, SOS2...) */ + int maxorder; /* The highest-order SOS in the group */ + int sos1_count; /* Number of the lowest order SOS in the group */ + int *membership; /* Array of variable-sorted indeces to SOSes that the variable is member of */ + int *memberpos; /* Starting positions of the each column's membership list */ +} /* SOSgroup */; + + +#ifdef __cplusplus +extern "C" { +#endif + +/* SOS storage structure */ +STATIC SOSgroup *create_SOSgroup(lprec *lp); +STATIC void resize_SOSgroup(SOSgroup *group); +STATIC int append_SOSgroup(SOSgroup *group, SOSrec *SOS); +STATIC int clean_SOSgroup(SOSgroup *group, MYBOOL forceupdatemap); +STATIC void free_SOSgroup(SOSgroup **group); + +STATIC SOSrec *create_SOSrec(SOSgroup *group, char *name, int type, int priority, int size, int *variables, LPSREAL *weights); +STATIC MYBOOL delete_SOSrec(SOSgroup *group, int sosindex); +STATIC int append_SOSrec(SOSrec *SOS, int size, int *variables, LPSREAL *weights); +STATIC void free_SOSrec(SOSrec *SOS); + +/* SOS utilities */ +STATIC int make_SOSchain(lprec *lp, MYBOOL forceresort); +STATIC int SOS_member_updatemap(SOSgroup *group); +STATIC MYBOOL SOS_member_sortlist(SOSgroup *group, int sosindex); +STATIC MYBOOL SOS_shift_col(SOSgroup *group, int sosindex, int column, int delta, LLrec *usedmap, MYBOOL forceresort); +int SOS_member_delete(SOSgroup *group, int sosindex, int member); +int SOS_get_type(SOSgroup *group, int sosindex); +int SOS_infeasible(SOSgroup *group, int sosindex); +int SOS_member_index(SOSgroup *group, int sosindex, int member); +int SOS_member_count(SOSgroup *group, int sosindex); +int SOS_memberships(SOSgroup *group, int column); +int *SOS_get_candidates(SOSgroup *group, int sosindex, int column, MYBOOL excludetarget, LPSREAL *upbound, LPSREAL *lobound); +int SOS_is_member(SOSgroup *group, int sosindex, int column); +MYBOOL SOS_is_member_of_type(SOSgroup *group, int column, int sostype); +MYBOOL SOS_set_GUB(SOSgroup *group, int sosindex, MYBOOL state); +MYBOOL SOS_is_GUB(SOSgroup *group, int sosindex); +MYBOOL SOS_is_marked(SOSgroup *group, int sosindex, int column); +MYBOOL SOS_is_active(SOSgroup *group, int sosindex, int column); +MYBOOL SOS_is_full(SOSgroup *group, int sosindex, int column, MYBOOL activeonly); +MYBOOL SOS_can_activate(SOSgroup *group, int sosindex, int column); +MYBOOL SOS_set_marked(SOSgroup *group, int sosindex, int column, MYBOOL asactive); +MYBOOL SOS_unmark(SOSgroup *group, int sosindex, int column); +int SOS_fix_unmarked(SOSgroup *group, int sosindex, int variable, LPSREAL *bound, LPSREAL value, + MYBOOL isupper, int *diffcount, DeltaVrec *changelog); +int SOS_fix_list(SOSgroup *group, int sosindex, int variable, LPSREAL *bound, + int *varlist, MYBOOL isleft, DeltaVrec *changelog); +int SOS_is_satisfied(SOSgroup *group, int sosindex, LPSREAL *solution); +MYBOOL SOS_is_feasible(SOSgroup *group, int sosindex, LPSREAL *solution); + +#ifdef __cplusplus + } +#endif + +#endif /* HEADER_lp_SOS */ diff --git a/src/external/lpsolve/headers/include/lp_bit.h b/src/external/lpsolve/headers/include/lp_bit.h new file mode 100644 index 00000000..ffcd6661 --- /dev/null +++ b/src/external/lpsolve/headers/include/lp_bit.h @@ -0,0 +1,31 @@ +// Copyright(c) 2016-2018 Kjell Konis . +// Version: 5.5.2.0-17 +// Description: The lpSolveAPI package provides an R interface to 'lp_solve', +// a Mixed Integer Linear Programming (MILP) solver with support for pure +// linear, (mixed) integer/binary, semi-continuous and special ordered sets +// (SOS) models. +// License: LGPL-2 +// Repository: CRAN + +#include "lp_types.h" + +#if defined INLINE +# define MYINLINE INLINE +#else +# define MYINLINE static +#endif + +MYINLINE void set_biton(MYBOOL *bitarray, int item) +{ + bitarray[item / 8] |= (1 << (item % 8)); +} + +MYINLINE void set_bitoff(MYBOOL *bitarray, int item) +{ + bitarray[item / 8] &= ~(1 << (item % 8)); +} + +MYINLINE MYBOOL is_biton(MYBOOL *bitarray, int item) +{ + return( (MYBOOL) ((bitarray[item / 8] & (1 << (item % 8))) != 0) ); +} diff --git a/src/external/lpsolve/headers/include/lp_crash.h b/src/external/lpsolve/headers/include/lp_crash.h new file mode 100644 index 00000000..a8b1137b --- /dev/null +++ b/src/external/lpsolve/headers/include/lp_crash.h @@ -0,0 +1,35 @@ +// Copyright(c) 2016-2018 Kjell Konis . +// Version: 5.5.2.0-17 +// Description: The lpSolveAPI package provides an R interface to 'lp_solve', +// a Mixed Integer Linear Programming (MILP) solver with support for pure +// linear, (mixed) integer/binary, semi-continuous and special ordered sets +// (SOS) models. +// License: LGPL-2 +// Repository: CRAN + +#ifndef HEADER_lp_crash +#define HEADER_lp_crash + + +#include "lp_types.h" + +#define CRASH_SIMPLESCALE /* Specify if we should use a simple absolute scaling threshold */ + +#define CRASH_THRESHOLD 0.167 +#define CRASH_SPACER 10 +#define CRASH_WEIGHT 0.500 + + + +#ifdef __cplusplus +__EXTERN_C { +#endif + +STATIC MYBOOL crash_basis(lprec *lp); + +#ifdef __cplusplus +} +#endif + +#endif /* HEADER_lp_crash */ + diff --git a/src/external/lpsolve/headers/include/lp_lib.h b/src/external/lpsolve/headers/include/lp_lib.h new file mode 100644 index 00000000..336525b3 --- /dev/null +++ b/src/external/lpsolve/headers/include/lp_lib.h @@ -0,0 +1,2302 @@ +// Copyright(c) 2016-2018 Kjell Konis . +// Version: 5.5.2.0-17 +// Description: The lpSolveAPI package provides an R interface to 'lp_solve', +// a Mixed Integer Linear Programming (MILP) solver with support for pure +// linear, (mixed) integer/binary, semi-continuous and special ordered sets +// (SOS) models. +// License: LGPL-2 +// Repository: CRAN + +#ifndef HEADER_lp_lib +#define HEADER_lp_lib + +/* -------------------------------------------------------------------------- + + This is the main library header file for the lp_solve v5.0 release + + Starting at version 3.0, LP_Solve is released under the LGPL license. + For full information, see the enclosed file LGPL.txt. + + Original developer: Michel Berkelaar - michel@ics.ele.tue.nl + Most changes 1.5-2.0: Jeroen Dirks - jeroend@tor.numetrix.com + Changes 3.2-4.0: Kjell Eikland - kjell.eikland@broadpark.no + (Simplex code, SOS, SC, code optimization) + Peter Notebaert - lpsolve@peno.be + (Sensitivity analysis, documentation) + Changes 5.0+: Kjell Eikland - kjell.eikland@broadpark.no + (BFP, XLI, simplex, B&B, code modularization) + Peter Notebaert - lpsolve@peno.be + (Sensitivity analysis, New lp parser, LINDO (XLI) + parser, VB/.NET interface, documentation) + + Release notes: + + Version 4.0 enhances version 3.2 in terms of internal program/simplex + architecture, call level interfaces, data layout, features and contains + several bug fixes. There is now complete support for semi-continuous + variables and SOS constructions. In the process, a complete API + was added. The MPS parser has been amended to support this. + Sensitivity analysis and variouse bug fixes was provided by Peter + Notebaert in 4.0 sub-releases. Peter also wrote a complete + documentation of the API and contributed a VB interface, both of which + significantly enhanced the accessibility of lp_solve. + + Version 5.0 is a major rewrite and code cleanup. The main additions that + drove forward this cleanup were the modular inversion logic with optimal + column ordering, addition of primal phase 1 and dual phase 2 logic for + full flexibility in the selection of primal and dual simplex modes, + DEVEX and steepest edge pivot selection, along with dynamic cycling + detection and prevention. This cleanup made it possible to harmonize the + internal rounding principles, contributing to increased numerical stability. + + Version 5.1 rearranges the matrix storage model by enabling both legacy + element record-based storage and split vector storage. In addition the + lprec structure is optimized and additional routines are added, mainly for + sparse vector additions and enhanced XLI functionality. Support for XML- + based models was added on the basis of the LPFML schema via xli_LPFML. + + Version 5.2 removes the objective function from the constraint matrix, + adds a number of presolve options and speed them up. Degeneracy handling + is significantly improved. Support for XLI_ZIMPL was added. + Multiple and partial pricing has been enhanced and activated. + + -------------------------------------------------------------------------- */ +/* Define user program feature option switches */ +/* ------------------------------------------------------------------------- */ + +# if defined _WIN32 && !defined __GNUC__ +# define isnan _isnan +# endif +#if defined NOISNAN +# define isnan(x) FALSE +#endif + +#define SETMASK(variable, mask) variable |= mask +#define CLEARMASK(variable, mask) variable &= ~(mask) +#define TOGGLEMASK(variable, mask) variable ^= mask +#define ISMASKSET(variable, mask) (MYBOOL) (((variable) & (mask)) != 0) + +/* Utility/system settings */ +/* ------------------------------------------------------------------------- */ +/*#define INTEGERTIME */ /* Set use of lower-resolution timer */ + + +/* New v5.0+ simplex/optimization features and settings */ +/* ------------------------------------------------------------------------- */ +/*#define NoRowScaleOF */ /* Optionally skip row-scaling of the OF */ +#define DoMatrixRounding /* Round A matrix elements to precision */ +#define DoBorderRounding /* Round RHS, bounds and ranges to precision */ +#define Phase1EliminateRedundant /* Remove rows of redundant artificials */ +#define FixViolatedOptimal +#define ImproveSolutionPrecision /* Round optimal solution values */ +/*#define IncreasePivotOnReducedAccuracy */ /* Increase epspivot on instability */ +/*#define FixInaccurateDualMinit */ /* Reinvert on inaccuracy in dual minits */ +/*#define EnforcePositiveTheta */ /* Ensure that the theta range is valid */ +#define ResetMinitOnReinvert +/*#define UsePrimalReducedCostUpdate */ /* Not tested */ +/*#define UseDualReducedCostUpdate */ /* Seems Ok, but slower than expected */ +/*#ifdef UseLegacyExtrad */ /* Use v3.2- style Extrad method */ +#define UseMilpExpandedRCF /* Non-ints in reduced cost bound tightening */ +/*#define UseMilpSlacksRCF */ /* Slacks in reduced cost bound tightening (degen + prone); requires !SlackInitMinusInf */ +#define LegacySlackDefinition /* Slack as the "value of the constraint" */ + + +/* Development features (change at own risk) */ +/* ------------------------------------------------------------------------- */ +/*#define MIPboundWithOF */ /* Enable to detect OF constraint for use during B&B */ +/*#define SlackInitMinusInf */ /* Slacks have 0 LB if this is not defined */ +#define FULLYBOUNDEDSIMPLEX FALSE /* WARNING: Activate at your own risk! */ + + +/* Specify use of the basic linear algebra subroutine library */ +/* ------------------------------------------------------------------------- */ +#define libBLAS 2 /* 0: No, 1: Internal, 2: External */ +#define libnameBLAS "myBLAS" + + +/* Active inverse logic (default is optimized original etaPFI) */ +/* ------------------------------------------------------------------------- */ +#if !defined LoadInverseLib +# define LoadInverseLib TRUE /* Enable alternate inverse libraries */ +#endif +/*#define ExcludeNativeInverse */ /* Disable INVERSE_ACTIVE inverse engine */ + +#define DEF_OBJINBASIS TRUE /* Additional rows inserted at the top (1 => OF) */ + +#define INVERSE_NONE -1 +#define INVERSE_LEGACY 0 +#define INVERSE_ETAPFI 1 +#define INVERSE_LUMOD 2 +#define INVERSE_LUSOL 3 +#define INVERSE_GLPKLU 4 + +#ifndef RoleIsExternalInvEngine /* Defined in inverse DLL drivers */ + #ifdef ExcludeNativeInverse + #define INVERSE_ACTIVE INVERSE_NONE /* Disable native engine */ + #else + #define INVERSE_ACTIVE INVERSE_LEGACY /* User or DLL-selected */ + #endif +#endif + + +/* Active external language interface logic (default is none) */ +/* ------------------------------------------------------------------------- */ +#if !defined LoadLanguageLib +# define LoadLanguageLib TRUE /* Enable alternate language libraries */ +#endif +#define ExcludeNativeLanguage /* Disable LANGUAGE_ACTIVE XLI */ + +#define LANGUAGE_NONE -1 +#define LANGUAGE_LEGACYLP 0 +#define LANGUAGE_CPLEXLP 1 +#define LANGUAGE_MPSX 2 +#define LANGUAGE_LPFML 3 +#define LANGUAGE_MATHPROG 4 +#define LANGUAGE_AMPL 5 +#define LANGUAGE_GAMS 6 +#define LANGUAGE_ZIMPL 7 +#define LANGUAGE_S 8 +#define LANGUAGE_R 9 +#define LANGUAGE_MATLAB 10 +#define LANGUAGE_OMATRIX 11 +#define LANGUAGE_SCILAB 12 +#define LANGUAGE_OCTAVE 13 +#define LANGUAGE_EMPS 14 + +#ifndef RoleIsExternalLanguageEngine /* Defined in XLI driver libraries */ + #ifdef ExcludeNativeLanguage + #define LANGUAGE_ACTIVE LANGUAGE_NONE /* Disable native engine */ + #else + #define LANGUAGE_ACTIVE LANGUAGE_CPLEXLP /* User or DLL-selected */ + #endif +#endif + + +/* Default parameters and tolerances */ +/* ------------------------------------------------------------------------- */ +#define OriginalPARAM 0 +#define ProductionPARAM 1 +#define ChvatalPARAM 2 +#define LoosePARAM 3 +#if 1 + #define ActivePARAM ProductionPARAM +#else + #define ActivePARAM LoosePARAM +#endif + + +/* Miscellaneous settings */ +/* ------------------------------------------------------------------------- */ +#ifndef Paranoia + #ifdef _DEBUG + #define Paranoia + #endif +#endif + + +/* Program version data */ +/* ------------------------------------------------------------------------- */ +#define MAJORVERSION 5 +#define MINORVERSION 5 +#define RELEASE 2 +#define BUILD 0 +#define BFPVERSION 12 /* Checked against bfp_compatible() */ +#define XLIVERSION 12 /* Checked against xli_compatible() */ +/* Note that both BFPVERSION and XLIVERSION typically have to be incremented + in the case that the lprec structure changes. */ + + +/* Include/header files */ +/* ------------------------------------------------------------------------- */ +#include +#include +#include +#include +#include + +#include "lp_types.h" +#include "lp_utils.h" + +#if (LoadInverseLib == TRUE) || (LoadLanguageLib == TRUE) + #ifdef WIN32 + #include + #else + #include + #endif +#endif + +#ifndef BFP_CALLMODEL + #ifdef WIN32 + #define BFP_CALLMODEL __stdcall /* "Standard" call model */ + #else + #define BFP_CALLMODEL + #endif +#endif +#ifndef XLI_CALLMODEL + #define XLI_CALLMODEL BFP_CALLMODEL +#endif + +#define REGISTER register /* Speed up certain operations */ + + +/* Definition of program constrants */ +/* ------------------------------------------------------------------------- */ +#define SIMPLEX_UNDEFINED 0 +#define SIMPLEX_Phase1_PRIMAL 1 +#define SIMPLEX_Phase1_DUAL 2 +#define SIMPLEX_Phase2_PRIMAL 4 +#define SIMPLEX_Phase2_DUAL 8 +#define SIMPLEX_DYNAMIC 16 +#define SIMPLEX_AUTODUALIZE 32 + +#define SIMPLEX_PRIMAL_PRIMAL (SIMPLEX_Phase1_PRIMAL + SIMPLEX_Phase2_PRIMAL) +#define SIMPLEX_DUAL_PRIMAL (SIMPLEX_Phase1_DUAL + SIMPLEX_Phase2_PRIMAL) +#define SIMPLEX_PRIMAL_DUAL (SIMPLEX_Phase1_PRIMAL + SIMPLEX_Phase2_DUAL) +#define SIMPLEX_DUAL_DUAL (SIMPLEX_Phase1_DUAL + SIMPLEX_Phase2_DUAL) +#define SIMPLEX_DEFAULT (SIMPLEX_DUAL_PRIMAL) + +/* Variable codes (internal) */ +#define ISREAL 0 +#define ISINTEGER 1 +#define ISSEMI 2 +#define ISSOS 4 +#define ISSOSTEMPINT 8 +#define ISGUB 16 + +/* Presolve defines */ +#define PRESOLVE_NONE 0 +#define PRESOLVE_ROWS 1 +#define PRESOLVE_COLS 2 +#define PRESOLVE_LINDEP 4 +#define PRESOLVE_AGGREGATE 8 /* Not implemented */ +#define PRESOLVE_SPARSER 16 /* Not implemented */ +#define PRESOLVE_SOS 32 +#define PRESOLVE_REDUCEMIP 64 +#define PRESOLVE_KNAPSACK 128 /* Implementation not tested completely */ +#define PRESOLVE_ELIMEQ2 256 +#define PRESOLVE_IMPLIEDFREE 512 +#define PRESOLVE_REDUCEGCD 1024 +#define PRESOLVE_PROBEFIX 2048 +#define PRESOLVE_PROBEREDUCE 4096 +#define PRESOLVE_ROWDOMINATE 8192 +#define PRESOLVE_COLDOMINATE 16384 /* Reduced functionality, should be expanded */ +#define PRESOLVE_MERGEROWS 32768 +#define PRESOLVE_IMPLIEDSLK 65536 +#define PRESOLVE_COLFIXDUAL 131072 +#define PRESOLVE_BOUNDS 262144 +#define PRESOLVE_LASTMASKMODE (PRESOLVE_DUALS - 1) +#define PRESOLVE_DUALS 524288 +#define PRESOLVE_SENSDUALS 1048576 + +/* Basis crash options */ +#define CRASH_NONE 0 +#define CRASH_NONBASICBOUNDS 1 +#define CRASH_MOSTFEASIBLE 2 +#define CRASH_LEASTDEGENERATE 3 + +/* Solution recomputation options (internal) */ +#define INITSOL_SHIFTZERO 0 +#define INITSOL_USEZERO 1 +#define INITSOL_ORIGINAL 2 + +/* Strategy codes to avoid or recover from degenerate pivots, + infeasibility or numeric errors via randomized bound relaxation */ +#define ANTIDEGEN_NONE 0 +#define ANTIDEGEN_FIXEDVARS 1 +#define ANTIDEGEN_COLUMNCHECK 2 +#define ANTIDEGEN_STALLING 4 +#define ANTIDEGEN_NUMFAILURE 8 +#define ANTIDEGEN_LOSTFEAS 16 +#define ANTIDEGEN_INFEASIBLE 32 +#define ANTIDEGEN_DYNAMIC 64 +#define ANTIDEGEN_DURINGBB 128 +#define ANTIDEGEN_RHSPERTURB 256 +#define ANTIDEGEN_BOUNDFLIP 512 +#define ANTIDEGEN_DEFAULT (ANTIDEGEN_FIXEDVARS | ANTIDEGEN_STALLING /* | ANTIDEGEN_INFEASIBLE */) + +/* REPORT defines */ +#define NEUTRAL 0 +#define CRITICAL 1 +#define SEVERE 2 +#define IMPORTANT 3 +#define NORMAL 4 +#define DETAILED 5 +#define FULL 6 + +/* MESSAGE defines */ +#define MSG_NONE 0 +#define MSG_PRESOLVE 1 +#define MSG_ITERATION 2 +#define MSG_INVERT 4 +#define MSG_LPFEASIBLE 8 +#define MSG_LPOPTIMAL 16 +#define MSG_LPEQUAL 32 +#define MSG_LPBETTER 64 +#define MSG_MILPFEASIBLE 128 +#define MSG_MILPEQUAL 256 +#define MSG_MILPBETTER 512 +#define MSG_MILPSTRATEGY 1024 +#define MSG_MILPOPTIMAL 2048 +#define MSG_PERFORMANCE 4096 +#define MSG_INITPSEUDOCOST 8192 + +/* MPS file types */ +#define MPSFIXED 1 +#define MPSFREE 2 +#define MPSIBM 4 +#define MPSNEGOBJCONST 8 + +#define MPS_FREE (MPSFREE<<2) +#define MPS_IBM (MPSIBM<<2) +#define MPS_NEGOBJCONST (MPSNEGOBJCONST<<2) + +/* MPS defines (internal) */ +#define MPSUNDEF -4 +#define MPSNAME -3 +#define MPSOBJSENSE -2 +#define MPSOBJNAME -1 +#define MPSROWS 0 +#define MPSCOLUMNS 1 +#define MPSRHS 2 +#define MPSBOUNDS 3 +#define MPSRANGES 4 +#define MPSSOS 5 + +#define MPSVARMASK "%-8s" +#define MPSVALUEMASK "%12g" + +/* Constraint type codes (internal) */ +#define ROWTYPE_EMPTY 0 +#define ROWTYPE_LE 1 +#define ROWTYPE_GE 2 +#define ROWTYPE_EQ 3 +#define ROWTYPE_CONSTRAINT ROWTYPE_EQ /* This is the mask for modes */ +#define ROWTYPE_OF 4 +#define ROWTYPE_INACTIVE 8 +#define ROWTYPE_RELAX 16 +#define ROWTYPE_GUB 32 +#define ROWTYPE_OFMAX (ROWTYPE_OF + ROWTYPE_GE) +#define ROWTYPE_OFMIN (ROWTYPE_OF + ROWTYPE_LE) +#define ROWTYPE_CHSIGN ROWTYPE_GE + +/* Public constraint codes */ +#define FR ROWTYPE_EMPTY +#define LE ROWTYPE_LE +#define GE ROWTYPE_GE +#define EQ ROWTYPE_EQ +#define OF ROWTYPE_OF + +/* MIP constraint classes */ +#define ROWCLASS_Unknown 0 /* Undefined/unknown */ +#define ROWCLASS_Objective 1 /* The objective function */ +#define ROWCLASS_GeneralREAL 2 /* General real-values constraint */ +#define ROWCLASS_GeneralMIP 3 /* General mixed integer/binary and real valued constraint */ +#define ROWCLASS_GeneralINT 4 /* General integer-only constraint */ +#define ROWCLASS_GeneralBIN 5 /* General binary-only constraint */ +#define ROWCLASS_KnapsackINT 6 /* Sum of positive integer times integer variables <= positive integer */ +#define ROWCLASS_KnapsackBIN 7 /* Sum of positive integer times binary variables <= positive integer */ +#define ROWCLASS_SetPacking 8 /* Sum of binary variables >= 1 */ +#define ROWCLASS_SetCover 9 /* Sum of binary variables <= 1 */ +#define ROWCLASS_GUB 10 /* Sum of binary variables = 1 */ +#define ROWCLASS_MAX ROWCLASS_GUB + +/* Column subsets (internal) */ +#define SCAN_USERVARS 1 +#define SCAN_SLACKVARS 2 +#define SCAN_ARTIFICIALVARS 4 +#define SCAN_PARTIALBLOCK 8 +#define USE_BASICVARS 16 +#define USE_NONBASICVARS 32 +#define SCAN_NORMALVARS (SCAN_USERVARS + SCAN_ARTIFICIALVARS) +#define SCAN_ALLVARS (SCAN_SLACKVARS + SCAN_USERVARS + SCAN_ARTIFICIALVARS) +#define USE_ALLVARS (USE_BASICVARS + USE_NONBASICVARS) +#define OMIT_FIXED 64 +#define OMIT_NONFIXED 128 + +/* Improvement defines */ +#define IMPROVE_NONE 0 +#define IMPROVE_SOLUTION 1 +#define IMPROVE_DUALFEAS 2 +#define IMPROVE_THETAGAP 4 +#define IMPROVE_BBSIMPLEX 8 +#define IMPROVE_DEFAULT (IMPROVE_DUALFEAS + IMPROVE_THETAGAP) +#define IMPROVE_INVERSE (IMPROVE_SOLUTION + IMPROVE_THETAGAP) + +/* Scaling types */ +#define SCALE_NONE 0 +#define SCALE_EXTREME 1 +#define SCALE_RANGE 2 +#define SCALE_MEAN 3 +#define SCALE_GEOMETRIC 4 +#define SCALE_FUTURE1 5 +#define SCALE_FUTURE2 6 +#define SCALE_CURTISREID 7 /* Override to Curtis-Reid "optimal" scaling */ + +/* Alternative scaling weights */ +#define SCALE_LINEAR 0 +#define SCALE_QUADRATIC 8 +#define SCALE_LOGARITHMIC 16 +#define SCALE_USERWEIGHT 31 +#define SCALE_MAXTYPE (SCALE_QUADRATIC-1) + +/* Scaling modes */ +#define SCALE_POWER2 32 /* As is or rounded to power of 2 */ +#define SCALE_EQUILIBRATE 64 /* Make sure that no scaled number is above 1 */ +#define SCALE_INTEGERS 128 /* Apply to integer columns/variables */ +#define SCALE_DYNUPDATE 256 /* Apply incrementally every solve() */ +#define SCALE_ROWSONLY 512 /* Override any scaling to only scale the rows */ +#define SCALE_COLSONLY 1024 /* Override any scaling to only scale the rows */ + +/* Standard defines for typical scaling models (no Lagrangeans) */ +#define SCALEMODEL_EQUILIBRATED (SCALE_LINEAR+SCALE_EXTREME+SCALE_INTEGERS) +#define SCALEMODEL_GEOMETRIC (SCALE_LINEAR+SCALE_GEOMETRIC+SCALE_INTEGERS) +#define SCALEMODEL_ARITHMETIC (SCALE_LINEAR+SCALE_MEAN+SCALE_INTEGERS) +#define SCALEMODEL_DYNAMIC (SCALEMODEL_GEOMETRIC+SCALE_EQUILIBRATE) +#define SCALEMODEL_CURTISREID (SCALE_CURTISREID+SCALE_INTEGERS+SCALE_POWER2) + +/* Iteration status and strategies (internal) */ +#define ITERATE_MAJORMAJOR 0 +#define ITERATE_MINORMAJOR 1 +#define ITERATE_MINORRETRY 2 + +/* Pricing methods */ +#define PRICER_FIRSTINDEX 0 +#define PRICER_DANTZIG 1 +#define PRICER_DEVEX 2 +#define PRICER_STEEPESTEDGE 3 +#define PRICER_LASTOPTION PRICER_STEEPESTEDGE + +/* Additional settings for pricers (internal) */ +#define PRICER_RANDFACT 0.1 +#define DEVEX_RESTARTLIMIT 1.0e+09 /* Reset the norms if any value exceeds this limit */ +#define DEVEX_MINVALUE 0.000 /* Minimum weight [0..1] for entering variable, consider 0.01 */ + +/* Pricing strategies */ +#define PRICE_PRIMALFALLBACK 4 /* In case of Steepest Edge, fall back to DEVEX in primal */ +#define PRICE_MULTIPLE 8 /* Enable multiple pricing (primal simplex) */ +#define PRICE_PARTIAL 16 /* Enable partial pricing */ +#define PRICE_ADAPTIVE 32 /* Temporarily use alternative strategy if cycling is detected */ +#define PRICE_HYBRID 64 /* NOT IMPLEMENTED */ +#define PRICE_RANDOMIZE 128 /* Adds a small randomization effect to the selected pricer */ +#define PRICE_AUTOPARTIAL 256 /* Detect and use data on the block structure of the model (primal) */ +#define PRICE_AUTOMULTIPLE 512 /* Automatically select multiple pricing (primal simplex) */ +#define PRICE_LOOPLEFT 1024 /* Scan entering/leaving columns left rather than right */ +#define PRICE_LOOPALTERNATE 2048 /* Scan entering/leaving columns alternatingly left/right */ +#define PRICE_HARRISTWOPASS 4096 /* Use Harris' primal pivot logic rather than the default */ +#define PRICE_FORCEFULL 8192 /* Non-user option to force full pricing */ +#define PRICE_TRUENORMINIT 16384 /* Use true norms for Devex and Steepest Edge initializations */ + +/*#define _PRICE_NOBOUNDFLIP*/ +#if defined _PRICE_NOBOUNDFLIP +#define PRICE_NOBOUNDFLIP 65536 /* Disallow automatic bound-flip during pivot */ +#endif + +#define PRICE_STRATEGYMASK (PRICE_PRIMALFALLBACK + \ + PRICE_MULTIPLE + PRICE_PARTIAL + \ + PRICE_ADAPTIVE + PRICE_HYBRID + \ + PRICE_RANDOMIZE + PRICE_AUTOPARTIAL + PRICE_AUTOMULTIPLE + \ + PRICE_LOOPLEFT + PRICE_LOOPALTERNATE + \ + PRICE_HARRISTWOPASS + \ + PRICE_FORCEFULL + PRICE_TRUENORMINIT) + +/* B&B active variable codes (internal) */ +#define BB_REAL 0 +#define BB_INT 1 +#define BB_SC 2 +#define BB_SOS 3 +#define BB_GUB 4 + +/* B&B strategies */ +#define NODE_FIRSTSELECT 0 +#define NODE_GAPSELECT 1 +#define NODE_RANGESELECT 2 +#define NODE_FRACTIONSELECT 3 +#define NODE_PSEUDOCOSTSELECT 4 +#define NODE_PSEUDONONINTSELECT 5 /* Kjell Eikland #1 - Minimize B&B depth */ +#define NODE_PSEUDOFEASSELECT (NODE_PSEUDONONINTSELECT+NODE_WEIGHTREVERSEMODE) +#define NODE_PSEUDORATIOSELECT 6 /* Kjell Eikland #2 - Minimize a "cost/benefit" ratio */ +#define NODE_USERSELECT 7 +#define NODE_STRATEGYMASK (NODE_WEIGHTREVERSEMODE-1) /* Mask for B&B strategies */ +#define NODE_WEIGHTREVERSEMODE 8 +#define NODE_BRANCHREVERSEMODE 16 +#define NODE_GREEDYMODE 32 +#define NODE_PSEUDOCOSTMODE 64 +#define NODE_DEPTHFIRSTMODE 128 +#define NODE_RANDOMIZEMODE 256 +#define NODE_GUBMODE 512 +#define NODE_DYNAMICMODE 1024 +#define NODE_RESTARTMODE 2048 +#define NODE_BREADTHFIRSTMODE 4096 +#define NODE_AUTOORDER 8192 +#define NODE_RCOSTFIXING 16384 +#define NODE_STRONGINIT 32768 + +#define BRANCH_CEILING 0 +#define BRANCH_FLOOR 1 +#define BRANCH_AUTOMATIC 2 +#define BRANCH_DEFAULT 3 + +/* Action constants for simplex and B&B (internal) */ +#define ACTION_NONE 0 +#define ACTION_ACTIVE 1 +#define ACTION_REBASE 2 +#define ACTION_RECOMPUTE 4 +#define ACTION_REPRICE 8 +#define ACTION_REINVERT 16 +#define ACTION_TIMEDREINVERT 32 +#define ACTION_ITERATE 64 +#define ACTION_RESTART 255 + +/* Solver status values */ +#define UNKNOWNERROR -5 +#define DATAIGNORED -4 +#define NOBFP -3 +#define NOMEMORY -2 +#define NOTRUN -1 +#define OPTIMAL 0 +#define SUBOPTIMAL 1 +#define INFEASIBLE 2 +#define UNBOUNDED 3 +#define DEGENERATE 4 +#define NUMFAILURE 5 +#define USERABORT 6 +#define TIMEOUT 7 +#define RUNNING 8 +#define PRESOLVED 9 + +/* Branch & Bound and Lagrangean extra status values (internal) */ +#define PROCFAIL 10 +#define PROCBREAK 11 +#define FEASFOUND 12 +#define NOFEASFOUND 13 +#define FATHOMED 14 + +/* Status values internal to the solver (internal) */ +#define SWITCH_TO_PRIMAL 20 +#define SWITCH_TO_DUAL 21 +#define SINGULAR_BASIS 22 +#define LOSTFEAS 23 +#define MATRIXERROR 24 + +/* Objective testing options for "bb_better" (internal) */ +#define OF_RELAXED 0 +#define OF_INCUMBENT 1 +#define OF_WORKING 2 +#define OF_USERBREAK 3 +#define OF_HEURISTIC 4 +#define OF_DUALLIMIT 5 +#define OF_DELTA 8 /* Mode */ +#define OF_PROJECTED 16 /* Mode - future, not active */ + +#define OF_TEST_BT 1 +#define OF_TEST_BE 2 +#define OF_TEST_NE 3 +#define OF_TEST_WE 4 +#define OF_TEST_WT 5 +#define OF_TEST_RELGAP 8 /* Mode */ + + +/* Name list and sparse matrix storage parameters (internal) */ +#define MAT_START_SIZE 10000 +#define DELTACOLALLOC 100 +#define DELTAROWALLOC 100 +#define RESIZEFACTOR 4 /* Fractional increase in selected memory allocations */ + +/* Default solver parameters and tolerances (internal) */ +#define DEF_PARTIALBLOCKS 10 /* The default number of blocks for partial pricing */ +#define DEF_MAXRELAX 7 /* Maximum number of non-BB relaxations in MILP */ +#define DEF_MAXPIVOTRETRY 10 /* Maximum number of times to retry a div-0 situation */ +#define DEF_MAXSINGULARITIES 10 /* Maximum number of singularities in refactorization */ +#define MAX_MINITUPDATES 60 /* Maximum number of bound swaps between refactorizations + without recomputing the whole vector - contain errors */ +#define MIN_REFACTFREQUENCY 5 /* Refactorization frequency indicating an inherent + numerical instability of the basis */ +#define LAG_SINGULARLIMIT 5 /* Number of times the objective does not change + before it is assumed that the Lagrangean constraints + are non-binding, and therefore impossible to converge; + upper iteration limit is divided by this threshold */ +#define MIN_TIMEPIVOT 5.0e-02 /* Minimum time per pivot for reinversion optimization + purposes; use active monitoring only if a pivot + takes more than MINTIMEPIVOT seconds. 5.0e-2 is + roughly suitable for a 1GHz system. */ +#define MAX_STALLCOUNT 12 /* The absolute upper limit to the number of stalling or + cycling iterations before switching rule */ +#define MAX_RULESWITCH 5 /* The maximum number of times to try an alternate pricing rule + to recover from stalling; set negative for no limit. */ +#define DEF_TIMEDREFACT AUTOMATIC /* Default for timed refactorization in BFPs; + can be FALSE, TRUE or AUTOMATIC (dynamic) */ + +#define DEF_SCALINGLIMIT 5 /* The default maximum number of scaling iterations */ + +#define DEF_NEGRANGE -1.0e+06 /* Downward limit for expanded variable range before the + variable is split into positive and negative components */ +#define DEF_BB_LIMITLEVEL -50 /* Relative B&B limit to protect against very deep, + memory-consuming trees */ + +#define MAX_FRACSCALE 6 /* The maximum decimal scan range for simulated integers */ +#define RANDSCALE 100 /* Randomization scaling range */ +#define DOUBLEROUND 0.0e-02 /* Extra rounding scalar used in btran/ftran calculations; the + rationale for 0.0 is that prod_xA() uses rounding as well */ +#define DEF_EPSMACHINE 2.22e-16 /* Machine relative precision (doubles) */ +#define MIN_STABLEPIVOT 5.0 /* Minimum pivot magnitude assumed to be numerically stable */ + + +/* Precision macros */ +/* -------------------------------------------------------------------------------------- */ +#define PREC_REDUCEDCOST lp->epsvalue +#define PREC_IMPROVEGAP lp->epsdual +#define PREC_SUBSTFEASGAP lp->epsprimal +#if 1 + #define PREC_BASICSOLUTION lp->epsvalue /* Zero-rounding of RHS/basic solution vector */ +#else + #define PREC_BASICSOLUTION lp->epsmachine /* Zero-rounding of RHS/basic solution vector */ +#endif +#define LIMIT_ABS_REL 10.0 /* Limit for testing using relative metric */ + + +/* Parameters constants for short-cut setting of tolerances */ +/* -------------------------------------------------------------------------------------- */ +#define EPS_TIGHT 0 +#define EPS_MEDIUM 1 +#define EPS_LOOSE 2 +#define EPS_BAGGY 3 +#define EPS_DEFAULT EPS_TIGHT + + +#if ActivePARAM==ProductionPARAM /* PARAMETER SET FOR PRODUCTION */ +/* -------------------------------------------------------------------------------------- */ +#define DEF_INFINITE 1.0e+30 /* Limit for dynamic range */ +#define DEF_EPSVALUE 1.0e-12 /* High accuracy and feasibility preserving tolerance */ +#define DEF_EPSPRIMAL 1.0e-10 /* For rounding primal/RHS values to 0 */ +#define DEF_EPSDUAL 1.0e-09 /* For rounding reduced costs to 0 */ +#define DEF_EPSPIVOT 2.0e-07 /* Pivot reject threshold */ +#define DEF_PERTURB 1.0e-05 /* Perturbation scalar for degenerate problems; + must at least be RANDSCALE greater than EPSPRIMAL */ +#define DEF_EPSSOLUTION 1.0e-05 /* Margin of error for solution bounds */ +#define DEF_EPSINT 1.0e-07 /* Accuracy for considering a float value as integer */ + +#elif ActivePARAM==OriginalPARAM /* PARAMETER SET FOR LEGACY VERSIONS */ +/* -------------------------------------------------------------------------------------- */ +#define DEF_INFINITE 1.0e+24 /* Limit for dynamic range */ +#define DEF_EPSVALUE 1.0e-08 /* High accuracy and feasibility preserving tolerance */ +#define DEF_EPSPRIMAL 5.01e-07 /* For rounding primal/RHS values to 0, infeasibility */ +#define DEF_EPSDUAL 1.0e-06 /* For rounding reduced costs to 0 */ +#define DEF_EPSPIVOT 1.0e-04 /* Pivot reject threshold */ +#define DEF_PERTURB 1.0e-05 /* Perturbation scalar for degenerate problems; + must at least be RANDSCALE greater than EPSPRIMAL */ +#define DEF_EPSSOLUTION 1.0e-02 /* Margin of error for solution bounds */ +#define DEF_EPSINT 1.0e-03 /* Accuracy for considering a float value as integer */ + +#elif ActivePARAM==ChvatalPARAM /* PARAMETER SET EXAMPLES FROM Vacek Chvatal */ +/* -------------------------------------------------------------------------------------- */ +#define DEF_INFINITE 1.0e+30 /* Limit for dynamic range */ +#define DEF_EPSVALUE 1.0e-10 /* High accuracy and feasibility preserving tolerance */ +#define DEF_EPSPRIMAL 10e-07 /* For rounding primal/RHS values to 0 */ +#define DEF_EPSDUAL 10e-05 /* For rounding reduced costs to 0 */ +#define DEF_EPSPIVOT 10e-05 /* Pivot reject threshold */ +#define DEF_PERTURB 10e-03 /* Perturbation scalar for degenerate problems; + must at least be RANDSCALE greater than EPSPRIMAL */ +#define DEF_EPSSOLUTION 1.0e-05 /* Margin of error for solution bounds */ +#define DEF_EPSINT 5.0e-03 /* Accuracy for considering a float value as integer */ + +#elif ActivePARAM==LoosePARAM /* PARAMETER SET FOR LOOSE TOLERANCES */ +/* -------------------------------------------------------------------------------------- */ +#define DEF_INFINITE 1.0e+30 /* Limit for dynamic range */ +#define DEF_EPSVALUE 1.0e-10 /* High accuracy and feasibility preserving tolerance */ +#define DEF_EPSPRIMAL 5.01e-08 /* For rounding primal/RHS values to 0 */ +#define DEF_EPSDUAL 1.0e-07 /* For rounding reduced costs to 0 */ +#define DEF_EPSPIVOT 1.0e-05 /* Pivot reject threshold */ +#define DEF_PERTURB 1.0e-05 /* Perturbation scalar for degenerate problems; + must at least be RANDSCALE greater than EPSPRIMAL */ +#define DEF_EPSSOLUTION 1.0e-05 /* Margin of error for solution bounds */ +#define DEF_EPSINT 1.0e-04 /* Accuracy for considering a float value as integer */ + +#endif + + +#define DEF_MIP_GAP 1.0e-11 /* The default absolute and relative MIP gap */ +#define SCALEDINTFIXRANGE 1.6 /* Epsilon range multiplier < 2 for collapsing bounds to fix */ + +#define MIN_SCALAR 1.0e-10 /* Smallest allowed scaling adjustment */ +#define MAX_SCALAR 1.0e+10 /* Largest allowed scaling adjustment */ +#define DEF_SCALINGEPS 1.0e-02 /* Relative scaling convergence criterion for auto_scale */ + +#define DEF_LAGACCEPT 1.0e-03 /* Default Lagrangean convergence acceptance criterion */ +#define DEF_LAGCONTRACT 0.90 /* The contraction parameter for Lagrangean iterations */ +#define DEF_LAGMAXITERATIONS 100 /* The maximum number of Lagrangean iterations */ + +#define DEF_PSEUDOCOSTUPDATES 7 /* The default number of times pseudo-costs are recalculated; + experiments indicate that costs tend to stabilize */ +#define DEF_PSEUDOCOSTRESTART 0.15 /* The fraction of price updates required for B&B restart + when the mode is NODE_RESTARTMODE */ +#define DEF_MAXPRESOLVELOOPS 0 /* Upper limit to the number of loops during presolve, + <= 0 for no limit. */ + + +/* Hashing prototypes and function headers */ +/* ------------------------------------------------------------------------- */ +#include "lp_Hash.h" + + +/* Sparse matrix prototypes */ +/* ------------------------------------------------------------------------- */ +#include "lp_matrix.h" + + +/* Basis storage (mainly for B&B) */ +typedef struct _basisrec +{ + int level; + int *var_basic; + MYBOOL *is_basic; + MYBOOL *is_lower; + int pivots; + struct _basisrec *previous; +} basisrec; + +/* Presolve undo data storage */ +typedef struct _presolveundorec +{ + lprec *lp; + int orig_rows; + int orig_columns; + int orig_sum; + int *var_to_orig; /* sum_alloc+1 : Mapping of variables from solution to + best_solution to account for removed variables and + rows during presolve; a non-positive value indicates + that the constraint or variable was removed */ + int *orig_to_var; /* sum_alloc+1 : Mapping from original variable index to + current / working index number */ + LPSREAL *fixed_rhs; /* rows_alloc+1 : Storage of values of presolved fixed colums */ + LPSREAL *fixed_obj; /* columns_alloc+1: Storage of values of presolved fixed rows */ + DeltaVrec *deletedA; /* A matrix of eliminated data from matA */ + DeltaVrec *primalundo; /* Affine translation vectors for eliminated primal variables */ + DeltaVrec *dualundo; /* Affine translation vectors for eliminated dual variables */ + MYBOOL OFcolsdeleted; +} presolveundorec; + +/* Pseudo-cost arrays used during B&B */ +typedef struct _BBPSrec +{ + lprec *lp; + int pseodotype; + int updatelimit; + int updatesfinished; + LPSREAL restartlimit; + MATitem *UPcost; + MATitem *LOcost; + struct _BBPSrec *secondary; +} BBPSrec; + +#include "lp_mipbb.h" + + +/* Partial pricing block data */ +typedef struct _partialrec { + lprec *lp; + int blockcount; /* ## The number of logical blocks or stages in the model */ + int blocknow; /* The currently active block */ + int *blockend; /* Array of column indeces giving the start of each block */ + int *blockpos; /* Array of column indeces giving the start scan position */ + MYBOOL isrow; +} partialrec; + + +/* Specially Ordered Sets (SOS) prototypes and settings */ +/* ------------------------------------------------------------------------- */ +/* SOS storage structure (LINEARSEARCH is typically in the 0-10 range) */ +#ifndef LINEARSEARCH +#define LINEARSEARCH 0 +#endif + +#include "lp_SOS.h" + + +/* Prototypes for user call-back functions */ +/* ------------------------------------------------------------------------- */ +typedef int (__WINAPI lphandle_intfunc)(lprec *lp, void *userhandle); +typedef void (__WINAPI lphandlestr_func)(lprec *lp, void *userhandle, char *buf); +typedef void (__WINAPI lphandleint_func)(lprec *lp, void *userhandle, int message); +typedef int (__WINAPI lphandleint_intfunc)(lprec *lp, void *userhandle, int message); + + +/* API typedef definitions */ +/* ------------------------------------------------------------------------- */ +typedef MYBOOL (__WINAPI add_column_func)(lprec *lp, LPSREAL *column); +typedef MYBOOL (__WINAPI add_columnex_func)(lprec *lp, int count, LPSREAL *column, int *rowno); +typedef MYBOOL (__WINAPI add_constraint_func)(lprec *lp, LPSREAL *row, int constr_type, LPSREAL rh); +typedef MYBOOL (__WINAPI add_constraintex_func)(lprec *lp, int count, LPSREAL *row, int *colno, int constr_type, LPSREAL rh); +typedef MYBOOL (__WINAPI add_lag_con_func)(lprec *lp, LPSREAL *row, int con_type, LPSREAL rhs); +typedef int (__WINAPI add_SOS_func)(lprec *lp, char *name, int sostype, int priority, int count, int *sosvars, LPSREAL *weights); +typedef int (__WINAPI column_in_lp_func)(lprec *lp, LPSREAL *column); +typedef lprec * (__WINAPI copy_lp_func)(lprec *lp); +typedef void (__WINAPI default_basis_func)(lprec *lp); +typedef MYBOOL (__WINAPI del_column_func)(lprec *lp, int colnr); +typedef MYBOOL (__WINAPI del_constraint_func)(lprec *lp, int rownr); +typedef void (__WINAPI delete_lp_func)(lprec *lp); +typedef MYBOOL (__WINAPI dualize_lp_func)(lprec *lp); +typedef void (__WINAPI free_lp_func)(lprec **plp); +typedef int (__WINAPI get_anti_degen_func)(lprec *lp); +typedef MYBOOL (__WINAPI get_basis_func)(lprec *lp, int *bascolumn, MYBOOL nonbasic); +typedef int (__WINAPI get_basiscrash_func)(lprec *lp); +typedef int (__WINAPI get_bb_depthlimit_func)(lprec *lp); +typedef int (__WINAPI get_bb_floorfirst_func)(lprec *lp); +typedef int (__WINAPI get_bb_rule_func)(lprec *lp); +typedef MYBOOL (__WINAPI get_bounds_tighter_func)(lprec *lp); +typedef LPSREAL (__WINAPI get_break_at_value_func)(lprec *lp); +typedef char * (__WINAPI get_col_name_func)(lprec *lp, int colnr); +typedef MYBOOL (__WINAPI get_column_func)(lprec *lp, int colnr, LPSREAL *column); +typedef int (__WINAPI get_columnex_func)(lprec *lp, int colnr, LPSREAL *column, int *nzrow); +typedef int (__WINAPI get_constr_type_func)(lprec *lp, int rownr); +typedef LPSREAL (__WINAPI get_constr_value_func)(lprec *lp, int rownr, int count, LPSREAL *primsolution, int *nzindex); +typedef MYBOOL (__WINAPI get_constraints_func)(lprec *lp, LPSREAL *constr); +typedef MYBOOL (__WINAPI get_dual_solution_func)(lprec *lp, LPSREAL *rc); +typedef LPSREAL (__WINAPI get_epsb_func)(lprec *lp); +typedef LPSREAL (__WINAPI get_epsd_func)(lprec *lp); +typedef LPSREAL (__WINAPI get_epsel_func)(lprec *lp); +typedef LPSREAL (__WINAPI get_epsint_func)(lprec *lp); +typedef LPSREAL (__WINAPI get_epsperturb_func)(lprec *lp); +typedef LPSREAL (__WINAPI get_epspivot_func)(lprec *lp); +typedef int (__WINAPI get_improve_func)(lprec *lp); +typedef LPSREAL (__WINAPI get_infinite_func)(lprec *lp); +typedef MYBOOL (__WINAPI get_lambda_func)(lprec *lp, LPSREAL *lambda); +typedef LPSREAL (__WINAPI get_lowbo_func)(lprec *lp, int colnr); +typedef int (__WINAPI get_lp_index_func)(lprec *lp, int orig_index); +typedef char * (__WINAPI get_lp_name_func)(lprec *lp); +typedef int (__WINAPI get_Lrows_func)(lprec *lp); +typedef LPSREAL (__WINAPI get_mat_func)(lprec *lp, int rownr, int colnr); +typedef LPSREAL (__WINAPI get_mat_byindex_func)(lprec *lp, int matindex, MYBOOL isrow, MYBOOL adjustsign); +typedef int (__WINAPI get_max_level_func)(lprec *lp); +typedef int (__WINAPI get_maxpivot_func)(lprec *lp); +typedef LPSREAL (__WINAPI get_mip_gap_func)(lprec *lp, MYBOOL absolute); +typedef int (__WINAPI get_multiprice_func)(lprec *lp, MYBOOL getabssize); +typedef MYBOOL (__WINAPI is_use_names_func)(lprec *lp, MYBOOL isrow); +typedef void (__WINAPI set_use_names_func)(lprec *lp, MYBOOL isrow, MYBOOL use_names); +typedef int (__WINAPI get_nameindex_func)(lprec *lp, char *varname, MYBOOL isrow); +typedef int (__WINAPI get_Ncolumns_func)(lprec *lp); +typedef LPSREAL (__WINAPI get_negrange_func)(lprec *lp); +typedef int (__WINAPI get_nz_func)(lprec *lp); +typedef int (__WINAPI get_Norig_columns_func)(lprec *lp); +typedef int (__WINAPI get_Norig_rows_func)(lprec *lp); +typedef int (__WINAPI get_Nrows_func)(lprec *lp); +typedef LPSREAL (__WINAPI get_obj_bound_func)(lprec *lp); +typedef LPSREAL (__WINAPI get_objective_func)(lprec *lp); +typedef int (__WINAPI get_orig_index_func)(lprec *lp, int lp_index); +typedef char * (__WINAPI get_origcol_name_func)(lprec *lp, int colnr); +typedef char * (__WINAPI get_origrow_name_func)(lprec *lp, int rownr); +typedef void (__WINAPI get_partialprice_func)(lprec *lp, int *blockcount, int *blockstart, MYBOOL isrow); +typedef int (__WINAPI get_pivoting_func)(lprec *lp); +typedef int (__WINAPI get_presolve_func)(lprec *lp); +typedef int (__WINAPI get_presolveloops_func)(lprec *lp); +typedef MYBOOL (__WINAPI get_primal_solution_func)(lprec *lp, LPSREAL *pv); +typedef int (__WINAPI get_print_sol_func)(lprec *lp); +typedef MYBOOL (__WINAPI get_pseudocosts_func)(lprec *lp, LPSREAL *clower, LPSREAL *cupper, int *updatelimit); +typedef MYBOOL (__WINAPI get_ptr_constraints_func)(lprec *lp, LPSREAL **constr); +typedef MYBOOL (__WINAPI get_ptr_dual_solution_func)(lprec *lp, LPSREAL **rc); +typedef MYBOOL (__WINAPI get_ptr_lambda_func)(lprec *lp, LPSREAL **lambda); +typedef MYBOOL (__WINAPI get_ptr_primal_solution_func)(lprec *lp, LPSREAL **pv); +typedef MYBOOL (__WINAPI get_ptr_sensitivity_obj_func)(lprec *lp, LPSREAL **objfrom, LPSREAL **objtill); +typedef MYBOOL (__WINAPI get_ptr_sensitivity_objex_func)(lprec *lp, LPSREAL **objfrom, LPSREAL **objtill, LPSREAL **objfromvalue, LPSREAL **objtillvalue); +typedef MYBOOL (__WINAPI get_ptr_sensitivity_rhs_func)(lprec *lp, LPSREAL **duals, LPSREAL **dualsfrom, LPSREAL **dualstill); +typedef MYBOOL (__WINAPI get_ptr_variables_func)(lprec *lp, LPSREAL **var); +typedef LPSREAL (__WINAPI get_rh_func)(lprec *lp, int rownr); +typedef LPSREAL (__WINAPI get_rh_range_func)(lprec *lp, int rownr); +typedef int (__WINAPI get_rowex_func)(lprec *lp, int rownr, LPSREAL *row, int *colno); +typedef MYBOOL (__WINAPI get_row_func)(lprec *lp, int rownr, LPSREAL *row); +typedef char * (__WINAPI get_row_name_func)(lprec *lp, int rownr); +typedef LPSREAL (__WINAPI get_scalelimit_func)(lprec *lp); +typedef int (__WINAPI get_scaling_func)(lprec *lp); +typedef MYBOOL (__WINAPI get_sensitivity_obj_func)(lprec *lp, LPSREAL *objfrom, LPSREAL *objtill); +typedef MYBOOL (__WINAPI get_sensitivity_objex_func)(lprec *lp, LPSREAL *objfrom, LPSREAL *objtill, LPSREAL *objfromvalue, LPSREAL *objtillvalue); +typedef MYBOOL (__WINAPI get_sensitivity_rhs_func)(lprec *lp, LPSREAL *duals, LPSREAL *dualsfrom, LPSREAL *dualstill); +typedef int (__WINAPI get_simplextype_func)(lprec *lp); +typedef int (__WINAPI get_solutioncount_func)(lprec *lp); +typedef int (__WINAPI get_solutionlimit_func)(lprec *lp); +typedef int (__WINAPI get_status_func)(lprec *lp); +typedef char * (__WINAPI get_statustext_func)(lprec *lp, int statuscode); +typedef long (__WINAPI get_timeout_func)(lprec *lp); +typedef COUNTER (__WINAPI get_total_iter_func)(lprec *lp); +typedef COUNTER (__WINAPI get_total_nodes_func)(lprec *lp); +typedef LPSREAL (__WINAPI get_upbo_func)(lprec *lp, int colnr); +typedef int (__WINAPI get_var_branch_func)(lprec *lp, int colnr); +typedef LPSREAL (__WINAPI get_var_dualresult_func)(lprec *lp, int index); +typedef LPSREAL (__WINAPI get_var_primalresult_func)(lprec *lp, int index); +typedef int (__WINAPI get_var_priority_func)(lprec *lp, int colnr); +typedef MYBOOL (__WINAPI get_variables_func)(lprec *lp, LPSREAL *var); +typedef int (__WINAPI get_verbose_func)(lprec *lp); +typedef MYBOOL (__WINAPI guess_basis_func)(lprec *lp, LPSREAL *guessvector, int *basisvector); +typedef LPSREAL (__WINAPI get_working_objective_func)(lprec *lp); +typedef MYBOOL (__WINAPI has_BFP_func)(lprec *lp); +typedef MYBOOL (__WINAPI has_XLI_func)(lprec *lp); +typedef MYBOOL (__WINAPI is_add_rowmode_func)(lprec *lp); +typedef MYBOOL (__WINAPI is_anti_degen_func)(lprec *lp, int testmask); +typedef MYBOOL (__WINAPI is_binary_func)(lprec *lp, int colnr); +typedef MYBOOL (__WINAPI is_break_at_first_func)(lprec *lp); +typedef MYBOOL (__WINAPI is_constr_type_func)(lprec *lp, int rownr, int mask); +typedef MYBOOL (__WINAPI is_debug_func)(lprec *lp); +typedef MYBOOL (__WINAPI is_feasible_func)(lprec *lp, LPSREAL *values, LPSREAL threshold); +typedef MYBOOL (__WINAPI is_unbounded_func)(lprec *lp, int colnr); +typedef MYBOOL (__WINAPI is_infinite_func)(lprec *lp, LPSREAL value); +typedef MYBOOL (__WINAPI is_int_func)(lprec *lp, int column); +typedef MYBOOL (__WINAPI is_integerscaling_func)(lprec *lp); +typedef MYBOOL (__WINAPI is_lag_trace_func)(lprec *lp); +typedef MYBOOL (__WINAPI is_maxim_func)(lprec *lp); +typedef MYBOOL (__WINAPI is_nativeBFP_func)(lprec *lp); +typedef MYBOOL (__WINAPI is_nativeXLI_func)(lprec *lp); +typedef MYBOOL (__WINAPI is_negative_func)(lprec *lp, int colnr); +typedef MYBOOL (__WINAPI is_obj_in_basis_func)(lprec *lp); +typedef MYBOOL (__WINAPI is_piv_mode_func)(lprec *lp, int testmask); +typedef MYBOOL (__WINAPI is_piv_rule_func)(lprec *lp, int rule); +typedef MYBOOL (__WINAPI is_presolve_func)(lprec *lp, int testmask); +typedef MYBOOL (__WINAPI is_scalemode_func)(lprec *lp, int testmask); +typedef MYBOOL (__WINAPI is_scaletype_func)(lprec *lp, int scaletype); +typedef MYBOOL (__WINAPI is_semicont_func)(lprec *lp, int colnr); +typedef MYBOOL (__WINAPI is_SOS_var_func)(lprec *lp, int colnr); +typedef MYBOOL (__WINAPI is_trace_func)(lprec *lp); +typedef void (__WINAPI lp_solve_version_func)(int *majorversion, int *minorversion, int *release, int *build); +typedef lprec * (__WINAPI make_lp_func)(int rows, int columns); +typedef void (__WINAPI print_constraints_func)(lprec *lp, int columns); +typedef MYBOOL (__WINAPI print_debugdump_func)(lprec *lp, char *filename); +typedef void (__WINAPI print_duals_func)(lprec *lp); +typedef void (__WINAPI print_lp_func)(lprec *lp); +typedef void (__WINAPI print_objective_func)(lprec *lp); +typedef void (__WINAPI print_scales_func)(lprec *lp); +typedef void (__WINAPI print_solution_func)(lprec *lp, int columns); +typedef void (__WINAPI print_str_func)(lprec *lp, char *str); +typedef void (__WINAPI print_tableau_func)(lprec *lp); +typedef void (__WINAPI put_abortfunc_func)(lprec *lp, lphandle_intfunc newctrlc, void *ctrlchandle); +typedef void (__WINAPI put_bb_nodefunc_func)(lprec *lp, lphandleint_intfunc newnode, void *bbnodehandle); +typedef void (__WINAPI put_bb_branchfunc_func)(lprec *lp, lphandleint_intfunc newbranch, void *bbbranchhandle); +typedef void (__WINAPI put_logfunc_func)(lprec *lp, lphandlestr_func newlog, void *loghandle); +typedef void (__WINAPI put_msgfunc_func)(lprec *lp, lphandleint_func newmsg, void *msghandle, int mask); +typedef lprec * (__WINAPI read_LP_func)(char *filename, int verbose, char *lp_name); +typedef lprec * (__WINAPI read_MPS_func)(char *filename, int options); +typedef lprec * (__WINAPI read_XLI_func)(char *xliname, char *modelname, char *dataname, char *options, int verbose); +typedef MYBOOL (__WINAPI read_basis_func)(lprec *lp, char *filename, char *info); +typedef void (__WINAPI reset_basis_func)(lprec *lp); +typedef MYBOOL (__WINAPI read_params_func)(lprec *lp, char *filename, char *options); +typedef void (__WINAPI reset_params_func)(lprec *lp); +typedef MYBOOL (__WINAPI resize_lp_func)(lprec *lp, int rows, int columns); +typedef MYBOOL (__WINAPI set_add_rowmode_func)(lprec *lp, MYBOOL turnon); +typedef void (__WINAPI set_anti_degen_func)(lprec *lp, int anti_degen); +typedef int (__WINAPI set_basisvar_func)(lprec *lp, int basisPos, int enteringCol); +typedef MYBOOL (__WINAPI set_basis_func)(lprec *lp, int *bascolumn, MYBOOL nonbasic); +typedef void (__WINAPI set_basiscrash_func)(lprec *lp, int mode); +typedef void (__WINAPI set_bb_depthlimit_func)(lprec *lp, int bb_maxlevel); +typedef void (__WINAPI set_bb_floorfirst_func)(lprec *lp, int bb_floorfirst); +typedef void (__WINAPI set_bb_rule_func)(lprec *lp, int bb_rule); +typedef MYBOOL (__WINAPI set_BFP_func)(lprec *lp, char *filename); +typedef MYBOOL (__WINAPI set_binary_func)(lprec *lp, int colnr, MYBOOL must_be_bin); +typedef MYBOOL (__WINAPI set_bounds_func)(lprec *lp, int colnr, LPSREAL lower, LPSREAL upper); +typedef void (__WINAPI set_bounds_tighter_func)(lprec *lp, MYBOOL tighten); +typedef void (__WINAPI set_break_at_first_func)(lprec *lp, MYBOOL break_at_first); +typedef void (__WINAPI set_break_at_value_func)(lprec *lp, LPSREAL break_at_value); +typedef MYBOOL (__WINAPI set_column_func)(lprec *lp, int colnr, LPSREAL *column); +typedef MYBOOL (__WINAPI set_columnex_func)(lprec *lp, int colnr, int count, LPSREAL *column, int *rowno); +typedef MYBOOL (__WINAPI set_col_name_func)(lprec *lp, int colnr, char *new_name); +typedef MYBOOL (__WINAPI set_constr_type_func)(lprec *lp, int rownr, int con_type); +typedef void (__WINAPI set_debug_func)(lprec *lp, MYBOOL debug); +typedef void (__WINAPI set_epsb_func)(lprec *lp, LPSREAL epsb); +typedef void (__WINAPI set_epsd_func)(lprec *lp, LPSREAL epsd); +typedef void (__WINAPI set_epsel_func)(lprec *lp, LPSREAL epsel); +typedef void (__WINAPI set_epsint_func)(lprec *lp, LPSREAL epsint); +typedef MYBOOL (__WINAPI set_epslevel_func)(lprec *lp, int epslevel); +typedef void (__WINAPI set_epsperturb_func)(lprec *lp, LPSREAL epsperturb); +typedef void (__WINAPI set_epspivot_func)(lprec *lp, LPSREAL epspivot); +typedef MYBOOL (__WINAPI set_unbounded_func)(lprec *lp, int colnr); +typedef void (__WINAPI set_improve_func)(lprec *lp, int improve); +typedef void (__WINAPI set_infinite_func)(lprec *lp, LPSREAL infinite); +typedef MYBOOL (__WINAPI set_int_func)(lprec *lp, int colnr, MYBOOL must_be_int); +typedef void (__WINAPI set_lag_trace_func)(lprec *lp, MYBOOL lag_trace); +typedef MYBOOL (__WINAPI set_lowbo_func)(lprec *lp, int colnr, LPSREAL value); +typedef MYBOOL (__WINAPI set_lp_name_func)(lprec *lp, char *lpname); +typedef MYBOOL (__WINAPI set_mat_func)(lprec *lp, int row, int column, LPSREAL value); +typedef void (__WINAPI set_maxim_func)(lprec *lp); +typedef void (__WINAPI set_maxpivot_func)(lprec *lp, int max_num_inv); +typedef void (__WINAPI set_minim_func)(lprec *lp); +typedef void (__WINAPI set_mip_gap_func)(lprec *lp, MYBOOL absolute, LPSREAL mip_gap); +typedef MYBOOL (__WINAPI set_multiprice_func)(lprec *lp, int multiblockdiv); +typedef void (__WINAPI set_negrange_func)(lprec *lp, LPSREAL negrange); +typedef MYBOOL (__WINAPI set_obj_func)(lprec *lp, int colnr, LPSREAL value); +typedef void (__WINAPI set_obj_bound_func)(lprec *lp, LPSREAL obj_bound); +typedef MYBOOL (__WINAPI set_obj_fn_func)(lprec *lp, LPSREAL *row); +typedef MYBOOL (__WINAPI set_obj_fnex_func)(lprec *lp, int count, LPSREAL *row, int *colno); +typedef void (__WINAPI set_obj_in_basis_func)(lprec *lp, MYBOOL obj_in_basis); +typedef MYBOOL (__WINAPI set_outputfile_func)(lprec *lp, char *filename); +typedef void (__WINAPI set_outputstream_func)(lprec *lp, FILE *stream); +typedef MYBOOL (__WINAPI set_partialprice_func)(lprec *lp, int blockcount, int *blockstart, MYBOOL isrow); +typedef void (__WINAPI set_pivoting_func)(lprec *lp, int piv_rule); +typedef void (__WINAPI set_preferdual_func)(lprec *lp, MYBOOL dodual); +typedef void (__WINAPI set_presolve_func)(lprec *lp, int presolvemode, int maxloops); +typedef void (__WINAPI set_print_sol_func)(lprec *lp, int print_sol); +typedef MYBOOL (__WINAPI set_pseudocosts_func)(lprec *lp, LPSREAL *clower, LPSREAL *cupper, int *updatelimit); +typedef MYBOOL (__WINAPI set_rh_func)(lprec *lp, int rownr, LPSREAL value); +typedef MYBOOL (__WINAPI set_rh_range_func)(lprec *lp, int rownr, LPSREAL deltavalue); +typedef void (__WINAPI set_rh_vec_func)(lprec *lp, LPSREAL *rh); +typedef MYBOOL (__WINAPI set_row_func)(lprec *lp, int rownr, LPSREAL *row); +typedef MYBOOL (__WINAPI set_rowex_func)(lprec *lp, int rownr, int count, LPSREAL *row, int *colno); +typedef MYBOOL (__WINAPI set_row_name_func)(lprec *lp, int rownr, char *new_name); +typedef void (__WINAPI set_scalelimit_func)(lprec *lp, LPSREAL scalelimit); +typedef void (__WINAPI set_scaling_func)(lprec *lp, int scalemode); +typedef MYBOOL (__WINAPI set_semicont_func)(lprec *lp, int colnr, MYBOOL must_be_sc); +typedef void (__WINAPI set_sense_func)(lprec *lp, MYBOOL maximize); +typedef void (__WINAPI set_simplextype_func)(lprec *lp, int simplextype); +typedef void (__WINAPI set_solutionlimit_func)(lprec *lp, int limit); +typedef void (__WINAPI set_timeout_func)(lprec *lp, long sectimeout); +typedef void (__WINAPI set_trace_func)(lprec *lp, MYBOOL trace); +typedef MYBOOL (__WINAPI set_upbo_func)(lprec *lp, int colnr, LPSREAL value); +typedef MYBOOL (__WINAPI set_var_branch_func)(lprec *lp, int colnr, int branch_mode); +typedef MYBOOL (__WINAPI set_var_weights_func)(lprec *lp, LPSREAL *weights); +typedef void (__WINAPI set_verbose_func)(lprec *lp, int verbose); +typedef MYBOOL (__WINAPI set_XLI_func)(lprec *lp, char *filename); +typedef int (__WINAPI solve_func)(lprec *lp); +typedef MYBOOL (__WINAPI str_add_column_func)(lprec *lp, char *col_string); +typedef MYBOOL (__WINAPI str_add_constraint_func)(lprec *lp, char *row_string ,int constr_type, LPSREAL rh); +typedef MYBOOL (__WINAPI str_add_lag_con_func)(lprec *lp, char *row_string, int con_type, LPSREAL rhs); +typedef MYBOOL (__WINAPI str_set_obj_fn_func)(lprec *lp, char *row_string); +typedef MYBOOL (__WINAPI str_set_rh_vec_func)(lprec *lp, char *rh_string); +typedef LPSREAL (__WINAPI time_elapsed_func)(lprec *lp); +typedef void (__WINAPI unscale_func)(lprec *lp); +typedef MYBOOL (__WINAPI write_lp_func)(lprec *lp, char *filename); +typedef MYBOOL (__WINAPI write_LP_func)(lprec *lp, FILE *output); +typedef MYBOOL (__WINAPI write_mps_func)(lprec *lp, char *filename); +typedef MYBOOL (__WINAPI write_MPS_func)(lprec *lp, FILE *output); +typedef MYBOOL (__WINAPI write_freemps_func)(lprec *lp, char *filename); +typedef MYBOOL (__WINAPI write_freeMPS_func)(lprec *lp, FILE *output); +typedef MYBOOL (__WINAPI write_XLI_func)(lprec *lp, char *filename, char *options, MYBOOL results); +typedef MYBOOL (__WINAPI write_basis_func)(lprec *lp, char *filename); +typedef MYBOOL (__WINAPI write_params_func)(lprec *lp, char *filename, char *options); + + +/* Prototypes for callbacks from basis inverse/factorization libraries */ +/* ------------------------------------------------------------------------- */ +typedef MYBOOL (__WINAPI userabortfunc)(lprec *lp, int level); +typedef void (__VACALL reportfunc)(lprec *lp, int level, char *format, ...); +typedef char * (__VACALL explainfunc)(lprec *lp, char *format, ...); +typedef int (__WINAPI getvectorfunc)(lprec *lp, int varin, LPSREAL *pcol, int *nzlist, int *maxabs); +typedef int (__WINAPI getpackedfunc)(lprec *lp, int j, int rn[], double bj[]); +typedef LPSREAL (__WINAPI get_OF_activefunc)(lprec *lp, int varnr, LPSREAL mult); +typedef int (__WINAPI getMDOfunc)(lprec *lp, MYBOOL *usedpos, int *colorder, int *size, MYBOOL symmetric); +typedef MYBOOL (__WINAPI invertfunc)(lprec *lp, MYBOOL shiftbounds, MYBOOL final); +typedef void (__WINAPI set_actionfunc)(int *actionvar, int actionmask); +typedef MYBOOL (__WINAPI is_actionfunc)(int actionvar, int testmask); +typedef void (__WINAPI clear_actionfunc)(int *actionvar, int actionmask); + + +/* Prototypes for basis inverse/factorization libraries */ +/* ------------------------------------------------------------------------- */ +typedef char *(BFP_CALLMODEL BFPchar)(void); +typedef void (BFP_CALLMODEL BFP_lp)(lprec *lp); +typedef void (BFP_CALLMODEL BFP_lpint)(lprec *lp, int newsize); +typedef int (BFP_CALLMODEL BFPint_lp)(lprec *lp); +typedef int (BFP_CALLMODEL BFPint_lpint)(lprec *lp, int kind); +typedef LPSREAL (BFP_CALLMODEL BFPreal_lp)(lprec *lp); +typedef LPSREAL *(BFP_CALLMODEL BFPrealp_lp)(lprec *lp); +typedef void (BFP_CALLMODEL BFP_lpbool)(lprec *lp, MYBOOL maximum); +typedef int (BFP_CALLMODEL BFPint_lpbool)(lprec *lp, MYBOOL maximum); +typedef int (BFP_CALLMODEL BFPint_lpintintboolbool)(lprec *lp, int uservars, int Bsize, MYBOOL *usedpos, MYBOOL final); +typedef void (BFP_CALLMODEL BFP_lprealint)(lprec *lp, LPSREAL *pcol, int *nzidx); +typedef void (BFP_CALLMODEL BFP_lprealintrealint)(lprec *lp, LPSREAL *prow, int *pnzidx, LPSREAL *drow, int *dnzidx); +typedef MYBOOL (BFP_CALLMODEL BFPbool_lp)(lprec *lp); +typedef MYBOOL (BFP_CALLMODEL BFPbool_lpbool)(lprec *lp, MYBOOL changesign); +typedef MYBOOL (BFP_CALLMODEL BFPbool_lpint)(lprec *lp, int size); +typedef MYBOOL (BFP_CALLMODEL BFPbool_lpintintchar)(lprec *lp, int size, int deltasize, char *options); +typedef MYBOOL (BFP_CALLMODEL BFPbool_lpintintint)(lprec *lp, int size, int deltasize, int sizeofvar); +typedef LREAL (BFP_CALLMODEL BFPlreal_lpintintreal)(lprec *lp, int row_nr, int col_nr, LPSREAL *pcol); +typedef LPSREAL (BFP_CALLMODEL BFPreal_lplrealreal)(lprec *lp, LREAL theta, LPSREAL *pcol); + +typedef int (BFP_CALLMODEL getcolumnex_func)(lprec *lp, int colnr, LPSREAL *nzvalues, int *nzrows, int *mapin); +typedef int (BFP_CALLMODEL BFPint_lpintrealcbintint)(lprec *lp, int items, getcolumnex_func cb, int *maprow, int*mapcol); + +/* Prototypes for external language libraries */ +/* ------------------------------------------------------------------------- */ +typedef char *(XLI_CALLMODEL XLIchar)(void); +typedef MYBOOL (XLI_CALLMODEL XLIbool_lpintintint)(lprec* lp, int size, int deltasize, int sizevar); +typedef MYBOOL (XLI_CALLMODEL XLIbool_lpcharcharcharint)(lprec *lp, char *modelname, char *dataname, char *options, int verbose); +typedef MYBOOL (XLI_CALLMODEL XLIbool_lpcharcharbool)(lprec *lp, char *filename, char *options, MYBOOL results); + + +/* Main lp_solve prototypes and function definitions */ +/* ------------------------------------------------------------------------- */ +struct _lprec +{ + /* Full list of exported functions made available in a quasi object-oriented fashion */ + add_column_func *add_column; + add_columnex_func *add_columnex; + add_constraint_func *add_constraint; + add_constraintex_func *add_constraintex; + add_lag_con_func *add_lag_con; + add_SOS_func *add_SOS; + column_in_lp_func *column_in_lp; + copy_lp_func *copy_lp; + default_basis_func *default_basis; + del_column_func *del_column; + del_constraint_func *del_constraint; + delete_lp_func *delete_lp; + dualize_lp_func *dualize_lp; + free_lp_func *free_lp; + get_anti_degen_func *get_anti_degen; + get_basis_func *get_basis; + get_basiscrash_func *get_basiscrash; + get_bb_depthlimit_func *get_bb_depthlimit; + get_bb_floorfirst_func *get_bb_floorfirst; + get_bb_rule_func *get_bb_rule; + get_bounds_tighter_func *get_bounds_tighter; + get_break_at_value_func *get_break_at_value; + get_col_name_func *get_col_name; + get_columnex_func *get_columnex; + get_constr_type_func *get_constr_type; + get_constr_value_func *get_constr_value; + get_constraints_func *get_constraints; + get_dual_solution_func *get_dual_solution; + get_epsb_func *get_epsb; + get_epsd_func *get_epsd; + get_epsel_func *get_epsel; + get_epsint_func *get_epsint; + get_epsperturb_func *get_epsperturb; + get_epspivot_func *get_epspivot; + get_improve_func *get_improve; + get_infinite_func *get_infinite; + get_lambda_func *get_lambda; + get_lowbo_func *get_lowbo; + get_lp_index_func *get_lp_index; + get_lp_name_func *get_lp_name; + get_Lrows_func *get_Lrows; + get_mat_func *get_mat; + get_mat_byindex_func *get_mat_byindex; + get_max_level_func *get_max_level; + get_maxpivot_func *get_maxpivot; + get_mip_gap_func *get_mip_gap; + get_multiprice_func *get_multiprice; + get_nameindex_func *get_nameindex; + get_Ncolumns_func *get_Ncolumns; + get_negrange_func *get_negrange; + get_nz_func *get_nonzeros; + get_Norig_columns_func *get_Norig_columns; + get_Norig_rows_func *get_Norig_rows; + get_Nrows_func *get_Nrows; + get_obj_bound_func *get_obj_bound; + get_objective_func *get_objective; + get_orig_index_func *get_orig_index; + get_origcol_name_func *get_origcol_name; + get_origrow_name_func *get_origrow_name; + get_partialprice_func *get_partialprice; + get_pivoting_func *get_pivoting; + get_presolve_func *get_presolve; + get_presolveloops_func *get_presolveloops; + get_primal_solution_func *get_primal_solution; + get_print_sol_func *get_print_sol; + get_pseudocosts_func *get_pseudocosts; + get_ptr_constraints_func *get_ptr_constraints; + get_ptr_dual_solution_func *get_ptr_dual_solution; + get_ptr_lambda_func *get_ptr_lambda; + get_ptr_primal_solution_func *get_ptr_primal_solution; + get_ptr_sensitivity_obj_func *get_ptr_sensitivity_obj; + get_ptr_sensitivity_objex_func *get_ptr_sensitivity_objex; + get_ptr_sensitivity_rhs_func *get_ptr_sensitivity_rhs; + get_ptr_variables_func *get_ptr_variables; + get_rh_func *get_rh; + get_rh_range_func *get_rh_range; + get_row_func *get_row; + get_rowex_func *get_rowex; + get_row_name_func *get_row_name; + get_scalelimit_func *get_scalelimit; + get_scaling_func *get_scaling; + get_sensitivity_obj_func *get_sensitivity_obj; + get_sensitivity_objex_func *get_sensitivity_objex; + get_sensitivity_rhs_func *get_sensitivity_rhs; + get_simplextype_func *get_simplextype; + get_solutioncount_func *get_solutioncount; + get_solutionlimit_func *get_solutionlimit; + get_status_func *get_status; + get_statustext_func *get_statustext; + get_timeout_func *get_timeout; + get_total_iter_func *get_total_iter; + get_total_nodes_func *get_total_nodes; + get_upbo_func *get_upbo; + get_var_branch_func *get_var_branch; + get_var_dualresult_func *get_var_dualresult; + get_var_primalresult_func *get_var_primalresult; + get_var_priority_func *get_var_priority; + get_variables_func *get_variables; + get_verbose_func *get_verbose; + get_working_objective_func *get_working_objective; + has_BFP_func *has_BFP; + has_XLI_func *has_XLI; + is_add_rowmode_func *is_add_rowmode; + is_anti_degen_func *is_anti_degen; + is_binary_func *is_binary; + is_break_at_first_func *is_break_at_first; + is_constr_type_func *is_constr_type; + is_debug_func *is_debug; + is_feasible_func *is_feasible; + is_infinite_func *is_infinite; + is_int_func *is_int; + is_integerscaling_func *is_integerscaling; + is_lag_trace_func *is_lag_trace; + is_maxim_func *is_maxim; + is_nativeBFP_func *is_nativeBFP; + is_nativeXLI_func *is_nativeXLI; + is_negative_func *is_negative; + is_obj_in_basis_func *is_obj_in_basis; + is_piv_mode_func *is_piv_mode; + is_piv_rule_func *is_piv_rule; + is_presolve_func *is_presolve; + is_scalemode_func *is_scalemode; + is_scaletype_func *is_scaletype; + is_semicont_func *is_semicont; + is_SOS_var_func *is_SOS_var; + is_trace_func *is_trace; + is_unbounded_func *is_unbounded; + is_use_names_func *is_use_names; + lp_solve_version_func *lp_solve_version; + make_lp_func *make_lp; + print_constraints_func *print_constraints; + print_debugdump_func *print_debugdump; + print_duals_func *print_duals; + print_lp_func *print_lp; + print_objective_func *print_objective; + print_scales_func *print_scales; + print_solution_func *print_solution; + print_str_func *print_str; + print_tableau_func *print_tableau; + put_abortfunc_func *put_abortfunc; + put_bb_nodefunc_func *put_bb_nodefunc; + put_bb_branchfunc_func *put_bb_branchfunc; + put_logfunc_func *put_logfunc; + put_msgfunc_func *put_msgfunc; + read_LP_func *read_LP; + read_MPS_func *read_MPS; + read_XLI_func *read_XLI; + read_params_func *read_params; + read_basis_func *read_basis; + reset_basis_func *reset_basis; + reset_params_func *reset_params; + resize_lp_func *resize_lp; + set_add_rowmode_func *set_add_rowmode; + set_anti_degen_func *set_anti_degen; + set_basisvar_func *set_basisvar; + set_basis_func *set_basis; + set_basiscrash_func *set_basiscrash; + set_bb_depthlimit_func *set_bb_depthlimit; + set_bb_floorfirst_func *set_bb_floorfirst; + set_bb_rule_func *set_bb_rule; + set_BFP_func *set_BFP; + set_binary_func *set_binary; + set_bounds_func *set_bounds; + set_bounds_tighter_func *set_bounds_tighter; + set_break_at_first_func *set_break_at_first; + set_break_at_value_func *set_break_at_value; + set_column_func *set_column; + set_columnex_func *set_columnex; + set_col_name_func *set_col_name; + set_constr_type_func *set_constr_type; + set_debug_func *set_debug; + set_epsb_func *set_epsb; + set_epsd_func *set_epsd; + set_epsel_func *set_epsel; + set_epsint_func *set_epsint; + set_epslevel_func *set_epslevel; + set_epsperturb_func *set_epsperturb; + set_epspivot_func *set_epspivot; + set_unbounded_func *set_unbounded; + set_improve_func *set_improve; + set_infinite_func *set_infinite; + set_int_func *set_int; + set_lag_trace_func *set_lag_trace; + set_lowbo_func *set_lowbo; + set_lp_name_func *set_lp_name; + set_mat_func *set_mat; + set_maxim_func *set_maxim; + set_maxpivot_func *set_maxpivot; + set_minim_func *set_minim; + set_mip_gap_func *set_mip_gap; + set_multiprice_func *set_multiprice; + set_negrange_func *set_negrange; + set_obj_bound_func *set_obj_bound; + set_obj_fn_func *set_obj_fn; + set_obj_fnex_func *set_obj_fnex; + set_obj_func *set_obj; + set_obj_in_basis_func *set_obj_in_basis; + set_outputfile_func *set_outputfile; + set_outputstream_func *set_outputstream; + set_partialprice_func *set_partialprice; + set_pivoting_func *set_pivoting; + set_preferdual_func *set_preferdual; + set_presolve_func *set_presolve; + set_print_sol_func *set_print_sol; + set_pseudocosts_func *set_pseudocosts; + set_rh_func *set_rh; + set_rh_range_func *set_rh_range; + set_rh_vec_func *set_rh_vec; + set_row_func *set_row; + set_rowex_func *set_rowex; + set_row_name_func *set_row_name; + set_scalelimit_func *set_scalelimit; + set_scaling_func *set_scaling; + set_semicont_func *set_semicont; + set_sense_func *set_sense; + set_simplextype_func *set_simplextype; + set_solutionlimit_func *set_solutionlimit; + set_timeout_func *set_timeout; + set_trace_func *set_trace; + set_upbo_func *set_upbo; + set_use_names_func *set_use_names; + set_var_branch_func *set_var_branch; + set_var_weights_func *set_var_weights; + set_verbose_func *set_verbose; + set_XLI_func *set_XLI; + solve_func *solve; + str_add_column_func *str_add_column; + str_add_constraint_func *str_add_constraint; + str_add_lag_con_func *str_add_lag_con; + str_set_obj_fn_func *str_set_obj_fn; + str_set_rh_vec_func *str_set_rh_vec; + time_elapsed_func *time_elapsed; + unscale_func *unscale; + write_lp_func *write_lp; + write_LP_func *write_LP; + write_mps_func *write_mps; + write_MPS_func *write_MPS; + write_freemps_func *write_freemps; + write_freeMPS_func *write_freeMPS; + write_XLI_func *write_XLI; + write_basis_func *write_basis; + write_params_func *write_params; + + /* Spacer */ + int *alignmentspacer; + + /* Problem description */ + char *lp_name; /* The name of the model */ + + /* Problem sizes */ + int sum; /* The total number of variables, including slacks */ + int rows; + int columns; + int equalities; /* No of non-Lagrangean equality constraints in the problem */ + int boundedvars; /* Count of bounded variables */ + int INTfuture1; + + /* Memory allocation sizes */ + int sum_alloc; /* The allocated memory for row+column-sized data */ + int rows_alloc; /* The allocated memory for row-sized data */ + int columns_alloc; /* The allocated memory for column-sized data */ + + /* Model status and solver result variables */ + MYBOOL source_is_file; /* The base model was read from a file */ + MYBOOL model_is_pure; /* The model has been built entirely from row and column additions */ + MYBOOL model_is_valid; /* Has this lp pased the 'test' */ + MYBOOL tighten_on_set; /* Specify if bounds will be tightened or overriden at bound setting */ + MYBOOL names_used; /* Flag to indicate if names for rows and columns are used */ + MYBOOL use_row_names; /* Flag to indicate if names for rows are used */ + MYBOOL use_col_names; /* Flag to indicate if names for columns are used */ + + MYBOOL lag_trace; /* Print information on Lagrange progression */ + MYBOOL spx_trace; /* Print information on simplex progression */ + MYBOOL bb_trace; /* TRUE to print extra debug information */ + MYBOOL streamowned; /* TRUE if the handle should be closed at delete_lp() */ + MYBOOL obj_in_basis; /* TRUE if the objective function is in the basis matrix */ + + int spx_status; /* Simplex solver feasibility/mode code */ + int lag_status; /* Extra status variable for lag_solve */ + int solutioncount; /* number of equal-valued solutions found (up to solutionlimit) */ + int solutionlimit; /* upper number of equal-valued solutions kept track of */ + + LPSREAL real_solution; /* Optimal non-MIP solution base */ + LPSREAL *solution; /* sum_alloc+1 : Solution array of the next to optimal LP, + Index 0 : Objective function value, + Indeces 1..rows : Slack variable values, + Indeced rows+1..sum : Variable values */ + LPSREAL *best_solution; /* sum_alloc+1 : Solution array of optimal 'Integer' LP, + structured as the solution array above */ + LPSREAL *full_solution; /* sum_alloc+1 : Final solution array expanded for deleted variables */ + LPSREAL *edgeVector; /* Array of reduced cost scaling norms (DEVEX and Steepest Edge) */ + + LPSREAL *drow; /* sum+1: Reduced costs of the last simplex */ + int *nzdrow; /* sum+1: Indeces of non-zero reduced costs of the last simplex */ + LPSREAL *duals; /* rows_alloc+1 : The dual variables of the last LP */ + LPSREAL *full_duals; /* sum_alloc+1: Final duals array expanded for deleted variables */ + LPSREAL *dualsfrom; /* sum_alloc+1 :The sensitivity on dual variables/reduced costs + of the last LP */ + LPSREAL *dualstill; /* sum_alloc+1 :The sensitivity on dual variables/reduced costs + of the last LP */ + LPSREAL *objfrom; /* columns_alloc+1 :The sensitivity on objective function + of the last LP */ + LPSREAL *objtill; /* columns_alloc+1 :The sensitivity on objective function + of the last LP */ + LPSREAL *objfromvalue; /* columns_alloc+1 :The value of the variables when objective value + is at its from value of the last LP */ + LPSREAL *orig_obj; /* Unused pointer - Placeholder for OF not part of B */ + LPSREAL *obj; /* Special vector used to temporarily change the OF vector */ + + COUNTER current_iter; /* Number of iterations in the current/last simplex */ + COUNTER total_iter; /* Number of iterations over all B&B steps */ + COUNTER current_bswap; /* Number of bound swaps in the current/last simplex */ + COUNTER total_bswap; /* Number of bount swaps over all B&B steps */ + int solvecount; /* The number of solve() performed in this model */ + int max_pivots; /* Number of pivots between refactorizations of the basis */ + + /* Various execution parameters */ + int simplex_strategy; /* Set desired combination of primal and dual simplex algorithms */ + int simplex_mode; /* Specifies the current simplex mode during solve; see simplex_strategy */ + int verbose; /* Set amount of run-time messages and results */ + int print_sol; /* TRUE to print optimal solution; AUTOMATIC skips zeros */ + FILE *outstream; /* Output stream, initialized to STDOUT */ + + /* Main Branch and Bound settings */ + MYBOOL *bb_varbranch; /* Determines branching strategy at the individual variable level; + the setting here overrides the bb_floorfirst setting */ + int piv_strategy; /* Strategy for selecting row and column entering/leaving */ + int _piv_rule_; /* Internal working rule-part of piv_strategy above */ + int bb_rule; /* Rule for selecting B&B variables */ + MYBOOL bb_floorfirst; /* Set BRANCH_FLOOR for B&B to set variables to floor bound first; + conversely with BRANCH_CEILING, the ceiling value is set first */ + MYBOOL bb_breakfirst; /* TRUE to stop at first feasible solution */ + MYBOOL _piv_left_; /* Internal variable indicating active pricing loop order */ + MYBOOL BOOLfuture1; + + LPSREAL scalelimit; /* Relative convergence criterion for iterated scaling */ + int scalemode; /* OR-ed codes for data scaling */ + int improve; /* Set to non-zero for iterative improvement */ + int anti_degen; /* Anti-degen strategy (or none) TRUE to avoid cycling */ + int do_presolve; /* PRESOLVE_ parameters for LP presolving */ + int presolveloops; /* Maximum number of presolve loops */ + + int perturb_count; /* The number of bound relaxation retries performed */ + + /* Row and column names storage variables */ + hashelem **row_name; /* rows_alloc+1 */ + hashelem **col_name; /* columns_alloc+1 */ + hashtable *rowname_hashtab; /* hash table to store row names */ + hashtable *colname_hashtab; /* hash table to store column names */ + + /* Optionally specify continuous rows/column blocks for partial pricing */ + partialrec *rowblocks; + partialrec *colblocks; + + /* Row and column type codes */ + MYBOOL *var_type; /* sum_alloc+1 : TRUE if variable must be integer */ + + /* Data for multiple pricing */ + multirec *multivars; + int multiblockdiv; /* The divisor used to set or augment pricing block */ + + /* Variable (column) parameters */ + int fixedvars; /* The current number of basic fixed variables in the model */ + int int_vars; /* Number of variables required to be integer */ + + int sc_vars; /* Number of semi-continuous variables */ + LPSREAL *sc_lobound; /* sum_columns+1 : TRUE if variable is semi-continuous; + value replaced by conventional lower bound during solve */ + int *var_is_free; /* columns+1: Index of twin variable if variable is free */ + int *var_priority; /* columns: Priority-mapping of variables */ + + SOSgroup *GUB; /* Pointer to record containing GUBs */ + + int sos_vars; /* Number of variables in the sos_priority list */ + int sos_ints; /* Number of integers in SOS'es above */ + SOSgroup *SOS; /* Pointer to record containing all SOS'es */ + int *sos_priority; /* Priority-sorted list of variables (no duplicates) */ + + /* Optionally specify list of active rows/columns used in multiple pricing */ + LPSREAL *bsolveVal; /* rows+1: bsolved solution vector for reduced costs */ + int *bsolveIdx; /* rows+1: Non-zero indeces of bsolveVal */ + + /* RHS storage */ + LPSREAL *orig_rhs; /* rows_alloc+1 : The RHS after scaling and sign + changing, but before 'Bound transformation' */ + LREAL *rhs; /* rows_alloc+1 : The RHS of the current simplex tableau */ + + /* Row (constraint) parameters */ + int *row_type; /* rows_alloc+1 : Row/constraint type coding */ + + /* Optionally specify data for dual long-step */ + multirec *longsteps; + + /* Original and working row and variable bounds */ + LPSREAL *orig_upbo; /* sum_alloc+1 : Bound before transformations */ + LPSREAL *upbo; /* " " : Upper bound after transformation and B&B work */ + LPSREAL *orig_lowbo; /* " " */ + LPSREAL *lowbo; /* " " : Lower bound after transformation and B&B work */ + + /* User data and basis factorization matrices (ETA or LU, product form) */ + MATrec *matA; + INVrec *invB; + + /* Basis and bounds */ + BBrec *bb_bounds; /* The linked list of B&B bounds */ + BBrec *rootbounds; /* The bounds at the lowest B&B level */ + basisrec *bb_basis; /* The linked list of B&B bases */ + basisrec *rootbasis; + OBJmonrec *monitor; /* Objective monitoring record for stalling/degeneracy handling */ + + /* Scaling parameters */ + LPSREAL *scalars; /* sum_alloc+1:0..Rows the scaling of the rows, + Rows+1..Sum the scaling of the columns */ + MYBOOL scaling_used; /* TRUE if scaling is used */ + MYBOOL columns_scaled; /* TRUE if the columns are scaled too */ + MYBOOL varmap_locked; /* Determines whether the var_to_orig and orig_to_var are fixed */ + + /* Variable state information */ + MYBOOL basis_valid; /* TRUE is the basis is still valid */ + int crashmode; /* Basis crashing mode (or none) */ + int *var_basic; /* rows_alloc+1: The list of columns in the basis */ + LPSREAL *val_nonbasic; /* Array to store current values of non-basic variables */ + MYBOOL *is_basic; /* sum_alloc+1: TRUE if the column is in the basis */ + MYBOOL *is_lower; /* " " : TRUE if the variable is at its + lower bound (or in the basis), FALSE otherwise */ + + /* Simplex basis indicators */ + int *rejectpivot; /* List of unacceptable pivot choices due to division-by-zero */ + BBPSrec *bb_PseudoCost; /* Data structure for costing of node branchings */ + int bb_PseudoUpdates; /* Maximum number of updates for pseudo-costs */ + int bb_strongbranches; /* The number of strong B&B branches performed */ + int is_strongbranch; /* Are we currently in a strong branch mode? */ + int bb_improvements; /* The number of discrete B&B objective improvement steps */ + + /* Solver working variables */ + LPSREAL rhsmax; /* The maximum |value| of the rhs vector at any iteration */ + LPSREAL suminfeas; /* The working sum of primal and dual infeasibilities */ + LPSREAL bigM; /* Original objective weighting in primal phase 1 */ + LPSREAL P1extraVal; /* Phase 1 OF/RHS offset for feasibility */ + int P1extraDim; /* Phase 1 additional columns/rows for feasibility */ + int spx_action; /* ACTION_ variables for the simplex routine */ + MYBOOL spx_perturbed; /* The variable bounds were relaxed/perturbed into this simplex */ + MYBOOL bb_break; /* Solver working variable; signals break of the B&B */ + MYBOOL wasPreprocessed; /* The solve preprocessing was performed */ + MYBOOL wasPresolved; /* The solve presolver was invoked */ + int INTfuture2; + + /* Lagragean solver storage and parameters */ + MATrec *matL; + LPSREAL *lag_rhs; /* Array of Lagrangean rhs vector */ + int *lag_con_type; /* Array of GT, LT or EQ */ + LPSREAL *lambda; /* Lambda values (Lagrangean multipliers) */ + LPSREAL lag_bound; /* The Lagrangian lower OF bound */ + LPSREAL lag_accept; /* The Lagrangian convergence criterion */ + + /* Solver thresholds */ + LPSREAL infinite; /* Limit for dynamic range */ + LPSREAL negrange; /* Limit for negative variable range */ + LPSREAL epsmachine; /* Default machine accuracy */ + LPSREAL epsvalue; /* Input data precision / rounding of data values to 0 */ + LPSREAL epsprimal; /* For rounding RHS values to 0/infeasibility */ + LPSREAL epsdual; /* For rounding reduced costs to zero */ + LPSREAL epspivot; /* Pivot reject tolerance */ + LPSREAL epsperturb; /* Perturbation scalar */ + LPSREAL epssolution; /* The solution tolerance for final validation */ + + /* Branch & Bound working parameters */ + int bb_status; /* Indicator that the last solvelp() gave an improved B&B solution */ + int bb_level; /* Solver B&B working variable (recursion depth) */ + int bb_maxlevel; /* The deepest B&B level of the last solution */ + int bb_limitlevel; /* The maximum B&B level allowed */ + COUNTER bb_totalnodes; /* Total number of nodes processed in B&B */ + int bb_solutionlevel; /* The B&B level of the last / best solution */ + int bb_cutpoolsize; /* Size of the B&B cut pool */ + int bb_cutpoolused; /* Currently used cut pool */ + int bb_constraintOF; /* General purpose B&B parameter (typically for testing) */ + int *bb_cuttype; /* The type of the currently used cuts */ + int *bb_varactive; /* The B&B state of the variable; 0 means inactive */ + DeltaVrec *bb_upperchange; /* Changes to upper bounds during the B&B phase */ + DeltaVrec *bb_lowerchange; /* Changes to lower bounds during the B&B phase */ + + LPSREAL bb_deltaOF; /* Minimum OF step value; computed at beginning of solve() */ + + LPSREAL bb_breakOF; /* User-settable value for the objective function deemed + to be sufficiently good in an integer problem */ + LPSREAL bb_limitOF; /* "Dual" bound / limit to final optimal MIP solution */ + LPSREAL bb_heuristicOF; /* Set initial "at least better than" guess for objective function + (can significantly speed up B&B iterations) */ + LPSREAL bb_parentOF; /* The OF value of the previous BB simplex */ + LPSREAL bb_workOF; /* The unadjusted OF value for the current best solution */ + + /* Internal work arrays allocated as required */ + presolveundorec *presolve_undo; + workarraysrec *workarrays; + + /* MIP parameters */ + LPSREAL epsint; /* Margin of error in determining if a float value is integer */ + LPSREAL mip_absgap; /* Absolute MIP gap */ + LPSREAL mip_relgap; /* Relative MIP gap */ + + /* Time/timer variables and extended status text */ + double timecreate; + double timestart; + double timeheuristic; + double timepresolved; + double timeend; + long sectimeout; + + /* Extended status message text set via explain() */ + char *ex_status; + + /* Refactorization engine interface routines (for dynamic DLL/SO BFPs) */ +#if LoadInverseLib == TRUE + #ifdef WIN32 + HINSTANCE hBFP; + #else + void *hBFP; + #endif +#endif + BFPchar *bfp_name; + BFPbool_lpintintint *bfp_compatible; + BFPbool_lpintintchar *bfp_init; + BFP_lp *bfp_free; + BFPbool_lpint *bfp_resize; + BFPint_lp *bfp_memallocated; + BFPbool_lp *bfp_restart; + BFPbool_lp *bfp_mustrefactorize; + BFPint_lp *bfp_preparefactorization; + BFPint_lpintintboolbool *bfp_factorize; + BFP_lp *bfp_finishfactorization; + BFP_lp *bfp_updaterefactstats; + BFPlreal_lpintintreal *bfp_prepareupdate; + BFPreal_lplrealreal *bfp_pivotRHS; + BFPbool_lpbool *bfp_finishupdate; + BFP_lprealint *bfp_ftran_prepare; + BFP_lprealint *bfp_ftran_normal; + BFP_lprealint *bfp_btran_normal; + BFP_lprealintrealint *bfp_btran_double; + BFPint_lp *bfp_status; + BFPint_lpbool *bfp_nonzeros; + BFPbool_lp *bfp_implicitslack; + BFPint_lp *bfp_indexbase; + BFPint_lp *bfp_rowoffset; + BFPint_lp *bfp_pivotmax; + BFPbool_lpint *bfp_pivotalloc; + BFPint_lp *bfp_colcount; + BFPbool_lp *bfp_canresetbasis; + BFPreal_lp *bfp_efficiency; + BFPrealp_lp *bfp_pivotvector; + BFPint_lp *bfp_pivotcount; + BFPint_lpint *bfp_refactcount; + BFPbool_lp *bfp_isSetI; + BFPint_lpintrealcbintint *bfp_findredundant; + + /* External language interface routines (for dynamic DLL/SO XLIs) */ +#if LoadLanguageLib == TRUE + #ifdef WIN32 + HINSTANCE hXLI; + #else + void *hXLI; + #endif +#endif + XLIchar *xli_name; + XLIbool_lpintintint *xli_compatible; + XLIbool_lpcharcharcharint *xli_readmodel; + XLIbool_lpcharcharbool *xli_writemodel; + + /* Miscellaneous internal functions made available externally */ + userabortfunc *userabort; + reportfunc *report; + explainfunc *explain; + getvectorfunc *get_lpcolumn; + getpackedfunc *get_basiscolumn; + get_OF_activefunc *get_OF_active; + getMDOfunc *getMDO; + invertfunc *invert; + set_actionfunc *set_action; + is_actionfunc *is_action; + clear_actionfunc *clear_action; + + /* User program interface callbacks */ + lphandle_intfunc *ctrlc; + void *ctrlchandle; /* User-specified "owner process ID" */ + lphandlestr_func *writelog; + void *loghandle; /* User-specified "owner process ID" */ + lphandlestr_func *debuginfo; + lphandleint_func *usermessage; + int msgmask; + void *msghandle; /* User-specified "owner process ID" */ + lphandleint_intfunc *bb_usenode; + void *bb_nodehandle; /* User-specified "owner process ID" */ + lphandleint_intfunc *bb_usebranch; + void *bb_branchhandle; /* User-specified "owner process ID" */ + + /* replacement of static variables */ + char *rowcol_name; /* The name of a row/column */ +}; + + +#ifdef __cplusplus +__EXTERN_C { +#endif + + +/* User and system function interfaces */ +/* ------------------------------------------------------------------------- */ + +void __EXPORT_TYPE __WINAPI lp_solve_version(int *majorversion, int *minorversion, int *release, int *build); + +lprec __EXPORT_TYPE * __WINAPI make_lp(int rows, int columns); +MYBOOL __EXPORT_TYPE __WINAPI resize_lp(lprec *lp, int rows, int columns); +int __EXPORT_TYPE __WINAPI get_status(lprec *lp); +char __EXPORT_TYPE * __WINAPI get_statustext(lprec *lp, int statuscode); +MYBOOL __EXPORT_TYPE __WINAPI is_obj_in_basis(lprec *lp); +void __EXPORT_TYPE __WINAPI set_obj_in_basis(lprec *lp, MYBOOL obj_in_basis); +/* Create and initialise a lprec structure defaults */ + +lprec __EXPORT_TYPE * __WINAPI copy_lp(lprec *lp); +MYBOOL __EXPORT_TYPE __WINAPI dualize_lp(lprec *lp); +STATIC MYBOOL memopt_lp(lprec *lp, int rowextra, int colextra, int nzextra); +/* Copy or dualize the lp */ + +void __EXPORT_TYPE __WINAPI delete_lp(lprec *lp); +void __EXPORT_TYPE __WINAPI free_lp(lprec **plp); +/* Remove problem from memory */ + +MYBOOL __EXPORT_TYPE __WINAPI set_lp_name(lprec *lp, char *lpname); +char __EXPORT_TYPE * __WINAPI get_lp_name(lprec *lp); +/* Set and get the problem name */ + +MYBOOL __EXPORT_TYPE __WINAPI has_BFP(lprec *lp); +MYBOOL __EXPORT_TYPE __WINAPI is_nativeBFP(lprec *lp); +MYBOOL __EXPORT_TYPE __WINAPI set_BFP(lprec *lp, char *filename); +/* Set basis factorization engine */ + +lprec __EXPORT_TYPE * __WINAPI read_XLI(char *xliname, char *modelname, char *dataname, char *options, int verbose); +MYBOOL __EXPORT_TYPE __WINAPI write_XLI(lprec *lp, char *filename, char *options, MYBOOL results); +MYBOOL __EXPORT_TYPE __WINAPI has_XLI(lprec *lp); +MYBOOL __EXPORT_TYPE __WINAPI is_nativeXLI(lprec *lp); +MYBOOL __EXPORT_TYPE __WINAPI set_XLI(lprec *lp, char *filename); +/* Set external language interface */ + +MYBOOL __EXPORT_TYPE __WINAPI set_obj(lprec *lp, int colnr, LPSREAL value); +MYBOOL __EXPORT_TYPE __WINAPI set_obj_fn(lprec *lp, LPSREAL *row); +MYBOOL __EXPORT_TYPE __WINAPI set_obj_fnex(lprec *lp, int count, LPSREAL *row, int *colno); +/* set the objective function (Row 0) of the matrix */ +MYBOOL __EXPORT_TYPE __WINAPI str_set_obj_fn(lprec *lp, char *row_string); +/* The same, but with string input */ +void __EXPORT_TYPE __WINAPI set_sense(lprec *lp, MYBOOL maximize); +void __EXPORT_TYPE __WINAPI set_maxim(lprec *lp); +void __EXPORT_TYPE __WINAPI set_minim(lprec *lp); +MYBOOL __EXPORT_TYPE __WINAPI is_maxim(lprec *lp); +/* Set optimization direction for the objective function */ + +MYBOOL __EXPORT_TYPE __WINAPI add_constraint(lprec *lp, LPSREAL *row, int constr_type, LPSREAL rh); +MYBOOL __EXPORT_TYPE __WINAPI add_constraintex(lprec *lp, int count, LPSREAL *row, int *colno, int constr_type, LPSREAL rh); +MYBOOL __EXPORT_TYPE __WINAPI set_add_rowmode(lprec *lp, MYBOOL turnon); +MYBOOL __EXPORT_TYPE __WINAPI is_add_rowmode(lprec *lp); +/* Add a constraint to the problem, row is the constraint row, rh is the right hand side, + constr_type is the type of constraint (LE (<=), GE(>=), EQ(=)) */ +MYBOOL __EXPORT_TYPE __WINAPI str_add_constraint(lprec *lp, char *row_string, int constr_type, LPSREAL rh); +/* The same, but with string input */ + +MYBOOL __EXPORT_TYPE __WINAPI set_row(lprec *lp, int rownr, LPSREAL *row); +MYBOOL __EXPORT_TYPE __WINAPI set_rowex(lprec *lp, int rownr, int count, LPSREAL *row, int *colno); +MYBOOL __EXPORT_TYPE __WINAPI get_row(lprec *lp, int rownr, LPSREAL *row); +int __EXPORT_TYPE __WINAPI get_rowex(lprec *lp, int rownr, LPSREAL *row, int *colno); +/* Fill row with the row row_nr from the problem */ + +MYBOOL __EXPORT_TYPE __WINAPI del_constraint(lprec *lp, int rownr); +STATIC MYBOOL del_constraintex(lprec *lp, LLrec *rowmap); +/* Remove constrain nr del_row from the problem */ + +MYBOOL __EXPORT_TYPE __WINAPI add_lag_con(lprec *lp, LPSREAL *row, int con_type, LPSREAL rhs); +/* add a Lagrangian constraint of form Row' x contype Rhs */ +MYBOOL __EXPORT_TYPE __WINAPI str_add_lag_con(lprec *lp, char *row_string, int con_type, LPSREAL rhs); +/* The same, but with string input */ +void __EXPORT_TYPE __WINAPI set_lag_trace(lprec *lp, MYBOOL lag_trace); +MYBOOL __EXPORT_TYPE __WINAPI is_lag_trace(lprec *lp); +/* Set debugging/tracing mode of the Lagrangean solver */ + +MYBOOL __EXPORT_TYPE __WINAPI set_constr_type(lprec *lp, int rownr, int con_type); +int __EXPORT_TYPE __WINAPI get_constr_type(lprec *lp, int rownr); +LPSREAL __EXPORT_TYPE __WINAPI get_constr_value(lprec *lp, int rownr, int count, LPSREAL *primsolution, int *nzindex); +MYBOOL __EXPORT_TYPE __WINAPI is_constr_type(lprec *lp, int rownr, int mask); +STATIC char *get_str_constr_type(lprec *lp, int con_type); +STATIC int get_constr_class(lprec *lp, int rownr); +STATIC char *get_str_constr_class(lprec *lp, int con_class); +/* Set the type of constraint in row Row (LE, GE, EQ) */ + +MYBOOL __EXPORT_TYPE __WINAPI set_rh(lprec *lp, int rownr, LPSREAL value); +LPSREAL __EXPORT_TYPE __WINAPI get_rh(lprec *lp, int rownr); +/* Set and get the right hand side of a constraint row */ +MYBOOL __EXPORT_TYPE __WINAPI set_rh_range(lprec *lp, int rownr, LPSREAL deltavalue); +LPSREAL __EXPORT_TYPE __WINAPI get_rh_range(lprec *lp, int rownr); +/* Set the RHS range; i.e. the lower and upper bounds of a constraint row */ +void __EXPORT_TYPE __WINAPI set_rh_vec(lprec *lp, LPSREAL *rh); +/* Set the right hand side vector */ +MYBOOL __EXPORT_TYPE __WINAPI str_set_rh_vec(lprec *lp, char *rh_string); +/* The same, but with string input */ + +MYBOOL __EXPORT_TYPE __WINAPI add_column(lprec *lp, LPSREAL *column); +MYBOOL __EXPORT_TYPE __WINAPI add_columnex(lprec *lp, int count, LPSREAL *column, int *rowno); +MYBOOL __EXPORT_TYPE __WINAPI str_add_column(lprec *lp, char *col_string); +/* Add a column to the problem */ + +MYBOOL __EXPORT_TYPE __WINAPI set_column(lprec *lp, int colnr, LPSREAL *column); +MYBOOL __EXPORT_TYPE __WINAPI set_columnex(lprec *lp, int colnr, int count, LPSREAL *column, int *rowno); +/* Overwrite existing column data */ + +int __EXPORT_TYPE __WINAPI column_in_lp(lprec *lp, LPSREAL *column); +/* Returns the column index if column is already present in lp, otherwise 0. + (Does not look at bounds and types, only looks at matrix values */ + +int __EXPORT_TYPE __WINAPI get_columnex(lprec *lp, int colnr, LPSREAL *column, int *nzrow); +MYBOOL __EXPORT_TYPE __WINAPI get_column(lprec *lp, int colnr, LPSREAL *column); +/* Fill column with the column col_nr from the problem */ + +MYBOOL __EXPORT_TYPE __WINAPI del_column(lprec *lp, int colnr); +STATIC MYBOOL del_columnex(lprec *lp, LLrec *colmap); +/* Delete a column */ + +MYBOOL __EXPORT_TYPE __WINAPI set_mat(lprec *lp, int rownr, int colnr, LPSREAL value); +/* Fill in element (Row,Column) of the matrix + Row in [0..Rows] and Column in [1..Columns] */ +LPSREAL __EXPORT_TYPE __WINAPI get_mat(lprec *lp, int rownr, int colnr); +LPSREAL __EXPORT_TYPE __WINAPI get_mat_byindex(lprec *lp, int matindex, MYBOOL isrow, MYBOOL adjustsign); +int __EXPORT_TYPE __WINAPI get_nonzeros(lprec *lp); +/* get a single element from the matrix */ /* Name changed from "mat_elm" by KE */ + +void __EXPORT_TYPE __WINAPI set_bounds_tighter(lprec *lp, MYBOOL tighten); +MYBOOL get_bounds(lprec *lp, int column, LPSREAL *lower, LPSREAL *upper); +MYBOOL __EXPORT_TYPE __WINAPI get_bounds_tighter(lprec *lp); +MYBOOL __EXPORT_TYPE __WINAPI set_upbo(lprec *lp, int colnr, LPSREAL value); +LPSREAL __EXPORT_TYPE __WINAPI get_upbo(lprec *lp, int colnr); +MYBOOL __EXPORT_TYPE __WINAPI set_lowbo(lprec *lp, int colnr, LPSREAL value); +LPSREAL __EXPORT_TYPE __WINAPI get_lowbo(lprec *lp, int colnr); +MYBOOL __EXPORT_TYPE __WINAPI set_bounds(lprec *lp, int colnr, LPSREAL lower, LPSREAL upper); +MYBOOL __EXPORT_TYPE __WINAPI set_unbounded(lprec *lp, int colnr); +MYBOOL __EXPORT_TYPE __WINAPI is_unbounded(lprec *lp, int colnr); +/* Set the upper and lower bounds of a variable */ + +MYBOOL __EXPORT_TYPE __WINAPI set_int(lprec *lp, int colnr, MYBOOL must_be_int); +MYBOOL __EXPORT_TYPE __WINAPI is_int(lprec *lp, int colnr); +MYBOOL __EXPORT_TYPE __WINAPI set_binary(lprec *lp, int colnr, MYBOOL must_be_bin); +MYBOOL __EXPORT_TYPE __WINAPI is_binary(lprec *lp, int colnr); +MYBOOL __EXPORT_TYPE __WINAPI set_semicont(lprec *lp, int colnr, MYBOOL must_be_sc); +MYBOOL __EXPORT_TYPE __WINAPI is_semicont(lprec *lp, int colnr); +MYBOOL __EXPORT_TYPE __WINAPI is_negative(lprec *lp, int colnr); +MYBOOL __EXPORT_TYPE __WINAPI set_var_weights(lprec *lp, LPSREAL *weights); +int __EXPORT_TYPE __WINAPI get_var_priority(lprec *lp, int colnr); +/* Set the type of variable */ + +MYBOOL __EXPORT_TYPE __WINAPI set_pseudocosts(lprec *lp, LPSREAL *clower, LPSREAL *cupper, int *updatelimit); +MYBOOL __EXPORT_TYPE __WINAPI get_pseudocosts(lprec *lp, LPSREAL *clower, LPSREAL *cupper, int *updatelimit); +/* Set initial values for, or get computed pseudocost vectors; + note that setting of pseudocosts can only happen in response to a + call-back function optionally requesting this */ + +int __EXPORT_TYPE __WINAPI add_SOS(lprec *lp, char *name, int sostype, int priority, int count, int *sosvars, LPSREAL *weights); +MYBOOL __EXPORT_TYPE __WINAPI is_SOS_var(lprec *lp, int colnr); +/* Add SOS constraints */ + +MYBOOL __EXPORT_TYPE __WINAPI set_row_name(lprec *lp, int rownr, char *new_name); +char __EXPORT_TYPE * __WINAPI get_row_name(lprec *lp, int rownr); +char __EXPORT_TYPE * __WINAPI get_origrow_name(lprec *lp, int rownr); +/* Set/Get the name of a constraint row */ /* Get added by KE */ + +MYBOOL __EXPORT_TYPE __WINAPI set_col_name(lprec *lp, int colnr, char *new_name); +char __EXPORT_TYPE * __WINAPI get_col_name(lprec *lp, int colnr); +char __EXPORT_TYPE * __WINAPI get_origcol_name(lprec *lp, int colnr); +/* Set/Get the name of a variable column */ /* Get added by KE */ + +void __EXPORT_TYPE __WINAPI unscale(lprec *lp); +/* Undo previous scaling of the problem */ + +void __EXPORT_TYPE __WINAPI set_preferdual(lprec *lp, MYBOOL dodual); +void __EXPORT_TYPE __WINAPI set_simplextype(lprec *lp, int simplextype); +int __EXPORT_TYPE __WINAPI get_simplextype(lprec *lp); +/* Set/Get if lp_solve should prefer the dual simplex over the primal -- added by KE */ + +void __EXPORT_TYPE __WINAPI default_basis(lprec *lp); +void __EXPORT_TYPE __WINAPI set_basiscrash(lprec *lp, int mode); +int __EXPORT_TYPE __WINAPI get_basiscrash(lprec *lp); +int __EXPORT_TYPE __WINAPI set_basisvar(lprec *lp, int basisPos, int enteringCol); +MYBOOL __EXPORT_TYPE __WINAPI set_basis(lprec *lp, int *bascolumn, MYBOOL nonbasic); +MYBOOL __EXPORT_TYPE __WINAPI get_basis(lprec *lp, int *bascolumn, MYBOOL nonbasic); +void __EXPORT_TYPE __WINAPI reset_basis(lprec *lp); +/* Set/Get basis for a re-solved system */ /* Added by KE */ +MYBOOL __EXPORT_TYPE __WINAPI guess_basis(lprec *lp, LPSREAL *guessvector, int *basisvector); + +MYBOOL __EXPORT_TYPE __WINAPI is_feasible(lprec *lp, LPSREAL *values, LPSREAL threshold); +/* returns TRUE if the vector in values is a feasible solution to the lp */ + +int __EXPORT_TYPE __WINAPI solve(lprec *lp); +/* Solve the problem */ + +LPSREAL __EXPORT_TYPE __WINAPI time_elapsed(lprec *lp); +/* Return the number of seconds since start of solution process */ + +void __EXPORT_TYPE __WINAPI put_bb_nodefunc(lprec *lp, lphandleint_intfunc newnode, void *bbnodehandle); +void __EXPORT_TYPE __WINAPI put_bb_branchfunc(lprec *lp, lphandleint_intfunc newbranch, void *bbbranchhandle); +/* Allow the user to override B&B node and branching decisions */ + +void __EXPORT_TYPE __WINAPI put_abortfunc(lprec *lp, lphandle_intfunc newctrlc, void *ctrlchandle); +/* Allow the user to define an interruption callback function */ + +void __EXPORT_TYPE __WINAPI put_logfunc(lprec *lp, lphandlestr_func newlog, void *loghandle); +/* Allow the user to define a logging function */ + +void __EXPORT_TYPE __WINAPI put_msgfunc(lprec *lp, lphandleint_func newmsg, void *msghandle, int mask); +/* Allow the user to define an event-driven message/reporting */ + +MYBOOL __EXPORT_TYPE __WINAPI get_primal_solution(lprec *lp, LPSREAL *pv); +MYBOOL __EXPORT_TYPE __WINAPI get_ptr_primal_solution(lprec *lp, LPSREAL **pv); +MYBOOL __EXPORT_TYPE __WINAPI get_dual_solution(lprec *lp, LPSREAL *rc); +MYBOOL __EXPORT_TYPE __WINAPI get_ptr_dual_solution(lprec *lp, LPSREAL **rc); +MYBOOL __EXPORT_TYPE __WINAPI get_lambda(lprec *lp, LPSREAL *lambda); +MYBOOL __EXPORT_TYPE __WINAPI get_ptr_lambda(lprec *lp, LPSREAL **lambda); +/* Get the primal, dual/reduced costs and Lambda vectors */ + +/* Read an MPS file */ +lprec __EXPORT_TYPE * __WINAPI read_MPS(char *filename, int options); +lprec __EXPORT_TYPE * __WINAPI read_mps(FILE *filename, int options); +lprec __EXPORT_TYPE * __WINAPI read_freeMPS(char *filename, int options); +lprec __EXPORT_TYPE * __WINAPI read_freemps(FILE *filename, int options); + +/* Write a MPS file to output */ +MYBOOL __EXPORT_TYPE __WINAPI write_mps(lprec *lp, char *filename); +MYBOOL __EXPORT_TYPE __WINAPI write_MPS(lprec *lp, FILE *output); +MYBOOL __EXPORT_TYPE __WINAPI write_freemps(lprec *lp, char *filename); +MYBOOL __EXPORT_TYPE __WINAPI write_freeMPS(lprec *lp, FILE *output); + +MYBOOL __EXPORT_TYPE __WINAPI write_lp(lprec *lp, char *filename); +MYBOOL __EXPORT_TYPE __WINAPI write_LP(lprec *lp, FILE *output); + /* Write a LP file to output */ + +MYBOOL __WINAPI LP_readhandle(lprec **lp, FILE *filename, int verbose, char *lp_name); +lprec __EXPORT_TYPE * __WINAPI read_lp(FILE *filename, int verbose, char *lp_name); +lprec __EXPORT_TYPE * __WINAPI read_LP(char *filename, int verbose, char *lp_name); +/* Old-style lp format file parser */ + +MYBOOL __EXPORT_TYPE __WINAPI write_basis(lprec *lp, char *filename); +MYBOOL __EXPORT_TYPE __WINAPI read_basis(lprec *lp, char *filename, char *info); +/* Read and write basis from/to file in CPLEX BAS format */ + +MYBOOL __EXPORT_TYPE __WINAPI write_params(lprec *lp, char *filename, char *options); +MYBOOL __EXPORT_TYPE __WINAPI read_params(lprec *lp, char *filename, char *options); +void __EXPORT_TYPE __WINAPI reset_params(lprec *lp); +/* Read and write parameter file */ + +void __EXPORT_TYPE __WINAPI print_lp(lprec *lp); +void __EXPORT_TYPE __WINAPI print_tableau(lprec *lp); +/* Print the current problem, only useful in very small (test) problems */ + +void __EXPORT_TYPE __WINAPI print_objective(lprec *lp); +void __EXPORT_TYPE __WINAPI print_solution(lprec *lp, int columns); +void __EXPORT_TYPE __WINAPI print_constraints(lprec *lp, int columns); +/* Print the solution to stdout */ + +void __EXPORT_TYPE __WINAPI print_duals(lprec *lp); +/* Print the dual variables of the solution */ + +void __EXPORT_TYPE __WINAPI print_scales(lprec *lp); +/* If scaling is used, print the scaling factors */ + +void __EXPORT_TYPE __WINAPI print_str(lprec *lp, char *str); + +void __EXPORT_TYPE __WINAPI set_outputstream(lprec *lp, FILE *stream); +MYBOOL __EXPORT_TYPE __WINAPI set_outputfile(lprec *lp, char *filename); + +void __EXPORT_TYPE __WINAPI set_verbose(lprec *lp, int verbose); +int __EXPORT_TYPE __WINAPI get_verbose(lprec *lp); + +void __EXPORT_TYPE __WINAPI set_timeout(lprec *lp, long sectimeout); +long __EXPORT_TYPE __WINAPI get_timeout(lprec *lp); + +void __EXPORT_TYPE __WINAPI set_print_sol(lprec *lp, int print_sol); +int __EXPORT_TYPE __WINAPI get_print_sol(lprec *lp); + +void __EXPORT_TYPE __WINAPI set_debug(lprec *lp, MYBOOL debug); +MYBOOL __EXPORT_TYPE __WINAPI is_debug(lprec *lp); + +void __EXPORT_TYPE __WINAPI set_trace(lprec *lp, MYBOOL trace); +MYBOOL __EXPORT_TYPE __WINAPI is_trace(lprec *lp); + +MYBOOL __EXPORT_TYPE __WINAPI print_debugdump(lprec *lp, char *filename); + +void __EXPORT_TYPE __WINAPI set_anti_degen(lprec *lp, int anti_degen); +int __EXPORT_TYPE __WINAPI get_anti_degen(lprec *lp); +MYBOOL __EXPORT_TYPE __WINAPI is_anti_degen(lprec *lp, int testmask); + +void __EXPORT_TYPE __WINAPI set_presolve(lprec *lp, int presolvemode, int maxloops); +int __EXPORT_TYPE __WINAPI get_presolve(lprec *lp); +int __EXPORT_TYPE __WINAPI get_presolveloops(lprec *lp); +MYBOOL __EXPORT_TYPE __WINAPI is_presolve(lprec *lp, int testmask); + +int __EXPORT_TYPE __WINAPI get_orig_index(lprec *lp, int lp_index); +int __EXPORT_TYPE __WINAPI get_lp_index(lprec *lp, int orig_index); + +void __EXPORT_TYPE __WINAPI set_maxpivot(lprec *lp, int max_num_inv); +int __EXPORT_TYPE __WINAPI get_maxpivot(lprec *lp); + +void __EXPORT_TYPE __WINAPI set_obj_bound(lprec *lp, LPSREAL obj_bound); +LPSREAL __EXPORT_TYPE __WINAPI get_obj_bound(lprec *lp); + +void __EXPORT_TYPE __WINAPI set_mip_gap(lprec *lp, MYBOOL absolute, LPSREAL mip_gap); +LPSREAL __EXPORT_TYPE __WINAPI get_mip_gap(lprec *lp, MYBOOL absolute); + +void __EXPORT_TYPE __WINAPI set_bb_rule(lprec *lp, int bb_rule); +int __EXPORT_TYPE __WINAPI get_bb_rule(lprec *lp); + +MYBOOL __EXPORT_TYPE __WINAPI set_var_branch(lprec *lp, int colnr, int branch_mode); +int __EXPORT_TYPE __WINAPI get_var_branch(lprec *lp, int colnr); + +MYBOOL __EXPORT_TYPE __WINAPI is_infinite(lprec *lp, LPSREAL value); +void __EXPORT_TYPE __WINAPI set_infinite(lprec *lp, LPSREAL infinite); +LPSREAL __EXPORT_TYPE __WINAPI get_infinite(lprec *lp); + +void __EXPORT_TYPE __WINAPI set_epsint(lprec *lp, LPSREAL epsint); +LPSREAL __EXPORT_TYPE __WINAPI get_epsint(lprec *lp); + +void __EXPORT_TYPE __WINAPI set_epsb(lprec *lp, LPSREAL epsb); +LPSREAL __EXPORT_TYPE __WINAPI get_epsb(lprec *lp); + +void __EXPORT_TYPE __WINAPI set_epsd(lprec *lp, LPSREAL epsd); +LPSREAL __EXPORT_TYPE __WINAPI get_epsd(lprec *lp); + +void __EXPORT_TYPE __WINAPI set_epsel(lprec *lp, LPSREAL epsel); +LPSREAL __EXPORT_TYPE __WINAPI get_epsel(lprec *lp); + +MYBOOL __EXPORT_TYPE __WINAPI set_epslevel(lprec *lp, int epslevel); + +void __EXPORT_TYPE __WINAPI set_scaling(lprec *lp, int scalemode); +int __EXPORT_TYPE __WINAPI get_scaling(lprec *lp); +MYBOOL __EXPORT_TYPE __WINAPI is_scalemode(lprec *lp, int testmask); +MYBOOL __EXPORT_TYPE __WINAPI is_scaletype(lprec *lp, int scaletype); +MYBOOL __EXPORT_TYPE __WINAPI is_integerscaling(lprec *lp); +void __EXPORT_TYPE __WINAPI set_scalelimit(lprec *lp, LPSREAL scalelimit); +LPSREAL __EXPORT_TYPE __WINAPI get_scalelimit(lprec *lp); + +void __EXPORT_TYPE __WINAPI set_improve(lprec *lp, int improve); +int __EXPORT_TYPE __WINAPI get_improve(lprec *lp); + +void __EXPORT_TYPE __WINAPI set_pivoting(lprec *lp, int piv_rule); +int __EXPORT_TYPE __WINAPI get_pivoting(lprec *lp); +MYBOOL __EXPORT_TYPE __WINAPI set_partialprice(lprec *lp, int blockcount, int *blockstart, MYBOOL isrow); +void __EXPORT_TYPE __WINAPI get_partialprice(lprec *lp, int *blockcount, int *blockstart, MYBOOL isrow); + +MYBOOL __EXPORT_TYPE __WINAPI set_multiprice(lprec *lp, int multiblockdiv); +int __EXPORT_TYPE __WINAPI get_multiprice(lprec *lp, MYBOOL getabssize); + +MYBOOL __EXPORT_TYPE __WINAPI is_use_names(lprec *lp, MYBOOL isrow); +void __EXPORT_TYPE __WINAPI set_use_names(lprec *lp, MYBOOL isrow, MYBOOL use_names); + +int __EXPORT_TYPE __WINAPI get_nameindex(lprec *lp, char *varname, MYBOOL isrow); + +MYBOOL __EXPORT_TYPE __WINAPI is_piv_mode(lprec *lp, int testmask); +MYBOOL __EXPORT_TYPE __WINAPI is_piv_rule(lprec *lp, int rule); + +void __EXPORT_TYPE __WINAPI set_break_at_first(lprec *lp, MYBOOL break_at_first); +MYBOOL __EXPORT_TYPE __WINAPI is_break_at_first(lprec *lp); + +void __EXPORT_TYPE __WINAPI set_bb_floorfirst(lprec *lp, int bb_floorfirst); +int __EXPORT_TYPE __WINAPI get_bb_floorfirst(lprec *lp); + +void __EXPORT_TYPE __WINAPI set_bb_depthlimit(lprec *lp, int bb_maxlevel); +int __EXPORT_TYPE __WINAPI get_bb_depthlimit(lprec *lp); + +void __EXPORT_TYPE __WINAPI set_break_at_value(lprec *lp, LPSREAL break_at_value); +LPSREAL __EXPORT_TYPE __WINAPI get_break_at_value(lprec *lp); + +void __EXPORT_TYPE __WINAPI set_negrange(lprec *lp, LPSREAL negrange); +LPSREAL __EXPORT_TYPE __WINAPI get_negrange(lprec *lp); + +void __EXPORT_TYPE __WINAPI set_epsperturb(lprec *lp, LPSREAL epsperturb); +LPSREAL __EXPORT_TYPE __WINAPI get_epsperturb(lprec *lp); + +void __EXPORT_TYPE __WINAPI set_epspivot(lprec *lp, LPSREAL epspivot); +LPSREAL __EXPORT_TYPE __WINAPI get_epspivot(lprec *lp); + +int __EXPORT_TYPE __WINAPI get_max_level(lprec *lp); +COUNTER __EXPORT_TYPE __WINAPI get_total_nodes(lprec *lp); +COUNTER __EXPORT_TYPE __WINAPI get_total_iter(lprec *lp); + +LPSREAL __EXPORT_TYPE __WINAPI get_objective(lprec *lp); +LPSREAL __EXPORT_TYPE __WINAPI get_working_objective(lprec *lp); + +LPSREAL __EXPORT_TYPE __WINAPI get_var_primalresult(lprec *lp, int index); +LPSREAL __EXPORT_TYPE __WINAPI get_var_dualresult(lprec *lp, int index); + +MYBOOL __EXPORT_TYPE __WINAPI get_variables(lprec *lp, LPSREAL *var); +MYBOOL __EXPORT_TYPE __WINAPI get_ptr_variables(lprec *lp, LPSREAL **var); + +MYBOOL __EXPORT_TYPE __WINAPI get_constraints(lprec *lp, LPSREAL *constr); +MYBOOL __EXPORT_TYPE __WINAPI get_ptr_constraints(lprec *lp, LPSREAL **constr); + +MYBOOL __EXPORT_TYPE __WINAPI get_sensitivity_rhs(lprec *lp, LPSREAL *duals, LPSREAL *dualsfrom, LPSREAL *dualstill); +MYBOOL __EXPORT_TYPE __WINAPI get_ptr_sensitivity_rhs(lprec *lp, LPSREAL **duals, LPSREAL **dualsfrom, LPSREAL **dualstill); + +MYBOOL __EXPORT_TYPE __WINAPI get_sensitivity_obj(lprec *lp, LPSREAL *objfrom, LPSREAL *objtill); +MYBOOL __EXPORT_TYPE __WINAPI get_sensitivity_objex(lprec *lp, LPSREAL *objfrom, LPSREAL *objtill, LPSREAL *objfromvalue, LPSREAL *objtillvalue); +MYBOOL __EXPORT_TYPE __WINAPI get_ptr_sensitivity_obj(lprec *lp, LPSREAL **objfrom, LPSREAL **objtill); +MYBOOL __EXPORT_TYPE __WINAPI get_ptr_sensitivity_objex(lprec *lp, LPSREAL **objfrom, LPSREAL **objtill, LPSREAL **objfromvalue, LPSREAL **objtillvalue); + +void __EXPORT_TYPE __WINAPI set_solutionlimit(lprec *lp, int limit); +int __EXPORT_TYPE __WINAPI get_solutionlimit(lprec *lp); +int __EXPORT_TYPE __WINAPI get_solutioncount(lprec *lp); + +int __EXPORT_TYPE __WINAPI get_Norig_rows(lprec *lp); +int __EXPORT_TYPE __WINAPI get_Nrows(lprec *lp); +int __EXPORT_TYPE __WINAPI get_Lrows(lprec *lp); + +int __EXPORT_TYPE __WINAPI get_Norig_columns(lprec *lp); +int __EXPORT_TYPE __WINAPI get_Ncolumns(lprec *lp); + +typedef int (__WINAPI read_modeldata_func)(void *userhandle, char *buf, int max_size); +typedef int (__WINAPI write_modeldata_func)(void *userhandle, char *buf); +MYBOOL __WINAPI MPS_readex(lprec **newlp, void *userhandle, read_modeldata_func read_modeldata, int typeMPS, int options); + +/* #if defined develop */ +lprec __EXPORT_TYPE * __WINAPI read_lpex(void *userhandle, read_modeldata_func read_modeldata, int verbose, char *lp_name); +MYBOOL __EXPORT_TYPE __WINAPI write_lpex(lprec *lp, void *userhandle, write_modeldata_func write_modeldata); + +lprec __EXPORT_TYPE * __WINAPI read_mpsex(void *userhandle, read_modeldata_func read_modeldata, int options); +lprec __EXPORT_TYPE * __WINAPI read_freempsex(void *userhandle, read_modeldata_func read_modeldata, int options); + +MYBOOL __EXPORT_TYPE __WINAPI MPS_writefileex(lprec *lp, int typeMPS, void *userhandle, write_modeldata_func write_modeldata); +/* #endif */ + +#ifdef __cplusplus +} +#endif + + +/* Forward definitions of functions used internaly by the lp toolkit */ +MYBOOL set_callbacks(lprec *lp); +STATIC int yieldformessages(lprec *lp); +MYBOOL __WINAPI userabort(lprec *lp, int message); +/*char * __VACALL explain(lprec *lp, char *format, ...); +void __VACALL report(lprec *lp, int level, char *format, ...);*/ + +/* Memory management routines */ +STATIC MYBOOL append_rows(lprec *lp, int deltarows); +STATIC MYBOOL append_columns(lprec *lp, int deltacolumns); +STATIC void inc_rows(lprec *lp, int delta); +STATIC void inc_columns(lprec *lp, int delta); +STATIC MYBOOL init_rowcol_names(lprec *lp); +STATIC MYBOOL inc_row_space(lprec *lp, int deltarows); +STATIC MYBOOL inc_col_space(lprec *lp, int deltacols); +STATIC MYBOOL shift_rowcoldata(lprec *lp, int base, int delta, LLrec *usedmap, MYBOOL isrow); +STATIC MYBOOL shift_basis(lprec *lp, int base, int delta, LLrec *usedmap, MYBOOL isrow); +STATIC MYBOOL shift_rowdata(lprec *lp, int base, int delta, LLrec *usedmap); +STATIC MYBOOL shift_coldata(lprec *lp, int base, int delta, LLrec *usedmap); + +/* INLINE */ MYBOOL is_chsign(lprec *lp, int rownr); + +STATIC MYBOOL inc_lag_space(lprec *lp, int deltarows, MYBOOL ignoreMAT); +lprec *make_lag(lprec *server); + +LPSREAL get_rh_upper(lprec *lp, int rownr); +LPSREAL get_rh_lower(lprec *lp, int rownr); +MYBOOL set_rh_upper(lprec *lp, int rownr, LPSREAL value); +MYBOOL set_rh_lower(lprec *lp, int rownr, LPSREAL value); +STATIC int bin_count(lprec *lp, MYBOOL working); +STATIC int MIP_count(lprec *lp); +STATIC int SOS_count(lprec *lp); +STATIC int GUB_count(lprec *lp); +STATIC int identify_GUB(lprec *lp, MYBOOL mark); +STATIC int prepare_GUB(lprec *lp); + +STATIC MYBOOL refactRecent(lprec *lp); +STATIC MYBOOL check_if_less(lprec *lp, LPSREAL x, LPSREAL y, int variable); +STATIC MYBOOL feasiblePhase1(lprec *lp, LPSREAL epsvalue); +STATIC void free_duals(lprec *lp); +STATIC void initialize_solution(lprec *lp, MYBOOL shiftbounds); +STATIC void recompute_solution(lprec *lp, MYBOOL shiftbounds); +STATIC int verify_solution(lprec *lp, MYBOOL reinvert, char *info); +STATIC int check_solution(lprec *lp, int lastcolumn, LPSREAL *solution, + LPSREAL *upbo, LPSREAL *lowbo, LPSREAL tolerance); +/* INLINE */ MYBOOL is_fixedvar(lprec *lp, int variable); +/* INLINE */ MYBOOL is_splitvar(lprec *lp, int colnr); + +void __WINAPI set_action(int *actionvar, int actionmask); +void __WINAPI clear_action(int *actionvar, int actionmask); +MYBOOL __WINAPI is_action(int actionvar, int testmask); + +/* INLINE */ MYBOOL is_bb_rule(lprec *lp, int bb_rule); +/* INLINE */ MYBOOL is_bb_mode(lprec *lp, int bb_mask); +/* INLINE */ int get_piv_rule(lprec *lp); +STATIC char *get_str_piv_rule(int rule); +STATIC MYBOOL __WINAPI set_var_priority(lprec *lp); +STATIC int find_sc_bbvar(lprec *lp, int *count); +STATIC int find_sos_bbvar(lprec *lp, int *count, MYBOOL intsos); +STATIC int find_int_bbvar(lprec *lp, int *count, BBrec *BB, MYBOOL *isfeasible); + +/* Solution-related functions */ +STATIC LPSREAL compute_dualslacks(lprec *lp, int target, LPSREAL **dvalues, int **nzdvalues, MYBOOL dosum); +STATIC MYBOOL solution_is_int(lprec *lp, int index, MYBOOL checkfixed); +STATIC MYBOOL bb_better(lprec *lp, int target, int mode); +STATIC void construct_solution(lprec *lp, LPSREAL *target); +STATIC void transfer_solution_var(lprec *lp, int uservar); +STATIC MYBOOL construct_duals(lprec *lp); +STATIC MYBOOL construct_sensitivity_duals(lprec *lp); +STATIC MYBOOL construct_sensitivity_obj(lprec *lp); + +STATIC int add_GUB(lprec *lp, char *name, int priority, int count, int *sosvars); +STATIC basisrec *push_basis(lprec *lp, int *basisvar, MYBOOL *isbasic, MYBOOL *islower); +STATIC MYBOOL compare_basis(lprec *lp); +STATIC MYBOOL restore_basis(lprec *lp); +STATIC MYBOOL pop_basis(lprec *lp, MYBOOL restore); +STATIC MYBOOL is_BasisReady(lprec *lp); +STATIC MYBOOL is_slackbasis(lprec *lp); +STATIC MYBOOL verify_basis(lprec *lp); +STATIC int unload_basis(lprec *lp, MYBOOL restorelast); + +STATIC int perturb_bounds(lprec *lp, BBrec *perturbed, MYBOOL doRows, MYBOOL doCols, MYBOOL includeFIXED); +STATIC MYBOOL validate_bounds(lprec *lp, LPSREAL *upbo, LPSREAL *lowbo); +STATIC MYBOOL impose_bounds(lprec *lp, LPSREAL * upbo, LPSREAL *lowbo); +STATIC int unload_BB(lprec *lp); + +STATIC LPSREAL feasibilityOffset(lprec *lp, MYBOOL isdual); +STATIC MYBOOL isP1extra(lprec *lp); +STATIC LPSREAL get_refactfrequency(lprec *lp, MYBOOL final); +STATIC int findBasicFixedvar(lprec *lp, int afternr, MYBOOL slacksonly); +STATIC MYBOOL isBasisVarFeasible(lprec *lp, LPSREAL tol, int basis_row); +STATIC MYBOOL isPrimalFeasible(lprec *lp, LPSREAL tol, int infeasibles[], LPSREAL *feasibilitygap); +STATIC MYBOOL isDualFeasible(lprec *lp, LPSREAL tol, int *boundflips, int infeasibles[], LPSREAL *feasibilitygap); + +/* Main simplex driver routines */ +STATIC int preprocess(lprec *lp); +STATIC void postprocess(lprec *lp); +STATIC MYBOOL performiteration(lprec *lp, int rownr, int varin, LREAL theta, MYBOOL primal, MYBOOL allowminit, LPSREAL *prow, int *nzprow, LPSREAL *pcol, int *nzpcol, int *boundswaps); +STATIC void transfer_solution_var(lprec *lp, int uservar); +STATIC void transfer_solution(lprec *lp, MYBOOL dofinal); + +/* Scaling utilities */ +STATIC LPSREAL scaled_floor(lprec *lp, int colnr, LPSREAL value, LPSREAL epsscale); +STATIC LPSREAL scaled_ceil(lprec *lp, int colnr, LPSREAL value, LPSREAL epsscale); + +/* Variable mapping utility routines */ +STATIC void varmap_lock(lprec *lp); +STATIC void varmap_clear(lprec *lp); +STATIC MYBOOL varmap_canunlock(lprec *lp); +STATIC void varmap_addconstraint(lprec *lp); +STATIC void varmap_addcolumn(lprec *lp); +STATIC void varmap_delete(lprec *lp, int base, int delta, LLrec *varmap); +STATIC void varmap_compact(lprec *lp, int prev_rows, int prev_cols); +STATIC MYBOOL varmap_validate(lprec *lp, int varno); +/* STATIC MYBOOL del_varnameex(lprec *lp, hashelem **namelist, hashtable *ht, int varnr, LLrec *varmap); */ + STATIC MYBOOL del_varnameex(lprec *lp, hashelem **namelist, int items, hashtable *ht, int varnr, LLrec *varmap); + +/* Pseudo-cost routines (internal) */ +STATIC BBPSrec *init_pseudocost(lprec *lp, int pseudotype); +STATIC void free_pseudocost(lprec *lp); +STATIC LPSREAL get_pseudorange(BBPSrec *pc, int mipvar, int varcode); +STATIC void update_pseudocost(BBPSrec *pc, int mipvar, int varcode, MYBOOL capupper, LPSREAL varsol); +STATIC LPSREAL get_pseudobranchcost(BBPSrec *pc, int mipvar, MYBOOL dofloor); +STATIC LPSREAL get_pseudonodecost(BBPSrec *pc, int mipvar, int vartype, LPSREAL varsol); + +/* Matrix access and equation solving routines */ +STATIC void set_OF_override(lprec *lp, LPSREAL *ofVector); +STATIC void set_OF_p1extra(lprec *lp, LPSREAL p1extra); +STATIC void unset_OF_p1extra(lprec *lp); +MYBOOL modifyOF1(lprec *lp, int index, LPSREAL *ofValue, LPSREAL mult); +LPSREAL __WINAPI get_OF_active(lprec *lp, int varnr, LPSREAL mult); +STATIC MYBOOL is_OF_nz(lprec *lp, int colnr); + +STATIC int get_basisOF(lprec *lp, int coltarget[], LPSREAL crow[], int colno[]); +int __WINAPI get_basiscolumn(lprec *lp, int j, int rn[], double bj[]); +int __WINAPI obtain_column(lprec *lp, int varin, LPSREAL *pcol, int *nzlist, int *maxabs); +STATIC int compute_theta(lprec *lp, int rownr, LREAL *theta, int isupbound, LPSREAL HarrisScalar, MYBOOL primal); + +/* Pivot utility routines */ +STATIC int findBasisPos(lprec *lp, int notint, int *var_basic); +STATIC MYBOOL check_degeneracy(lprec *lp, LPSREAL *pcol, int *degencount); + +#endif /* HEADER_lp_lib */ diff --git a/src/external/lpsolve/headers/include/lp_matrix.h b/src/external/lpsolve/headers/include/lp_matrix.h new file mode 100644 index 00000000..6bae033b --- /dev/null +++ b/src/external/lpsolve/headers/include/lp_matrix.h @@ -0,0 +1,266 @@ +// Copyright(c) 2016-2018 Kjell Konis . +// Version: 5.5.2.0-17 +// Description: The lpSolveAPI package provides an R interface to 'lp_solve', +// a Mixed Integer Linear Programming (MILP) solver with support for pure +// linear, (mixed) integer/binary, semi-continuous and special ordered sets +// (SOS) models. +// License: LGPL-2 +// Repository: CRAN + +#ifndef HEADER_lp_matrix +#define HEADER_lp_matrix + +#include "lp_types.h" +#include "lp_utils.h" + + +/* Sparse matrix element (ordered columnwise) */ +typedef struct _MATitem +{ + int rownr; + int colnr; + LPSREAL value; +} MATitem; + +/* Constants for matrix product rounding options */ +#define MAT_ROUNDNONE 0 +#define MAT_ROUNDABS 1 +#define MAT_ROUNDREL 2 +#define MAT_ROUNDABSREL (MAT_ROUNDABS + MAT_ROUNDREL) +#define MAT_ROUNDRC 4 +#define MAT_ROUNDRCMIN 1.0 /* lp->epspivot */ +#if 1 + #define MAT_ROUNDDEFAULT MAT_ROUNDREL /* Typically increases performance */ +#else + #define MAT_ROUNDDEFAULT MAT_ROUNDABS /* Probably gives more precision */ +#endif + +/* Compiler option development features */ +/*#define DebugInv*/ /* Report array values at factorization/inversion */ +#define NoLoopUnroll /* Do not do loop unrolling */ +#define DirectArrayOF /* Reference lp->obj[] array instead of function call */ + + +/* Matrix column access macros to be able to easily change storage model */ +#define CAM_Record 0 +#define CAM_Vector 1 +#if 0 + #define MatrixColAccess CAM_Record +#else + #define MatrixColAccess CAM_Vector +#endif + +#if MatrixColAccess==CAM_Record +#define SET_MAT_ijA(item,i,j,A) mat->col_mat[item].rownr = i; \ + mat->col_mat[item].colnr = j; \ + mat->col_mat[item].value = A +#define COL_MAT_COLNR(item) (mat->col_mat[item].colnr) +#define COL_MAT_ROWNR(item) (mat->col_mat[item].rownr) +#define COL_MAT_VALUE(item) (mat->col_mat[item].value) +#define COL_MAT_COPY(left,right) mat->col_mat[left] = mat->col_mat[right] +#define COL_MAT_MOVE(to,from,rec) MEMMOVE(&(mat->col_mat[to]),&(mat->col_mat[from]),rec) +#define COL_MAT2_COLNR(item) (mat2->col_mat[item].colnr) +#define COL_MAT2_ROWNR(item) (mat2->col_mat[item].rownr) +#define COL_MAT2_VALUE(item) (mat2->col_mat[item].value) +#define matRowColStep (sizeof(MATitem)/sizeof(int)) +#define matValueStep (sizeof(MATitem)/sizeof(LPSREAL)) + +#else /* if MatrixColAccess==CAM_Vector */ +#define SET_MAT_ijA(item,i,j,A) mat->col_mat_rownr[item] = i; \ + mat->col_mat_colnr[item] = j; \ + mat->col_mat_value[item] = A +#define COL_MAT_COLNR(item) (mat->col_mat_colnr[item]) +#define COL_MAT_ROWNR(item) (mat->col_mat_rownr[item]) +#define COL_MAT_VALUE(item) (mat->col_mat_value[item]) +#define COL_MAT_COPY(left,right) COL_MAT_COLNR(left) = COL_MAT_COLNR(right); \ + COL_MAT_ROWNR(left) = COL_MAT_ROWNR(right); \ + COL_MAT_VALUE(left) = COL_MAT_VALUE(right) +#define COL_MAT_MOVE(to,from,rec) MEMMOVE(&COL_MAT_COLNR(to),&COL_MAT_COLNR(from),rec); \ + MEMMOVE(&COL_MAT_ROWNR(to),&COL_MAT_ROWNR(from),rec); \ + MEMMOVE(&COL_MAT_VALUE(to),&COL_MAT_VALUE(from),rec) +#define COL_MAT2_COLNR(item) (mat2->col_mat_colnr[item]) +#define COL_MAT2_ROWNR(item) (mat2->col_mat_rownr[item]) +#define COL_MAT2_VALUE(item) (mat2->col_mat_value[item]) +#define matRowColStep 1 +#define matValueStep 1 + +#endif + + +/* Matrix row access macros to be able to easily change storage model */ +#define RAM_Index 0 +#define RAM_FullCopy 1 +#define MatrixRowAccess RAM_Index + +#if MatrixRowAccess==RAM_Index +#define ROW_MAT_COLNR(item) COL_MAT_COLNR(mat->row_mat[item]) +#define ROW_MAT_ROWNR(item) COL_MAT_ROWNR(mat->row_mat[item]) +#define ROW_MAT_VALUE(item) COL_MAT_VALUE(mat->row_mat[item]) + +#elif MatrixColAccess==CAM_Record +#define ROW_MAT_COLNR(item) (mat->row_mat[item].colnr) +#define ROW_MAT_ROWNR(item) (mat->row_mat[item].rownr) +#define ROW_MAT_VALUE(item) (mat->row_mat[item].value) + +#else /* if MatrixColAccess==CAM_Vector */ +#define ROW_MAT_COLNR(item) (mat->row_mat_colnr[item]) +#define ROW_MAT_ROWNR(item) (mat->row_mat_rownr[item]) +#define ROW_MAT_VALUE(item) (mat->row_mat_value[item]) + +#endif + + +typedef struct _MATrec +{ + /* Owner reference */ + lprec *lp; + + /* Active dimensions */ + int rows; + int columns; + + /* Allocated memory */ + int rows_alloc; + int columns_alloc; + int mat_alloc; /* The allocated size for matrix sized structures */ + + /* Sparse problem matrix storage */ +#if MatrixColAccess==CAM_Record + MATitem *col_mat; /* mat_alloc : The sparse data storage */ +#else /*MatrixColAccess==CAM_Vector*/ + int *col_mat_colnr; + int *col_mat_rownr; + LPSREAL *col_mat_value; +#endif + int *col_end; /* columns_alloc+1 : col_end[i] is the index of the + first element after column i; column[i] is stored + in elements col_end[i-1] to col_end[i]-1 */ + int *col_tag; /* user-definable tag associated with each column */ + +#if MatrixRowAccess==RAM_Index + int *row_mat; /* mat_alloc : From index 0, row_mat contains the + row-ordered index of the elements of col_mat */ +#elif MatrixColAccess==CAM_Record + MATitem *row_mat; /* mat_alloc : From index 0, row_mat contains the + row-ordered copy of the elements in col_mat */ +#else /*if MatrixColAccess==CAM_Vector*/ + int *row_mat_colnr; + int *row_mat_rownr; + LPSREAL *row_mat_value; +#endif + int *row_end; /* rows_alloc+1 : row_end[i] is the index of the + first element in row_mat after row i */ + int *row_tag; /* user-definable tag associated with each row */ + + LPSREAL *colmax; /* Array of maximum values of each column */ + LPSREAL *rowmax; /* Array of maximum values of each row */ + + LPSREAL epsvalue; /* Zero element rejection threshold */ + LPSREAL infnorm; /* The largest absolute value in the matrix */ + LPSREAL dynrange; + MYBOOL row_end_valid; /* TRUE if row_end & row_mat are valid */ + MYBOOL is_roworder; /* TRUE if the current (temporary) matrix order is row-wise */ + +} MATrec; + +typedef struct _DeltaVrec +{ + lprec *lp; + int activelevel; + MATrec *tracker; +} DeltaVrec; + + +#ifdef __cplusplus +__EXTERN_C { +#endif + +/* Sparse matrix routines */ +STATIC MATrec *mat_create(lprec *lp, int rows, int columns, LPSREAL epsvalue); +STATIC MYBOOL mat_memopt(MATrec *mat, int rowextra, int colextra, int nzextra); +STATIC void mat_free(MATrec **matrix); +STATIC MYBOOL inc_matrow_space(MATrec *mat, int deltarows); +STATIC int mat_mapreplace(MATrec *mat, LLrec *rowmap, LLrec *colmap, MATrec *insmat); +STATIC int mat_matinsert(MATrec *mat, MATrec *insmat); +STATIC int mat_zerocompact(MATrec *mat); +STATIC int mat_rowcompact(MATrec *mat, MYBOOL dozeros); +STATIC int mat_colcompact(MATrec *mat, int prev_rows, int prev_cols); +STATIC MYBOOL inc_matcol_space(MATrec *mat, int deltacols); +STATIC MYBOOL inc_mat_space(MATrec *mat, int mindelta); +STATIC int mat_shiftrows(MATrec *mat, int *bbase, int delta, LLrec *varmap); +STATIC int mat_shiftcols(MATrec *mat, int *bbase, int delta, LLrec *varmap); +STATIC MATrec *mat_extractmat(MATrec *mat, LLrec *rowmap, LLrec *colmap, MYBOOL negated); +STATIC int mat_appendrow(MATrec *mat, int count, LPSREAL *row, int *colno, LPSREAL mult, MYBOOL checkrowmode); +STATIC int mat_appendcol(MATrec *mat, int count, LPSREAL *column, int *rowno, LPSREAL mult, MYBOOL checkrowmode); +MYBOOL mat_get_data(lprec *lp, int matindex, MYBOOL isrow, int **rownr, int **colnr, LPSREAL **value); +MYBOOL mat_set_rowmap(MATrec *mat, int row_mat_index, int rownr, int colnr, int col_mat_index); +STATIC MYBOOL mat_indexrange(MATrec *mat, int index, MYBOOL isrow, int *startpos, int *endpos); +STATIC MYBOOL mat_validate(MATrec *mat); +STATIC MYBOOL mat_equalRows(MATrec *mat, int baserow, int comprow); +STATIC int mat_findelm(MATrec *mat, int row, int column); +STATIC int mat_findins(MATrec *mat, int row, int column, int *insertpos, MYBOOL validate); +STATIC void mat_multcol(MATrec *mat, int col_nr, LPSREAL mult, MYBOOL DoObj); +STATIC LPSREAL mat_getitem(MATrec *mat, int row, int column); +STATIC MYBOOL mat_setitem(MATrec *mat, int row, int column, LPSREAL value); +STATIC MYBOOL mat_additem(MATrec *mat, int row, int column, LPSREAL delta); +STATIC MYBOOL mat_setvalue(MATrec *mat, int Row, int Column, LPSREAL Value, MYBOOL doscale); +STATIC int mat_nonzeros(MATrec *mat); +STATIC int mat_collength(MATrec *mat, int colnr); +STATIC int mat_rowlength(MATrec *mat, int rownr); +STATIC void mat_multrow(MATrec *mat, int row_nr, LPSREAL mult); +STATIC void mat_multadd(MATrec *mat, LPSREAL *lhsvector, int varnr, LPSREAL mult); +STATIC MYBOOL mat_setrow(MATrec *mat, int rowno, int count, LPSREAL *row, int *colno, MYBOOL doscale, MYBOOL checkrowmode); +STATIC MYBOOL mat_setcol(MATrec *mat, int colno, int count, LPSREAL *column, int *rowno, MYBOOL doscale, MYBOOL checkrowmode); +STATIC MYBOOL mat_mergemat(MATrec *target, MATrec *source, MYBOOL usecolmap); +STATIC int mat_checkcounts(MATrec *mat, int *rownum, int *colnum, MYBOOL freeonexit); +STATIC int mat_expandcolumn(MATrec *mat, int colnr, LPSREAL *column, int *nzlist, MYBOOL signedA); +STATIC MYBOOL mat_computemax(MATrec *mat); +STATIC MYBOOL mat_transpose(MATrec *mat); + +/* Refactorization and recomputation routine */ +MYBOOL __WINAPI invert(lprec *lp, MYBOOL shiftbounds, MYBOOL final); + +/* Vector compression and expansion routines */ +STATIC MYBOOL vec_compress(LPSREAL *densevector, int startpos, int endpos, LPSREAL epsilon, LPSREAL *nzvector, int *nzindex); +STATIC MYBOOL vec_expand(LPSREAL *nzvector, int *nzindex, LPSREAL *densevector, int startpos, int endpos); + +/* Sparse matrix products */ +STATIC MYBOOL get_colIndexA(lprec *lp, int varset, int *colindex, MYBOOL append); +STATIC int prod_Ax(lprec *lp, int *coltarget, LPSREAL *input, int *nzinput, LPSREAL roundzero, LPSREAL ofscalar, LPSREAL *output, int *nzoutput, int roundmode); +STATIC int prod_xA(lprec *lp, int *coltarget, LPSREAL *input, int *nzinput, LPSREAL roundzero, LPSREAL ofscalar, LPSREAL *output, int *nzoutput, int roundmode); +STATIC MYBOOL prod_xA2(lprec *lp, int *coltarget, LPSREAL *prow, LPSREAL proundzero, int *pnzprow, + LPSREAL *drow, LPSREAL droundzero, int *dnzdrow, LPSREAL ofscalar, int roundmode); + +/* Equation solution */ +STATIC MYBOOL fimprove(lprec *lp, LPSREAL *pcol, int *nzidx, LPSREAL roundzero); +STATIC void ftran(lprec *lp, LPSREAL *rhsvector, int *nzidx, LPSREAL roundzero); +STATIC MYBOOL bimprove(lprec *lp, LPSREAL *rhsvector, int *nzidx, LPSREAL roundzero); +STATIC void btran(lprec *lp, LPSREAL *rhsvector, int *nzidx, LPSREAL roundzero); + +/* Combined equation solution and matrix product for simplex operations */ +STATIC MYBOOL fsolve(lprec *lp, int varin, LPSREAL *pcol, int *nzidx, LPSREAL roundzero, LPSREAL ofscalar, MYBOOL prepareupdate); +STATIC MYBOOL bsolve(lprec *lp, int row_nr, LPSREAL *rhsvector, int *nzidx, LPSREAL roundzero, LPSREAL ofscalar); +STATIC void bsolve_xA2(lprec *lp, int* coltarget, + int row_nr1, LPSREAL *vector1, LPSREAL roundzero1, int *nzvector1, + int row_nr2, LPSREAL *vector2, LPSREAL roundzero2, int *nzvector2, int roundmode); + +/* Change-tracking routines (primarily for B&B and presolve) */ +STATIC DeltaVrec *createUndoLadder(lprec *lp, int levelitems, int maxlevels); +STATIC int incrementUndoLadder(DeltaVrec *DV); +STATIC MYBOOL modifyUndoLadder(DeltaVrec *DV, int itemno, LPSREAL target[], LPSREAL newvalue); +STATIC int countsUndoLadder(DeltaVrec *DV); +STATIC int restoreUndoLadder(DeltaVrec *DV, LPSREAL target[]); +STATIC int decrementUndoLadder(DeltaVrec *DV); +STATIC MYBOOL freeUndoLadder(DeltaVrec **DV); + +/* Specialized presolve undo functions */ +STATIC MYBOOL appendUndoPresolve(lprec *lp, MYBOOL isprimal, LPSREAL beta, int colnrDep); +STATIC MYBOOL addUndoPresolve(lprec *lp, MYBOOL isprimal, int colnrElim, LPSREAL alpha, LPSREAL beta, int colnrDep); + + +#ifdef __cplusplus +} +#endif + +#endif /* HEADER_lp_matrix */ + diff --git a/src/external/lpsolve/headers/include/lp_mipbb.h b/src/external/lpsolve/headers/include/lp_mipbb.h new file mode 100644 index 00000000..4235a119 --- /dev/null +++ b/src/external/lpsolve/headers/include/lp_mipbb.h @@ -0,0 +1,73 @@ +// Copyright(c) 2016-2018 Kjell Konis . +// Version: 5.5.2.0-17 +// Description: The lpSolveAPI package provides an R interface to 'lp_solve', +// a Mixed Integer Linear Programming (MILP) solver with support for pure +// linear, (mixed) integer/binary, semi-continuous and special ordered sets +// (SOS) models. +// License: LGPL-2 +// Repository: CRAN + +#ifndef HEADER_lp_mipbb +#define HEADER_lp_mipbb + +#include "lp_types.h" +#include "lp_utils.h" + + +/* Bounds storage for B&B routines */ +typedef struct _BBrec +{ + struct _BBrec *parent; + struct _BBrec *child; + lprec *lp; + int varno; + int vartype; + int lastvarcus; /* Count of non-int variables of the previous branch */ + int lastrcf; + int nodesleft; + int nodessolved; + int nodestatus; + LPSREAL noderesult; + LPSREAL lastsolution; /* Optimal solution of the previous branch */ + LPSREAL sc_bound; + LPSREAL *upbo, *lowbo; + LPSREAL UPbound, LObound; + int UBtrack, LBtrack; /* Signals that incoming bounds were changed */ + MYBOOL contentmode; /* Flag indicating if we "own" the bound vectors */ + MYBOOL sc_canset; + MYBOOL isSOS; + MYBOOL isGUB; + int *varmanaged; /* Extended list of variables managed by this B&B level */ + MYBOOL isfloor; /* State variable indicating the active B&B bound */ + MYBOOL UBzerobased; /* State variable indicating if bounds have been rebased */ +} BBrec; + +#ifdef __cplusplus +extern "C" { +#endif + +STATIC BBrec *create_BB(lprec *lp, BBrec *parentBB, MYBOOL dofullcopy); +STATIC BBrec *push_BB(lprec *lp, BBrec *parentBB, int varno, int vartype, int varcus); +STATIC MYBOOL initbranches_BB(BBrec *BB); +STATIC MYBOOL fillbranches_BB(BBrec *BB); +STATIC MYBOOL nextbranch_BB(BBrec *BB); +STATIC MYBOOL strongbranch_BB(lprec *lp, BBrec *BB, int varno, int vartype, int varcus); +STATIC MYBOOL initcuts_BB(lprec *lp); +STATIC int updatecuts_BB(lprec *lp); +STATIC MYBOOL freecuts_BB(lprec *lp); +STATIC BBrec *findself_BB(BBrec *BB); +STATIC int solve_LP(lprec *lp, BBrec *BB); +STATIC int rcfbound_BB(BBrec *BB, int varno, MYBOOL isINT, LPSREAL *newbound, MYBOOL *isfeasible); +STATIC MYBOOL findnode_BB(BBrec *BB, int *varno, int *vartype, int *varcus); +STATIC int solve_BB(BBrec *BB); +STATIC MYBOOL free_BB(BBrec **BB); +STATIC BBrec *pop_BB(BBrec *BB); + +STATIC int run_BB(lprec *lp); + +#ifdef __cplusplus + } +#endif + +#endif /* HEADER_lp_mipbb */ + diff --git a/src/external/lpsolve/headers/include/lp_presolve.h b/src/external/lpsolve/headers/include/lp_presolve.h new file mode 100644 index 00000000..348ad896 --- /dev/null +++ b/src/external/lpsolve/headers/include/lp_presolve.h @@ -0,0 +1,135 @@ +// Copyright(c) 2016-2018 Kjell Konis . +// Version: 5.5.2.0-17 +// Description: The lpSolveAPI package provides an R interface to 'lp_solve', +// a Mixed Integer Linear Programming (MILP) solver with support for pure +// linear, (mixed) integer/binary, semi-continuous and special ordered sets +// (SOS) models. +// License: LGPL-2 +// Repository: CRAN + +#ifndef HEADER_lp_presolve +#define HEADER_lp_presolve + +#include "lp_types.h" +#include "lp_matrix.h" + +/* -------------------------------------------------------------------------------------------- */ +/* Defines for various presolve options */ +/* -------------------------------------------------------------------------------------------- */ + +#define MAX_PSMERGELOOPS 2 /* Max loops to merge compatible constraints */ +#define MAX_PSLINDEPLOOPS 1 /* Max loops to detect linearly dependendent constraints */ +#define MAX_PSBOUNDTIGHTENLOOPS 5 /* Maximumn number of loops to allow bound tightenings */ +#define MIN_SOS1LENGTH 4 /* Minimum length of a constraint for conversion to SOS1 */ +#if 1 + #define PRESOLVE_EPSVALUE (0.1*lp->epsprimal) +#else + #define PRESOLVE_EPSVALUE lp->epsvalue +#endif +#define PRESOLVE_EPSPIVOT 1.0e-3 /* Looses robustness at values smaller than ~1.0e-3 */ +#define PRESOLVE_BOUNDSLACK 10 /* Extra error recovery/tolerance margin */ + +#define DoPresolveRounding /* Use absolute and directed rounding (disable at own risk) */ +/*#define DoPresolveRelativeTest*/ + +/*#define PresolveForceUpdateMax*/ + +/*#define DualFeasibilityLogicEQ2*/ /* Add low-order feasibility/accuracy logic to elimEQ2 */ +#define DivisorIntegralityLogicEQ2 /* Always prefer integer divisors */ +#define FindImpliedEqualities /* Detect equalities (default is enabled) */ +#define Eq2Reldiff + +/*#define SavePresolveEliminated */ /* Enable to activate storage of eliminated matrix data */ +/*#define UseDualPresolve */ /* Enable to use full dual information for presolve */ + + +typedef struct _psrec +{ + LLrec *varmap; + int **next; + int *empty; + int *plucount; + int *negcount; + int *pluneg; + int *infcount; + LPSREAL *plulower; + LPSREAL *neglower; + LPSREAL *pluupper; + LPSREAL *negupper; + int allocsize; +} psrec; + +typedef struct _presolverec +{ + psrec *rows; + psrec *cols; + LLrec *EQmap; + LLrec *LTmap; + LLrec *INTmap; + LPSREAL *pv_upbo; + LPSREAL *pv_lobo; + LPSREAL *dv_upbo; + LPSREAL *dv_lobo; + lprec *lp; + LPSREAL epsvalue; + LPSREAL epspivot; + int innerloops; + int middleloops; + int outerloops; + int nzdeleted; + MYBOOL forceupdate; +} presolverec; + +#ifdef __cplusplus +extern "C" { +#endif + +/* Put function headers here */ + +STATIC MYBOOL presolve_createUndo(lprec *lp); +STATIC MYBOOL presolve_rebuildUndo(lprec *lp, MYBOOL isprimal); +STATIC MYBOOL inc_presolve_space(lprec *lp, int delta, MYBOOL isrows); +STATIC MYBOOL presolve_setOrig(lprec *lp, int orig_rows, int orig_cols); +STATIC MYBOOL presolve_colfix(presolverec *psdata, int colnr, LPSREAL newvalue, MYBOOL remove, int *tally); +STATIC MYBOOL presolve_fillUndo(lprec *lp, int orig_rows, int orig_cols, MYBOOL setOrig); +STATIC MYBOOL presolve_freeUndo(lprec *lp); + +STATIC MYBOOL presolve_updatesums(presolverec *psdata); + +INLINE int presolve_nextrow(presolverec *psdata, int colnr, int *previtem); +INLINE int presolve_nextcol(presolverec *psdata, int rownr, int *previtem); + +STATIC presolverec *presolve_init(lprec *lp); +STATIC void presolve_free(presolverec **psdata); +STATIC int presolve_shrink(presolverec *psdata, int *nConRemove, int *nVarRemove); +STATIC void presolve_rowremove(presolverec *psdata, int rownr, MYBOOL allowcoldelete); +STATIC int presolve_colremove(presolverec *psdata, int colnr, MYBOOL allowrowdelete); + +STATIC MYBOOL presolve_colfixdual(presolverec *psdata, int colnr, LPSREAL *fixValue, int *status); + +INLINE int presolve_rowlength(presolverec *psdata, int rownr) +{ + int *items = psdata->rows->next[rownr]; + + if(items == NULL) + return( 0 ); + else + return( items[0] ); +} +INLINE int presolve_collength(presolverec *psdata, int colnr) +{ + int *items = psdata->cols->next[colnr]; + if(items == NULL) + return( 0 ); + else + return( items[0] ); +} + +STATIC int presolve(lprec *lp); +STATIC MYBOOL postsolve(lprec *lp, int status); + +#ifdef __cplusplus + } +#endif + +#endif /* HEADER_lp_presolve */ diff --git a/src/external/lpsolve/headers/include/lp_price.h b/src/external/lpsolve/headers/include/lp_price.h new file mode 100644 index 00000000..fddf2a1f --- /dev/null +++ b/src/external/lpsolve/headers/include/lp_price.h @@ -0,0 +1,108 @@ +// Copyright(c) 2016-2018 Kjell Konis . +// Version: 5.5.2.0-17 +// Description: The lpSolveAPI package provides an R interface to 'lp_solve', +// a Mixed Integer Linear Programming (MILP) solver with support for pure +// linear, (mixed) integer/binary, semi-continuous and special ordered sets +// (SOS) models. +// License: LGPL-2 +// Repository: CRAN + +#ifndef HEADER_lp_price +#define HEADER_lp_price + +/* Local defines */ +/* ------------------------------------------------------------------------- */ +#define UseSortOnBound_Improve +/*#define UseSortOnBound_Substitute*/ + +#if 0 /* Stricter feasibility-preserving tolerance; use w/ *_UseRejectionList */ + #define UseRelativeFeasibility /* Use machine-precision and A-scale data */ +#endif +#if 0 /* Stricter pivot-selection criteria; use w/ *UseRejectionList */ + #define UseRelativePivot_Primal /* In rowprim based on A-scale data */ + #define UseRelativePivot_Dual /* In coldual based on A-scale data */ +#endif + + +/* Include required library headers */ +/* ------------------------------------------------------------------------- */ +#include "lp_types.h" + + +#ifdef __cplusplus +extern "C" { +#endif + +/* Comparison and validity routines */ +int CMP_CALLMODEL compareImprovementVar(const pricerec *current, const pricerec *candidate); +int CMP_CALLMODEL compareSubstitutionVar(const pricerec *current, const pricerec *candidate); +int CMP_CALLMODEL compareBoundFlipVar(const pricerec *current, const pricerec *candidate); +STATIC int addCandidateVar(pricerec *candidate, multirec *multi, findCompare_func findCompare, MYBOOL allowSortedExpand); +STATIC MYBOOL collectMinorVar(pricerec *candidate, multirec *longsteps, MYBOOL isphase2, MYBOOL isbatch); +STATIC MYBOOL validImprovementVar(pricerec *candidate); +STATIC MYBOOL validSubstitutionVar(pricerec *candidate); + +/* Row+column selection routines */ +STATIC MYBOOL findImprovementVar(pricerec *current, pricerec *candidate, MYBOOL collectMP, int *candidatecount); +STATIC MYBOOL findSubstitutionVar(pricerec *current, pricerec *candidate, int *candidatecount); +INLINE LPSREAL normalizeEdge(lprec *lp, int item, LPSREAL edge, MYBOOL isdual); +STATIC void makePriceLoop(lprec *lp, int *start, int *end, int *delta); + +/* Computation of reduced costs */ +STATIC void update_reducedcosts(lprec *lp, MYBOOL isdual, int leave_nr, int enter_nr, LPSREAL *prow, LPSREAL *drow); +STATIC void compute_reducedcosts(lprec *lp, MYBOOL isdual, int row_nr, int *coltarget, MYBOOL dosolve, + LPSREAL *prow, int *nzprow, + LPSREAL *drow, int *nzdrow, + int roundmode); + +/* Leaving variable selection and entering column pricing loops */ +STATIC int find_rowReplacement(lprec *lp, int rownr, LPSREAL *prow, int *nzprow); +STATIC int colprim(lprec *lp, LPSREAL *drow, int *nzdrow, + MYBOOL skipupdate, int partialloop, int *candidatecount, MYBOOL updateinfeas, LPSREAL *xviol); +STATIC int rowprim(lprec *lp, int colnr, LREAL *theta, LPSREAL *pcol, int *nzpcol, MYBOOL forceoutEQ, LPSREAL *xviol); +STATIC int rowdual(lprec *lp, LPSREAL *rhvec, MYBOOL forceoutEQ, MYBOOL updateinfeas, LPSREAL *xviol); +STATIC int coldual(lprec *lp, int row_nr, + LPSREAL *prow, int *nzprow, LPSREAL *drow, int *nzdrow, + MYBOOL dualphase1, MYBOOL skipupdate, + int *candidatecount, LPSREAL *xviol); + +/* Partial pricing management routines */ +STATIC partialrec *partial_createBlocks(lprec *lp, MYBOOL isrow); +STATIC int partial_countBlocks(lprec *lp, MYBOOL isrow); +STATIC int partial_activeBlocks(lprec *lp, MYBOOL isrow); +STATIC void partial_freeBlocks(partialrec **blockdata); + +/* Partial pricing utility routines */ +STATIC int partial_findBlocks(lprec *lp, MYBOOL autodefine, MYBOOL isrow); +STATIC int partial_blockStart(lprec *lp, MYBOOL isrow); +STATIC int partial_blockEnd(lprec *lp, MYBOOL isrow); +STATIC int partial_blockNextPos(lprec *lp, int block, MYBOOL isrow); + +STATIC MYBOOL partial_blockStep(lprec *lp, MYBOOL isrow); +STATIC MYBOOL partial_isVarActive(lprec *lp, int varno, MYBOOL isrow); + +/* Multiple pricing / dual long step management routines */ +STATIC multirec *multi_create(lprec *lp, MYBOOL truncinf); +STATIC MYBOOL multi_resize(multirec *multi, int blocksize, int blockdiv, MYBOOL doVlist, MYBOOL doIset); +STATIC int multi_restart(multirec *multi); +STATIC int multi_size(multirec *multi); +STATIC int multi_used(multirec *multi); +STATIC MYBOOL multi_truncatingvar(multirec *multi, int varnr); +STATIC MYBOOL multi_mustupdate(multirec *multi); +STATIC void multi_valueInit(multirec *multi, LPSREAL step_base, LPSREAL obj_base); +STATIC LPSREAL *multi_valueList(multirec *multi); +STATIC int *multi_indexSet(multirec *multi, MYBOOL regenerate); +STATIC int multi_getvar(multirec *multi, int item); +STATIC MYBOOL multi_recompute(multirec *multi, int index, MYBOOL isphase2, MYBOOL fullupdate); +STATIC MYBOOL multi_removevar(multirec *multi, int varnr); +STATIC int multi_enteringvar(multirec *multi, pricerec *current, int priority); +STATIC LPSREAL multi_enteringtheta(multirec *multi); +STATIC void multi_free(multirec **multi); +STATIC int multi_populateSet(multirec *multi, int **list, int excludenr); + +#ifdef __cplusplus + } +#endif + +#endif /* HEADER_lp_price */ + diff --git a/src/external/lpsolve/headers/include/lp_pricePSE.h b/src/external/lpsolve/headers/include/lp_pricePSE.h new file mode 100644 index 00000000..422e1666 --- /dev/null +++ b/src/external/lpsolve/headers/include/lp_pricePSE.h @@ -0,0 +1,37 @@ +// Copyright(c) 2016-2018 Kjell Konis . +// Version: 5.5.2.0-17 +// Description: The lpSolveAPI package provides an R interface to 'lp_solve', +// a Mixed Integer Linear Programming (MILP) solver with support for pure +// linear, (mixed) integer/binary, semi-continuous and special ordered sets +// (SOS) models. +// License: LGPL-2 +// Repository: CRAN + +#ifndef HEADER_lp_pricePSE +#define HEADER_lp_pricePSE + +#include "lp_types.h" + +#define ApplySteepestEdgeMinimum + +#ifdef __cplusplus +extern "C" { +#endif + +/* Price norm management routines */ +STATIC MYBOOL initPricer(lprec *lp); +INLINE MYBOOL applyPricer(lprec *lp); +STATIC void simplexPricer(lprec *lp, MYBOOL isdual); +STATIC void freePricer(lprec *lp); +STATIC MYBOOL resizePricer(lprec *lp); +STATIC LPSREAL getPricer(lprec *lp, int item, MYBOOL isdual); +STATIC MYBOOL restartPricer(lprec *lp, MYBOOL isdual); +STATIC MYBOOL updatePricer(lprec *lp, int rownr, int colnr, LPSREAL *pcol, LPSREAL *prow, int *nzprow); +STATIC MYBOOL verifyPricer(lprec *lp); + +#ifdef __cplusplus + } +#endif + +#endif /* HEADER_lp_pricePSE */ + diff --git a/src/external/lpsolve/headers/include/lp_report.h b/src/external/lpsolve/headers/include/lp_report.h new file mode 100644 index 00000000..82b7becd --- /dev/null +++ b/src/external/lpsolve/headers/include/lp_report.h @@ -0,0 +1,51 @@ +// Copyright(c) 2016-2018 Kjell Konis . +// Version: 5.5.2.0-17 +// Description: The lpSolveAPI package provides an R interface to 'lp_solve', +// a Mixed Integer Linear Programming (MILP) solver with support for pure +// linear, (mixed) integer/binary, semi-continuous and special ordered sets +// (SOS) models. +// License: LGPL-2 +// Repository: CRAN + +#ifndef HEADER_lp_report +#define HEADER_lp_report + +#ifdef __cplusplus +extern "C" { +#endif + +/* General information functions */ +char * __VACALL explain(lprec *lp, char *format, ...); +void __VACALL report(lprec *lp, int level, char *format, ...); + +/* Prototypes for debugging and general data dumps */ +void debug_print(lprec *lp, char *format, ...); +void debug_print_solution(lprec *lp); +void debug_print_bounds(lprec *lp, LPSREAL *upbo, LPSREAL *lowbo); +void blockWriteLREAL(FILE *output, char *label, LREAL *vector, int first, int last); +void blockWriteAMAT(FILE *output, const char *label, lprec* lp, int first, int last); +void blockWriteBMAT(FILE *output, const char *label, lprec* lp, int first, int last); + + +/* Model reporting headers */ +void REPORT_objective(lprec *lp); +void REPORT_solution(lprec *lp, int columns); +void REPORT_constraints(lprec *lp, int columns); +void REPORT_duals(lprec *lp); +void REPORT_extended(lprec *lp); + +/* Other rarely used, but sometimes extremely useful reports */ +void REPORT_constraintinfo(lprec *lp, char *datainfo); +void REPORT_modelinfo(lprec *lp, MYBOOL doName, char *datainfo); +void REPORT_lp(lprec *lp); +MYBOOL REPORT_tableau(lprec *lp); +void REPORT_scales(lprec *lp); +MYBOOL REPORT_debugdump(lprec *lp, char *filename, MYBOOL livedata); +MYBOOL REPORT_mat_mmsave(lprec *lp, char *filename, int *colndx, MYBOOL includeOF, char *infotext); + +#ifdef __cplusplus + } +#endif + +#endif /* HEADER_lp_report */ + diff --git a/src/external/lpsolve/headers/include/lp_rlp.h b/src/external/lpsolve/headers/include/lp_rlp.h new file mode 100644 index 00000000..058b4523 --- /dev/null +++ b/src/external/lpsolve/headers/include/lp_rlp.h @@ -0,0 +1,2460 @@ +// Copyright(c) 2016-2018 Kjell Konis . +// Version: 5.5.2.0-17 +// Description: The lpSolveAPI package provides an R interface to 'lp_solve', +// a Mixed Integer Linear Programming (MILP) solver with support for pure +// linear, (mixed) integer/binary, semi-continuous and special ordered sets +// (SOS) models. +// License: LGPL-2 +// Repository: CRAN + + +#define YY_INT_ALIGNED short int + +/* A lexical scanner generated by flex */ + +#define FLEX_SCANNER +#define YY_FLEX_MAJOR_VERSION 2 +#define YY_FLEX_MINOR_VERSION 5 +#define YY_FLEX_SUBMINOR_VERSION 35 +#if YY_FLEX_SUBMINOR_VERSION > 0 +#define FLEX_BETA +#endif + +/* First, we deal with platform-specific or compiler-specific issues. */ + +/* begin standard C headers. */ +#include +#include +#include +#include + +/* end standard C headers. */ + +/* flex integer type definitions */ + +#ifndef FLEXINT_H +#define FLEXINT_H + +/* C99 systems have . Non-C99 systems may or may not. */ + +#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L + +/* C99 says to define __STDC_LIMIT_MACROS before including stdint.h, + * if you want the limit (max/min) macros for int types. + */ +#ifndef __STDC_LIMIT_MACROS +#define __STDC_LIMIT_MACROS 1 +#endif + +#include +typedef int8_t flex_int8_t; +typedef uint8_t flex_uint8_t; +typedef int16_t flex_int16_t; +typedef uint16_t flex_uint16_t; +typedef int32_t flex_int32_t; +typedef uint32_t flex_uint32_t; +#else +typedef signed char flex_int8_t; +typedef short int flex_int16_t; +typedef int flex_int32_t; +typedef unsigned char flex_uint8_t; +typedef unsigned short int flex_uint16_t; +typedef unsigned int flex_uint32_t; +#endif /* ! C99 */ + +/* Limits of integral types. */ +#ifndef INT8_MIN +#define INT8_MIN (-128) +#endif +#ifndef INT16_MIN +#define INT16_MIN (-32767-1) +#endif +#ifndef INT32_MIN +#define INT32_MIN (-2147483647-1) +#endif +#ifndef INT8_MAX +#define INT8_MAX (127) +#endif +#ifndef INT16_MAX +#define INT16_MAX (32767) +#endif +#ifndef INT32_MAX +#define INT32_MAX (2147483647) +#endif +#ifndef UINT8_MAX +#define UINT8_MAX (255U) +#endif +#ifndef UINT16_MAX +#define UINT16_MAX (65535U) +#endif +#ifndef UINT32_MAX +#define UINT32_MAX (4294967295U) +#endif + +#endif /* ! FLEXINT_H */ + +#ifdef __cplusplus + +/* The "const" storage-class-modifier is valid. */ +#define YY_USE_CONST + +#else /* ! __cplusplus */ + +/* C99 requires __STDC__ to be defined as 1. */ +#if defined (__STDC__) + +#define YY_USE_CONST + +#endif /* defined (__STDC__) */ +#endif /* ! __cplusplus */ + +#ifdef YY_USE_CONST +#define lp_yyconst const +#else +#define lp_yyconst +#endif + +/* Returned upon end-of-file. */ +#define YY_NULL 0 + +/* Promotes a possibly negative, possibly signed char to an unsigned + * integer for use as an array index. If the signed char is negative, + * we want to instead treat it as an 8-bit unsigned char, hence the + * double cast. + */ +#define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c) + +/* An opaque pointer. */ +#ifndef YY_TYPEDEF_YY_SCANNER_T +#define YY_TYPEDEF_YY_SCANNER_T +typedef void* lp_yyscan_t; +#endif + +/* For convenience, these vars (plus the bison vars far below) + are macros in the reentrant scanner. */ +#define lp_yyin lp_yyg->lp_yyin_r +#define lp_yyout lp_yyg->lp_yyout_r +#define lp_yyextra lp_yyg->lp_yyextra_r +#define lp_yyleng lp_yyg->lp_yyleng_r +#define lp_yytext lp_yyg->lp_yytext_r +#define lp_yylineno (YY_CURRENT_BUFFER_LVALUE->lp_yy_bs_lineno) +#define lp_yycolumn (YY_CURRENT_BUFFER_LVALUE->lp_yy_bs_column) +#define lp_yy_flex_debug lp_yyg->lp_yy_flex_debug_r + +/* Enter a start condition. This macro really ought to take a parameter, + * but we do it the disgusting crufty way forced on us by the ()-less + * definition of BEGIN. + */ +#define BEGIN lp_yyg->lp_yy_start = 1 + 2 * + +/* Translate the current start state into a value that can be later handed + * to BEGIN to return to the state. The YYSTATE alias is for lex + * compatibility. + */ +#define YY_START ((lp_yyg->lp_yy_start - 1) / 2) +#define YYSTATE YY_START + +/* Action number for EOF rule of a given start state. */ +#define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1) + +/* Special action meaning "start processing a new file". */ +#define YY_NEW_FILE lp_yyrestart(lp_yyin ,lp_yyscanner ) + +#define YY_END_OF_BUFFER_CHAR 0 + +/* Size of default input buffer. */ +#ifndef YY_BUF_SIZE +#define YY_BUF_SIZE 16384 +#endif + +/* The state buf must be large enough to hold one state per character in the main buffer. + */ +#define YY_STATE_BUF_SIZE ((YY_BUF_SIZE + 2) * sizeof(lp_yy_state_type)) + +#ifndef YY_TYPEDEF_YY_BUFFER_STATE +#define YY_TYPEDEF_YY_BUFFER_STATE +typedef struct lp_yy_buffer_state *YY_BUFFER_STATE; +#endif + +#define EOB_ACT_CONTINUE_SCAN 0 +#define EOB_ACT_END_OF_FILE 1 +#define EOB_ACT_LAST_MATCH 2 + + /* Note: We specifically omit the test for lp_yy_rule_can_match_eol because it requires + * access to the local variable lp_yy_act. Since lp_yyless() is a macro, it would break + * existing scanners that call lp_yyless() from OUTSIDE lp_yylex. + * One obvious solution it to make lp_yy_act a global. I tried that, and saw + * a 5% performance hit in a non-lp_yylineno scanner, because lp_yy_act is + * normally declared as a register variable-- so it is not worth it. + */ + #define YY_LESS_LINENO(n) \ + do { \ + int lp_yyl;\ + for ( lp_yyl = n; lp_yyl < lp_yyleng; ++lp_yyl )\ + if ( lp_yytext[lp_yyl] == '\n' )\ + --lp_yylineno;\ + }while(0) + +/* Return all but the first "n" matched characters back to the input stream. */ +#define lp_yyless(n) \ + do \ + { \ + /* Undo effects of setting up lp_yytext. */ \ + int lp_yyless_macro_arg = (n); \ + YY_LESS_LINENO(lp_yyless_macro_arg);\ + *lp_yy_cp = lp_yyg->lp_yy_hold_char; \ + YY_RESTORE_YY_MORE_OFFSET \ + lp_yyg->lp_yy_c_buf_p = lp_yy_cp = lp_yy_bp + lp_yyless_macro_arg - YY_MORE_ADJ; \ + YY_DO_BEFORE_ACTION; /* set up lp_yytext again */ \ + } \ + while ( 0 ) + +#define unput(c) lp_yyunput( c, lp_yyg->lp_yytext_ptr , lp_yyscanner ) + +#ifndef YY_TYPEDEF_YY_SIZE_T +#define YY_TYPEDEF_YY_SIZE_T +typedef size_t lp_yy_size_t; +#endif + +#ifndef YY_STRUCT_YY_BUFFER_STATE +#define YY_STRUCT_YY_BUFFER_STATE +struct lp_yy_buffer_state + { + FILE *lp_yy_input_file; + + char *lp_yy_ch_buf; /* input buffer */ + char *lp_yy_buf_pos; /* current position in input buffer */ + + /* Size of input buffer in bytes, not including room for EOB + * characters. + */ + lp_yy_size_t lp_yy_buf_size; + + /* Number of characters read into lp_yy_ch_buf, not including EOB + * characters. + */ + int lp_yy_n_chars; + + /* Whether we "own" the buffer - i.e., we know we created it, + * and can realloc() it to grow it, and should free() it to + * delete it. + */ + int lp_yy_is_our_buffer; + + /* Whether this is an "interactive" input source; if so, and + * if we're using stdio for input, then we want to use getc() + * instead of fread(), to make sure we stop fetching input after + * each newline. + */ + int lp_yy_is_interactive; + + /* Whether we're considered to be at the beginning of a line. + * If so, '^' rules will be active on the next match, otherwise + * not. + */ + int lp_yy_at_bol; + + int lp_yy_bs_lineno; /**< The line count. */ + int lp_yy_bs_column; /**< The column count. */ + + /* Whether to try to fill the input buffer when we reach the + * end of it. + */ + int lp_yy_fill_buffer; + + int lp_yy_buffer_status; + +#define YY_BUFFER_NEW 0 +#define YY_BUFFER_NORMAL 1 + /* When an EOF's been seen but there's still some text to process + * then we mark the buffer as YY_EOF_PENDING, to indicate that we + * shouldn't try reading from the input source any more. We might + * still have a bunch of tokens to match, though, because of + * possible backing-up. + * + * When we actually see the EOF, we change the status to "new" + * (via lp_yyrestart()), so that the user can continue scanning by + * just pointing lp_yyin at a new input file. + */ +#define YY_BUFFER_EOF_PENDING 2 + + }; +#endif /* !YY_STRUCT_YY_BUFFER_STATE */ + +/* We provide macros for accessing buffer states in case in the + * future we want to put the buffer states in a more general + * "scanner state". + * + * Returns the top of the stack, or NULL. + */ +#define YY_CURRENT_BUFFER ( lp_yyg->lp_yy_buffer_stack \ + ? lp_yyg->lp_yy_buffer_stack[lp_yyg->lp_yy_buffer_stack_top] \ + : NULL) + +/* Same as previous macro, but useful when we know that the buffer stack is not + * NULL or when we need an lvalue. For internal use only. + */ +#define YY_CURRENT_BUFFER_LVALUE lp_yyg->lp_yy_buffer_stack[lp_yyg->lp_yy_buffer_stack_top] + +void lp_yyrestart (FILE *input_file ,lp_yyscan_t lp_yyscanner ); +void lp_yy_switch_to_buffer (YY_BUFFER_STATE new_buffer ,lp_yyscan_t lp_yyscanner ); +YY_BUFFER_STATE lp_yy_create_buffer (FILE *file,int size ,lp_yyscan_t lp_yyscanner ); +void lp_yy_delete_buffer (YY_BUFFER_STATE b ,lp_yyscan_t lp_yyscanner ); +void lp_yy_flush_buffer (YY_BUFFER_STATE b ,lp_yyscan_t lp_yyscanner ); +void lp_yypush_buffer_state (YY_BUFFER_STATE new_buffer ,lp_yyscan_t lp_yyscanner ); +void lp_yypop_buffer_state (lp_yyscan_t lp_yyscanner ); + +static void lp_yyensure_buffer_stack (lp_yyscan_t lp_yyscanner ); +static void lp_yy_load_buffer_state (lp_yyscan_t lp_yyscanner ); +static void lp_yy_init_buffer (YY_BUFFER_STATE b,FILE *file ,lp_yyscan_t lp_yyscanner ); + +#define YY_FLUSH_BUFFER lp_yy_flush_buffer(YY_CURRENT_BUFFER ,lp_yyscanner) + +YY_BUFFER_STATE lp_yy_scan_buffer (char *base,lp_yy_size_t size ,lp_yyscan_t lp_yyscanner ); +YY_BUFFER_STATE lp_yy_scan_string (lp_yyconst char *lp_yy_str ,lp_yyscan_t lp_yyscanner ); +YY_BUFFER_STATE lp_yy_scan_bytes (lp_yyconst char *bytes,int len ,lp_yyscan_t lp_yyscanner ); + +void *lp_yyalloc (lp_yy_size_t ,lp_yyscan_t lp_yyscanner ); +void *lp_yyrealloc (void *,lp_yy_size_t ,lp_yyscan_t lp_yyscanner ); +void lp_yyfree (void * ,lp_yyscan_t lp_yyscanner ); + +#define lp_yy_new_buffer lp_yy_create_buffer + +#define lp_yy_set_interactive(is_interactive) \ + { \ + if ( ! YY_CURRENT_BUFFER ){ \ + lp_yyensure_buffer_stack (lp_yyscanner); \ + YY_CURRENT_BUFFER_LVALUE = \ + lp_yy_create_buffer(lp_yyin,YY_BUF_SIZE ,lp_yyscanner); \ + } \ + YY_CURRENT_BUFFER_LVALUE->lp_yy_is_interactive = is_interactive; \ + } + +#define lp_yy_set_bol(at_bol) \ + { \ + if ( ! YY_CURRENT_BUFFER ){\ + lp_yyensure_buffer_stack (lp_yyscanner); \ + YY_CURRENT_BUFFER_LVALUE = \ + lp_yy_create_buffer(lp_yyin,YY_BUF_SIZE ,lp_yyscanner); \ + } \ + YY_CURRENT_BUFFER_LVALUE->lp_yy_at_bol = at_bol; \ + } + +#define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->lp_yy_at_bol) + +/* Begin user sect3 */ + +#define lp_yywrap(n) 1 +#define YY_SKIP_YYWRAP + +typedef unsigned char YY_CHAR; + +typedef int lp_yy_state_type; + +#define lp_yytext_ptr lp_yytext_r + +static lp_yy_state_type lp_yy_get_previous_state (lp_yyscan_t lp_yyscanner ); +static lp_yy_state_type lp_yy_try_NUL_trans (lp_yy_state_type current_state ,lp_yyscan_t lp_yyscanner); +static int lp_yy_get_next_buffer (lp_yyscan_t lp_yyscanner ); +static void lp_yy_fatal_error (lp_yyconst char msg[] ,lp_yyscan_t lp_yyscanner ); + +/* Done after the current pattern has been matched and before the + * corresponding action - sets up lp_yytext. + */ +#define YY_DO_BEFORE_ACTION \ + lp_yyg->lp_yytext_ptr = lp_yy_bp; \ + lp_yyleng = (size_t) (lp_yy_cp - lp_yy_bp); \ + lp_yyg->lp_yy_hold_char = *lp_yy_cp; \ + *lp_yy_cp = '\0'; \ + lp_yyg->lp_yy_c_buf_p = lp_yy_cp; + +#define YY_NUM_RULES 33 +#define YY_END_OF_BUFFER 34 +/* This struct is not used in this scanner, + but its presence is necessary. */ +struct lp_yy_trans_info + { + flex_int32_t lp_yy_verify; + flex_int32_t lp_yy_nxt; + }; +static lp_yyconst flex_int16_t lp_yy_accept[144] = + { 0, + 0, 0, 0, 0, 0, 0, 34, 32, 10, 10, + 27, 17, 11, 32, 32, 14, 26, 31, 29, 28, + 30, 25, 25, 10, 25, 25, 25, 25, 3, 4, + 3, 3, 9, 7, 8, 10, 17, 17, 0, 15, + 1, 6, 15, 14, 0, 29, 30, 0, 25, 24, + 0, 25, 25, 10, 0, 0, 0, 0, 25, 25, + 25, 25, 25, 2, 0, 15, 0, 15, 22, 0, + 25, 25, 0, 0, 0, 0, 0, 19, 25, 18, + 20, 25, 25, 21, 0, 25, 0, 13, 25, 0, + 12, 25, 19, 0, 18, 20, 21, 25, 23, 25, + + 20, 21, 21, 16, 16, 0, 25, 25, 0, 23, + 0, 21, 25, 25, 0, 0, 25, 25, 0, 0, + 19, 25, 0, 0, 25, 25, 19, 0, 18, 0, + 0, 25, 25, 18, 0, 0, 0, 0, 0, 0, + 0, 0, 0 + } ; + +static lp_yyconst flex_int32_t lp_yy_ec[256] = + { 0, + 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, + 1, 1, 4, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 2, 1, 1, 5, 6, 5, 5, 5, 1, + 1, 7, 8, 9, 10, 11, 12, 13, 14, 14, + 13, 13, 13, 13, 13, 13, 13, 15, 16, 17, + 18, 19, 1, 5, 20, 21, 22, 23, 24, 25, + 26, 23, 27, 23, 23, 23, 28, 29, 30, 23, + 23, 31, 32, 33, 34, 23, 23, 35, 36, 37, + 5, 1, 5, 5, 5, 1, 20, 21, 22, 23, + + 24, 25, 26, 23, 27, 23, 23, 23, 28, 29, + 30, 23, 23, 31, 32, 33, 34, 23, 23, 35, + 36, 37, 5, 1, 5, 5, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1 + } ; + +static lp_yyconst flex_int32_t lp_yy_meta[38] = + { 0, + 1, 2, 3, 3, 4, 5, 6, 3, 6, 3, + 5, 5, 5, 5, 7, 6, 7, 6, 6, 4, + 4, 4, 4, 4, 4, 4, 8, 4, 4, 4, + 4, 4, 4, 4, 4, 4, 4 + } ; + +static lp_yyconst flex_int16_t lp_yy_base[150] = + { 0, + 0, 36, 36, 38, 43, 45, 366, 388, 48, 62, + 388, 338, 388, 40, 48, 60, 388, 388, 346, 388, + 326, 60, 65, 91, 81, 74, 85, 102, 388, 388, + 388, 330, 388, 388, 388, 125, 313, 134, 308, 96, + 388, 388, 117, 132, 139, 388, 388, 88, 146, 320, + 0, 149, 152, 0, 307, 301, 294, 83, 153, 156, + 157, 189, 160, 388, 286, 126, 65, 108, 388, 289, + 181, 185, 272, 273, 250, 249, 220, 199, 203, 208, + 192, 211, 219, 227, 243, 109, 163, 225, 202, 174, + 224, 215, 213, 207, 191, 388, 189, 227, 228, 231, + + 244, 240, 253, 276, 388, 170, 260, 262, 166, 388, + 169, 179, 263, 241, 166, 159, 270, 272, 149, 155, + 284, 288, 130, 124, 296, 303, 388, 103, 300, 96, + 45, 324, 328, 388, 82, 311, 79, 68, 54, 56, + 25, 12, 388, 345, 353, 360, 367, 372, 379 + } ; + +static lp_yyconst flex_int16_t lp_yy_def[150] = + { 0, + 143, 1, 144, 144, 145, 145, 143, 143, 143, 143, + 143, 146, 143, 143, 143, 143, 143, 143, 143, 143, + 143, 147, 147, 143, 147, 147, 147, 147, 143, 143, + 143, 143, 143, 143, 143, 143, 146, 143, 143, 143, + 143, 143, 143, 143, 143, 143, 143, 143, 147, 143, + 148, 147, 147, 24, 143, 143, 143, 143, 147, 147, + 147, 147, 147, 143, 143, 143, 143, 143, 143, 148, + 147, 147, 143, 143, 143, 143, 143, 147, 147, 147, + 147, 147, 147, 147, 149, 143, 143, 143, 62, 143, + 143, 62, 143, 143, 143, 143, 143, 62, 62, 62, + + 62, 62, 62, 143, 143, 143, 62, 62, 143, 143, + 143, 143, 62, 62, 143, 143, 62, 62, 143, 143, + 62, 62, 143, 143, 62, 62, 143, 143, 62, 143, + 143, 147, 147, 143, 143, 149, 143, 143, 143, 143, + 143, 143, 0, 143, 143, 143, 143, 143, 143 + } ; + +static lp_yyconst flex_int16_t lp_yy_nxt[426] = + { 0, + 8, 9, 10, 9, 8, 8, 11, 12, 13, 12, + 14, 15, 16, 16, 17, 18, 19, 20, 21, 22, + 22, 22, 22, 22, 22, 22, 22, 23, 22, 22, + 22, 22, 22, 22, 22, 22, 22, 24, 30, 31, + 30, 31, 32, 96, 32, 34, 35, 34, 35, 36, + 36, 36, 40, 40, 41, 37, 25, 37, 142, 42, + 26, 48, 27, 36, 36, 36, 48, 28, 136, 37, + 43, 37, 44, 44, 50, 48, 51, 68, 68, 50, + 136, 51, 48, 45, 52, 141, 48, 140, 50, 48, + 51, 53, 54, 36, 36, 50, 139, 51, 37, 50, + + 37, 51, 50, 48, 60, 138, 76, 59, 40, 40, + 48, 55, 77, 61, 137, 56, 50, 57, 51, 45, + 68, 68, 58, 50, 135, 62, 36, 36, 36, 66, + 66, 63, 37, 134, 37, 38, 38, 38, 66, 66, + 45, 38, 43, 38, 44, 44, 67, 48, 67, 45, + 48, 68, 68, 48, 48, 45, 131, 48, 48, 130, + 50, 48, 51, 50, 87, 51, 50, 50, 51, 51, + 50, 50, 51, 51, 50, 90, 51, 88, 128, 79, + 72, 78, 87, 71, 127, 124, 90, 123, 91, 80, + 48, 84, 112, 48, 120, 88, 119, 51, 116, 91, + + 48, 51, 112, 50, 48, 51, 50, 89, 51, 48, + 81, 92, 48, 50, 111, 51, 82, 50, 98, 51, + 48, 83, 50, 49, 51, 50, 99, 51, 48, 107, + 110, 100, 109, 50, 49, 51, 49, 101, 69, 69, + 103, 50, 108, 51, 104, 104, 104, 49, 49, 49, + 102, 97, 49, 115, 49, 49, 114, 113, 49, 49, + 49, 49, 49, 49, 122, 49, 103, 49, 49, 106, + 96, 49, 49, 49, 49, 81, 49, 104, 104, 104, + 49, 49, 95, 49, 49, 49, 117, 49, 118, 49, + 49, 49, 49, 49, 49, 49, 94, 49, 121, 49, + + 93, 125, 49, 126, 49, 49, 125, 86, 126, 49, + 85, 49, 104, 104, 104, 49, 49, 49, 129, 132, + 49, 49, 75, 49, 49, 87, 133, 49, 49, 90, + 49, 74, 49, 73, 69, 49, 65, 143, 88, 39, + 51, 64, 91, 47, 51, 29, 29, 29, 29, 29, + 29, 29, 29, 33, 33, 33, 33, 33, 33, 33, + 33, 38, 38, 46, 39, 143, 143, 38, 49, 143, + 49, 49, 143, 49, 49, 70, 70, 143, 143, 70, + 105, 105, 143, 105, 105, 105, 105, 7, 143, 143, + 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, + + 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, + 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, + 143, 143, 143, 143, 143 + } ; + +static lp_yyconst flex_int16_t lp_yy_chk[426] = + { 0, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 2, 3, 3, + 4, 4, 3, 142, 4, 5, 5, 6, 6, 9, + 9, 9, 14, 14, 15, 9, 2, 9, 141, 15, + 2, 22, 2, 10, 10, 10, 23, 2, 131, 10, + 16, 10, 16, 16, 22, 26, 22, 67, 67, 23, + 131, 23, 25, 16, 23, 140, 27, 139, 26, 48, + 26, 23, 24, 24, 24, 25, 138, 25, 24, 27, + + 24, 27, 48, 28, 26, 137, 58, 25, 40, 40, + 86, 24, 58, 27, 135, 24, 28, 24, 28, 40, + 68, 68, 24, 86, 130, 28, 36, 36, 36, 43, + 43, 28, 36, 128, 36, 38, 38, 38, 66, 66, + 43, 38, 44, 38, 44, 44, 45, 49, 45, 66, + 52, 45, 45, 53, 59, 44, 124, 60, 61, 123, + 49, 63, 49, 52, 87, 52, 53, 59, 53, 59, + 60, 61, 60, 61, 63, 90, 63, 87, 120, 60, + 53, 59, 71, 52, 119, 116, 72, 115, 90, 61, + 62, 63, 112, 81, 111, 71, 109, 71, 106, 72, + + 78, 72, 97, 62, 79, 62, 81, 71, 81, 80, + 62, 72, 82, 78, 95, 78, 62, 79, 78, 79, + 83, 62, 80, 89, 80, 82, 79, 82, 84, 89, + 94, 80, 93, 83, 89, 83, 92, 82, 91, 88, + 84, 84, 92, 84, 85, 85, 85, 92, 98, 99, + 83, 77, 100, 101, 98, 99, 100, 98, 100, 98, + 99, 102, 114, 100, 114, 101, 103, 102, 114, 85, + 76, 101, 102, 114, 103, 101, 101, 104, 104, 104, + 103, 107, 75, 108, 113, 103, 107, 107, 108, 108, + 113, 117, 107, 118, 108, 113, 74, 117, 113, 118, + + 73, 117, 117, 118, 118, 121, 117, 70, 118, 122, + 65, 121, 136, 136, 136, 122, 121, 125, 122, 125, + 122, 129, 57, 125, 126, 132, 126, 129, 125, 133, + 126, 56, 129, 55, 50, 126, 39, 136, 132, 37, + 132, 32, 133, 21, 133, 144, 144, 144, 144, 144, + 144, 144, 144, 145, 145, 145, 145, 145, 145, 145, + 145, 146, 146, 19, 12, 7, 0, 146, 147, 0, + 147, 147, 0, 147, 147, 148, 148, 0, 0, 148, + 149, 149, 0, 149, 149, 149, 149, 143, 143, 143, + 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, + + 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, + 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, + 143, 143, 143, 143, 143 + } ; + +/* Table of booleans, true if rule could match eol. */ +static lp_yyconst flex_int32_t lp_yy_rule_can_match_eol[34] = + { 0, +0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }; + +/* The intent behind this definition is that it'll catch + * any uses of REJECT which flex missed. + */ +#define REJECT reject_used_but_not_detected +#define lp_yymore() lp_yymore_used_but_not_detected +#define YY_MORE_ADJ 0 +#define YY_RESTORE_YY_MORE_OFFSET +/* + made reentrant with help of + http://www.usualcoding.eu/post/2007/09/03/Building-a-reentrant-parser-in-C-with-Flex/Bison +*/ +/* + Note that a minimum version of flex is needed to be able to compile this. + Older version don't know the reentrant code. + Version 2.5.4 is not enough. Probably at least v2.5.31 is needed. Tested with v2.5.35 +*/ +/* +** We want the scanner to be reentrant, therefore generate no global variables. +** That what the 'reentrant' option is for. +** 'bison-bridge' is used to create a bison compatible scanner and share lp_yylval +*/ + +#define INITIAL 0 +#define COMMENT 1 +#define LINECOMMENT 2 + +#ifndef YY_NO_UNISTD_H +/* Special case for "unistd.h", since it is non-ANSI. We include it way + * down here because we want the user's section 1 to have been scanned first. + * The user has a chance to override it with an option. + */ +#include +#endif + +#ifndef YY_EXTRA_TYPE +#define YY_EXTRA_TYPE void * +#endif + +/* Holds the entire state of the reentrant scanner. */ +struct lp_yyguts_t + { + + /* User-defined. Not touched by flex. */ + YY_EXTRA_TYPE lp_yyextra_r; + + /* The rest are the same as the globals declared in the non-reentrant scanner. */ + FILE *lp_yyin_r, *lp_yyout_r; + size_t lp_yy_buffer_stack_top; /**< index of top of stack. */ + size_t lp_yy_buffer_stack_max; /**< capacity of stack. */ + YY_BUFFER_STATE * lp_yy_buffer_stack; /**< Stack as an array. */ + char lp_yy_hold_char; + int lp_yy_n_chars; + int lp_yyleng_r; + char *lp_yy_c_buf_p; + int lp_yy_init; + int lp_yy_start; + int lp_yy_did_buffer_switch_on_eof; + int lp_yy_start_stack_ptr; + int lp_yy_start_stack_depth; + int *lp_yy_start_stack; + lp_yy_state_type lp_yy_last_accepting_state; + char* lp_yy_last_accepting_cpos; + + int lp_yylineno_r; + int lp_yy_flex_debug_r; + + char *lp_yytext_r; + int lp_yy_more_flag; + int lp_yy_more_len; + + YYSTYPE * lp_yylval_r; + + }; /* end struct lp_yyguts_t */ + +static int lp_yy_init_globals (lp_yyscan_t lp_yyscanner ); + + /* This must go here because YYSTYPE and YYLTYPE are included + * from bison output in section 1.*/ + # define lp_yylval lp_yyg->lp_yylval_r + +int lp_yylex_init (lp_yyscan_t* scanner); + +int lp_yylex_init_extra (YY_EXTRA_TYPE user_defined,lp_yyscan_t* scanner); + +/* Accessor methods to globals. + These are made visible to non-reentrant scanners for convenience. */ + +int lp_yylex_destroy (lp_yyscan_t lp_yyscanner ); + +int lp_yyget_debug (lp_yyscan_t lp_yyscanner ); + +void lp_yyset_debug (int debug_flag ,lp_yyscan_t lp_yyscanner ); + +YY_EXTRA_TYPE lp_yyget_extra (lp_yyscan_t lp_yyscanner ); + +void lp_yyset_extra (YY_EXTRA_TYPE user_defined ,lp_yyscan_t lp_yyscanner ); + +FILE *lp_yyget_in (lp_yyscan_t lp_yyscanner ); + +void lp_yyset_in (FILE * in_str ,lp_yyscan_t lp_yyscanner ); + +FILE *lp_yyget_out (lp_yyscan_t lp_yyscanner ); + +void lp_yyset_out (FILE * out_str ,lp_yyscan_t lp_yyscanner ); + +int lp_yyget_leng (lp_yyscan_t lp_yyscanner ); + +char *lp_yyget_text (lp_yyscan_t lp_yyscanner ); + +int lp_yyget_lineno (lp_yyscan_t lp_yyscanner ); + +void lp_yyset_lineno (int line_number ,lp_yyscan_t lp_yyscanner ); + +YYSTYPE * lp_yyget_lval (lp_yyscan_t lp_yyscanner ); + +void lp_yyset_lval (YYSTYPE * lp_yylval_param ,lp_yyscan_t lp_yyscanner ); + +/* Macros after this point can all be overridden by user definitions in + * section 1. + */ + +#ifndef YY_SKIP_YYWRAP +#ifdef __cplusplus +extern "C" int lp_yywrap (lp_yyscan_t lp_yyscanner ); +#else +extern int lp_yywrap (lp_yyscan_t lp_yyscanner ); +#endif +#endif + + static void lp_yyunput (int c,char *buf_ptr ,lp_yyscan_t lp_yyscanner); + +#ifndef lp_yytext_ptr +static void lp_yy_flex_strncpy (char *,lp_yyconst char *,int ,lp_yyscan_t lp_yyscanner); +#endif + +#ifdef YY_NEED_STRLEN +static int lp_yy_flex_strlen (lp_yyconst char * ,lp_yyscan_t lp_yyscanner); +#endif + +#ifndef YY_NO_INPUT + +#ifdef __cplusplus +static int lp_yyinput (lp_yyscan_t lp_yyscanner ); +#else +static int input (lp_yyscan_t lp_yyscanner ); +#endif + +#endif + +/* Amount of stuff to slurp up with each read. */ +#ifndef YY_READ_BUF_SIZE +#define YY_READ_BUF_SIZE 8192 +#endif + +/* Copy whatever the last rule matched to the standard output. */ +#ifndef ECHO +/* This used to be an fputs(), but since the string might contain NUL's, + * we now use fwrite(). + */ +#define ECHO fwrite( lp_yytext, lp_yyleng, 1, lp_yyout ) +#endif + +/* Gets input and stuffs it into "buf". number of characters read, or YY_NULL, + * is returned in "result". + */ +#ifndef YY_INPUT +#define YY_INPUT(buf,result,max_size) \ + if ( YY_CURRENT_BUFFER_LVALUE->lp_yy_is_interactive ) \ + { \ + int c = '*'; \ + int n; \ + for ( n = 0; n < max_size && \ + (c = getc( lp_yyin )) != EOF && c != '\n'; ++n ) \ + buf[n] = (char) c; \ + if ( c == '\n' ) \ + buf[n++] = (char) c; \ + if ( c == EOF && ferror( lp_yyin ) ) \ + YY_FATAL_ERROR( "input in flex scanner failed" ); \ + result = n; \ + } \ + else \ + { \ + errno=0; \ + while ( (result = fread(buf, 1, max_size, lp_yyin))==0 && ferror(lp_yyin)) \ + { \ + if( errno != EINTR) \ + { \ + YY_FATAL_ERROR( "input in flex scanner failed" ); \ + break; \ + } \ + errno=0; \ + clearerr(lp_yyin); \ + } \ + }\ +\ + +#endif + +/* No semi-colon after return; correct usage is to write "lp_yyterminate();" - + * we don't want an extra ';' after the "return" because that will cause + * some compilers to complain about unreachable statements. + */ +#ifndef lp_yyterminate +#define lp_yyterminate() return YY_NULL +#endif + +/* Number of entries by which start-condition stack grows. */ +#ifndef YY_START_STACK_INCR +#define YY_START_STACK_INCR 25 +#endif + +/* Report a fatal error. */ +#ifndef YY_FATAL_ERROR +#define YY_FATAL_ERROR(msg) lp_yy_fatal_error( msg , lp_yyscanner) +#endif + +/* end tables serialization structures and prototypes */ + +/* Default declaration of generated scanner - a define so the user can + * easily add parameters. + */ +#ifndef YY_DECL +#define YY_DECL_IS_OURS 1 + +extern int lp_yylex \ + (YYSTYPE * lp_yylval_param ,lp_yyscan_t lp_yyscanner); + +#define YY_DECL int lp_yylex \ + (YYSTYPE * lp_yylval_param , lp_yyscan_t lp_yyscanner) +#endif /* !YY_DECL */ + +/* Code executed at the beginning of each rule, after lp_yytext and lp_yyleng + * have been set up. + */ +#ifndef YY_USER_ACTION +#define YY_USER_ACTION +#endif + +/* Code executed at the end of each rule. */ +#ifndef YY_BREAK +#define YY_BREAK break; +#endif + +#define YY_RULE_SETUP \ + if ( lp_yyleng > 0 ) \ + YY_CURRENT_BUFFER_LVALUE->lp_yy_at_bol = \ + (lp_yytext[lp_yyleng - 1] == '\n'); \ + YY_USER_ACTION + +/** The main scanner function which does all the work. + */ +YY_DECL +{ + register lp_yy_state_type lp_yy_current_state; + register char *lp_yy_cp, *lp_yy_bp; + register int lp_yy_act; + struct lp_yyguts_t * lp_yyg = (struct lp_yyguts_t*)lp_yyscanner; + + lp_yylval = lp_yylval_param; + + if ( !lp_yyg->lp_yy_init ) + { + lp_yyg->lp_yy_init = 1; + +#ifdef YY_USER_INIT + YY_USER_INIT; +#endif + + if ( ! lp_yyg->lp_yy_start ) + lp_yyg->lp_yy_start = 1; /* first start state */ + + if ( ! lp_yyin ) + lp_yyin = stdin; + + if ( ! lp_yyout ) + lp_yyout = stdout; + + if ( ! YY_CURRENT_BUFFER ) { + lp_yyensure_buffer_stack (lp_yyscanner); + YY_CURRENT_BUFFER_LVALUE = + lp_yy_create_buffer(lp_yyin,YY_BUF_SIZE ,lp_yyscanner); + } + + lp_yy_load_buffer_state(lp_yyscanner ); + } + + while ( 1 ) /* loops until end-of-file is reached */ + { + lp_yy_cp = lp_yyg->lp_yy_c_buf_p; + + /* Support of lp_yytext. */ + *lp_yy_cp = lp_yyg->lp_yy_hold_char; + + /* lp_yy_bp points to the position in lp_yy_ch_buf of the start of + * the current run. + */ + lp_yy_bp = lp_yy_cp; + + lp_yy_current_state = lp_yyg->lp_yy_start; + lp_yy_current_state += YY_AT_BOL(); +lp_yy_match: + do + { + register YY_CHAR lp_yy_c = lp_yy_ec[YY_SC_TO_UI(*lp_yy_cp)]; + if ( lp_yy_accept[lp_yy_current_state] ) + { + lp_yyg->lp_yy_last_accepting_state = lp_yy_current_state; + lp_yyg->lp_yy_last_accepting_cpos = lp_yy_cp; + } + while ( lp_yy_chk[lp_yy_base[lp_yy_current_state] + lp_yy_c] != lp_yy_current_state ) + { + lp_yy_current_state = (int) lp_yy_def[lp_yy_current_state]; + if ( lp_yy_current_state >= 144 ) + lp_yy_c = lp_yy_meta[(unsigned int) lp_yy_c]; + } + lp_yy_current_state = lp_yy_nxt[lp_yy_base[lp_yy_current_state] + (unsigned int) lp_yy_c]; + ++lp_yy_cp; + } + while ( lp_yy_base[lp_yy_current_state] != 388 ); + +lp_yy_find_action: + lp_yy_act = lp_yy_accept[lp_yy_current_state]; + if ( lp_yy_act == 0 ) + { /* have to back up */ + lp_yy_cp = lp_yyg->lp_yy_last_accepting_cpos; + lp_yy_current_state = lp_yyg->lp_yy_last_accepting_state; + lp_yy_act = lp_yy_accept[lp_yy_current_state]; + } + + YY_DO_BEFORE_ACTION; + + if ( lp_yy_act != YY_END_OF_BUFFER && lp_yy_rule_can_match_eol[lp_yy_act] ) + { + int lp_yyl; + for ( lp_yyl = 0; lp_yyl < lp_yyleng; ++lp_yyl ) + if ( lp_yytext[lp_yyl] == '\n' ) + + do{ lp_yylineno++; + lp_yycolumn=0; + }while(0) +; + } + +do_action: /* This label is used only to access EOF actions. */ + + switch ( lp_yy_act ) + { /* beginning of action switch */ + case 0: /* must back up */ + /* undo the effects of YY_DO_BEFORE_ACTION */ + *lp_yy_cp = lp_yyg->lp_yy_hold_char; + lp_yy_cp = lp_yyg->lp_yy_last_accepting_cpos; + lp_yy_current_state = lp_yyg->lp_yy_last_accepting_state; + goto lp_yy_find_action; + +case 1: +YY_RULE_SETUP +{ + BEGIN COMMENT; +} /* begin skip comment */ + YY_BREAK +case 2: +YY_RULE_SETUP +{ + BEGIN INITIAL; +} /* end skip comment */ + YY_BREAK +case 3: +YY_RULE_SETUP +{ +} + YY_BREAK +case 4: +/* rule 4 can match eol */ +YY_RULE_SETUP +{ +} + YY_BREAK +case 5: +YY_RULE_SETUP +{ +} + YY_BREAK +case 6: +YY_RULE_SETUP +{ + BEGIN LINECOMMENT; +} /* begin skip LINECOMMENT */ + YY_BREAK +case 7: +/* rule 7 can match eol */ +YY_RULE_SETUP +{ + BEGIN INITIAL; +} /* end skip LINECOMMENT */ + YY_BREAK +case 8: +YY_RULE_SETUP +{ + BEGIN INITIAL; +} /* end skip LINECOMMENT */ + YY_BREAK +case 9: +YY_RULE_SETUP +{ +} + YY_BREAK +case 10: +/* rule 10 can match eol */ +YY_RULE_SETUP +{ +} + YY_BREAK +case 11: +YY_RULE_SETUP +{ + parse_parm *pp = PARM; + + pp->lineno = lp_yylineno; + return(COMMA); +} + YY_BREAK +case 12: +YY_RULE_SETUP +{ + parse_parm *pp = PARM; + + pp->lineno = lp_yylineno; + return(MINIMISE); +} + YY_BREAK +case 13: +YY_RULE_SETUP +{ + parse_parm *pp = PARM; + + pp->lineno = lp_yylineno; + return(MAXIMISE); +} + YY_BREAK +case 14: +YY_RULE_SETUP +{ + parse_parm *pp = PARM; + parse_vars *pv = (parse_vars *) pp->parse_vars; + + pp->lineno = lp_yylineno; + pv->f = atof((char *)lp_yytext); + return(INTCONS); +} /* f contains the last float */ + YY_BREAK +case 15: +YY_RULE_SETUP +{ + parse_parm *pp = PARM; + parse_vars *pv = (parse_vars *) pp->parse_vars; + + pp->lineno = lp_yylineno; + pv->f = atof((char *)lp_yytext); + return(CONS); +} /* f contains the last float */ + YY_BREAK +case 16: +/* rule 16 can match eol */ +YY_RULE_SETUP +{ + parse_parm *pp = PARM; + parse_vars *pv = (parse_vars *) pp->parse_vars; + char *ptr, c; + + pp->lineno = lp_yylineno; + pv->f = DEF_INFINITE; + pv->Sign = 0; + ptr = (char *)lp_yytext; + while (isspace(*ptr)) ptr++; + if(*ptr == '-') + pv->Sign = 1; + if(lp_yyleng > 0) { + c = lp_yytext[lp_yyleng - 1]; + if(!isalnum(c)) + unput(c); + } + return(INF); +} /* f contains the last float */ + YY_BREAK +case 17: +/* rule 17 can match eol */ +YY_RULE_SETUP +{ + parse_parm *pp = PARM; + parse_vars *pv = (parse_vars *) pp->parse_vars; + int x; + + pp->lineno = lp_yylineno; + pv->Sign = 0; + for(x = 0; x < lp_yyleng; x++) + if(lp_yytext[x] == '-' || lp_yytext[x] == '+') + pv->Sign = (pv->Sign == (lp_yytext[x] == '+')); + return (TOK_SIGN); + /* Sign is TRUE if the sign-string + represents a '-'. Otherwise Sign + is FALSE */ +} + YY_BREAK +case 18: +YY_RULE_SETUP +{ + parse_parm *pp = PARM; + parse_vars *pv = (parse_vars *) pp->parse_vars; + + pp->lineno = lp_yylineno; + if((!pv->Within_int_decl) && (!pv->Within_sec_decl) && (!pv->Within_sos_decl) && (!pv->Within_free_decl)) { + pv->Within_int_decl = 1; + pv->Within_sos_decl1 = FALSE; + } + return(SEC_INT); +} + YY_BREAK +case 19: +YY_RULE_SETUP +{ + parse_parm *pp = PARM; + parse_vars *pv = (parse_vars *) pp->parse_vars; + + pp->lineno = lp_yylineno; + if((!pv->Within_int_decl) && (!pv->Within_sec_decl) && (!pv->Within_sos_decl) && (!pv->Within_free_decl)) { + pv->Within_int_decl = 2; + pv->Within_sos_decl1 = FALSE; + } + return(SEC_BIN); +} + YY_BREAK +case 20: +YY_RULE_SETUP +{ + parse_parm *pp = PARM; + parse_vars *pv = (parse_vars *) pp->parse_vars; + + pp->lineno = lp_yylineno; + if((!pv->Within_int_decl) && (!pv->Within_sec_decl) && (!pv->Within_sos_decl) && (!pv->Within_free_decl)) { + pv->Within_sec_decl = TRUE; + pv->Within_sos_decl1 = FALSE; + } + return(SEC_SEC); +} + YY_BREAK +case 21: +YY_RULE_SETUP +{ + parse_parm *pp = PARM; + parse_vars *pv = (parse_vars *) pp->parse_vars; + + pp->lineno = lp_yylineno; + if(!pv->Within_sos_decl) + pv->SOStype0 = (short)atoi(((char *)lp_yytext) + 3); + if((!pv->Within_int_decl) && (!pv->Within_sec_decl) && (!pv->Within_sos_decl) && (!pv->Within_free_decl)) + pv->Within_sos_decl = TRUE; + return(SEC_SOS); +} + YY_BREAK +case 22: +YY_RULE_SETUP +{ + parse_parm *pp = PARM; + parse_vars *pv = (parse_vars *) pp->parse_vars; + + pp->lineno = lp_yylineno; + FREE(pv->Last_var); + pv->Last_var = strdup((char *)lp_yytext); + pv->Last_var[strlen(pv->Last_var) - 2] = 0; + return(SOSDESCR); +} + YY_BREAK +case 23: +YY_RULE_SETUP +{ + parse_parm *pp = PARM; + parse_vars *pv = (parse_vars *) pp->parse_vars; + + pp->lineno = lp_yylineno; + if((!pv->Within_int_decl) && (!pv->Within_sec_decl) && (!pv->Within_sos_decl) && (!pv->Within_free_decl)) { + pv->Within_free_decl = TRUE; + pv->Within_sos_decl1 = FALSE; + } + return(SEC_FREE); +} + YY_BREAK +case 24: +YY_RULE_SETUP +{ + parse_parm *pp = PARM; + parse_vars *pv = (parse_vars *) pp->parse_vars; + char *ptr; + + pp->lineno = lp_yylineno; + FREE(pv->Last_var); + pv->Last_var = strdup((char *)lp_yytext); + ptr = pv->Last_var + strlen(pv->Last_var); + ptr[-1] = ' '; + while ((--ptr >= pv->Last_var) && (isspace(*ptr))) + *ptr = 0; + return(VARIABLECOLON); +} + YY_BREAK +case 25: +YY_RULE_SETUP +{ + parse_parm *pp = PARM; + parse_vars *pv = (parse_vars *) pp->parse_vars; + + pp->lineno = lp_yylineno; + FREE(pv->Last_var); + pv->Last_var = strdup((char *)lp_yytext); + return(VAR); +} + YY_BREAK +case 26: +YY_RULE_SETUP +{ + parse_parm *pp = PARM; + + pp->lineno = lp_yylineno; + return (COLON); +} + YY_BREAK +case 27: +YY_RULE_SETUP +{ + parse_parm *pp = PARM; + + pp->lineno = lp_yylineno; + return(AR_M_OP); +} + YY_BREAK +case 28: +YY_RULE_SETUP +{ + parse_parm *pp = PARM; + parse_vars *pv = (parse_vars *) pp->parse_vars; + + pp->lineno = lp_yylineno; + pv->OP = *lp_yytext; + return(RE_OPEQ); +} + YY_BREAK +case 29: +YY_RULE_SETUP +{ + parse_parm *pp = PARM; + parse_vars *pv = (parse_vars *) pp->parse_vars; + + pp->lineno = lp_yylineno; + pv->OP = *lp_yytext; + return(RE_OPLE); +} + YY_BREAK +case 30: +YY_RULE_SETUP +{ + parse_parm *pp = PARM; + parse_vars *pv = (parse_vars *) pp->parse_vars; + + pp->lineno = lp_yylineno; + pv->OP = *lp_yytext; + return(RE_OPGE); +} + YY_BREAK +case 31: +YY_RULE_SETUP +{ + parse_parm *pp = PARM; + parse_vars *pv = (parse_vars *) pp->parse_vars; + + pp->lineno = lp_yylineno; + pv->Within_int_decl = pv->Within_sec_decl = pv->Within_sos_decl = pv->Within_free_decl = FALSE; + check_int_sec_sos_free_decl(pp, (int) pv->Within_int_decl, (int) pv->Within_sec_decl, (int) pv->Within_sos_decl, (int) pv->Within_free_decl); + return(END_C); +} + YY_BREAK +case 32: +YY_RULE_SETUP +{ + parse_parm *pp = PARM; + + pp->lineno = lp_yylineno; + report(NULL, CRITICAL, "LEX ERROR : %s lineno %d\n", lp_yytext, lp_yylineno); + return(UNDEFINED); +} + YY_BREAK +case 33: +YY_RULE_SETUP +ECHO; + YY_BREAK +case YY_STATE_EOF(INITIAL): +case YY_STATE_EOF(COMMENT): +case YY_STATE_EOF(LINECOMMENT): + lp_yyterminate(); + + case YY_END_OF_BUFFER: + { + /* Amount of text matched not including the EOB char. */ + int lp_yy_amount_of_matched_text = (int) (lp_yy_cp - lp_yyg->lp_yytext_ptr) - 1; + + /* Undo the effects of YY_DO_BEFORE_ACTION. */ + *lp_yy_cp = lp_yyg->lp_yy_hold_char; + YY_RESTORE_YY_MORE_OFFSET + + if ( YY_CURRENT_BUFFER_LVALUE->lp_yy_buffer_status == YY_BUFFER_NEW ) + { + /* We're scanning a new file or input source. It's + * possible that this happened because the user + * just pointed lp_yyin at a new source and called + * lp_yylex(). If so, then we have to assure + * consistency between YY_CURRENT_BUFFER and our + * globals. Here is the right place to do so, because + * this is the first action (other than possibly a + * back-up) that will match for the new input source. + */ + lp_yyg->lp_yy_n_chars = YY_CURRENT_BUFFER_LVALUE->lp_yy_n_chars; + YY_CURRENT_BUFFER_LVALUE->lp_yy_input_file = lp_yyin; + YY_CURRENT_BUFFER_LVALUE->lp_yy_buffer_status = YY_BUFFER_NORMAL; + } + + /* Note that here we test for lp_yy_c_buf_p "<=" to the position + * of the first EOB in the buffer, since lp_yy_c_buf_p will + * already have been incremented past the NUL character + * (since all states make transitions on EOB to the + * end-of-buffer state). Contrast this with the test + * in input(). + */ + if ( lp_yyg->lp_yy_c_buf_p <= &YY_CURRENT_BUFFER_LVALUE->lp_yy_ch_buf[lp_yyg->lp_yy_n_chars] ) + { /* This was really a NUL. */ + lp_yy_state_type lp_yy_next_state; + + lp_yyg->lp_yy_c_buf_p = lp_yyg->lp_yytext_ptr + lp_yy_amount_of_matched_text; + + lp_yy_current_state = lp_yy_get_previous_state( lp_yyscanner ); + + /* Okay, we're now positioned to make the NUL + * transition. We couldn't have + * lp_yy_get_previous_state() go ahead and do it + * for us because it doesn't know how to deal + * with the possibility of jamming (and we don't + * want to build jamming into it because then it + * will run more slowly). + */ + + lp_yy_next_state = lp_yy_try_NUL_trans( lp_yy_current_state , lp_yyscanner); + + lp_yy_bp = lp_yyg->lp_yytext_ptr + YY_MORE_ADJ; + + if ( lp_yy_next_state ) + { + /* Consume the NUL. */ + lp_yy_cp = ++lp_yyg->lp_yy_c_buf_p; + lp_yy_current_state = lp_yy_next_state; + goto lp_yy_match; + } + + else + { + lp_yy_cp = lp_yyg->lp_yy_c_buf_p; + goto lp_yy_find_action; + } + } + + else switch ( lp_yy_get_next_buffer( lp_yyscanner ) ) + { + case EOB_ACT_END_OF_FILE: + { + lp_yyg->lp_yy_did_buffer_switch_on_eof = 0; + + if ( lp_yywrap(lp_yyscanner ) ) + { + /* Note: because we've taken care in + * lp_yy_get_next_buffer() to have set up + * lp_yytext, we can now set up + * lp_yy_c_buf_p so that if some total + * hoser (like flex itself) wants to + * call the scanner after we return the + * YY_NULL, it'll still work - another + * YY_NULL will get returned. + */ + lp_yyg->lp_yy_c_buf_p = lp_yyg->lp_yytext_ptr + YY_MORE_ADJ; + + lp_yy_act = YY_STATE_EOF(YY_START); + goto do_action; + } + + else + { + if ( ! lp_yyg->lp_yy_did_buffer_switch_on_eof ) + YY_NEW_FILE; + } + break; + } + + case EOB_ACT_CONTINUE_SCAN: + lp_yyg->lp_yy_c_buf_p = + lp_yyg->lp_yytext_ptr + lp_yy_amount_of_matched_text; + + lp_yy_current_state = lp_yy_get_previous_state( lp_yyscanner ); + + lp_yy_cp = lp_yyg->lp_yy_c_buf_p; + lp_yy_bp = lp_yyg->lp_yytext_ptr + YY_MORE_ADJ; + goto lp_yy_match; + + case EOB_ACT_LAST_MATCH: + lp_yyg->lp_yy_c_buf_p = + &YY_CURRENT_BUFFER_LVALUE->lp_yy_ch_buf[lp_yyg->lp_yy_n_chars]; + + lp_yy_current_state = lp_yy_get_previous_state( lp_yyscanner ); + + lp_yy_cp = lp_yyg->lp_yy_c_buf_p; + lp_yy_bp = lp_yyg->lp_yytext_ptr + YY_MORE_ADJ; + goto lp_yy_find_action; + } + break; + } + + default: + YY_FATAL_ERROR( + "fatal flex scanner internal error--no action found" ); + } /* end of action switch */ + } /* end of scanning one token */ +} /* end of lp_yylex */ + +/* lp_yy_get_next_buffer - try to read in a new buffer + * + * Returns a code representing an action: + * EOB_ACT_LAST_MATCH - + * EOB_ACT_CONTINUE_SCAN - continue scanning from current position + * EOB_ACT_END_OF_FILE - end of file + */ +static int lp_yy_get_next_buffer (lp_yyscan_t lp_yyscanner) +{ + struct lp_yyguts_t * lp_yyg = (struct lp_yyguts_t*)lp_yyscanner; + register char *dest = YY_CURRENT_BUFFER_LVALUE->lp_yy_ch_buf; + register char *source = lp_yyg->lp_yytext_ptr; + register int number_to_move, i; + int ret_val; + + if ( lp_yyg->lp_yy_c_buf_p > &YY_CURRENT_BUFFER_LVALUE->lp_yy_ch_buf[lp_yyg->lp_yy_n_chars + 1] ) + YY_FATAL_ERROR( + "fatal flex scanner internal error--end of buffer missed" ); + + if ( YY_CURRENT_BUFFER_LVALUE->lp_yy_fill_buffer == 0 ) + { /* Don't try to fill the buffer, so this is an EOF. */ + if ( lp_yyg->lp_yy_c_buf_p - lp_yyg->lp_yytext_ptr - YY_MORE_ADJ == 1 ) + { + /* We matched a single character, the EOB, so + * treat this as a final EOF. + */ + return EOB_ACT_END_OF_FILE; + } + + else + { + /* We matched some text prior to the EOB, first + * process it. + */ + return EOB_ACT_LAST_MATCH; + } + } + + /* Try to read more data. */ + + /* First move last chars to start of buffer. */ + number_to_move = (int) (lp_yyg->lp_yy_c_buf_p - lp_yyg->lp_yytext_ptr) - 1; + + for ( i = 0; i < number_to_move; ++i ) + *(dest++) = *(source++); + + if ( YY_CURRENT_BUFFER_LVALUE->lp_yy_buffer_status == YY_BUFFER_EOF_PENDING ) + /* don't do the read, it's not guaranteed to return an EOF, + * just force an EOF + */ + YY_CURRENT_BUFFER_LVALUE->lp_yy_n_chars = lp_yyg->lp_yy_n_chars = 0; + + else + { + int num_to_read = + YY_CURRENT_BUFFER_LVALUE->lp_yy_buf_size - number_to_move - 1; + + while ( num_to_read <= 0 ) + { /* Not enough room in the buffer - grow it. */ + + /* just a shorter name for the current buffer */ + YY_BUFFER_STATE b = YY_CURRENT_BUFFER; + + int lp_yy_c_buf_p_offset = + (int) (lp_yyg->lp_yy_c_buf_p - b->lp_yy_ch_buf); + + if ( b->lp_yy_is_our_buffer ) + { + int new_size = b->lp_yy_buf_size * 2; + + if ( new_size <= 0 ) + b->lp_yy_buf_size += b->lp_yy_buf_size / 8; + else + b->lp_yy_buf_size *= 2; + + b->lp_yy_ch_buf = (char *) + /* Include room in for 2 EOB chars. */ + lp_yyrealloc((void *) b->lp_yy_ch_buf,b->lp_yy_buf_size + 2 ,lp_yyscanner ); + } + else + /* Can't grow it, we don't own it. */ + b->lp_yy_ch_buf = 0; + + if ( ! b->lp_yy_ch_buf ) + YY_FATAL_ERROR( + "fatal error - scanner input buffer overflow" ); + + lp_yyg->lp_yy_c_buf_p = &b->lp_yy_ch_buf[lp_yy_c_buf_p_offset]; + + num_to_read = YY_CURRENT_BUFFER_LVALUE->lp_yy_buf_size - + number_to_move - 1; + + } + + if ( num_to_read > YY_READ_BUF_SIZE ) + num_to_read = YY_READ_BUF_SIZE; + + /* Read in more data. */ + YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->lp_yy_ch_buf[number_to_move]), + lp_yyg->lp_yy_n_chars, (size_t) num_to_read ); + + YY_CURRENT_BUFFER_LVALUE->lp_yy_n_chars = lp_yyg->lp_yy_n_chars; + } + + if ( lp_yyg->lp_yy_n_chars == 0 ) + { + if ( number_to_move == YY_MORE_ADJ ) + { + ret_val = EOB_ACT_END_OF_FILE; + lp_yyrestart(lp_yyin ,lp_yyscanner); + } + + else + { + ret_val = EOB_ACT_LAST_MATCH; + YY_CURRENT_BUFFER_LVALUE->lp_yy_buffer_status = + YY_BUFFER_EOF_PENDING; + } + } + + else + ret_val = EOB_ACT_CONTINUE_SCAN; + + if ((lp_yy_size_t) (lp_yyg->lp_yy_n_chars + number_to_move) > YY_CURRENT_BUFFER_LVALUE->lp_yy_buf_size) { + /* Extend the array by 50%, plus the number we really need. */ + lp_yy_size_t new_size = lp_yyg->lp_yy_n_chars + number_to_move + (lp_yyg->lp_yy_n_chars >> 1); + YY_CURRENT_BUFFER_LVALUE->lp_yy_ch_buf = (char *) lp_yyrealloc((void *) YY_CURRENT_BUFFER_LVALUE->lp_yy_ch_buf,new_size ,lp_yyscanner ); + if ( ! YY_CURRENT_BUFFER_LVALUE->lp_yy_ch_buf ) + YY_FATAL_ERROR( "out of dynamic memory in lp_yy_get_next_buffer()" ); + } + + lp_yyg->lp_yy_n_chars += number_to_move; + YY_CURRENT_BUFFER_LVALUE->lp_yy_ch_buf[lp_yyg->lp_yy_n_chars] = YY_END_OF_BUFFER_CHAR; + YY_CURRENT_BUFFER_LVALUE->lp_yy_ch_buf[lp_yyg->lp_yy_n_chars + 1] = YY_END_OF_BUFFER_CHAR; + + lp_yyg->lp_yytext_ptr = &YY_CURRENT_BUFFER_LVALUE->lp_yy_ch_buf[0]; + + return ret_val; +} + +/* lp_yy_get_previous_state - get the state just before the EOB char was reached */ + + static lp_yy_state_type lp_yy_get_previous_state (lp_yyscan_t lp_yyscanner) +{ + register lp_yy_state_type lp_yy_current_state; + register char *lp_yy_cp; + struct lp_yyguts_t * lp_yyg = (struct lp_yyguts_t*)lp_yyscanner; + + lp_yy_current_state = lp_yyg->lp_yy_start; + lp_yy_current_state += YY_AT_BOL(); + + for ( lp_yy_cp = lp_yyg->lp_yytext_ptr + YY_MORE_ADJ; lp_yy_cp < lp_yyg->lp_yy_c_buf_p; ++lp_yy_cp ) + { + register YY_CHAR lp_yy_c = (*lp_yy_cp ? lp_yy_ec[YY_SC_TO_UI(*lp_yy_cp)] : 1); + if ( lp_yy_accept[lp_yy_current_state] ) + { + lp_yyg->lp_yy_last_accepting_state = lp_yy_current_state; + lp_yyg->lp_yy_last_accepting_cpos = lp_yy_cp; + } + while ( lp_yy_chk[lp_yy_base[lp_yy_current_state] + lp_yy_c] != lp_yy_current_state ) + { + lp_yy_current_state = (int) lp_yy_def[lp_yy_current_state]; + if ( lp_yy_current_state >= 144 ) + lp_yy_c = lp_yy_meta[(unsigned int) lp_yy_c]; + } + lp_yy_current_state = lp_yy_nxt[lp_yy_base[lp_yy_current_state] + (unsigned int) lp_yy_c]; + } + + return lp_yy_current_state; +} + +/* lp_yy_try_NUL_trans - try to make a transition on the NUL character + * + * synopsis + * next_state = lp_yy_try_NUL_trans( current_state ); + */ + static lp_yy_state_type lp_yy_try_NUL_trans (lp_yy_state_type lp_yy_current_state , lp_yyscan_t lp_yyscanner) +{ + register int lp_yy_is_jam; + struct lp_yyguts_t * lp_yyg = (struct lp_yyguts_t*)lp_yyscanner; /* This var may be unused depending upon options. */ + register char *lp_yy_cp = lp_yyg->lp_yy_c_buf_p; + + register YY_CHAR lp_yy_c = 1; + if ( lp_yy_accept[lp_yy_current_state] ) + { + lp_yyg->lp_yy_last_accepting_state = lp_yy_current_state; + lp_yyg->lp_yy_last_accepting_cpos = lp_yy_cp; + } + while ( lp_yy_chk[lp_yy_base[lp_yy_current_state] + lp_yy_c] != lp_yy_current_state ) + { + lp_yy_current_state = (int) lp_yy_def[lp_yy_current_state]; + if ( lp_yy_current_state >= 144 ) + lp_yy_c = lp_yy_meta[(unsigned int) lp_yy_c]; + } + lp_yy_current_state = lp_yy_nxt[lp_yy_base[lp_yy_current_state] + (unsigned int) lp_yy_c]; + lp_yy_is_jam = (lp_yy_current_state == 143); + + return lp_yy_is_jam ? 0 : lp_yy_current_state; +} + + static void lp_yyunput (int c, register char * lp_yy_bp , lp_yyscan_t lp_yyscanner) +{ + register char *lp_yy_cp; + struct lp_yyguts_t * lp_yyg = (struct lp_yyguts_t*)lp_yyscanner; + + lp_yy_cp = lp_yyg->lp_yy_c_buf_p; + + /* undo effects of setting up lp_yytext */ + *lp_yy_cp = lp_yyg->lp_yy_hold_char; + + if ( lp_yy_cp < YY_CURRENT_BUFFER_LVALUE->lp_yy_ch_buf + 2 ) + { /* need to shift things up to make room */ + /* +2 for EOB chars. */ + register int number_to_move = lp_yyg->lp_yy_n_chars + 2; + register char *dest = &YY_CURRENT_BUFFER_LVALUE->lp_yy_ch_buf[ + YY_CURRENT_BUFFER_LVALUE->lp_yy_buf_size + 2]; + register char *source = + &YY_CURRENT_BUFFER_LVALUE->lp_yy_ch_buf[number_to_move]; + + while ( source > YY_CURRENT_BUFFER_LVALUE->lp_yy_ch_buf ) + *--dest = *--source; + + lp_yy_cp += (int) (dest - source); + lp_yy_bp += (int) (dest - source); + YY_CURRENT_BUFFER_LVALUE->lp_yy_n_chars = + lp_yyg->lp_yy_n_chars = YY_CURRENT_BUFFER_LVALUE->lp_yy_buf_size; + + if ( lp_yy_cp < YY_CURRENT_BUFFER_LVALUE->lp_yy_ch_buf + 2 ) + YY_FATAL_ERROR( "flex scanner push-back overflow" ); + } + + *--lp_yy_cp = (char) c; + + if ( c == '\n' ){ + --lp_yylineno; + } + + lp_yyg->lp_yytext_ptr = lp_yy_bp; + lp_yyg->lp_yy_hold_char = *lp_yy_cp; + lp_yyg->lp_yy_c_buf_p = lp_yy_cp; +} + +#ifndef YY_NO_INPUT +#ifdef __cplusplus + static inline int lp_yyinput (lp_yyscan_t lp_yyscanner) +#else + static inline int input (lp_yyscan_t lp_yyscanner) +#endif + +{ + int c; + struct lp_yyguts_t * lp_yyg = (struct lp_yyguts_t*)lp_yyscanner; + + *lp_yyg->lp_yy_c_buf_p = lp_yyg->lp_yy_hold_char; + + if ( *lp_yyg->lp_yy_c_buf_p == YY_END_OF_BUFFER_CHAR ) + { + /* lp_yy_c_buf_p now points to the character we want to return. + * If this occurs *before* the EOB characters, then it's a + * valid NUL; if not, then we've hit the end of the buffer. + */ + if ( lp_yyg->lp_yy_c_buf_p < &YY_CURRENT_BUFFER_LVALUE->lp_yy_ch_buf[lp_yyg->lp_yy_n_chars] ) + /* This was really a NUL. */ + *lp_yyg->lp_yy_c_buf_p = '\0'; + + else + { /* need more input */ + int offset = lp_yyg->lp_yy_c_buf_p - lp_yyg->lp_yytext_ptr; + ++lp_yyg->lp_yy_c_buf_p; + + switch ( lp_yy_get_next_buffer( lp_yyscanner ) ) + { + case EOB_ACT_LAST_MATCH: + /* This happens because lp_yy_g_n_b() + * sees that we've accumulated a + * token and flags that we need to + * try matching the token before + * proceeding. But for input(), + * there's no matching to consider. + * So convert the EOB_ACT_LAST_MATCH + * to EOB_ACT_END_OF_FILE. + */ + + /* Reset buffer status. */ + lp_yyrestart(lp_yyin ,lp_yyscanner); + + /*FALLTHROUGH*/ + + case EOB_ACT_END_OF_FILE: + { + if ( lp_yywrap(lp_yyscanner ) ) + return EOF; + + if ( ! lp_yyg->lp_yy_did_buffer_switch_on_eof ) + YY_NEW_FILE; +#ifdef __cplusplus + return lp_yyinput(lp_yyscanner); +#else + return input(lp_yyscanner); +#endif + } + + case EOB_ACT_CONTINUE_SCAN: + lp_yyg->lp_yy_c_buf_p = lp_yyg->lp_yytext_ptr + offset; + break; + } + } + } + + c = *(unsigned char *) lp_yyg->lp_yy_c_buf_p; /* cast for 8-bit char's */ + *lp_yyg->lp_yy_c_buf_p = '\0'; /* preserve lp_yytext */ + lp_yyg->lp_yy_hold_char = *++lp_yyg->lp_yy_c_buf_p; + + YY_CURRENT_BUFFER_LVALUE->lp_yy_at_bol = (c == '\n'); + if ( YY_CURRENT_BUFFER_LVALUE->lp_yy_at_bol ) + + do{ lp_yylineno++; + lp_yycolumn=0; + }while(0) +; + + return c; +} +#endif /* ifndef YY_NO_INPUT */ + +/** Immediately switch to a different input stream. + * @param input_file A readable stream. + * @param lp_yyscanner The scanner object. + * @note This function does not reset the start condition to @c INITIAL . + */ + void lp_yyrestart (FILE * input_file , lp_yyscan_t lp_yyscanner) +{ + struct lp_yyguts_t * lp_yyg = (struct lp_yyguts_t*)lp_yyscanner; + + if ( ! YY_CURRENT_BUFFER ){ + lp_yyensure_buffer_stack (lp_yyscanner); + YY_CURRENT_BUFFER_LVALUE = + lp_yy_create_buffer(lp_yyin,YY_BUF_SIZE ,lp_yyscanner); + } + + lp_yy_init_buffer(YY_CURRENT_BUFFER,input_file ,lp_yyscanner); + lp_yy_load_buffer_state(lp_yyscanner ); +} + +/** Switch to a different input buffer. + * @param new_buffer The new input buffer. + * @param lp_yyscanner The scanner object. + */ + void lp_yy_switch_to_buffer (YY_BUFFER_STATE new_buffer , lp_yyscan_t lp_yyscanner) +{ + struct lp_yyguts_t * lp_yyg = (struct lp_yyguts_t*)lp_yyscanner; + + /* TODO. We should be able to replace this entire function body + * with + * lp_yypop_buffer_state(); + * lp_yypush_buffer_state(new_buffer); + */ + lp_yyensure_buffer_stack (lp_yyscanner); + if ( YY_CURRENT_BUFFER == new_buffer ) + return; + + if ( YY_CURRENT_BUFFER ) + { + /* Flush out information for old buffer. */ + *lp_yyg->lp_yy_c_buf_p = lp_yyg->lp_yy_hold_char; + YY_CURRENT_BUFFER_LVALUE->lp_yy_buf_pos = lp_yyg->lp_yy_c_buf_p; + YY_CURRENT_BUFFER_LVALUE->lp_yy_n_chars = lp_yyg->lp_yy_n_chars; + } + + YY_CURRENT_BUFFER_LVALUE = new_buffer; + lp_yy_load_buffer_state(lp_yyscanner ); + + /* We don't actually know whether we did this switch during + * EOF (lp_yywrap()) processing, but the only time this flag + * is looked at is after lp_yywrap() is called, so it's safe + * to go ahead and always set it. + */ + lp_yyg->lp_yy_did_buffer_switch_on_eof = 1; +} + +static void lp_yy_load_buffer_state (lp_yyscan_t lp_yyscanner) +{ + struct lp_yyguts_t * lp_yyg = (struct lp_yyguts_t*)lp_yyscanner; + lp_yyg->lp_yy_n_chars = YY_CURRENT_BUFFER_LVALUE->lp_yy_n_chars; + lp_yyg->lp_yytext_ptr = lp_yyg->lp_yy_c_buf_p = YY_CURRENT_BUFFER_LVALUE->lp_yy_buf_pos; + lp_yyin = YY_CURRENT_BUFFER_LVALUE->lp_yy_input_file; + lp_yyg->lp_yy_hold_char = *lp_yyg->lp_yy_c_buf_p; +} + +/** Allocate and initialize an input buffer state. + * @param file A readable stream. + * @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE. + * @param lp_yyscanner The scanner object. + * @return the allocated buffer state. + */ + YY_BUFFER_STATE lp_yy_create_buffer (FILE * file, int size , lp_yyscan_t lp_yyscanner) +{ + YY_BUFFER_STATE b; + + b = (YY_BUFFER_STATE) lp_yyalloc(sizeof( struct lp_yy_buffer_state ) ,lp_yyscanner ); + if ( ! b ) + YY_FATAL_ERROR( "out of dynamic memory in lp_yy_create_buffer()" ); + + b->lp_yy_buf_size = size; + + /* lp_yy_ch_buf has to be 2 characters longer than the size given because + * we need to put in 2 end-of-buffer characters. + */ + b->lp_yy_ch_buf = (char *) lp_yyalloc(b->lp_yy_buf_size + 2 ,lp_yyscanner ); + if ( ! b->lp_yy_ch_buf ) + YY_FATAL_ERROR( "out of dynamic memory in lp_yy_create_buffer()" ); + + b->lp_yy_is_our_buffer = 1; + + lp_yy_init_buffer(b,file ,lp_yyscanner); + + return b; +} + +/** Destroy the buffer. + * @param b a buffer created with lp_yy_create_buffer() + * @param lp_yyscanner The scanner object. + */ + void lp_yy_delete_buffer (YY_BUFFER_STATE b , lp_yyscan_t lp_yyscanner) +{ + struct lp_yyguts_t * lp_yyg = (struct lp_yyguts_t*)lp_yyscanner; + + if ( ! b ) + return; + + if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */ + YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0; + + if ( b->lp_yy_is_our_buffer ) + lp_yyfree((void *) b->lp_yy_ch_buf ,lp_yyscanner ); + + lp_yyfree((void *) b ,lp_yyscanner ); +} + +#ifndef __cplusplus +extern int isatty (int ); +#endif /* __cplusplus */ + +/* Initializes or reinitializes a buffer. + * This function is sometimes called more than once on the same buffer, + * such as during a lp_yyrestart() or at EOF. + */ + static void lp_yy_init_buffer (YY_BUFFER_STATE b, FILE * file , lp_yyscan_t lp_yyscanner) + +{ + int oerrno = errno; + struct lp_yyguts_t * lp_yyg = (struct lp_yyguts_t*)lp_yyscanner; + + lp_yy_flush_buffer(b ,lp_yyscanner); + + b->lp_yy_input_file = file; + b->lp_yy_fill_buffer = 1; + + /* If b is the current buffer, then lp_yy_init_buffer was _probably_ + * called from lp_yyrestart() or through lp_yy_get_next_buffer. + * In that case, we don't want to reset the lineno or column. + */ + if (b != YY_CURRENT_BUFFER){ + b->lp_yy_bs_lineno = 1; + b->lp_yy_bs_column = 0; + } + + b->lp_yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0; + + errno = oerrno; +} + +/** Discard all buffered characters. On the next scan, YY_INPUT will be called. + * @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER. + * @param lp_yyscanner The scanner object. + */ + void lp_yy_flush_buffer (YY_BUFFER_STATE b , lp_yyscan_t lp_yyscanner) +{ + struct lp_yyguts_t * lp_yyg = (struct lp_yyguts_t*)lp_yyscanner; + if ( ! b ) + return; + + b->lp_yy_n_chars = 0; + + /* We always need two end-of-buffer characters. The first causes + * a transition to the end-of-buffer state. The second causes + * a jam in that state. + */ + b->lp_yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR; + b->lp_yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR; + + b->lp_yy_buf_pos = &b->lp_yy_ch_buf[0]; + + b->lp_yy_at_bol = 1; + b->lp_yy_buffer_status = YY_BUFFER_NEW; + + if ( b == YY_CURRENT_BUFFER ) + lp_yy_load_buffer_state(lp_yyscanner ); +} + +/** Pushes the new state onto the stack. The new state becomes + * the current state. This function will allocate the stack + * if necessary. + * @param new_buffer The new state. + * @param lp_yyscanner The scanner object. + */ +void lp_yypush_buffer_state (YY_BUFFER_STATE new_buffer , lp_yyscan_t lp_yyscanner) +{ + struct lp_yyguts_t * lp_yyg = (struct lp_yyguts_t*)lp_yyscanner; + if (new_buffer == NULL) + return; + + lp_yyensure_buffer_stack(lp_yyscanner); + + /* This block is copied from lp_yy_switch_to_buffer. */ + if ( YY_CURRENT_BUFFER ) + { + /* Flush out information for old buffer. */ + *lp_yyg->lp_yy_c_buf_p = lp_yyg->lp_yy_hold_char; + YY_CURRENT_BUFFER_LVALUE->lp_yy_buf_pos = lp_yyg->lp_yy_c_buf_p; + YY_CURRENT_BUFFER_LVALUE->lp_yy_n_chars = lp_yyg->lp_yy_n_chars; + } + + /* Only push if top exists. Otherwise, replace top. */ + if (YY_CURRENT_BUFFER) + lp_yyg->lp_yy_buffer_stack_top++; + YY_CURRENT_BUFFER_LVALUE = new_buffer; + + /* copied from lp_yy_switch_to_buffer. */ + lp_yy_load_buffer_state(lp_yyscanner ); + lp_yyg->lp_yy_did_buffer_switch_on_eof = 1; +} + +/** Removes and deletes the top of the stack, if present. + * The next element becomes the new top. + * @param lp_yyscanner The scanner object. + */ +void lp_yypop_buffer_state (lp_yyscan_t lp_yyscanner) +{ + struct lp_yyguts_t * lp_yyg = (struct lp_yyguts_t*)lp_yyscanner; + if (!YY_CURRENT_BUFFER) + return; + + lp_yy_delete_buffer(YY_CURRENT_BUFFER ,lp_yyscanner); + YY_CURRENT_BUFFER_LVALUE = NULL; + if (lp_yyg->lp_yy_buffer_stack_top > 0) + --lp_yyg->lp_yy_buffer_stack_top; + + if (YY_CURRENT_BUFFER) { + lp_yy_load_buffer_state(lp_yyscanner ); + lp_yyg->lp_yy_did_buffer_switch_on_eof = 1; + } +} + +/* Allocates the stack if it does not exist. + * Guarantees space for at least one push. + */ +static void lp_yyensure_buffer_stack (lp_yyscan_t lp_yyscanner) +{ + int num_to_alloc; + struct lp_yyguts_t * lp_yyg = (struct lp_yyguts_t*)lp_yyscanner; + + if (!lp_yyg->lp_yy_buffer_stack) { + + /* First allocation is just for 2 elements, since we don't know if this + * scanner will even need a stack. We use 2 instead of 1 to avoid an + * immediate realloc on the next call. + */ + num_to_alloc = 1; + lp_yyg->lp_yy_buffer_stack = (struct lp_yy_buffer_state**)lp_yyalloc + (num_to_alloc * sizeof(struct lp_yy_buffer_state*) + , lp_yyscanner); + if ( ! lp_yyg->lp_yy_buffer_stack ) + YY_FATAL_ERROR( "out of dynamic memory in lp_yyensure_buffer_stack()" ); + + memset(lp_yyg->lp_yy_buffer_stack, 0, num_to_alloc * sizeof(struct lp_yy_buffer_state*)); + + lp_yyg->lp_yy_buffer_stack_max = num_to_alloc; + lp_yyg->lp_yy_buffer_stack_top = 0; + return; + } + + if (lp_yyg->lp_yy_buffer_stack_top >= (lp_yyg->lp_yy_buffer_stack_max) - 1){ + + /* Increase the buffer to prepare for a possible push. */ + int grow_size = 8 /* arbitrary grow size */; + + num_to_alloc = lp_yyg->lp_yy_buffer_stack_max + grow_size; + lp_yyg->lp_yy_buffer_stack = (struct lp_yy_buffer_state**)lp_yyrealloc + (lp_yyg->lp_yy_buffer_stack, + num_to_alloc * sizeof(struct lp_yy_buffer_state*) + , lp_yyscanner); + if ( ! lp_yyg->lp_yy_buffer_stack ) + YY_FATAL_ERROR( "out of dynamic memory in lp_yyensure_buffer_stack()" ); + + /* zero only the new slots.*/ + memset(lp_yyg->lp_yy_buffer_stack + lp_yyg->lp_yy_buffer_stack_max, 0, grow_size * sizeof(struct lp_yy_buffer_state*)); + lp_yyg->lp_yy_buffer_stack_max = num_to_alloc; + } +} + +/** Setup the input buffer state to scan directly from a user-specified character buffer. + * @param base the character buffer + * @param size the size in bytes of the character buffer + * @param lp_yyscanner The scanner object. + * @return the newly allocated buffer state object. + */ +YY_BUFFER_STATE lp_yy_scan_buffer (char * base, lp_yy_size_t size , lp_yyscan_t lp_yyscanner) +{ + YY_BUFFER_STATE b; + + if ( size < 2 || + base[size-2] != YY_END_OF_BUFFER_CHAR || + base[size-1] != YY_END_OF_BUFFER_CHAR ) + /* They forgot to leave room for the EOB's. */ + return 0; + + b = (YY_BUFFER_STATE) lp_yyalloc(sizeof( struct lp_yy_buffer_state ) ,lp_yyscanner ); + if ( ! b ) + YY_FATAL_ERROR( "out of dynamic memory in lp_yy_scan_buffer()" ); + + b->lp_yy_buf_size = size - 2; /* "- 2" to take care of EOB's */ + b->lp_yy_buf_pos = b->lp_yy_ch_buf = base; + b->lp_yy_is_our_buffer = 0; + b->lp_yy_input_file = 0; + b->lp_yy_n_chars = b->lp_yy_buf_size; + b->lp_yy_is_interactive = 0; + b->lp_yy_at_bol = 1; + b->lp_yy_fill_buffer = 0; + b->lp_yy_buffer_status = YY_BUFFER_NEW; + + lp_yy_switch_to_buffer(b ,lp_yyscanner ); + + return b; +} + +/** Setup the input buffer state to scan a string. The next call to lp_yylex() will + * scan from a @e copy of @a str. + * @param lp_yystr a NUL-terminated string to scan + * @param lp_yyscanner The scanner object. + * @return the newly allocated buffer state object. + * @note If you want to scan bytes that may contain NUL values, then use + * lp_yy_scan_bytes() instead. + */ +YY_BUFFER_STATE lp_yy_scan_string (lp_yyconst char * lp_yystr , lp_yyscan_t lp_yyscanner) +{ + + return lp_yy_scan_bytes(lp_yystr,strlen(lp_yystr) ,lp_yyscanner); +} + +/** Setup the input buffer state to scan the given bytes. The next call to lp_yylex() will + * scan from a @e copy of @a bytes. + * @param bytes the byte buffer to scan + * @param len the number of bytes in the buffer pointed to by @a bytes. + * @param lp_yyscanner The scanner object. + * @return the newly allocated buffer state object. + */ +YY_BUFFER_STATE lp_yy_scan_bytes (lp_yyconst char * lp_yybytes, int _lp_yybytes_len , lp_yyscan_t lp_yyscanner) +{ + YY_BUFFER_STATE b; + char *buf; + lp_yy_size_t n; + int i; + + /* Get memory for full buffer, including space for trailing EOB's. */ + n = _lp_yybytes_len + 2; + buf = (char *) lp_yyalloc(n ,lp_yyscanner ); + if ( ! buf ) + YY_FATAL_ERROR( "out of dynamic memory in lp_yy_scan_bytes()" ); + + for ( i = 0; i < _lp_yybytes_len; ++i ) + buf[i] = lp_yybytes[i]; + + buf[_lp_yybytes_len] = buf[_lp_yybytes_len+1] = YY_END_OF_BUFFER_CHAR; + + b = lp_yy_scan_buffer(buf,n ,lp_yyscanner); + if ( ! b ) + YY_FATAL_ERROR( "bad buffer in lp_yy_scan_bytes()" ); + + /* It's okay to grow etc. this buffer, and we should throw it + * away when we're done. + */ + b->lp_yy_is_our_buffer = 1; + + return b; +} + +#ifndef YY_EXIT_FAILURE +#define YY_EXIT_FAILURE 2 +#endif + +static void lp_yy_fatal_error (lp_yyconst char* msg , lp_yyscan_t lp_yyscanner) +{ + (void) fprintf( stderr, "%s\n", msg ); + exit( YY_EXIT_FAILURE ); +} + +/* Redefine lp_yyless() so it works in section 3 code. */ + +#undef lp_yyless +#define lp_yyless(n) \ + do \ + { \ + /* Undo effects of setting up lp_yytext. */ \ + int lp_yyless_macro_arg = (n); \ + YY_LESS_LINENO(lp_yyless_macro_arg);\ + lp_yytext[lp_yyleng] = lp_yyg->lp_yy_hold_char; \ + lp_yyg->lp_yy_c_buf_p = lp_yytext + lp_yyless_macro_arg; \ + lp_yyg->lp_yy_hold_char = *lp_yyg->lp_yy_c_buf_p; \ + *lp_yyg->lp_yy_c_buf_p = '\0'; \ + lp_yyleng = lp_yyless_macro_arg; \ + } \ + while ( 0 ) + +/* Accessor methods (get/set functions) to struct members. */ + +/** Get the user-defined data for this scanner. + * @param lp_yyscanner The scanner object. + */ +YY_EXTRA_TYPE lp_yyget_extra (lp_yyscan_t lp_yyscanner) +{ + struct lp_yyguts_t * lp_yyg = (struct lp_yyguts_t*)lp_yyscanner; + return lp_yyextra; +} + +/** Get the current line number. + * @param lp_yyscanner The scanner object. + */ +int lp_yyget_lineno (lp_yyscan_t lp_yyscanner) +{ + struct lp_yyguts_t * lp_yyg = (struct lp_yyguts_t*)lp_yyscanner; + + if (! YY_CURRENT_BUFFER) + return 0; + + return lp_yylineno; +} + +/** Get the current column number. + * @param lp_yyscanner The scanner object. + */ +int lp_yyget_column (lp_yyscan_t lp_yyscanner) +{ + struct lp_yyguts_t * lp_yyg = (struct lp_yyguts_t*)lp_yyscanner; + + if (! YY_CURRENT_BUFFER) + return 0; + + return lp_yycolumn; +} + +/** Get the input stream. + * @param lp_yyscanner The scanner object. + */ +FILE *lp_yyget_in (lp_yyscan_t lp_yyscanner) +{ + struct lp_yyguts_t * lp_yyg = (struct lp_yyguts_t*)lp_yyscanner; + return lp_yyin; +} + +/** Get the output stream. + * @param lp_yyscanner The scanner object. + */ +FILE *lp_yyget_out (lp_yyscan_t lp_yyscanner) +{ + struct lp_yyguts_t * lp_yyg = (struct lp_yyguts_t*)lp_yyscanner; + return lp_yyout; +} + +/** Get the length of the current token. + * @param lp_yyscanner The scanner object. + */ +int lp_yyget_leng (lp_yyscan_t lp_yyscanner) +{ + struct lp_yyguts_t * lp_yyg = (struct lp_yyguts_t*)lp_yyscanner; + return lp_yyleng; +} + +/** Get the current token. + * @param lp_yyscanner The scanner object. + */ + +char *lp_yyget_text (lp_yyscan_t lp_yyscanner) +{ + struct lp_yyguts_t * lp_yyg = (struct lp_yyguts_t*)lp_yyscanner; + return lp_yytext; +} + +/** Set the user-defined data. This data is never touched by the scanner. + * @param user_defined The data to be associated with this scanner. + * @param lp_yyscanner The scanner object. + */ +void lp_yyset_extra (YY_EXTRA_TYPE user_defined , lp_yyscan_t lp_yyscanner) +{ + struct lp_yyguts_t * lp_yyg = (struct lp_yyguts_t*)lp_yyscanner; + lp_yyextra = user_defined ; +} + +/** Set the current line number. + * @param line_number + * @param lp_yyscanner The scanner object. + */ +void lp_yyset_lineno (int line_number , lp_yyscan_t lp_yyscanner) +{ + struct lp_yyguts_t * lp_yyg = (struct lp_yyguts_t*)lp_yyscanner; + + /* lineno is only valid if an input buffer exists. */ + if (! YY_CURRENT_BUFFER ) + lp_yy_fatal_error( "lp_yyset_lineno called with no buffer" , lp_yyscanner); + + lp_yylineno = line_number; +} + +/** Set the current column. + * @param line_number + * @param lp_yyscanner The scanner object. + */ +void lp_yyset_column (int column_no , lp_yyscan_t lp_yyscanner) +{ + struct lp_yyguts_t * lp_yyg = (struct lp_yyguts_t*)lp_yyscanner; + + /* column is only valid if an input buffer exists. */ + if (! YY_CURRENT_BUFFER ) + lp_yy_fatal_error( "lp_yyset_column called with no buffer" , lp_yyscanner); + + lp_yycolumn = column_no; +} + +/** Set the input stream. This does not discard the current + * input buffer. + * @param in_str A readable stream. + * @param lp_yyscanner The scanner object. + * @see lp_yy_switch_to_buffer + */ +void lp_yyset_in (FILE * in_str , lp_yyscan_t lp_yyscanner) +{ + struct lp_yyguts_t * lp_yyg = (struct lp_yyguts_t*)lp_yyscanner; + lp_yyin = in_str ; +} + +void lp_yyset_out (FILE * out_str , lp_yyscan_t lp_yyscanner) +{ + struct lp_yyguts_t * lp_yyg = (struct lp_yyguts_t*)lp_yyscanner; + lp_yyout = out_str ; +} + +int lp_yyget_debug (lp_yyscan_t lp_yyscanner) +{ + struct lp_yyguts_t * lp_yyg = (struct lp_yyguts_t*)lp_yyscanner; + return lp_yy_flex_debug; +} + +void lp_yyset_debug (int bdebug , lp_yyscan_t lp_yyscanner) +{ + struct lp_yyguts_t * lp_yyg = (struct lp_yyguts_t*)lp_yyscanner; + lp_yy_flex_debug = bdebug ; +} + +/* Accessor methods for lp_yylval and lp_yylloc */ + +YYSTYPE * lp_yyget_lval (lp_yyscan_t lp_yyscanner) +{ + struct lp_yyguts_t * lp_yyg = (struct lp_yyguts_t*)lp_yyscanner; + return lp_yylval; +} + +void lp_yyset_lval (YYSTYPE * lp_yylval_param , lp_yyscan_t lp_yyscanner) +{ + struct lp_yyguts_t * lp_yyg = (struct lp_yyguts_t*)lp_yyscanner; + lp_yylval = lp_yylval_param; +} + +/* User-visible API */ + +/* lp_yylex_init is special because it creates the scanner itself, so it is + * the ONLY reentrant function that doesn't take the scanner as the last argument. + * That's why we explicitly handle the declaration, instead of using our macros. + */ + +int lp_yylex_init(lp_yyscan_t* ptr_lp_yy_globals) + +{ + if (ptr_lp_yy_globals == NULL){ + errno = EINVAL; + return 1; + } + + *ptr_lp_yy_globals = (lp_yyscan_t) lp_yyalloc ( sizeof( struct lp_yyguts_t ), NULL ); + + if (*ptr_lp_yy_globals == NULL){ + errno = ENOMEM; + return 1; + } + + /* By setting to 0xAA, we expose bugs in lp_yy_init_globals. Leave at 0x00 for releases. */ + memset(*ptr_lp_yy_globals,0x00,sizeof(struct lp_yyguts_t)); + + return lp_yy_init_globals ( *ptr_lp_yy_globals ); +} + +/* lp_yylex_init_extra has the same functionality as lp_yylex_init, but follows the + * convention of taking the scanner as the last argument. Note however, that + * this is a *pointer* to a scanner, as it will be allocated by this call (and + * is the reason, too, why this function also must handle its own declaration). + * The user defined value in the first argument will be available to lp_yyalloc in + * the lp_yyextra field. + */ + +int lp_yylex_init_extra(YY_EXTRA_TYPE lp_yy_user_defined,lp_yyscan_t* ptr_lp_yy_globals ) + +{ + struct lp_yyguts_t dummy_lp_yyguts; + + lp_yyset_extra (lp_yy_user_defined, &dummy_lp_yyguts); + + if (ptr_lp_yy_globals == NULL){ + errno = EINVAL; + return 1; + } + + *ptr_lp_yy_globals = (lp_yyscan_t) lp_yyalloc ( sizeof( struct lp_yyguts_t ), &dummy_lp_yyguts ); + + if (*ptr_lp_yy_globals == NULL){ + errno = ENOMEM; + return 1; + } + + /* By setting to 0xAA, we expose bugs in + lp_yy_init_globals. Leave at 0x00 for releases. */ + memset(*ptr_lp_yy_globals,0x00,sizeof(struct lp_yyguts_t)); + + lp_yyset_extra (lp_yy_user_defined, *ptr_lp_yy_globals); + + return lp_yy_init_globals ( *ptr_lp_yy_globals ); +} + +static int lp_yy_init_globals (lp_yyscan_t lp_yyscanner) +{ + struct lp_yyguts_t * lp_yyg = (struct lp_yyguts_t*)lp_yyscanner; + /* Initialization is the same as for the non-reentrant scanner. + * This function is called from lp_yylex_destroy(), so don't allocate here. + */ + + lp_yyg->lp_yy_buffer_stack = 0; + lp_yyg->lp_yy_buffer_stack_top = 0; + lp_yyg->lp_yy_buffer_stack_max = 0; + lp_yyg->lp_yy_c_buf_p = (char *) 0; + lp_yyg->lp_yy_init = 0; + lp_yyg->lp_yy_start = 0; + + lp_yyg->lp_yy_start_stack_ptr = 0; + lp_yyg->lp_yy_start_stack_depth = 0; + lp_yyg->lp_yy_start_stack = NULL; + +/* Defined in main.c */ +#ifdef YY_STDINIT + lp_yyin = stdin; + lp_yyout = stdout; +#else + lp_yyin = (FILE *) 0; + lp_yyout = (FILE *) 0; +#endif + + /* For future reference: Set errno on error, since we are called by + * lp_yylex_init() + */ + return 0; +} + +/* lp_yylex_destroy is for both reentrant and non-reentrant scanners. */ +int lp_yylex_destroy (lp_yyscan_t lp_yyscanner) +{ + struct lp_yyguts_t * lp_yyg = (struct lp_yyguts_t*)lp_yyscanner; + + /* Pop the buffer stack, destroying each element. */ + while(YY_CURRENT_BUFFER){ + lp_yy_delete_buffer(YY_CURRENT_BUFFER ,lp_yyscanner ); + YY_CURRENT_BUFFER_LVALUE = NULL; + lp_yypop_buffer_state(lp_yyscanner); + } + + /* Destroy the stack itself. */ + lp_yyfree(lp_yyg->lp_yy_buffer_stack ,lp_yyscanner); + lp_yyg->lp_yy_buffer_stack = NULL; + + /* Destroy the start condition stack. */ + lp_yyfree(lp_yyg->lp_yy_start_stack ,lp_yyscanner ); + lp_yyg->lp_yy_start_stack = NULL; + + /* Reset the globals. This is important in a non-reentrant scanner so the next time + * lp_yylex() is called, initialization will occur. */ + lp_yy_init_globals( lp_yyscanner); + + /* Destroy the main struct (reentrant only). */ + lp_yyfree ( lp_yyscanner , lp_yyscanner ); + lp_yyscanner = NULL; + return 0; +} + +/* + * Internal utility routines. + */ + +#ifndef lp_yytext_ptr +static void lp_yy_flex_strncpy (char* s1, lp_yyconst char * s2, int n , lp_yyscan_t lp_yyscanner) +{ + register int i; + for ( i = 0; i < n; ++i ) + s1[i] = s2[i]; +} +#endif + +#ifdef YY_NEED_STRLEN +static int lp_yy_flex_strlen (lp_yyconst char * s , lp_yyscan_t lp_yyscanner) +{ + register int n; + for ( n = 0; s[n]; ++n ) + ; + + return n; +} +#endif + +void *lp_yyalloc (lp_yy_size_t size , lp_yyscan_t lp_yyscanner) +{ + return (void *) malloc( size ); +} + +void *lp_yyrealloc (void * ptr, lp_yy_size_t size , lp_yyscan_t lp_yyscanner) +{ + /* The cast to (char *) in the following accommodates both + * implementations that use char* generic pointers, and those + * that use void* generic pointers. It works with the latter + * because both ANSI C and C++ allow castless assignment from + * any pointer type to void*, and deal with argument conversions + * as though doing an assignment. + */ + return (void *) realloc( (char *) ptr, size ); +} + +void lp_yyfree (void * ptr , lp_yyscan_t lp_yyscanner) +{ + free( (char *) ptr ); /* see lp_yyrealloc() for (char *) cast */ +} + +#define YYTABLES_NAME "lp_yytables" + diff --git a/src/external/lpsolve/headers/include/lp_scale.h b/src/external/lpsolve/headers/include/lp_scale.h new file mode 100644 index 00000000..7f9699de --- /dev/null +++ b/src/external/lpsolve/headers/include/lp_scale.h @@ -0,0 +1,40 @@ +// Copyright(c) 2016-2018 Kjell Konis . +// Version: 5.5.2.0-17 +// Description: The lpSolveAPI package provides an R interface to 'lp_solve', +// a Mixed Integer Linear Programming (MILP) solver with support for pure +// linear, (mixed) integer/binary, semi-continuous and special ordered sets +// (SOS) models. +// License: LGPL-2 +// Repository: CRAN + +#ifndef HEADER_lp_scale +#define HEADER_lp_scale + +#include "lp_types.h" + +#ifdef __cplusplus +extern "C" { +#endif + +/* Put function headers here */ +STATIC MYBOOL scale_updatecolumns(lprec *lp, LPSREAL *scalechange, MYBOOL updateonly); +STATIC MYBOOL scale_updaterows(lprec *lp, LPSREAL *scalechange, MYBOOL updateonly); +STATIC MYBOOL scale_rows(lprec *lp, LPSREAL *scaledelta); +STATIC MYBOOL scale_columns(lprec *lp, LPSREAL *scaledelta); +STATIC void unscale_columns(lprec *lp); +STATIC LPSREAL scale(lprec *lp, LPSREAL *scaledelta); +STATIC LPSREAL scaled_mat(lprec *lp, LPSREAL value, int rownr, int colnr); +STATIC LPSREAL unscaled_mat(lprec *lp, LPSREAL value, int rownr, int colnr); +STATIC LPSREAL scaled_value(lprec *lp, LPSREAL value, int index); +STATIC LPSREAL unscaled_value(lprec *lp, LPSREAL value, int index); +STATIC MYBOOL scaleCR(lprec *lp, LPSREAL *scaledelta); +STATIC MYBOOL finalize_scaling(lprec *lp, LPSREAL *scaledelta); +STATIC LPSREAL auto_scale(lprec *lp); +void undoscale(lprec *lp); + +#ifdef __cplusplus + } +#endif + +#endif /* HEADER_lp_scale */ + diff --git a/src/external/lpsolve/headers/include/lp_simplex.h b/src/external/lpsolve/headers/include/lp_simplex.h new file mode 100644 index 00000000..71faebbb --- /dev/null +++ b/src/external/lpsolve/headers/include/lp_simplex.h @@ -0,0 +1,43 @@ +// Copyright(c) 2016-2018 Kjell Konis . +// Version: 5.5.2.0-17 +// Description: The lpSolveAPI package provides an R interface to 'lp_solve', +// a Mixed Integer Linear Programming (MILP) solver with support for pure +// linear, (mixed) integer/binary, semi-continuous and special ordered sets +// (SOS) models. +// License: LGPL-2 +// Repository: CRAN + +#ifndef HEADER_lp_simplex +#define HEADER_lp_simplex + +#include "lp_types.h" + +#define ForceDualSimplexInBB /* Force use/switch of dual simplex in B&B */ +#define AssumeHighAccuracyInBB /* No iteration of simplex solves at infeasibility */ +/*#define UseLongStepPruning*/ +/*#define UseLongStepDualPhase1*/ +#define primal_UseRejectionList +#define dual_UseRejectionList +#define dual_RemoveBasicFixedVars +/*#define dual_Phase1PriceEqualities */ /* Force elimination of equality slacks */ +#define AcceptMarginalAccuracy + +#ifdef __cplusplus +extern "C" { +#endif + +/* Put function headers here */ +STATIC int primloop(lprec *lp, MYBOOL primalfeasible, LPSREAL primaloffset); +STATIC int dualloop(lprec *lp, MYBOOL dualfeasible, int dualinfeasibles[], LPSREAL dualoffset); +STATIC int spx_run(lprec *lp, MYBOOL validInvB); +STATIC int spx_solve(lprec *lp); +STATIC int lag_solve(lprec *lp, LPSREAL start_bound, int num_iter); +STATIC int heuristics(lprec *lp, int mode); +STATIC int lin_solve(lprec *lp); + +#ifdef __cplusplus + } +#endif + +#endif /* HEADER_lp_simplex */ + diff --git a/src/external/lpsolve/headers/include/lp_types.h b/src/external/lpsolve/headers/include/lp_types.h new file mode 100644 index 00000000..1f166a62 --- /dev/null +++ b/src/external/lpsolve/headers/include/lp_types.h @@ -0,0 +1,339 @@ +// Copyright(c) 2016-2018 Kjell Konis . +// Version: 5.5.2.0-17 +// Description: The lpSolveAPI package provides an R interface to 'lp_solve', +// a Mixed Integer Linear Programming (MILP) solver with support for pure +// linear, (mixed) integer/binary, semi-continuous and special ordered sets +// (SOS) models. +// License: LGPL-2 +// Repository: CRAN + +#ifndef HEADER_lp_types +#define HEADER_lp_types + +#ifdef WIN32 + #include +#endif + +/* Define data types */ +/* ------------------------------------------------------------------------- */ +#ifndef LLONG + #if defined __BORLANDC__ + #define LLONG __int64 + #elif !defined _MSC_VER || _MSC_VER >= 1310 + #define LLONG long long + #else + #define LLONG __int64 + #endif +#endif + +#ifndef COUNTER + #define COUNTER LLONG +#endif + +#ifndef LPSREAL + #define LPSREAL double +#endif + +#ifndef REALXP + #if 1 + #define REALXP long double /* Set local accumulation variable as long double */ + #else + #define REALXP LPSREAL /* Set local accumulation as default precision */ + #endif +#endif + +#ifndef LREAL + #if 0 + #define LREAL long double /* Set global solution update variable as long double */ + #else + #define LREAL LPSREAL /* Set global solution update variable as default precision */ + #endif +#endif + +#define RESULTVALUEMASK "%18.12g" /* Set fixed-format real-valued output precision; + suggested width: ABS(exponent of DEF_EPSVALUE)+6. */ +#define INDEXVALUEMASK "%8d" /* Set fixed-format integer-valued output width */ + +#ifndef DEF_STRBUFSIZE + #define DEF_STRBUFSIZE 512 +#endif +#ifndef MAXINT32 + #define MAXINT32 2147483647 +#endif +#ifndef MAXUINT32 + #define MAXUINT32 4294967295 +#endif + +#ifndef MAXINT64 + #if defined _LONGLONG || defined __LONG_LONG_MAX__ || defined LLONG_MAX + #define MAXINT64 9223372036854775807ll + #else + #define MAXINT64 9223372036854775807l + #endif +#endif +#ifndef MAXUINT64 + #if defined _LONGLONG || defined __LONG_LONG_MAX__ || defined LLONG_MAX + #define MAXUINT64 18446744073709551615ll + #else + #define MAXUINT64 18446744073709551615l + #endif +#endif + +#ifndef CHAR_BIT + #define CHAR_BIT 8 +#endif +#ifndef MYBOOL + #define MYBOOL unsigned char /* Conserve memory, could be unsigned int */ +#endif + + +/* Constants */ +/* ------------------------------------------------------------------------- */ +#ifndef NULL + #define NULL 0 +#endif + +/* Byte-sized Booleans and extended options */ +#define FALSE 0 +#define TRUE 1 +#define AUTOMATIC 2 +#define DYNAMIC 4 + +/* Sorting and comparison constants */ +#define COMP_PREFERCANDIDATE 1 +#define COMP_PREFERNONE 0 +#define COMP_PREFERINCUMBENT -1 + +/* Library load status values */ +#define LIB_LOADED 0 +#define LIB_NOTFOUND 1 +#define LIB_NOINFO 2 +#define LIB_NOFUNCTION 3 +#define LIB_VERINVALID 4 +#define LIB_STR_LOADED "Successfully loaded" +#define LIB_STR_NOTFOUND "File not found" +#define LIB_STR_NOINFO "No version data" +#define LIB_STR_NOFUNCTION "Missing function header" +#define LIB_STR_VERINVALID "Incompatible version" +#define LIB_STR_MAXLEN 23 + + +/* Compiler/target settings */ +/* ------------------------------------------------------------------------- */ +#if (defined _WIN32) || (defined WIN32) || (defined _WIN64) || (defined WIN64) +# define __WINAPI WINAPI +#else +# define __WINAPI +#endif + +#if (defined _WIN32) || (defined WIN32) || (defined _WIN64) || (defined WIN64) +# define __VACALL __cdecl +#else +# define __VACALL +#endif + +#ifndef __BORLANDC__ + + #ifdef _USRDLL + + #if 1 + #define __EXPORT_TYPE __declspec(dllexport) + #else + /* Set up for the Microsoft compiler */ + #ifdef LP_SOLVE_EXPORTS + #define __EXPORT_TYPE __declspec(dllexport) + #else + #define __EXPORT_TYPE __declspec(dllimport) + #endif + #endif + + #else + + #define __EXPORT_TYPE + + #endif + + #ifdef __cplusplus + #define __EXTERN_C extern "C" + #else + #define __EXTERN_C + #endif + +#else /* Otherwise set up for the Borland compiler */ + + #ifdef __DLL__ + + #define _USRDLL + #define __EXTERN_C extern "C" + + #ifdef __READING_THE_DLL + #define __EXPORT_TYPE __import + #else + #define __EXPORT_TYPE __export + #endif + + #else + + #define __EXPORT_TYPE + #define __EXTERN_C extern "C" + + #endif + +#endif + + +#if 0 + #define STATIC static +#else + #define STATIC +#endif + +#if !defined INLINE + #if defined __cplusplus + #define INLINE inline + #elif (defined _WIN32) || (defined WIN32) || (defined _WIN64) || (defined WIN64) + #define INLINE __inline + #else + #define INLINE static + #endif +#endif + +/* Function macros */ +/* ------------------------------------------------------------------------- */ +#define my_limitrange(x, lo, hi) ((x) < (lo) ? (lo) : ((x) > (hi) ? (hi) : (x))) +#ifndef my_mod + #define my_mod(n, m) ((n) % (m)) +#endif +#define my_if(t, x, y) ((t) ? (x) : (y)) +#define my_sign(x) ((x) < 0 ? -1 : 1) +#if 1 + #define my_chsign(t, x) ( ((t) && ((x) != 0)) ? -(x) : (x)) +#else + #define my_chsign(t, x) ( (2*((t) == 0) - 1) * (x) ) /* "Pipelined", but problem with "negative zero" and possible problems on AIX */ +#endif +#define my_flipsign(x) ( fabs((LPSREAL) (x)) == 0 ? 0 : -(x) ) +#define my_roundzero(val, eps) if (fabs((LPSREAL) (val)) < eps) val = 0 +#define my_avoidtiny(val, eps) (fabs((LPSREAL) (val)) < eps ? 0 : val) + +#if 1 + #define my_infinite(lp, val) ( (MYBOOL) (fabs(val) >= lp->infinite) ) +#else + #define my_infinite(lp, val) is_infinite(lp, val) +#endif +#define my_inflimit(lp, val) ( my_infinite(lp, val) ? lp->infinite * my_sign(val) : (val) ) +#if 0 + #define my_precision(val, eps) ((fabs((LPSREAL) (val))) < (eps) ? 0 : (val)) +#else + #define my_precision(val, eps) restoreINT(val, eps) +#endif +#define my_reldiff(x, y) (((x) - (y)) / (1.0 + fabs((LPSREAL) (y)))) +#define my_boundstr(x) (fabs(x) < lp->infinite ? sprintf("%g",x) : ((x) < 0 ? "-Inf" : "Inf") ) +#ifndef my_boolstr + #define my_boolstr(x) (!(x) ? "FALSE" : "TRUE") +#endif +#define my_basisstr(isbasic) ((isbasic) ? "BASIC" : "NON-BASIC") +#define my_simplexstr(isdual) ((isdual) ? "DUAL" : "PRIMAL") +#define my_plural_std(count) (count == 1 ? "" : "s") +#define my_plural_y(count) (count == 1 ? "y" : "ies") +#define my_lowbound(x) ((FULLYBOUNDEDSIMPLEX) ? (x) : 0) + + +/* Bound macros usable for both the standard and fully bounded simplex */ +/* ------------------------------------------------------------------------- */ +/* +#define my_lowbo(lp, varnr) ( lp->isfullybounded ? lp->lowbo[varnr] : 0.0 ) +#define my_upbo(lp, varnr) ( lp->isfullybounded ? lp->upbo[varnr] : lp->lowbo[varnr] + lp->upbo[varnr] ) +#define my_rangebo(lp, varnr) ( lp->isfullybounded ? lp->upbo[varnr] - lp->lowbo[varnr] : lp->upbo[varnr] ) +*/ +#define my_lowbo(lp, varnr) ( 0.0 ) +#define my_upbo(lp, varnr) ( lp->lowbo[varnr] + lp->upbo[varnr] ) +#define my_rangebo(lp, varnr) ( lp->upbo[varnr] ) + +#define my_unbounded(lp, varnr) ((lp->upbo[varnr] >= lp->infinite) && (lp->lowbo[varnr] <= -lp->infinite)) +#define my_bounded(lp, varnr) ((lp->upbo[varnr] < lp->infinite) && (lp->lowbo[varnr] > -lp->infinite)) + +/* Forward declarations */ +/* ------------------------------------------------------------------------- */ +typedef struct _lprec lprec; +typedef struct _INVrec INVrec; +union QSORTrec; + +#ifndef UNIONTYPE + #ifdef __cplusplus + #define UNIONTYPE + #else + #define UNIONTYPE union + #endif +#endif + +/* B4 factorization optimization data */ +typedef struct _B4rec +{ + int *B4_var; /* Position of basic columns in the B4 basis */ + int *var_B4; /* Variable in the B4 basis */ + int *B4_row; /* B4 position of the i'th row */ + int *row_B4; /* Original position of the i'th row */ + LPSREAL *wcol; + int *nzwcol; +} B4rec; + +#define OBJ_STEPS 5 +typedef struct _OBJmonrec { + lprec *lp; + int oldpivstrategy, + oldpivrule, pivrule, ruleswitches, + limitstall[2], limitruleswitches, + idxstep[OBJ_STEPS], countstep, startstep, currentstep, + Rcycle, Ccycle, Ncycle, Mcycle, Icount; + LPSREAL thisobj, prevobj, + objstep[OBJ_STEPS], + thisinfeas, previnfeas, + epsvalue; + char spxfunc[10]; + MYBOOL pivdynamic; + MYBOOL isdual; + MYBOOL active; +} OBJmonrec; + +typedef struct _edgerec +{ + LPSREAL *edgeVector; +} edgerec; + +typedef struct _pricerec +{ + LPSREAL theta; + LPSREAL pivot; + LPSREAL epspivot; + int varno; + lprec *lp; + MYBOOL isdual; +} pricerec; +typedef struct _multirec +{ + lprec *lp; + int size; /* The maximum number of multiply priced rows/columns */ + int used; /* The current / active number of multiply priced rows/columns */ + int limit; /* The active/used count at which a full update is triggered */ + pricerec *items; /* Array of best multiply priced rows/columns */ + int *freeList; /* The indeces of available positions in "items" */ + UNIONTYPE QSORTrec *sortedList; /* List of pointers to "pricerec" items in sorted order */ + LPSREAL *stepList; /* Working array (values in sortedList order) */ + LPSREAL *valueList; /* Working array (values in sortedList order) */ + int *indexSet; /* The final exported index list of pivot variables */ + int active; /* Index of currently active multiply priced row/column */ + int retries; + LPSREAL step_base; + LPSREAL step_last; + LPSREAL obj_base; + LPSREAL obj_last; + LPSREAL epszero; + LPSREAL maxpivot; + LPSREAL maxbound; + MYBOOL sorted; + MYBOOL truncinf; + MYBOOL objcheck; + MYBOOL dirty; +} multirec; + +#endif /* HEADER_lp_types */ diff --git a/src/external/lpsolve/headers/include/lp_utils.h b/src/external/lpsolve/headers/include/lp_utils.h new file mode 100644 index 00000000..07ca11ac --- /dev/null +++ b/src/external/lpsolve/headers/include/lp_utils.h @@ -0,0 +1,155 @@ +// Copyright(c) 2016-2018 Kjell Konis . +// Version: 5.5.2.0-17 +// Description: The lpSolveAPI package provides an R interface to 'lp_solve', +// a Mixed Integer Linear Programming (MILP) solver with support for pure +// linear, (mixed) integer/binary, semi-continuous and special ordered sets +// (SOS) models. +// License: LGPL-2 +// Repository: CRAN + +#ifndef HEADER_lp_utils +#define HEADER_lp_utils + +#ifdef FORTIFY + +#include "lp_fortify.h" + +#define allocCHAR allocCHAR_FORTIFY +#define allocMYBOOL allocMYBOOL_FORTIFY +#define allocINT allocINT_FORTIFY +#define allocREAL allocREAL_FORTIFY +#define allocLREAL allocLREAL_FORTIFY + +#endif + +#include "lp_types.h" + +/* Temporary data storage arrays */ +typedef struct _workarraysrec +{ + lprec *lp; + int size; + int count; + char **vectorarray; + int *vectorsize; +} workarraysrec; + +typedef struct _LLrec +{ + int size; /* The allocated list size */ + int count; /* The current entry count */ + int firstitem; + int lastitem; + int *map; /* The list of forward and backward-mapped entries */ +} LLrec; + +typedef struct _PVrec +{ + int count; /* The allocated list item count */ + int *startpos; /* Starting index of the current value */ + LPSREAL *value; /* The list of forward and backward-mapped entries */ + struct _PVrec *parent; /* The parent record in a pushed chain */ +} PVrec; + + +#ifdef __cplusplus +extern "C" { +#endif + +/* Put function headers here */ +STATIC MYBOOL allocCHAR(lprec *lp, char **ptr, int size, MYBOOL clear); +STATIC MYBOOL allocMYBOOL(lprec *lp, MYBOOL **ptr, int size, MYBOOL clear); +STATIC MYBOOL allocINT(lprec *lp, int **ptr, int size, MYBOOL clear); +STATIC MYBOOL allocREAL(lprec *lp, LPSREAL **ptr, int size, MYBOOL clear); +STATIC MYBOOL allocLREAL(lprec *lp, LREAL **ptr, int size, MYBOOL clear); +STATIC MYBOOL allocFREE(lprec *lp, void **ptr); +LPSREAL *cloneREAL(lprec *lp, LPSREAL *origlist, int size); +MYBOOL *cloneMYBOOL(lprec *lp, MYBOOL *origlist, int size); +int *cloneINT(lprec *lp, int *origlist, int size); + +int comp_bits(MYBOOL *bitarray1, MYBOOL *bitarray2, int items); + +STATIC workarraysrec *mempool_create(lprec *lp); +STATIC char *mempool_obtainVector(workarraysrec *mempool, int count, int unitsize); +STATIC MYBOOL mempool_releaseVector(workarraysrec *mempool, char *memvector, MYBOOL forcefree); +STATIC MYBOOL mempool_free(workarraysrec **mempool); + +STATIC void roundVector(LREAL *myvector, int endpos, LREAL roundzero); +STATIC LPSREAL normalizeVector(LPSREAL *myvector, int endpos); + +STATIC void swapINT(int *item1, int *item2); +STATIC void swapREAL(LPSREAL *item1, LPSREAL *item2); +STATIC void swapPTR(void **item1, void **item2); +STATIC LPSREAL restoreINT(LPSREAL valREAL, LPSREAL epsilon); +STATIC LPSREAL roundToPrecision(LPSREAL value, LPSREAL precision); + +STATIC int searchFor(int target, int *attributes, int size, int offset, MYBOOL absolute); + +STATIC MYBOOL isINT(lprec *lp, LPSREAL value); +STATIC MYBOOL isOrigFixed(lprec *lp, int varno); +STATIC void chsign_bounds(LPSREAL *lobound, LPSREAL *upbound); +STATIC LPSREAL rand_uniform(lprec *lp, LPSREAL range); + +/* Doubly linked list routines */ +STATIC int createLink(int size, LLrec **linkmap, MYBOOL *usedpos); +STATIC MYBOOL freeLink(LLrec **linkmap); +STATIC int sizeLink(LLrec *linkmap); +STATIC MYBOOL isActiveLink(LLrec *linkmap, int itemnr); +STATIC int countActiveLink(LLrec *linkmap); +STATIC int countInactiveLink(LLrec *linkmap); +STATIC int firstActiveLink(LLrec *linkmap); +STATIC int lastActiveLink(LLrec *linkmap); +STATIC MYBOOL appendLink(LLrec *linkmap, int newitem); +STATIC MYBOOL insertLink(LLrec *linkmap, int afteritem, int newitem); +STATIC MYBOOL setLink(LLrec *linkmap, int newitem); +STATIC MYBOOL fillLink(LLrec *linkmap); +STATIC int nextActiveLink(LLrec *linkmap, int backitemnr); +STATIC int prevActiveLink(LLrec *linkmap, int forwitemnr); +STATIC int firstInactiveLink(LLrec *linkmap); +STATIC int lastInactiveLink(LLrec *linkmap); +STATIC int nextInactiveLink(LLrec *linkmap, int backitemnr); +STATIC int prevInactiveLink(LLrec *linkmap, int forwitemnr); +STATIC int removeLink(LLrec *linkmap, int itemnr); +STATIC LLrec *cloneLink(LLrec *sourcemap, int newsize, MYBOOL freesource); +STATIC int compareLink(LLrec *linkmap1, LLrec *linkmap2); +STATIC MYBOOL verifyLink(LLrec *linkmap, int itemnr, MYBOOL doappend); + +/* Packed vector routines */ +STATIC PVrec *createPackedVector(int size, LPSREAL *values, int *workvector); +STATIC void pushPackedVector(PVrec *PV, PVrec *parent); +STATIC MYBOOL unpackPackedVector(PVrec *PV, LPSREAL **target); +STATIC LPSREAL getvaluePackedVector(PVrec *PV, int index); +STATIC PVrec *popPackedVector(PVrec *PV); +STATIC MYBOOL freePackedVector(PVrec **PV); + +#ifdef __cplusplus + } +#endif + +#endif /* HEADER_lp_utils */ + +#ifdef FORTIFY + +#if defined CODE_lp_utils && !defined CODE_lp_utils_ +int _Fortify_ret; +#else +extern int _Fortify_ret; +#endif + +#ifdef CODE_lp_utils +#define CODE_lp_utils_ +#else +# undef allocCHAR +# undef allocMYBOOL +# undef allocINT +# undef allocREAL +# undef allocLREAL +# define allocCHAR(lp, ptr, size, clear) (Fortify_LINE(__LINE__), Fortify_FILE(__FILE__), _Fortify_ret = allocCHAR_FORTIFY(lp, ptr, size, clear), Fortify_LINE(0), Fortify_FILE(NULL), _Fortify_ret) +# define allocMYBOOL(lp, ptr, size, clear) (Fortify_LINE(__LINE__), Fortify_FILE(__FILE__), _Fortify_ret = allocMYBOOL_FORTIFY(lp, ptr, size, clear), Fortify_LINE(0), Fortify_FILE(NULL), _Fortify_ret) +# define allocINT(lp, ptr, size, clear) (Fortify_LINE(__LINE__), Fortify_FILE(__FILE__), _Fortify_ret = allocINT_FORTIFY(lp, ptr, size, clear), Fortify_LINE(0), Fortify_FILE(NULL), _Fortify_ret) +# define allocREAL(lp, ptr, size, clear) (Fortify_LINE(__LINE__), Fortify_FILE(__FILE__), _Fortify_ret = allocREAL_FORTIFY(lp, ptr, size, clear), Fortify_LINE(0), Fortify_FILE(NULL), _Fortify_ret) +# define allocLREAL(lp, ptr, size, clear) (Fortify_LINE(__LINE__), Fortify_FILE(__FILE__), _Fortify_ret = allocLREAL_FORTIFY(lp, ptr, size, clear), Fortify_LINE(0), Fortify_FILE(NULL), _Fortify_ret) +#endif + +#endif + diff --git a/src/external/lpsolve/headers/include/lp_wlp.h b/src/external/lpsolve/headers/include/lp_wlp.h new file mode 100644 index 00000000..7cfeecf4 --- /dev/null +++ b/src/external/lpsolve/headers/include/lp_wlp.h @@ -0,0 +1,30 @@ +// Copyright(c) 2016-2018 Kjell Konis . +// Version: 5.5.2.0-17 +// Description: The lpSolveAPI package provides an R interface to 'lp_solve', +// a Mixed Integer Linear Programming (MILP) solver with support for pure +// linear, (mixed) integer/binary, semi-continuous and special ordered sets +// (SOS) models. +// License: LGPL-2 +// Repository: CRAN + +#ifndef HEADER_lp_lp +#define HEADER_lp_lp + +#include "lp_types.h" + + +#ifdef __cplusplus +extern "C" { +#endif + +/* Put function headers here */ +MYBOOL LP_writefile(lprec *lp, char *filename); +MYBOOL LP_writehandle(lprec *lp, FILE *output); + + +#ifdef __cplusplus + } +#endif + +#endif /* HEADER_lp_lp */ + diff --git a/src/external/lpsolve/headers/include/lpkit.h b/src/external/lpsolve/headers/include/lpkit.h new file mode 100644 index 00000000..728d2d01 --- /dev/null +++ b/src/external/lpsolve/headers/include/lpkit.h @@ -0,0 +1,41 @@ +// Copyright(c) 2016-2018 Kjell Konis . +// Version: 5.5.2.0-17 +// Description: The lpSolveAPI package provides an R interface to 'lp_solve', +// a Mixed Integer Linear Programming (MILP) solver with support for pure +// linear, (mixed) integer/binary, semi-continuous and special ordered sets +// (SOS) models. +// License: LGPL-2 +// Repository: CRAN + +#include "lp_lib.h" +#include "lp_report.h" + +#define MALLOC(ptr, nr, type)\ + ((((nr) == 0) || ((ptr = (type *) malloc((size_t)((nr) * sizeof(*ptr)))) == NULL)) ? \ + report(NULL, CRITICAL, "malloc of %d bytes failed on line %d of file %s\n",\ + (nr) * sizeof(*ptr), __LINE__, __FILE__), (ptr = NULL /* (void *) 0 */) : \ + ptr\ + ) + +#define CALLOC(ptr, nr, type)\ + ((((nr) == 0) || ((ptr = (type *) calloc((size_t)(nr), sizeof(*ptr))) == NULL)) ? \ + report(NULL, CRITICAL, "calloc of %d bytes failed on line %d of file %s\n",\ + (nr) * sizeof(*ptr), __LINE__, __FILE__), (ptr = NULL /* (void *) 0 */) : \ + ptr\ + ) + +#define REALLOC(ptr, nr, type)\ + ((((nr) == 0) || ((ptr = (type *) realloc(ptr, (size_t)((nr) * sizeof(*ptr)))) == NULL)) ? \ + report(NULL, CRITICAL, "realloc of %d bytes failed on line %d of file %s\n",\ + (nr) * sizeof(*ptr), __LINE__, __FILE__), (ptr = NULL /* (void *) 0 */) : \ + ptr\ + ) + +#if defined FREE +# undef FREE +#endif + +#define FREE(ptr) if (ptr != NULL) {free(ptr), ptr = NULL;} else + +#define MALLOCCPY(nptr, optr, nr, type)\ + (MALLOC(nptr, nr, type), (nptr != NULL) ? memcpy(nptr, optr, (size_t)((nr) * sizeof(*optr))) : 0) diff --git a/src/external/lpsolve/headers/include/lusol.h b/src/external/lpsolve/headers/include/lusol.h new file mode 100644 index 00000000..56e9b9e9 --- /dev/null +++ b/src/external/lpsolve/headers/include/lusol.h @@ -0,0 +1,366 @@ +// Copyright(c) 2016-2018 Kjell Konis . +// Version: 5.5.2.0-17 +// Description: The lpSolveAPI package provides an R interface to 'lp_solve', +// a Mixed Integer Linear Programming (MILP) solver with support for pure +// linear, (mixed) integer/binary, semi-continuous and special ordered sets +// (SOS) models. +// License: LGPL-2 +// Repository: CRAN + +#ifndef HEADER_LUSOL +#define HEADER_LUSOL + +/* Include necessary libraries */ +/* ------------------------------------------------------------------------- */ +#include +#include "commonlib.h" + +/* Version information */ +/* ------------------------------------------------------------------------- */ +#define LUSOL_VERMAJOR 2 +#define LUSOL_VERMINOR 2 +#define LUSOL_RELEASE 2 +#define LUSOL_BUILD 0 + +/* Dynamic memory management macros */ +/* ------------------------------------------------------------------------- */ +#ifdef MATLAB + #define LUSOL_MALLOC(bytesize) mxMalloc(bytesize) + #define LUSOL_CALLOC(count, recsize) mxCalloc(count, recsize) + #define LUSOL_REALLOC(ptr, bytesize) mxRealloc((void *) ptr, bytesize) + #define LUSOL_FREE(ptr) {mxFree(ptr); ptr=NULL;} +#else + #define LUSOL_MALLOC(bytesize) malloc(bytesize) + #define LUSOL_CALLOC(count, recsize) calloc(count, recsize) + #define LUSOL_REALLOC(ptr, bytesize) realloc((void *) ptr, bytesize) + #define LUSOL_FREE(ptr) {free(ptr); ptr=NULL;} +#endif + +/* Performance compiler options */ +/* ------------------------------------------------------------------------- */ +#if 1 + #define ForceInitialization /* Satisfy compilers, check during debugging! */ + #define LUSOLFastDenseIndex /* Increment the linearized dense address */ + #define LUSOLFastClear /* Use intrinsic functions for memory zeroing */ + #define LUSOLFastMove /* Use intrinsic functions for memory moves */ + #define LUSOLFastCopy /* Use intrinsic functions for memory copy */ + #define LUSOLFastSolve /* Use pointer operations in equation solving */ + #define LUSOLSafeFastUpdate /* Use separate array for LU6L result storage */ +/*#define UseOld_LU6CHK_20040510 */ +/*#define AlwaysSeparateHamaxR */ /* Enabled when the pivot model is fixed */ + #if 0 + #define ForceRowBasedL0 /* Create a row-sorted version of L0 */ + #endif +/* #define SetSmallToZero*/ +/* #define DoTraceL0 */ +#endif +/*#define UseTimer */ + + +/* Legacy compatibility and testing options (Fortran-LUSOL) */ +/* ------------------------------------------------------------------------- */ +#if 0 + #define LegacyTesting + #define StaticMemAlloc /* Preallocated vs. dynamic memory allocation */ + #define ClassicdiagU /* Store diagU at end of a */ + #define ClassicHamaxR /* Store H+AmaxR at end of a/indc/indr */ +#endif + + +/* General constants and data type definitions */ +/* ------------------------------------------------------------------------- */ +#define LUSOL_ARRAYOFFSET 1 +#ifndef ZERO + #define ZERO 0 +#endif +#ifndef ONE + #define ONE 1 +#endif +#ifndef FALSE + #define FALSE 0 +#endif +#ifndef TRUE + #define TRUE 1 +#endif +#ifndef NULL + #define NULL 0 +#endif +#ifndef LPSREAL + #define LPSREAL double +#endif +#ifndef REALXP + #define REALXP long double +#endif +#ifndef MYBOOL + #define MYBOOL unsigned char +#endif + + +/* User-settable default parameter values */ +/* ------------------------------------------------------------------------- */ +#define LUSOL_DEFAULT_GAMMA 2.0 +#define LUSOL_SMALLNUM 1.0e-20 /* IAEE doubles have precision 2.22e-16 */ +#define LUSOL_BIGNUM 1.0e+20 +#define LUSOL_MINDELTA_FACTOR 4 +#define LUSOL_MINDELTA_a 10000 +#if 1 + #define LUSOL_MULT_nz_a 2 /* Suggested by Yin Zhang */ +#else + #define LUSOL_MULT_nz_a 5 /* Could consider 6 or 7 */ +#endif +#define LUSOL_MINDELTA_rc 1000 +#define LUSOL_DEFAULT_SMARTRATIO 0.667 + +/* Fixed system parameters (changeable only by developers) */ +/* ------------------------------------------------------------------------- */ + +/* parmlu INPUT parameters: */ +#define LUSOL_RP_SMARTRATIO 0 +#define LUSOL_RP_FACTORMAX_Lij 1 +#define LUSOL_RP_UPDATEMAX_Lij 2 +#define LUSOL_RP_ZEROTOLERANCE 3 +#define LUSOL_RP_SMALLDIAG_U 4 +#define LUSOL_RP_EPSDIAG_U 5 +#define LUSOL_RP_COMPSPACE_U 6 +#define LUSOL_RP_MARKOWITZ_CONLY 7 +#define LUSOL_RP_MARKOWITZ_DENSE 8 +#define LUSOL_RP_GAMMA 9 + +/* parmlu OUPUT parameters: */ +#define LUSOL_RP_MAXELEM_A 10 +#define LUSOL_RP_MAXMULT_L 11 +#define LUSOL_RP_MAXELEM_U 12 +#define LUSOL_RP_MAXELEM_DIAGU 13 +#define LUSOL_RP_MINELEM_DIAGU 14 +#define LUSOL_RP_MAXELEM_TCP 15 +#define LUSOL_RP_GROWTHRATE 16 +#define LUSOL_RP_USERDATA_1 17 +#define LUSOL_RP_USERDATA_2 18 +#define LUSOL_RP_USERDATA_3 19 +#define LUSOL_RP_RESIDUAL_U 20 +#define LUSOL_RP_LASTITEM LUSOL_RP_RESIDUAL_U + +/* luparm INPUT parameters: */ +#define LUSOL_IP_USERDATA_0 0 +#define LUSOL_IP_PRINTUNIT 1 +#define LUSOL_IP_PRINTLEVEL 2 +#define LUSOL_IP_MARKOWITZ_MAXCOL 3 +#define LUSOL_IP_SCALAR_NZA 4 +#define LUSOL_IP_UPDATELIMIT 5 +#define LUSOL_IP_PIVOTTYPE 6 +#define LUSOL_IP_ACCELERATION 7 +#define LUSOL_IP_KEEPLU 8 +#define LUSOL_IP_SINGULARLISTSIZE 9 + +/* luparm OUTPUT parameters: */ +#define LUSOL_IP_INFORM 10 +#define LUSOL_IP_SINGULARITIES 11 +#define LUSOL_IP_SINGULARINDEX 12 +#define LUSOL_IP_MINIMUMLENA 13 +#define LUSOL_IP_MAXLEN 14 +#define LUSOL_IP_UPDATECOUNT 15 +#define LUSOL_IP_RANK_U 16 +#define LUSOL_IP_COLCOUNT_DENSE1 17 +#define LUSOL_IP_COLCOUNT_DENSE2 18 +#define LUSOL_IP_COLINDEX_DUMIN 19 +#define LUSOL_IP_COLCOUNT_L0 20 +#define LUSOL_IP_NONZEROS_L0 21 +#define LUSOL_IP_NONZEROS_U0 22 +#define LUSOL_IP_NONZEROS_L 23 +#define LUSOL_IP_NONZEROS_U 24 +#define LUSOL_IP_NONZEROS_ROW 25 +#define LUSOL_IP_COMPRESSIONS_LU 26 +#define LUSOL_IP_MARKOWITZ_MERIT 27 +#define LUSOL_IP_TRIANGROWS_U 28 +#define LUSOL_IP_TRIANGROWS_L 29 +#define LUSOL_IP_FTRANCOUNT 30 +#define LUSOL_IP_BTRANCOUNT 31 +#define LUSOL_IP_ROWCOUNT_L0 32 +#define LUSOL_IP_LASTITEM LUSOL_IP_ROWCOUNT_L0 + + +/* Macros for matrix-based access for dense part of A and timer mapping */ +/* ------------------------------------------------------------------------- */ +#define DAPOS(row, col) (row + (col-1)*LDA) +#define timer(text, id) LUSOL_timer(LUSOL, id, text) + + +/* Parameter/option defines */ +/* ------------------------------------------------------------------------- */ +#define LUSOL_MSG_NONE -1 +#define LUSOL_MSG_SINGULARITY 0 +#define LUSOL_MSG_STATISTICS 10 +#define LUSOL_MSG_PIVOT 50 + +#define LUSOL_BASEORDER 0 +#define LUSOL_OTHERORDER 1 +#define LUSOL_AUTOORDER 2 +#define LUSOL_ACCELERATE_L0 4 +#define LUSOL_ACCELERATE_U 8 + +#define LUSOL_PIVMOD_NOCHANGE -2 /* Don't change active pivoting model */ +#define LUSOL_PIVMOD_DEFAULT -1 /* Set pivoting model to default */ +#define LUSOL_PIVMOD_TPP 0 /* Threshold Partial pivoting (normal) */ +#define LUSOL_PIVMOD_TRP 1 /* Threshold Rook pivoting */ +#define LUSOL_PIVMOD_TCP 2 /* Threshold Complete pivoting */ +#define LUSOL_PIVMOD_TSP 3 /* Threshold Symmetric pivoting */ +#define LUSOL_PIVMOD_MAX LUSOL_PIVMOD_TSP + +#define LUSOL_PIVTOL_NOCHANGE 0 +#define LUSOL_PIVTOL_BAGGY 1 +#define LUSOL_PIVTOL_LOOSE 2 +#define LUSOL_PIVTOL_NORMAL 3 +#define LUSOL_PIVTOL_SLIM 4 +#define LUSOL_PIVTOL_TIGHT 5 +#define LUSOL_PIVTOL_SUPER 6 +#define LUSOL_PIVTOL_CORSET 7 +#define LUSOL_PIVTOL_DEFAULT LUSOL_PIVTOL_SLIM +#define LUSOL_PIVTOL_MAX LUSOL_PIVTOL_CORSET + +#define LUSOL_UPDATE_OLDEMPTY 0 /* No/empty current column. */ +#define LUSOL_UPDATE_OLDNONEMPTY 1 /* Current column need not have been empty. */ +#define LUSOL_UPDATE_NEWEMPTY 0 /* New column is taken to be zero. */ +#define LUSOL_UPDATE_NEWNONEMPTY 1 /* v(*) contains the new column; + on exit, v(*) satisfies L*v = a(new). */ +#define LUSOL_UPDATE_USEPREPARED 2 /* v(*) must satisfy L*v = a(new). */ + +#define LUSOL_SOLVE_Lv_v 1 /* v solves L v = v(input). w is not touched. */ +#define LUSOL_SOLVE_Ltv_v 2 /* v solves L'v = v(input). w is not touched. */ +#define LUSOL_SOLVE_Uw_v 3 /* w solves U w = v. v is not altered. */ +#define LUSOL_SOLVE_Utv_w 4 /* v solves U'v = w. w is destroyed. */ +#define LUSOL_SOLVE_Aw_v 5 /* w solves A w = v. v is altered as in 1. */ +#define LUSOL_FTRAN LUSOL_SOLVE_Aw_v +#define LUSOL_SOLVE_Atv_w 6 /* v solves A'v = w. w is destroyed. */ +#define LUSOL_BTRAN LUSOL_SOLVE_Atv_w + +/* If mode = 3,4,5,6, v and w must not be the same arrays. + If lu1fac has just been used to factorize a symmetric matrix A + (which must be definite or quasi-definite), the factors A = L U + may be regarded as A = LDL', where D = diag(U). In such cases, + the following (faster) solve codes may be used: */ +#define LUSOL_SOLVE_Av_v 7 /* v solves A v = L D L'v = v(input). w is not touched. */ +#define LUSOL_SOLVE_LDLtv_v 8 /* v solves L |D| L'v = v(input). w is not touched. */ + +#define LUSOL_INFORM_RANKLOSS -1 +#define LUSOL_INFORM_LUSUCCESS 0 +#define LUSOL_INFORM_LUSINGULAR 1 +#define LUSOL_INFORM_LUUNSTABLE 2 +#define LUSOL_INFORM_ADIMERR 3 +#define LUSOL_INFORM_ADUPLICATE 4 +#define LUSOL_INFORM_ANEEDMEM 7 /* Set lena >= luparm[LUSOL_IP_MINIMUMLENA] */ +#define LUSOL_INFORM_FATALERR 8 +#define LUSOL_INFORM_NOPIVOT 9 /* No diagonal pivot found with TSP or TDP. */ +#define LUSOL_INFORM_NOMEMLEFT 10 + +#define LUSOL_INFORM_MIN LUSOL_INFORM_RANKLOSS +#define LUSOL_INFORM_MAX LUSOL_INFORM_NOMEMLEFT + +#define LUSOL_INFORM_GETLAST 10 /* Code for LUSOL_informstr. */ +#define LUSOL_INFORM_SERIOUS LUSOL_INFORM_LUUNSTABLE + + +/* Prototypes for call-back functions */ +/* ------------------------------------------------------------------------- */ +typedef void LUSOLlogfunc(void *lp, void *userhandle, char *buf); + + +/* Sparse matrix data */ +typedef struct _LUSOLmat { + LPSREAL *a; + int *lenx, *indr, *indc, *indx; +} LUSOLmat; + + +/* The main LUSOL data record */ +/* ------------------------------------------------------------------------- */ +typedef struct _LUSOLrec { + + /* General data */ + FILE *outstream; /* Output stream, initialized to STDOUT */ + LUSOLlogfunc *writelog; + void *loghandle; + LUSOLlogfunc *debuginfo; + + /* Parameter storage arrays */ + int luparm[LUSOL_IP_LASTITEM + 1]; + LPSREAL parmlu[LUSOL_RP_LASTITEM + 1]; + + /* Arrays of length lena+1 */ + int lena, nelem; + int *indc, *indr; + LPSREAL *a; + + /* Arrays of length maxm+1 (row storage) */ + int maxm, m; + int *lenr, *ip, *iqloc, *ipinv, *locr; + + /* Arrays of length maxn+1 (column storage) */ + int maxn, n; + int *lenc, *iq, *iploc, *iqinv, *locc; + LPSREAL *w, *vLU6L; + + /* List of singular columns, with dynamic size allocation */ + int *isingular; + + /* Extra arrays of length n for TCP and keepLU == FALSE */ + LPSREAL *Ha, *diagU; + int *Hj, *Hk; + + /* Extra arrays of length m for TRP*/ + LPSREAL *amaxr; + + /* Extra array for L0 and U stored by row/column for faster btran/ftran */ + LUSOLmat *L0; + LUSOLmat *U; + + /* Miscellaneous data */ + int expanded_a; + int replaced_c; + int replaced_r; + +} LUSOLrec; + + +LUSOLrec *LUSOL_create(FILE *outstream, int msgfil, int pivotmodel, int updatelimit); +MYBOOL LUSOL_sizeto(LUSOLrec *LUSOL, int init_r, int init_c, int init_a); +MYBOOL LUSOL_assign(LUSOLrec *LUSOL, int iA[], int jA[], LPSREAL Aij[], + int nzcount, MYBOOL istriplet); +void LUSOL_clear(LUSOLrec *LUSOL, MYBOOL nzonly); +void LUSOL_free(LUSOLrec *LUSOL); + +LUSOLmat *LUSOL_matcreate(int dim, int nz); +void LUSOL_matfree(LUSOLmat **mat); + +int LUSOL_loadColumn(LUSOLrec *LUSOL, int iA[], int jA, LPSREAL Aij[], int nzcount, int offset1); +void LUSOL_setpivotmodel(LUSOLrec *LUSOL, int pivotmodel, int initlevel); +int LUSOL_factorize(LUSOLrec *LUSOL); +int LUSOL_replaceColumn(LUSOLrec *LUSOL, int jcol, LPSREAL v[]); + +MYBOOL LUSOL_tightenpivot(LUSOLrec *LUSOL); +MYBOOL LUSOL_addSingularity(LUSOLrec *LUSOL, int singcol, int *inform); +int LUSOL_getSingularity(LUSOLrec *LUSOL, int singitem); +int LUSOL_findSingularityPosition(LUSOLrec *LUSOL, int singcol); + +char *LUSOL_pivotLabel(LUSOLrec *LUSOL); +char *LUSOL_informstr(LUSOLrec *LUSOL, int inform); +LPSREAL LUSOL_vecdensity(LUSOLrec *LUSOL, LPSREAL V[]); +void LUSOL_report(LUSOLrec *LUSOL, int msglevel, char *format, ...); +void LUSOL_timer(LUSOLrec *LUSOL, int timerid, char *text); + +int LUSOL_ftran(LUSOLrec *LUSOL, LPSREAL b[], int NZidx[], MYBOOL prepareupdate); +int LUSOL_btran(LUSOLrec *LUSOL, LPSREAL b[], int NZidx[]); + +void LU1FAC(LUSOLrec *LUSOL, int *INFORM); +MYBOOL LU1L0(LUSOLrec *LUSOL, LUSOLmat **mat, int *inform); +void LU6SOL(LUSOLrec *LUSOL, int MODE, LPSREAL V[], LPSREAL W[], int NZidx[], int *INFORM); +void LU8RPC(LUSOLrec *LUSOL, int MODE1, int MODE2, + int JREP, LPSREAL V[], LPSREAL W[], + int *INFORM, LPSREAL *DIAG, LPSREAL *VNORM); + +void LUSOL_dump(FILE *output, LUSOLrec *LUSOL); + + +void print_L0(LUSOLrec *LUSOL); + + +#endif /* HEADER_LUSOL */ diff --git a/src/external/lpsolve/headers/include/mmio.h b/src/external/lpsolve/headers/include/mmio.h new file mode 100644 index 00000000..ea19c8b6 --- /dev/null +++ b/src/external/lpsolve/headers/include/mmio.h @@ -0,0 +1,142 @@ +// Copyright(c) 2016-2018 Kjell Konis . +// Version: 5.5.2.0-17 +// Description: The lpSolveAPI package provides an R interface to 'lp_solve', +// a Mixed Integer Linear Programming (MILP) solver with support for pure +// linear, (mixed) integer/binary, semi-continuous and special ordered sets +// (SOS) models. +// License: LGPL-2 +// Repository: CRAN + + /* +* Matrix Market I/O library for ANSI C +* +* See http://math.nist.gov/MatrixMarket for details. +* +* +*/ + +#ifndef MM_IO_H +#define MM_IO_H + +#define MM_MAX_LINE_LENGTH 1025 +#define MatrixMarketBanner "%%MatrixMarket" +#define MM_MAX_TOKEN_LENGTH 64 + +typedef char MM_typecode[4]; + +char *mm_typecode_to_str(MM_typecode matcode); + +int mm_read_banner(FILE *f, MM_typecode *matcode); +int mm_read_mtx_crd_size(FILE *f, int *M, int *N, int *nz); +int mm_read_mtx_array_size(FILE *f, int *M, int *N); + +int mm_write_banner(FILE *f, MM_typecode matcode); +int mm_write_mtx_crd_size(FILE *f, int M, int N, int nz); +int mm_write_mtx_array_size(FILE *f, int M, int N); + + +/********************* MM_typecode query fucntions ***************************/ + +#define mm_is_matrix(typecode) ((typecode)[0]=='M') + +#define mm_is_sparse(typecode) ((typecode)[1]=='C') +#define mm_is_coordinate(typecode)((typecode)[1]=='C') +#define mm_is_dense(typecode) ((typecode)[1]=='A') +#define mm_is_array(typecode) ((typecode)[1]=='A') + +#define mm_is_complex(typecode) ((typecode)[2]=='C') +#define mm_is_real(typecode) ((typecode)[2]=='R') +#define mm_is_pattern(typecode) ((typecode)[2]=='P') +#define mm_is_integer(typecode) ((typecode)[2]=='I') + +#define mm_is_symmetric(typecode)((typecode)[3]=='S') +#define mm_is_general(typecode) ((typecode)[3]=='G') +#define mm_is_skew(typecode) ((typecode)[3]=='K') +#define mm_is_hermitian(typecode)((typecode)[3]=='H') + +int mm_is_valid(MM_typecode matcode); /* too complex for a macro */ + + +/********************* MM_typecode modify fucntions ***************************/ + +#define mm_set_matrix(typecode) ((*typecode)[0]='M') +#define mm_set_coordinate(typecode) ((*typecode)[1]='C') +#define mm_set_array(typecode) ((*typecode)[1]='A') +#define mm_set_dense(typecode) mm_set_array(typecode) +#define mm_set_sparse(typecode) mm_set_coordinate(typecode) + +#define mm_set_complex(typecode)((*typecode)[2]='C') +#define mm_set_real(typecode) ((*typecode)[2]='R') +#define mm_set_pattern(typecode)((*typecode)[2]='P') +#define mm_set_integer(typecode)((*typecode)[2]='I') + + +#define mm_set_symmetric(typecode)((*typecode)[3]='S') +#define mm_set_general(typecode)((*typecode)[3]='G') +#define mm_set_skew(typecode) ((*typecode)[3]='K') +#define mm_set_hermitian(typecode)((*typecode)[3]='H') + +#define mm_clear_typecode(typecode) ((*typecode)[0]=(*typecode)[1]= \ + (*typecode)[2]=' ',(*typecode)[3]='G') + +#define mm_initialize_typecode(typecode) mm_clear_typecode(typecode) + + +/********************* Matrix Market error codes ***************************/ + + +#define MM_COULD_NOT_READ_FILE 11 +#define MM_PREMATURE_EOF 12 +#define MM_NOT_MTX 13 +#define MM_NO_HEADER 14 +#define MM_UNSUPPORTED_TYPE 15 +#define MM_LINE_TOO_LONG 16 +#define MM_COULD_NOT_WRITE_FILE 17 + + +/******************** Matrix Market internal definitions ******************** + + MM_matrix_typecode: 4-character sequence + + ojbect sparse/ data storage + dense type scheme + + string position: [0] [1] [2] [3] + + Matrix typecode: M(atrix) C(oord) R(eal) G(eneral) + A(array) C(omplex) H(ermitian) + P(attern) S(ymmetric) + I(nteger) K(kew) + + ***********************************************************************/ + +#define MM_MTX_STR "matrix" +#define MM_ARRAY_STR "array" +#define MM_DENSE_STR "array" +#define MM_COORDINATE_STR "coordinate" +#define MM_SPARSE_STR "coordinate" +#define MM_COMPLEX_STR "complex" +#define MM_REAL_STR "real" +#define MM_INT_STR "integer" +#define MM_GENERAL_STR "general" +#define MM_SYMM_STR "symmetric" +#define MM_HERM_STR "hermitian" +#define MM_SKEW_STR "skew-symmetric" +#define MM_PATTERN_STR "pattern" + + +/* high level routines */ + +int mm_write_mtx_crd(char fname[], int M, int N, int nz, int I[], int J[], + double val[], MM_typecode matcode); +int mm_read_mtx_crd_data(FILE *f, int M, int N, int nz, int I[], int J[], + double val[], MM_typecode matcode); +int mm_read_mtx_crd_entry(FILE *f, int *I, int *J, double *real, double *img, + MM_typecode matcode); + +int mm_read_unsymmetric_sparse(const char *fname, int *M_, int *N_, int *nz_, + double **val_, int **I_, int **J_); + + + +#endif diff --git a/src/external/lpsolve/headers/include/myblas.h b/src/external/lpsolve/headers/include/myblas.h new file mode 100644 index 00000000..4408e7be --- /dev/null +++ b/src/external/lpsolve/headers/include/myblas.h @@ -0,0 +1,50 @@ +#ifndef HEADER_myblas +#define HEADER_myblas + +/* ************************************************************************ */ +/* BLAS function interface with local and external loadable versions */ +/* Author: Kjell Eikland */ +/* Version: Initial version spring 2004 */ +/* Licence: LGPL */ +/* ************************************************************************ */ +/* Changes: 19 September 2004 Moved function pointer variable */ +/* declarations from myblas.h to myblas.c */ +/* to avoid linker problems with the Mac. */ +/* 20 April 2005 Modified all double types to REAL to self- */ +/* adjust to global settings. Note that BLAS */ +/* as of now does not have double double. */ +/* 11/11/2014 Modified for R package. */ +/* ************************************************************************ */ + +#define BLAS_BASE 1 +#include "commonlib.h" + +#ifdef __cplusplus +extern "C" { +#endif + + +/* ************************************************************************ */ +/* BLAS functions */ +/* ************************************************************************ */ + +void init_BLAS(void); +MYBOOL is_nativeBLAS(void); +MYBOOL load_BLAS(char *libname); +MYBOOL unload_BLAS(void); + +/* ************************************************************************ */ +/* User-callable BLAS definitions (C base 1) */ +/* ************************************************************************ */ + +void lps_dscal ( int n, LPSREAL da, LPSREAL *dx, int incx ); +void lps_dcopy ( int n, LPSREAL *dx, int incx, LPSREAL *dy, int incy ); +void lps_daxpy ( int n, LPSREAL da, LPSREAL *dx, int incx, LPSREAL *dy, int incy ); +int lps_idamax ( int n, LPSREAL *x, int is ); + + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/src/external/lpsolve/headers/include/yacc_read.h b/src/external/lpsolve/headers/include/yacc_read.h new file mode 100644 index 00000000..d4f0b411 --- /dev/null +++ b/src/external/lpsolve/headers/include/yacc_read.h @@ -0,0 +1,66 @@ +// Copyright(c) 2016-2018 Kjell Konis . +// Version: 5.5.2.0-17 +// Description: The lpSolveAPI package provides an R interface to 'lp_solve', +// a Mixed Integer Linear Programming (MILP) solver with support for pure +// linear, (mixed) integer/binary, semi-continuous and special ordered sets +// (SOS) models. +// License: LGPL-2 +// Repository: CRAN + + /* prototypes of functions used in the parser */ + +#include + +#ifndef __READ_H__ +#define __READ_H__ + +struct _tmp_store_struct +{ + char *name; + int row; + LPSREAL value; + LPSREAL rhs_value; + short relat; +}; + +typedef struct parse_parm_s +{ + void *scanner; + long lineno; + int Verbose; + jmp_buf jump_buf; + long Rows, Columns, Non_zeros, Lin_term_count; + struct rside *First_rside, *rs; + short SOStype; /* SOS type */ + char Ignore_int_decl, int_decl, Ignore_sec_decl, Ignore_free_decl, sos_decl, Maximise; + hashtable *Hash_tab, *Hash_constraints; + struct structcoldata *coldata; + struct structSOS *FirstSOS, *LastSOS; + struct _tmp_store_struct tmp_store; + char *title; + short *relat; + void *parse_vars; +} parse_parm; + +void lex_fatal_error(parse_parm *, void *, char *); +int set_title(parse_parm *pp, char *name); +int add_constraint_name(parse_parm *pp, char *name); +int store_re_op(parse_parm *pp, char OP, int HadConstraint, int HadVar, int Had_lineair_sum); +void null_tmp_store(parse_parm *pp, int init_Lin_term_count); +int store_bounds(parse_parm *pp, int warn); +void storevarandweight(parse_parm *pp, char *name); +int set_sos_type(parse_parm *pp, int SOStype); +int set_sos_weight(parse_parm *pp, double weight, int sos_decl); +int set_sec_threshold(parse_parm *pp, char *name, LPSREAL threshold); +int rhs_store(parse_parm *pp, LPSREAL value, int HadConstraint, int HadVar, int Had_lineair_sum); +int var_store(parse_parm *pp, char *var, LPSREAL value, int HadConstraint, int HadVar, int Had_lineair_sum); +int negate_constraint(parse_parm *pp); +void add_row(parse_parm *pp); +void add_sos_row(parse_parm *pp, short SOStype); + +void read_error(parse_parm *, void *, char *); +void check_int_sec_sos_free_decl(parse_parm *, int, int, int, int); +lprec *yacc_read(lprec *lp, int verbose, char *lp_name, int (*parse) (parse_parm *pp), parse_parm *pp, void (*delete_allocated_memory) (parse_parm *pp)); + +#define set_obj_dir(pp, maximise) pp->Maximise = maximise +#endif diff --git a/src/external/lpsolve/headers/run_headers/lp_Hash.h b/src/external/lpsolve/headers/run_headers/lp_Hash.h new file mode 100644 index 00000000..13befcb4 --- /dev/null +++ b/src/external/lpsolve/headers/run_headers/lp_Hash.h @@ -0,0 +1,52 @@ +// Copyright(c) 2016-2018 Kjell Konis . +// Version: 5.5.2.0-17 +// Description: The lpSolveAPI package provides an R interface to 'lp_solve', +// a Mixed Integer Linear Programming (MILP) solver with support for pure +// linear, (mixed) integer/binary, semi-continuous and special ordered sets +// (SOS) models. +// License: LGPL-2 +// Repository: CRAN + +#ifndef HEADER_lp_hash +#define HEADER_lp_hash + +/* For row and column name hash tables */ + +typedef struct _hashelem +{ + char *name; + int index; + struct _hashelem *next; + struct _hashelem *nextelem; +} hashelem; + +typedef struct /* _hashtable */ +{ + hashelem **table; + int size; + int base; + int count; + struct _hashelem *first; + struct _hashelem *last; +} hashtable; + +#ifdef __cplusplus +extern "C" { +#endif + +STATIC hashtable *create_hash_table(int size, int base); +STATIC void free_hash_table(hashtable *ht); +STATIC hashelem *findhash(const char *name, hashtable *ht); +STATIC hashelem *puthash(const char *name, int index, hashelem **list, hashtable *ht); +STATIC void drophash(const char *name, hashelem **list, hashtable *ht); +STATIC void free_hash_item(hashelem **hp); +STATIC hashtable *copy_hash_table(hashtable *ht, hashelem **list, int newsize); +STATIC int find_var(lprec *lp, char *name, MYBOOL verbose); +STATIC int find_row(lprec *lp, char *name, MYBOOL Unconstrained_rows_found); + +#ifdef __cplusplus + } +#endif + +#endif /* HEADER_lp_hash */ + diff --git a/src/external/lpsolve/headers/run_headers/lp_SOS.h b/src/external/lpsolve/headers/run_headers/lp_SOS.h new file mode 100644 index 00000000..e1d0c96d --- /dev/null +++ b/src/external/lpsolve/headers/run_headers/lp_SOS.h @@ -0,0 +1,117 @@ +// Copyright(c) 2016-2018 Kjell Konis . +// Version: 5.5.2.0-17 +// Description: The lpSolveAPI package provides an R interface to 'lp_solve', +// a Mixed Integer Linear Programming (MILP) solver with support for pure +// linear, (mixed) integer/binary, semi-continuous and special ordered sets +// (SOS) models. +// License: LGPL-2 +// Repository: CRAN + +#ifndef HEADER_lp_SOS +#define HEADER_lp_SOS + +/* Specially Ordered Sets (SOS) prototypes and settings */ +/* ------------------------------------------------------------------------- */ + +#include "lp_types.h" +#include "lp_utils.h" +#include "lp_matrix.h" + + +/* SOS constraint defines */ +/* ------------------------------------------------------------------------- */ +#define SOS1 1 +#define SOS2 2 +#define SOS3 -1 +#define SOSn MAXINT32 +#define SOS_START_SIZE 10 /* Start size of SOS_list array; realloced if needed */ + +/* Define SOS_is_feasible() return values */ +/* ------------------------------------------------------------------------- */ +#define SOS3_INCOMPLETE -2 +#define SOS_INCOMPLETE -1 +#define SOS_COMPLETE 0 +#define SOS_INFEASIBLE 1 +#define SOS_INTERNALERROR 2 + + +typedef struct _SOSgroup SOSgroup; + +typedef struct _SOSrec +{ + SOSgroup *parent; + int tagorder; + char *name; + int type; + MYBOOL isGUB; + int size; + int priority; + int *members; + REAL *weights; + int *membersSorted; + int *membersMapped; +} SOSrec; + +/* typedef */ struct _SOSgroup +{ + lprec *lp; /* Pointer to owner */ + SOSrec **sos_list; /* Array of pointers to SOS lists */ + int sos_alloc; /* Size allocated to specially ordered sets (SOS1, SOS2...) */ + int sos_count; /* Number of specially ordered sets (SOS1, SOS2...) */ + int maxorder; /* The highest-order SOS in the group */ + int sos1_count; /* Number of the lowest order SOS in the group */ + int *membership; /* Array of variable-sorted indeces to SOSes that the variable is member of */ + int *memberpos; /* Starting positions of the each column's membership list */ +} /* SOSgroup */; + + +#ifdef __cplusplus +extern "C" { +#endif + +/* SOS storage structure */ +STATIC SOSgroup *create_SOSgroup(lprec *lp); +STATIC void resize_SOSgroup(SOSgroup *group); +STATIC int append_SOSgroup(SOSgroup *group, SOSrec *SOS); +STATIC int clean_SOSgroup(SOSgroup *group, MYBOOL forceupdatemap); +STATIC void free_SOSgroup(SOSgroup **group); + +STATIC SOSrec *create_SOSrec(SOSgroup *group, char *name, int type, int priority, int size, int *variables, REAL *weights); +STATIC MYBOOL delete_SOSrec(SOSgroup *group, int sosindex); +STATIC int append_SOSrec(SOSrec *SOS, int size, int *variables, REAL *weights); +STATIC void free_SOSrec(SOSrec *SOS); + +/* SOS utilities */ +STATIC int make_SOSchain(lprec *lp, MYBOOL forceresort); +STATIC int SOS_member_updatemap(SOSgroup *group); +STATIC MYBOOL SOS_member_sortlist(SOSgroup *group, int sosindex); +STATIC MYBOOL SOS_shift_col(SOSgroup *group, int sosindex, int column, int delta, LLrec *usedmap, MYBOOL forceresort); +int SOS_member_delete(SOSgroup *group, int sosindex, int member); +int SOS_get_type(SOSgroup *group, int sosindex); +int SOS_infeasible(SOSgroup *group, int sosindex); +int SOS_member_index(SOSgroup *group, int sosindex, int member); +int SOS_member_count(SOSgroup *group, int sosindex); +int SOS_memberships(SOSgroup *group, int column); +int *SOS_get_candidates(SOSgroup *group, int sosindex, int column, MYBOOL excludetarget, REAL *upbound, REAL *lobound); +int SOS_is_member(SOSgroup *group, int sosindex, int column); +MYBOOL SOS_is_member_of_type(SOSgroup *group, int column, int sostype); +MYBOOL SOS_set_GUB(SOSgroup *group, int sosindex, MYBOOL state); +MYBOOL SOS_is_GUB(SOSgroup *group, int sosindex); +MYBOOL SOS_is_marked(SOSgroup *group, int sosindex, int column); +MYBOOL SOS_is_active(SOSgroup *group, int sosindex, int column); +MYBOOL SOS_is_full(SOSgroup *group, int sosindex, int column, MYBOOL activeonly); +MYBOOL SOS_can_activate(SOSgroup *group, int sosindex, int column); +MYBOOL SOS_set_marked(SOSgroup *group, int sosindex, int column, MYBOOL asactive); +MYBOOL SOS_unmark(SOSgroup *group, int sosindex, int column); +int SOS_fix_unmarked(SOSgroup *group, int sosindex, int variable, REAL *bound, REAL value, + MYBOOL isupper, int *diffcount, DeltaVrec *changelog); +int SOS_fix_list(SOSgroup *group, int sosindex, int variable, REAL *bound, + int *varlist, MYBOOL isleft, DeltaVrec *changelog); +int SOS_is_satisfied(SOSgroup *group, int sosindex, REAL *solution); +MYBOOL SOS_is_feasible(SOSgroup *group, int sosindex, REAL *solution); + +#ifdef __cplusplus + } +#endif + +#endif /* HEADER_lp_SOS */ diff --git a/src/external/lpsolve/headers/run_headers/lp_lib.h b/src/external/lpsolve/headers/run_headers/lp_lib.h new file mode 100644 index 00000000..2ef654fe --- /dev/null +++ b/src/external/lpsolve/headers/run_headers/lp_lib.h @@ -0,0 +1,2294 @@ + +#ifndef HEADER_lp_lib +#define HEADER_lp_lib + +/* -------------------------------------------------------------------------- + + This is the main library header file for the lp_solve v5.0 release + + Starting at version 3.0, LP_Solve is released under the LGPL license. + For full information, see the enclosed file LGPL.txt. + + Original developer: Michel Berkelaar - michel@ics.ele.tue.nl + Most changes 1.5-2.0: Jeroen Dirks - jeroend@tor.numetrix.com + Changes 3.2-4.0: Kjell Eikland - kjell.eikland@broadpark.no + (Simplex code, SOS, SC, code optimization) + Peter Notebaert - lpsolve@peno.be + (Sensitivity analysis, documentation) + Changes 5.0+: Kjell Eikland - kjell.eikland@broadpark.no + (BFP, XLI, simplex, B&B, code modularization) + Peter Notebaert - lpsolve@peno.be + (Sensitivity analysis, New lp parser, LINDO (XLI) + parser, VB/.NET interface, documentation) + + Release notes: + + Version 4.0 enhances version 3.2 in terms of internal program/simplex + architecture, call level interfaces, data layout, features and contains + several bug fixes. There is now complete support for semi-continuous + variables and SOS constructions. In the process, a complete API + was added. The MPS parser has been amended to support this. + Sensitivity analysis and variouse bug fixes was provided by Peter + Notebaert in 4.0 sub-releases. Peter also wrote a complete + documentation of the API and contributed a VB interface, both of which + significantly enhanced the accessibility of lp_solve. + + Version 5.0 is a major rewrite and code cleanup. The main additions that + drove forward this cleanup were the modular inversion logic with optimal + column ordering, addition of primal phase 1 and dual phase 2 logic for + full flexibility in the selection of primal and dual simplex modes, + DEVEX and steepest edge pivot selection, along with dynamic cycling + detection and prevention. This cleanup made it possible to harmonize the + internal rounding principles, contributing to increased numerical stability. + + Version 5.1 rearranges the matrix storage model by enabling both legacy + element record-based storage and split vector storage. In addition the + lprec structure is optimized and additional routines are added, mainly for + sparse vector additions and enhanced XLI functionality. Support for XML- + based models was added on the basis of the LPFML schema via xli_LPFML. + + Version 5.2 removes the objective function from the constraint matrix, + adds a number of presolve options and speed them up. Degeneracy handling + is significantly improved. Support for XLI_ZIMPL was added. + Multiple and partial pricing has been enhanced and activated. + + -------------------------------------------------------------------------- */ +/* Define user program feature option switches */ +/* ------------------------------------------------------------------------- */ + +# if defined _WIN32 && !defined __GNUC__ +# define isnan _isnan +# endif +#if defined NOISNAN +# define isnan(x) FALSE +#endif + +#define SETMASK(variable, mask) variable |= mask +#define CLEARMASK(variable, mask) variable &= ~(mask) +#define TOGGLEMASK(variable, mask) variable ^= mask +#define ISMASKSET(variable, mask) (MYBOOL) (((variable) & (mask)) != 0) + +/* Utility/system settings */ +/* ------------------------------------------------------------------------- */ +/*#define INTEGERTIME */ /* Set use of lower-resolution timer */ + + +/* New v5.0+ simplex/optimization features and settings */ +/* ------------------------------------------------------------------------- */ +/*#define NoRowScaleOF */ /* Optionally skip row-scaling of the OF */ +#define DoMatrixRounding /* Round A matrix elements to precision */ +#define DoBorderRounding /* Round RHS, bounds and ranges to precision */ +#define Phase1EliminateRedundant /* Remove rows of redundant artificials */ +#define FixViolatedOptimal +#define ImproveSolutionPrecision /* Round optimal solution values */ +/*#define IncreasePivotOnReducedAccuracy */ /* Increase epspivot on instability */ +/*#define FixInaccurateDualMinit */ /* Reinvert on inaccuracy in dual minits */ +/*#define EnforcePositiveTheta */ /* Ensure that the theta range is valid */ +#define ResetMinitOnReinvert +/*#define UsePrimalReducedCostUpdate */ /* Not tested */ +/*#define UseDualReducedCostUpdate */ /* Seems Ok, but slower than expected */ +/*#ifdef UseLegacyExtrad */ /* Use v3.2- style Extrad method */ +#define UseMilpExpandedRCF /* Non-ints in reduced cost bound tightening */ +/*#define UseMilpSlacksRCF */ /* Slacks in reduced cost bound tightening (degen + prone); requires !SlackInitMinusInf */ +#define LegacySlackDefinition /* Slack as the "value of the constraint" */ + + +/* Development features (change at own risk) */ +/* ------------------------------------------------------------------------- */ +/*#define MIPboundWithOF */ /* Enable to detect OF constraint for use during B&B */ +/*#define SlackInitMinusInf */ /* Slacks have 0 LB if this is not defined */ +#define FULLYBOUNDEDSIMPLEX FALSE /* WARNING: Activate at your own risk! */ + + +/* Specify use of the basic linear algebra subroutine library */ +/* ------------------------------------------------------------------------- */ +#define libBLAS 2 /* 0: No, 1: Internal, 2: External */ +#define libnameBLAS "myBLAS" + + +/* Active inverse logic (default is optimized original etaPFI) */ +/* ------------------------------------------------------------------------- */ +#if !defined LoadInverseLib +# define LoadInverseLib TRUE /* Enable alternate inverse libraries */ +#endif +/*#define ExcludeNativeInverse */ /* Disable INVERSE_ACTIVE inverse engine */ + +#define DEF_OBJINBASIS TRUE /* Additional rows inserted at the top (1 => OF) */ + +#define INVERSE_NONE -1 +#define INVERSE_LEGACY 0 +#define INVERSE_ETAPFI 1 +#define INVERSE_LUMOD 2 +#define INVERSE_LUSOL 3 +#define INVERSE_GLPKLU 4 + +#ifndef RoleIsExternalInvEngine /* Defined in inverse DLL drivers */ + #ifdef ExcludeNativeInverse + #define INVERSE_ACTIVE INVERSE_NONE /* Disable native engine */ + #else + #define INVERSE_ACTIVE INVERSE_LEGACY /* User or DLL-selected */ + #endif +#endif + + +/* Active external language interface logic (default is none) */ +/* ------------------------------------------------------------------------- */ +#if !defined LoadLanguageLib +# define LoadLanguageLib TRUE /* Enable alternate language libraries */ +#endif +#define ExcludeNativeLanguage /* Disable LANGUAGE_ACTIVE XLI */ + +#define LANGUAGE_NONE -1 +#define LANGUAGE_LEGACYLP 0 +#define LANGUAGE_CPLEXLP 1 +#define LANGUAGE_MPSX 2 +#define LANGUAGE_LPFML 3 +#define LANGUAGE_MATHPROG 4 +#define LANGUAGE_AMPL 5 +#define LANGUAGE_GAMS 6 +#define LANGUAGE_ZIMPL 7 +#define LANGUAGE_S 8 +#define LANGUAGE_R 9 +#define LANGUAGE_MATLAB 10 +#define LANGUAGE_OMATRIX 11 +#define LANGUAGE_SCILAB 12 +#define LANGUAGE_OCTAVE 13 +#define LANGUAGE_EMPS 14 + +#ifndef RoleIsExternalLanguageEngine /* Defined in XLI driver libraries */ + #ifdef ExcludeNativeLanguage + #define LANGUAGE_ACTIVE LANGUAGE_NONE /* Disable native engine */ + #else + #define LANGUAGE_ACTIVE LANGUAGE_CPLEXLP /* User or DLL-selected */ + #endif +#endif + + +/* Default parameters and tolerances */ +/* ------------------------------------------------------------------------- */ +#define OriginalPARAM 0 +#define ProductionPARAM 1 +#define ChvatalPARAM 2 +#define LoosePARAM 3 +#if 1 + #define ActivePARAM ProductionPARAM +#else + #define ActivePARAM LoosePARAM +#endif + + +/* Miscellaneous settings */ +/* ------------------------------------------------------------------------- */ +#ifndef Paranoia + #ifdef _DEBUG + #define Paranoia + #endif +#endif + + +/* Program version data */ +/* ------------------------------------------------------------------------- */ +#define MAJORVERSION 5 +#define MINORVERSION 5 +#define RELEASE 2 +#define BUILD 0 +#define BFPVERSION 12 /* Checked against bfp_compatible() */ +#define XLIVERSION 12 /* Checked against xli_compatible() */ +/* Note that both BFPVERSION and XLIVERSION typically have to be incremented + in the case that the lprec structure changes. */ + + +/* Include/header files */ +/* ------------------------------------------------------------------------- */ +#include +#include +#include +#include +#include + +#include "lp_types.h" +#include "lp_utils.h" + +#if (LoadInverseLib == TRUE) || (LoadLanguageLib == TRUE) + #ifdef WIN32 + #include + #else + #include + #endif +#endif + +#ifndef BFP_CALLMODEL + #ifdef WIN32 + #define BFP_CALLMODEL __stdcall /* "Standard" call model */ + #else + #define BFP_CALLMODEL + #endif +#endif +#ifndef XLI_CALLMODEL + #define XLI_CALLMODEL BFP_CALLMODEL +#endif + +#define REGISTER register /* Speed up certain operations */ + + +/* Definition of program constrants */ +/* ------------------------------------------------------------------------- */ +#define SIMPLEX_UNDEFINED 0 +#define SIMPLEX_Phase1_PRIMAL 1 +#define SIMPLEX_Phase1_DUAL 2 +#define SIMPLEX_Phase2_PRIMAL 4 +#define SIMPLEX_Phase2_DUAL 8 +#define SIMPLEX_DYNAMIC 16 +#define SIMPLEX_AUTODUALIZE 32 + +#define SIMPLEX_PRIMAL_PRIMAL (SIMPLEX_Phase1_PRIMAL + SIMPLEX_Phase2_PRIMAL) +#define SIMPLEX_DUAL_PRIMAL (SIMPLEX_Phase1_DUAL + SIMPLEX_Phase2_PRIMAL) +#define SIMPLEX_PRIMAL_DUAL (SIMPLEX_Phase1_PRIMAL + SIMPLEX_Phase2_DUAL) +#define SIMPLEX_DUAL_DUAL (SIMPLEX_Phase1_DUAL + SIMPLEX_Phase2_DUAL) +#define SIMPLEX_DEFAULT (SIMPLEX_DUAL_PRIMAL) + +/* Variable codes (internal) */ +#define ISREAL 0 +#define ISINTEGER 1 +#define ISSEMI 2 +#define ISSOS 4 +#define ISSOSTEMPINT 8 +#define ISGUB 16 + +/* Presolve defines */ +#define PRESOLVE_NONE 0 +#define PRESOLVE_ROWS 1 +#define PRESOLVE_COLS 2 +#define PRESOLVE_LINDEP 4 +#define PRESOLVE_AGGREGATE 8 /* Not implemented */ +#define PRESOLVE_SPARSER 16 /* Not implemented */ +#define PRESOLVE_SOS 32 +#define PRESOLVE_REDUCEMIP 64 +#define PRESOLVE_KNAPSACK 128 /* Implementation not tested completely */ +#define PRESOLVE_ELIMEQ2 256 +#define PRESOLVE_IMPLIEDFREE 512 +#define PRESOLVE_REDUCEGCD 1024 +#define PRESOLVE_PROBEFIX 2048 +#define PRESOLVE_PROBEREDUCE 4096 +#define PRESOLVE_ROWDOMINATE 8192 +#define PRESOLVE_COLDOMINATE 16384 /* Reduced functionality, should be expanded */ +#define PRESOLVE_MERGEROWS 32768 +#define PRESOLVE_IMPLIEDSLK 65536 +#define PRESOLVE_COLFIXDUAL 131072 +#define PRESOLVE_BOUNDS 262144 +#define PRESOLVE_LASTMASKMODE (PRESOLVE_DUALS - 1) +#define PRESOLVE_DUALS 524288 +#define PRESOLVE_SENSDUALS 1048576 + +/* Basis crash options */ +#define CRASH_NONE 0 +#define CRASH_NONBASICBOUNDS 1 +#define CRASH_MOSTFEASIBLE 2 +#define CRASH_LEASTDEGENERATE 3 + +/* Solution recomputation options (internal) */ +#define INITSOL_SHIFTZERO 0 +#define INITSOL_USEZERO 1 +#define INITSOL_ORIGINAL 2 + +/* Strategy codes to avoid or recover from degenerate pivots, + infeasibility or numeric errors via randomized bound relaxation */ +#define ANTIDEGEN_NONE 0 +#define ANTIDEGEN_FIXEDVARS 1 +#define ANTIDEGEN_COLUMNCHECK 2 +#define ANTIDEGEN_STALLING 4 +#define ANTIDEGEN_NUMFAILURE 8 +#define ANTIDEGEN_LOSTFEAS 16 +#define ANTIDEGEN_INFEASIBLE 32 +#define ANTIDEGEN_DYNAMIC 64 +#define ANTIDEGEN_DURINGBB 128 +#define ANTIDEGEN_RHSPERTURB 256 +#define ANTIDEGEN_BOUNDFLIP 512 +#define ANTIDEGEN_DEFAULT (ANTIDEGEN_FIXEDVARS | ANTIDEGEN_STALLING /* | ANTIDEGEN_INFEASIBLE */) + +/* REPORT defines */ +#define NEUTRAL 0 +#define CRITICAL 1 +#define SEVERE 2 +#define IMPORTANT 3 +#define NORMAL 4 +#define DETAILED 5 +#define FULL 6 + +/* MESSAGE defines */ +#define MSG_NONE 0 +#define MSG_PRESOLVE 1 +#define MSG_ITERATION 2 +#define MSG_INVERT 4 +#define MSG_LPFEASIBLE 8 +#define MSG_LPOPTIMAL 16 +#define MSG_LPEQUAL 32 +#define MSG_LPBETTER 64 +#define MSG_MILPFEASIBLE 128 +#define MSG_MILPEQUAL 256 +#define MSG_MILPBETTER 512 +#define MSG_MILPSTRATEGY 1024 +#define MSG_MILPOPTIMAL 2048 +#define MSG_PERFORMANCE 4096 +#define MSG_INITPSEUDOCOST 8192 + +/* MPS file types */ +#define MPSFIXED 1 +#define MPSFREE 2 +#define MPSIBM 4 +#define MPSNEGOBJCONST 8 + +#define MPS_FREE (MPSFREE<<2) +#define MPS_IBM (MPSIBM<<2) +#define MPS_NEGOBJCONST (MPSNEGOBJCONST<<2) + +/* MPS defines (internal) */ +#define MPSUNDEF -4 +#define MPSNAME -3 +#define MPSOBJSENSE -2 +#define MPSOBJNAME -1 +#define MPSROWS 0 +#define MPSCOLUMNS 1 +#define MPSRHS 2 +#define MPSBOUNDS 3 +#define MPSRANGES 4 +#define MPSSOS 5 + +#define MPSVARMASK "%-8s" +#define MPSVALUEMASK "%12g" + +/* Constraint type codes (internal) */ +#define ROWTYPE_EMPTY 0 +#define ROWTYPE_LE 1 +#define ROWTYPE_GE 2 +#define ROWTYPE_EQ 3 +#define ROWTYPE_CONSTRAINT ROWTYPE_EQ /* This is the mask for modes */ +#define ROWTYPE_OF 4 +#define ROWTYPE_INACTIVE 8 +#define ROWTYPE_RELAX 16 +#define ROWTYPE_GUB 32 +#define ROWTYPE_OFMAX (ROWTYPE_OF + ROWTYPE_GE) +#define ROWTYPE_OFMIN (ROWTYPE_OF + ROWTYPE_LE) +#define ROWTYPE_CHSIGN ROWTYPE_GE + +/* Public constraint codes */ +#define FR ROWTYPE_EMPTY +#define LE ROWTYPE_LE +#define GE ROWTYPE_GE +#define EQ ROWTYPE_EQ +#define OF ROWTYPE_OF + +/* MIP constraint classes */ +#define ROWCLASS_Unknown 0 /* Undefined/unknown */ +#define ROWCLASS_Objective 1 /* The objective function */ +#define ROWCLASS_GeneralREAL 2 /* General real-values constraint */ +#define ROWCLASS_GeneralMIP 3 /* General mixed integer/binary and real valued constraint */ +#define ROWCLASS_GeneralINT 4 /* General integer-only constraint */ +#define ROWCLASS_GeneralBIN 5 /* General binary-only constraint */ +#define ROWCLASS_KnapsackINT 6 /* Sum of positive integer times integer variables <= positive integer */ +#define ROWCLASS_KnapsackBIN 7 /* Sum of positive integer times binary variables <= positive integer */ +#define ROWCLASS_SetPacking 8 /* Sum of binary variables >= 1 */ +#define ROWCLASS_SetCover 9 /* Sum of binary variables <= 1 */ +#define ROWCLASS_GUB 10 /* Sum of binary variables = 1 */ +#define ROWCLASS_MAX ROWCLASS_GUB + +/* Column subsets (internal) */ +#define SCAN_USERVARS 1 +#define SCAN_SLACKVARS 2 +#define SCAN_ARTIFICIALVARS 4 +#define SCAN_PARTIALBLOCK 8 +#define USE_BASICVARS 16 +#define USE_NONBASICVARS 32 +#define SCAN_NORMALVARS (SCAN_USERVARS + SCAN_ARTIFICIALVARS) +#define SCAN_ALLVARS (SCAN_SLACKVARS + SCAN_USERVARS + SCAN_ARTIFICIALVARS) +#define USE_ALLVARS (USE_BASICVARS + USE_NONBASICVARS) +#define OMIT_FIXED 64 +#define OMIT_NONFIXED 128 + +/* Improvement defines */ +#define IMPROVE_NONE 0 +#define IMPROVE_SOLUTION 1 +#define IMPROVE_DUALFEAS 2 +#define IMPROVE_THETAGAP 4 +#define IMPROVE_BBSIMPLEX 8 +#define IMPROVE_DEFAULT (IMPROVE_DUALFEAS + IMPROVE_THETAGAP) +#define IMPROVE_INVERSE (IMPROVE_SOLUTION + IMPROVE_THETAGAP) + +/* Scaling types */ +#define SCALE_NONE 0 +#define SCALE_EXTREME 1 +#define SCALE_RANGE 2 +#define SCALE_MEAN 3 +#define SCALE_GEOMETRIC 4 +#define SCALE_FUTURE1 5 +#define SCALE_FUTURE2 6 +#define SCALE_CURTISREID 7 /* Override to Curtis-Reid "optimal" scaling */ + +/* Alternative scaling weights */ +#define SCALE_LINEAR 0 +#define SCALE_QUADRATIC 8 +#define SCALE_LOGARITHMIC 16 +#define SCALE_USERWEIGHT 31 +#define SCALE_MAXTYPE (SCALE_QUADRATIC-1) + +/* Scaling modes */ +#define SCALE_POWER2 32 /* As is or rounded to power of 2 */ +#define SCALE_EQUILIBRATE 64 /* Make sure that no scaled number is above 1 */ +#define SCALE_INTEGERS 128 /* Apply to integer columns/variables */ +#define SCALE_DYNUPDATE 256 /* Apply incrementally every solve() */ +#define SCALE_ROWSONLY 512 /* Override any scaling to only scale the rows */ +#define SCALE_COLSONLY 1024 /* Override any scaling to only scale the rows */ + +/* Standard defines for typical scaling models (no Lagrangeans) */ +#define SCALEMODEL_EQUILIBRATED (SCALE_LINEAR+SCALE_EXTREME+SCALE_INTEGERS) +#define SCALEMODEL_GEOMETRIC (SCALE_LINEAR+SCALE_GEOMETRIC+SCALE_INTEGERS) +#define SCALEMODEL_ARITHMETIC (SCALE_LINEAR+SCALE_MEAN+SCALE_INTEGERS) +#define SCALEMODEL_DYNAMIC (SCALEMODEL_GEOMETRIC+SCALE_EQUILIBRATE) +#define SCALEMODEL_CURTISREID (SCALE_CURTISREID+SCALE_INTEGERS+SCALE_POWER2) + +/* Iteration status and strategies (internal) */ +#define ITERATE_MAJORMAJOR 0 +#define ITERATE_MINORMAJOR 1 +#define ITERATE_MINORRETRY 2 + +/* Pricing methods */ +#define PRICER_FIRSTINDEX 0 +#define PRICER_DANTZIG 1 +#define PRICER_DEVEX 2 +#define PRICER_STEEPESTEDGE 3 +#define PRICER_LASTOPTION PRICER_STEEPESTEDGE + +/* Additional settings for pricers (internal) */ +#define PRICER_RANDFACT 0.1 +#define DEVEX_RESTARTLIMIT 1.0e+09 /* Reset the norms if any value exceeds this limit */ +#define DEVEX_MINVALUE 0.000 /* Minimum weight [0..1] for entering variable, consider 0.01 */ + +/* Pricing strategies */ +#define PRICE_PRIMALFALLBACK 4 /* In case of Steepest Edge, fall back to DEVEX in primal */ +#define PRICE_MULTIPLE 8 /* Enable multiple pricing (primal simplex) */ +#define PRICE_PARTIAL 16 /* Enable partial pricing */ +#define PRICE_ADAPTIVE 32 /* Temporarily use alternative strategy if cycling is detected */ +#define PRICE_HYBRID 64 /* NOT IMPLEMENTED */ +#define PRICE_RANDOMIZE 128 /* Adds a small randomization effect to the selected pricer */ +#define PRICE_AUTOPARTIAL 256 /* Detect and use data on the block structure of the model (primal) */ +#define PRICE_AUTOMULTIPLE 512 /* Automatically select multiple pricing (primal simplex) */ +#define PRICE_LOOPLEFT 1024 /* Scan entering/leaving columns left rather than right */ +#define PRICE_LOOPALTERNATE 2048 /* Scan entering/leaving columns alternatingly left/right */ +#define PRICE_HARRISTWOPASS 4096 /* Use Harris' primal pivot logic rather than the default */ +#define PRICE_FORCEFULL 8192 /* Non-user option to force full pricing */ +#define PRICE_TRUENORMINIT 16384 /* Use true norms for Devex and Steepest Edge initializations */ + +/*#define _PRICE_NOBOUNDFLIP*/ +#if defined _PRICE_NOBOUNDFLIP +#define PRICE_NOBOUNDFLIP 65536 /* Disallow automatic bound-flip during pivot */ +#endif + +#define PRICE_STRATEGYMASK (PRICE_PRIMALFALLBACK + \ + PRICE_MULTIPLE + PRICE_PARTIAL + \ + PRICE_ADAPTIVE + PRICE_HYBRID + \ + PRICE_RANDOMIZE + PRICE_AUTOPARTIAL + PRICE_AUTOMULTIPLE + \ + PRICE_LOOPLEFT + PRICE_LOOPALTERNATE + \ + PRICE_HARRISTWOPASS + \ + PRICE_FORCEFULL + PRICE_TRUENORMINIT) + +/* B&B active variable codes (internal) */ +#define BB_REAL 0 +#define BB_INT 1 +#define BB_SC 2 +#define BB_SOS 3 +#define BB_GUB 4 + +/* B&B strategies */ +#define NODE_FIRSTSELECT 0 +#define NODE_GAPSELECT 1 +#define NODE_RANGESELECT 2 +#define NODE_FRACTIONSELECT 3 +#define NODE_PSEUDOCOSTSELECT 4 +#define NODE_PSEUDONONINTSELECT 5 /* Kjell Eikland #1 - Minimize B&B depth */ +#define NODE_PSEUDOFEASSELECT (NODE_PSEUDONONINTSELECT+NODE_WEIGHTREVERSEMODE) +#define NODE_PSEUDORATIOSELECT 6 /* Kjell Eikland #2 - Minimize a "cost/benefit" ratio */ +#define NODE_USERSELECT 7 +#define NODE_STRATEGYMASK (NODE_WEIGHTREVERSEMODE-1) /* Mask for B&B strategies */ +#define NODE_WEIGHTREVERSEMODE 8 +#define NODE_BRANCHREVERSEMODE 16 +#define NODE_GREEDYMODE 32 +#define NODE_PSEUDOCOSTMODE 64 +#define NODE_DEPTHFIRSTMODE 128 +#define NODE_RANDOMIZEMODE 256 +#define NODE_GUBMODE 512 +#define NODE_DYNAMICMODE 1024 +#define NODE_RESTARTMODE 2048 +#define NODE_BREADTHFIRSTMODE 4096 +#define NODE_AUTOORDER 8192 +#define NODE_RCOSTFIXING 16384 +#define NODE_STRONGINIT 32768 + +#define BRANCH_CEILING 0 +#define BRANCH_FLOOR 1 +#define BRANCH_AUTOMATIC 2 +#define BRANCH_DEFAULT 3 + +/* Action constants for simplex and B&B (internal) */ +#define ACTION_NONE 0 +#define ACTION_ACTIVE 1 +#define ACTION_REBASE 2 +#define ACTION_RECOMPUTE 4 +#define ACTION_REPRICE 8 +#define ACTION_REINVERT 16 +#define ACTION_TIMEDREINVERT 32 +#define ACTION_ITERATE 64 +#define ACTION_RESTART 255 + +/* Solver status values */ +#define UNKNOWNERROR -5 +#define DATAIGNORED -4 +#define NOBFP -3 +#define NOMEMORY -2 +#define NOTRUN -1 +#define OPTIMAL 0 +#define SUBOPTIMAL 1 +#define INFEASIBLE 2 +#define UNBOUNDED 3 +#define DEGENERATE 4 +#define NUMFAILURE 5 +#define USERABORT 6 +#define TIMEOUT 7 +#define RUNNING 8 +#define PRESOLVED 9 + +/* Branch & Bound and Lagrangean extra status values (internal) */ +#define PROCFAIL 10 +#define PROCBREAK 11 +#define FEASFOUND 12 +#define NOFEASFOUND 13 +#define FATHOMED 14 + +/* Status values internal to the solver (internal) */ +#define SWITCH_TO_PRIMAL 20 +#define SWITCH_TO_DUAL 21 +#define SINGULAR_BASIS 22 +#define LOSTFEAS 23 +#define MATRIXERROR 24 + +/* Objective testing options for "bb_better" (internal) */ +#define OF_RELAXED 0 +#define OF_INCUMBENT 1 +#define OF_WORKING 2 +#define OF_USERBREAK 3 +#define OF_HEURISTIC 4 +#define OF_DUALLIMIT 5 +#define OF_DELTA 8 /* Mode */ +#define OF_PROJECTED 16 /* Mode - future, not active */ + +#define OF_TEST_BT 1 +#define OF_TEST_BE 2 +#define OF_TEST_NE 3 +#define OF_TEST_WE 4 +#define OF_TEST_WT 5 +#define OF_TEST_RELGAP 8 /* Mode */ + + +/* Name list and sparse matrix storage parameters (internal) */ +#define MAT_START_SIZE 10000 +#define DELTACOLALLOC 100 +#define DELTAROWALLOC 100 +#define RESIZEFACTOR 4 /* Fractional increase in selected memory allocations */ + +/* Default solver parameters and tolerances (internal) */ +#define DEF_PARTIALBLOCKS 10 /* The default number of blocks for partial pricing */ +#define DEF_MAXRELAX 7 /* Maximum number of non-BB relaxations in MILP */ +#define DEF_MAXPIVOTRETRY 10 /* Maximum number of times to retry a div-0 situation */ +#define DEF_MAXSINGULARITIES 10 /* Maximum number of singularities in refactorization */ +#define MAX_MINITUPDATES 60 /* Maximum number of bound swaps between refactorizations + without recomputing the whole vector - contain errors */ +#define MIN_REFACTFREQUENCY 5 /* Refactorization frequency indicating an inherent + numerical instability of the basis */ +#define LAG_SINGULARLIMIT 5 /* Number of times the objective does not change + before it is assumed that the Lagrangean constraints + are non-binding, and therefore impossible to converge; + upper iteration limit is divided by this threshold */ +#define MIN_TIMEPIVOT 5.0e-02 /* Minimum time per pivot for reinversion optimization + purposes; use active monitoring only if a pivot + takes more than MINTIMEPIVOT seconds. 5.0e-2 is + roughly suitable for a 1GHz system. */ +#define MAX_STALLCOUNT 12 /* The absolute upper limit to the number of stalling or + cycling iterations before switching rule */ +#define MAX_RULESWITCH 5 /* The maximum number of times to try an alternate pricing rule + to recover from stalling; set negative for no limit. */ +#define DEF_TIMEDREFACT AUTOMATIC /* Default for timed refactorization in BFPs; + can be FALSE, TRUE or AUTOMATIC (dynamic) */ + +#define DEF_SCALINGLIMIT 5 /* The default maximum number of scaling iterations */ + +#define DEF_NEGRANGE -1.0e+06 /* Downward limit for expanded variable range before the + variable is split into positive and negative components */ +#define DEF_BB_LIMITLEVEL -50 /* Relative B&B limit to protect against very deep, + memory-consuming trees */ + +#define MAX_FRACSCALE 6 /* The maximum decimal scan range for simulated integers */ +#define RANDSCALE 100 /* Randomization scaling range */ +#define DOUBLEROUND 0.0e-02 /* Extra rounding scalar used in btran/ftran calculations; the + rationale for 0.0 is that prod_xA() uses rounding as well */ +#define DEF_EPSMACHINE 2.22e-16 /* Machine relative precision (doubles) */ +#define MIN_STABLEPIVOT 5.0 /* Minimum pivot magnitude assumed to be numerically stable */ + + +/* Precision macros */ +/* -------------------------------------------------------------------------------------- */ +#define PREC_REDUCEDCOST lp->epsvalue +#define PREC_IMPROVEGAP lp->epsdual +#define PREC_SUBSTFEASGAP lp->epsprimal +#if 1 + #define PREC_BASICSOLUTION lp->epsvalue /* Zero-rounding of RHS/basic solution vector */ +#else + #define PREC_BASICSOLUTION lp->epsmachine /* Zero-rounding of RHS/basic solution vector */ +#endif +#define LIMIT_ABS_REL 10.0 /* Limit for testing using relative metric */ + + +/* Parameters constants for short-cut setting of tolerances */ +/* -------------------------------------------------------------------------------------- */ +#define EPS_TIGHT 0 +#define EPS_MEDIUM 1 +#define EPS_LOOSE 2 +#define EPS_BAGGY 3 +#define EPS_DEFAULT EPS_TIGHT + + +#if ActivePARAM==ProductionPARAM /* PARAMETER SET FOR PRODUCTION */ +/* -------------------------------------------------------------------------------------- */ +#define DEF_INFINITE 1.0e+30 /* Limit for dynamic range */ +#define DEF_EPSVALUE 1.0e-12 /* High accuracy and feasibility preserving tolerance */ +#define DEF_EPSPRIMAL 1.0e-10 /* For rounding primal/RHS values to 0 */ +#define DEF_EPSDUAL 1.0e-09 /* For rounding reduced costs to 0 */ +#define DEF_EPSPIVOT 2.0e-07 /* Pivot reject threshold */ +#define DEF_PERTURB 1.0e-05 /* Perturbation scalar for degenerate problems; + must at least be RANDSCALE greater than EPSPRIMAL */ +#define DEF_EPSSOLUTION 1.0e-05 /* Margin of error for solution bounds */ +#define DEF_EPSINT 1.0e-07 /* Accuracy for considering a float value as integer */ + +#elif ActivePARAM==OriginalPARAM /* PARAMETER SET FOR LEGACY VERSIONS */ +/* -------------------------------------------------------------------------------------- */ +#define DEF_INFINITE 1.0e+24 /* Limit for dynamic range */ +#define DEF_EPSVALUE 1.0e-08 /* High accuracy and feasibility preserving tolerance */ +#define DEF_EPSPRIMAL 5.01e-07 /* For rounding primal/RHS values to 0, infeasibility */ +#define DEF_EPSDUAL 1.0e-06 /* For rounding reduced costs to 0 */ +#define DEF_EPSPIVOT 1.0e-04 /* Pivot reject threshold */ +#define DEF_PERTURB 1.0e-05 /* Perturbation scalar for degenerate problems; + must at least be RANDSCALE greater than EPSPRIMAL */ +#define DEF_EPSSOLUTION 1.0e-02 /* Margin of error for solution bounds */ +#define DEF_EPSINT 1.0e-03 /* Accuracy for considering a float value as integer */ + +#elif ActivePARAM==ChvatalPARAM /* PARAMETER SET EXAMPLES FROM Vacek Chvatal */ +/* -------------------------------------------------------------------------------------- */ +#define DEF_INFINITE 1.0e+30 /* Limit for dynamic range */ +#define DEF_EPSVALUE 1.0e-10 /* High accuracy and feasibility preserving tolerance */ +#define DEF_EPSPRIMAL 10e-07 /* For rounding primal/RHS values to 0 */ +#define DEF_EPSDUAL 10e-05 /* For rounding reduced costs to 0 */ +#define DEF_EPSPIVOT 10e-05 /* Pivot reject threshold */ +#define DEF_PERTURB 10e-03 /* Perturbation scalar for degenerate problems; + must at least be RANDSCALE greater than EPSPRIMAL */ +#define DEF_EPSSOLUTION 1.0e-05 /* Margin of error for solution bounds */ +#define DEF_EPSINT 5.0e-03 /* Accuracy for considering a float value as integer */ + +#elif ActivePARAM==LoosePARAM /* PARAMETER SET FOR LOOSE TOLERANCES */ +/* -------------------------------------------------------------------------------------- */ +#define DEF_INFINITE 1.0e+30 /* Limit for dynamic range */ +#define DEF_EPSVALUE 1.0e-10 /* High accuracy and feasibility preserving tolerance */ +#define DEF_EPSPRIMAL 5.01e-08 /* For rounding primal/RHS values to 0 */ +#define DEF_EPSDUAL 1.0e-07 /* For rounding reduced costs to 0 */ +#define DEF_EPSPIVOT 1.0e-05 /* Pivot reject threshold */ +#define DEF_PERTURB 1.0e-05 /* Perturbation scalar for degenerate problems; + must at least be RANDSCALE greater than EPSPRIMAL */ +#define DEF_EPSSOLUTION 1.0e-05 /* Margin of error for solution bounds */ +#define DEF_EPSINT 1.0e-04 /* Accuracy for considering a float value as integer */ + +#endif + + +#define DEF_MIP_GAP 1.0e-11 /* The default absolute and relative MIP gap */ +#define SCALEDINTFIXRANGE 1.6 /* Epsilon range multiplier < 2 for collapsing bounds to fix */ + +#define MIN_SCALAR 1.0e-10 /* Smallest allowed scaling adjustment */ +#define MAX_SCALAR 1.0e+10 /* Largest allowed scaling adjustment */ +#define DEF_SCALINGEPS 1.0e-02 /* Relative scaling convergence criterion for auto_scale */ + +#define DEF_LAGACCEPT 1.0e-03 /* Default Lagrangean convergence acceptance criterion */ +#define DEF_LAGCONTRACT 0.90 /* The contraction parameter for Lagrangean iterations */ +#define DEF_LAGMAXITERATIONS 100 /* The maximum number of Lagrangean iterations */ + +#define DEF_PSEUDOCOSTUPDATES 7 /* The default number of times pseudo-costs are recalculated; + experiments indicate that costs tend to stabilize */ +#define DEF_PSEUDOCOSTRESTART 0.15 /* The fraction of price updates required for B&B restart + when the mode is NODE_RESTARTMODE */ +#define DEF_MAXPRESOLVELOOPS 0 /* Upper limit to the number of loops during presolve, + <= 0 for no limit. */ + + +/* Hashing prototypes and function headers */ +/* ------------------------------------------------------------------------- */ +#include "lp_Hash.h" + + +/* Sparse matrix prototypes */ +/* ------------------------------------------------------------------------- */ +#include "lp_matrix.h" + + +/* Basis storage (mainly for B&B) */ +typedef struct _basisrec +{ + int level; + int *var_basic; + MYBOOL *is_basic; + MYBOOL *is_lower; + int pivots; + struct _basisrec *previous; +} basisrec; + +/* Presolve undo data storage */ +typedef struct _presolveundorec +{ + lprec *lp; + int orig_rows; + int orig_columns; + int orig_sum; + int *var_to_orig; /* sum_alloc+1 : Mapping of variables from solution to + best_solution to account for removed variables and + rows during presolve; a non-positive value indicates + that the constraint or variable was removed */ + int *orig_to_var; /* sum_alloc+1 : Mapping from original variable index to + current / working index number */ + REAL *fixed_rhs; /* rows_alloc+1 : Storage of values of presolved fixed colums */ + REAL *fixed_obj; /* columns_alloc+1: Storage of values of presolved fixed rows */ + DeltaVrec *deletedA; /* A matrix of eliminated data from matA */ + DeltaVrec *primalundo; /* Affine translation vectors for eliminated primal variables */ + DeltaVrec *dualundo; /* Affine translation vectors for eliminated dual variables */ + MYBOOL OFcolsdeleted; +} presolveundorec; + +/* Pseudo-cost arrays used during B&B */ +typedef struct _BBPSrec +{ + lprec *lp; + int pseodotype; + int updatelimit; + int updatesfinished; + REAL restartlimit; + MATitem *UPcost; + MATitem *LOcost; + struct _BBPSrec *secondary; +} BBPSrec; + +#include "lp_mipbb.h" + + +/* Partial pricing block data */ +typedef struct _partialrec { + lprec *lp; + int blockcount; /* ## The number of logical blocks or stages in the model */ + int blocknow; /* The currently active block */ + int *blockend; /* Array of column indeces giving the start of each block */ + int *blockpos; /* Array of column indeces giving the start scan position */ + MYBOOL isrow; +} partialrec; + + +/* Specially Ordered Sets (SOS) prototypes and settings */ +/* ------------------------------------------------------------------------- */ +/* SOS storage structure (LINEARSEARCH is typically in the 0-10 range) */ +#ifndef LINEARSEARCH +#define LINEARSEARCH 0 +#endif + +#include "lp_SOS.h" + + +/* Prototypes for user call-back functions */ +/* ------------------------------------------------------------------------- */ +typedef int (__WINAPI lphandle_intfunc)(lprec *lp, void *userhandle); +typedef void (__WINAPI lphandlestr_func)(lprec *lp, void *userhandle, char *buf); +typedef void (__WINAPI lphandleint_func)(lprec *lp, void *userhandle, int message); +typedef int (__WINAPI lphandleint_intfunc)(lprec *lp, void *userhandle, int message); + + +/* API typedef definitions */ +/* ------------------------------------------------------------------------- */ +typedef MYBOOL (__WINAPI add_column_func)(lprec *lp, REAL *column); +typedef MYBOOL (__WINAPI add_columnex_func)(lprec *lp, int count, REAL *column, int *rowno); +typedef MYBOOL (__WINAPI add_constraint_func)(lprec *lp, REAL *row, int constr_type, REAL rh); +typedef MYBOOL (__WINAPI add_constraintex_func)(lprec *lp, int count, REAL *row, int *colno, int constr_type, REAL rh); +typedef MYBOOL (__WINAPI add_lag_con_func)(lprec *lp, REAL *row, int con_type, REAL rhs); +typedef int (__WINAPI add_SOS_func)(lprec *lp, char *name, int sostype, int priority, int count, int *sosvars, REAL *weights); +typedef int (__WINAPI column_in_lp_func)(lprec *lp, REAL *column); +typedef lprec * (__WINAPI copy_lp_func)(lprec *lp); +typedef void (__WINAPI default_basis_func)(lprec *lp); +typedef MYBOOL (__WINAPI del_column_func)(lprec *lp, int colnr); +typedef MYBOOL (__WINAPI del_constraint_func)(lprec *lp, int rownr); +typedef void (__WINAPI delete_lp_func)(lprec *lp); +typedef MYBOOL (__WINAPI dualize_lp_func)(lprec *lp); +typedef void (__WINAPI free_lp_func)(lprec **plp); +typedef int (__WINAPI get_anti_degen_func)(lprec *lp); +typedef MYBOOL (__WINAPI get_basis_func)(lprec *lp, int *bascolumn, MYBOOL nonbasic); +typedef int (__WINAPI get_basiscrash_func)(lprec *lp); +typedef int (__WINAPI get_bb_depthlimit_func)(lprec *lp); +typedef int (__WINAPI get_bb_floorfirst_func)(lprec *lp); +typedef int (__WINAPI get_bb_rule_func)(lprec *lp); +typedef MYBOOL (__WINAPI get_bounds_tighter_func)(lprec *lp); +typedef REAL (__WINAPI get_break_at_value_func)(lprec *lp); +typedef char * (__WINAPI get_col_name_func)(lprec *lp, int colnr); +typedef MYBOOL (__WINAPI get_column_func)(lprec *lp, int colnr, REAL *column); +typedef int (__WINAPI get_columnex_func)(lprec *lp, int colnr, REAL *column, int *nzrow); +typedef int (__WINAPI get_constr_type_func)(lprec *lp, int rownr); +typedef REAL (__WINAPI get_constr_value_func)(lprec *lp, int rownr, int count, REAL *primsolution, int *nzindex); +typedef MYBOOL (__WINAPI get_constraints_func)(lprec *lp, REAL *constr); +typedef MYBOOL (__WINAPI get_dual_solution_func)(lprec *lp, REAL *rc); +typedef REAL (__WINAPI get_epsb_func)(lprec *lp); +typedef REAL (__WINAPI get_epsd_func)(lprec *lp); +typedef REAL (__WINAPI get_epsel_func)(lprec *lp); +typedef REAL (__WINAPI get_epsint_func)(lprec *lp); +typedef REAL (__WINAPI get_epsperturb_func)(lprec *lp); +typedef REAL (__WINAPI get_epspivot_func)(lprec *lp); +typedef int (__WINAPI get_improve_func)(lprec *lp); +typedef REAL (__WINAPI get_infinite_func)(lprec *lp); +typedef MYBOOL (__WINAPI get_lambda_func)(lprec *lp, REAL *lambda); +typedef REAL (__WINAPI get_lowbo_func)(lprec *lp, int colnr); +typedef int (__WINAPI get_lp_index_func)(lprec *lp, int orig_index); +typedef char * (__WINAPI get_lp_name_func)(lprec *lp); +typedef int (__WINAPI get_Lrows_func)(lprec *lp); +typedef REAL (__WINAPI get_mat_func)(lprec *lp, int rownr, int colnr); +typedef REAL (__WINAPI get_mat_byindex_func)(lprec *lp, int matindex, MYBOOL isrow, MYBOOL adjustsign); +typedef int (__WINAPI get_max_level_func)(lprec *lp); +typedef int (__WINAPI get_maxpivot_func)(lprec *lp); +typedef REAL (__WINAPI get_mip_gap_func)(lprec *lp, MYBOOL absolute); +typedef int (__WINAPI get_multiprice_func)(lprec *lp, MYBOOL getabssize); +typedef MYBOOL (__WINAPI is_use_names_func)(lprec *lp, MYBOOL isrow); +typedef void (__WINAPI set_use_names_func)(lprec *lp, MYBOOL isrow, MYBOOL use_names); +typedef int (__WINAPI get_nameindex_func)(lprec *lp, char *varname, MYBOOL isrow); +typedef int (__WINAPI get_Ncolumns_func)(lprec *lp); +typedef REAL (__WINAPI get_negrange_func)(lprec *lp); +typedef int (__WINAPI get_nz_func)(lprec *lp); +typedef int (__WINAPI get_Norig_columns_func)(lprec *lp); +typedef int (__WINAPI get_Norig_rows_func)(lprec *lp); +typedef int (__WINAPI get_Nrows_func)(lprec *lp); +typedef REAL (__WINAPI get_obj_bound_func)(lprec *lp); +typedef REAL (__WINAPI get_objective_func)(lprec *lp); +typedef int (__WINAPI get_orig_index_func)(lprec *lp, int lp_index); +typedef char * (__WINAPI get_origcol_name_func)(lprec *lp, int colnr); +typedef char * (__WINAPI get_origrow_name_func)(lprec *lp, int rownr); +typedef void (__WINAPI get_partialprice_func)(lprec *lp, int *blockcount, int *blockstart, MYBOOL isrow); +typedef int (__WINAPI get_pivoting_func)(lprec *lp); +typedef int (__WINAPI get_presolve_func)(lprec *lp); +typedef int (__WINAPI get_presolveloops_func)(lprec *lp); +typedef MYBOOL (__WINAPI get_primal_solution_func)(lprec *lp, REAL *pv); +typedef int (__WINAPI get_print_sol_func)(lprec *lp); +typedef MYBOOL (__WINAPI get_pseudocosts_func)(lprec *lp, REAL *clower, REAL *cupper, int *updatelimit); +typedef MYBOOL (__WINAPI get_ptr_constraints_func)(lprec *lp, REAL **constr); +typedef MYBOOL (__WINAPI get_ptr_dual_solution_func)(lprec *lp, REAL **rc); +typedef MYBOOL (__WINAPI get_ptr_lambda_func)(lprec *lp, REAL **lambda); +typedef MYBOOL (__WINAPI get_ptr_primal_solution_func)(lprec *lp, REAL **pv); +typedef MYBOOL (__WINAPI get_ptr_sensitivity_obj_func)(lprec *lp, REAL **objfrom, REAL **objtill); +typedef MYBOOL (__WINAPI get_ptr_sensitivity_objex_func)(lprec *lp, REAL **objfrom, REAL **objtill, REAL **objfromvalue, REAL **objtillvalue); +typedef MYBOOL (__WINAPI get_ptr_sensitivity_rhs_func)(lprec *lp, REAL **duals, REAL **dualsfrom, REAL **dualstill); +typedef MYBOOL (__WINAPI get_ptr_variables_func)(lprec *lp, REAL **var); +typedef REAL (__WINAPI get_rh_func)(lprec *lp, int rownr); +typedef REAL (__WINAPI get_rh_range_func)(lprec *lp, int rownr); +typedef int (__WINAPI get_rowex_func)(lprec *lp, int rownr, REAL *row, int *colno); +typedef MYBOOL (__WINAPI get_row_func)(lprec *lp, int rownr, REAL *row); +typedef char * (__WINAPI get_row_name_func)(lprec *lp, int rownr); +typedef REAL (__WINAPI get_scalelimit_func)(lprec *lp); +typedef int (__WINAPI get_scaling_func)(lprec *lp); +typedef MYBOOL (__WINAPI get_sensitivity_obj_func)(lprec *lp, REAL *objfrom, REAL *objtill); +typedef MYBOOL (__WINAPI get_sensitivity_objex_func)(lprec *lp, REAL *objfrom, REAL *objtill, REAL *objfromvalue, REAL *objtillvalue); +typedef MYBOOL (__WINAPI get_sensitivity_rhs_func)(lprec *lp, REAL *duals, REAL *dualsfrom, REAL *dualstill); +typedef int (__WINAPI get_simplextype_func)(lprec *lp); +typedef int (__WINAPI get_solutioncount_func)(lprec *lp); +typedef int (__WINAPI get_solutionlimit_func)(lprec *lp); +typedef int (__WINAPI get_status_func)(lprec *lp); +typedef char * (__WINAPI get_statustext_func)(lprec *lp, int statuscode); +typedef long (__WINAPI get_timeout_func)(lprec *lp); +typedef COUNTER (__WINAPI get_total_iter_func)(lprec *lp); +typedef COUNTER (__WINAPI get_total_nodes_func)(lprec *lp); +typedef REAL (__WINAPI get_upbo_func)(lprec *lp, int colnr); +typedef int (__WINAPI get_var_branch_func)(lprec *lp, int colnr); +typedef REAL (__WINAPI get_var_dualresult_func)(lprec *lp, int index); +typedef REAL (__WINAPI get_var_primalresult_func)(lprec *lp, int index); +typedef int (__WINAPI get_var_priority_func)(lprec *lp, int colnr); +typedef MYBOOL (__WINAPI get_variables_func)(lprec *lp, REAL *var); +typedef int (__WINAPI get_verbose_func)(lprec *lp); +typedef MYBOOL (__WINAPI guess_basis_func)(lprec *lp, REAL *guessvector, int *basisvector); +typedef REAL (__WINAPI get_working_objective_func)(lprec *lp); +typedef MYBOOL (__WINAPI has_BFP_func)(lprec *lp); +typedef MYBOOL (__WINAPI has_XLI_func)(lprec *lp); +typedef MYBOOL (__WINAPI is_add_rowmode_func)(lprec *lp); +typedef MYBOOL (__WINAPI is_anti_degen_func)(lprec *lp, int testmask); +typedef MYBOOL (__WINAPI is_binary_func)(lprec *lp, int colnr); +typedef MYBOOL (__WINAPI is_break_at_first_func)(lprec *lp); +typedef MYBOOL (__WINAPI is_constr_type_func)(lprec *lp, int rownr, int mask); +typedef MYBOOL (__WINAPI is_debug_func)(lprec *lp); +typedef MYBOOL (__WINAPI is_feasible_func)(lprec *lp, REAL *values, REAL threshold); +typedef MYBOOL (__WINAPI is_unbounded_func)(lprec *lp, int colnr); +typedef MYBOOL (__WINAPI is_infinite_func)(lprec *lp, REAL value); +typedef MYBOOL (__WINAPI is_int_func)(lprec *lp, int column); +typedef MYBOOL (__WINAPI is_integerscaling_func)(lprec *lp); +typedef MYBOOL (__WINAPI is_lag_trace_func)(lprec *lp); +typedef MYBOOL (__WINAPI is_maxim_func)(lprec *lp); +typedef MYBOOL (__WINAPI is_nativeBFP_func)(lprec *lp); +typedef MYBOOL (__WINAPI is_nativeXLI_func)(lprec *lp); +typedef MYBOOL (__WINAPI is_negative_func)(lprec *lp, int colnr); +typedef MYBOOL (__WINAPI is_obj_in_basis_func)(lprec *lp); +typedef MYBOOL (__WINAPI is_piv_mode_func)(lprec *lp, int testmask); +typedef MYBOOL (__WINAPI is_piv_rule_func)(lprec *lp, int rule); +typedef MYBOOL (__WINAPI is_presolve_func)(lprec *lp, int testmask); +typedef MYBOOL (__WINAPI is_scalemode_func)(lprec *lp, int testmask); +typedef MYBOOL (__WINAPI is_scaletype_func)(lprec *lp, int scaletype); +typedef MYBOOL (__WINAPI is_semicont_func)(lprec *lp, int colnr); +typedef MYBOOL (__WINAPI is_SOS_var_func)(lprec *lp, int colnr); +typedef MYBOOL (__WINAPI is_trace_func)(lprec *lp); +typedef void (__WINAPI lp_solve_version_func)(int *majorversion, int *minorversion, int *release, int *build); +typedef lprec * (__WINAPI make_lp_func)(int rows, int columns); +typedef void (__WINAPI print_constraints_func)(lprec *lp, int columns); +typedef MYBOOL (__WINAPI print_debugdump_func)(lprec *lp, char *filename); +typedef void (__WINAPI print_duals_func)(lprec *lp); +typedef void (__WINAPI print_lp_func)(lprec *lp); +typedef void (__WINAPI print_objective_func)(lprec *lp); +typedef void (__WINAPI print_scales_func)(lprec *lp); +typedef void (__WINAPI print_solution_func)(lprec *lp, int columns); +typedef void (__WINAPI print_str_func)(lprec *lp, char *str); +typedef void (__WINAPI print_tableau_func)(lprec *lp); +typedef void (__WINAPI put_abortfunc_func)(lprec *lp, lphandle_intfunc newctrlc, void *ctrlchandle); +typedef void (__WINAPI put_bb_nodefunc_func)(lprec *lp, lphandleint_intfunc newnode, void *bbnodehandle); +typedef void (__WINAPI put_bb_branchfunc_func)(lprec *lp, lphandleint_intfunc newbranch, void *bbbranchhandle); +typedef void (__WINAPI put_logfunc_func)(lprec *lp, lphandlestr_func newlog, void *loghandle); +typedef void (__WINAPI put_msgfunc_func)(lprec *lp, lphandleint_func newmsg, void *msghandle, int mask); +typedef lprec * (__WINAPI read_LP_func)(char *filename, int verbose, char *lp_name); +typedef lprec * (__WINAPI read_MPS_func)(char *filename, int options); +typedef lprec * (__WINAPI read_XLI_func)(char *xliname, char *modelname, char *dataname, char *options, int verbose); +typedef MYBOOL (__WINAPI read_basis_func)(lprec *lp, char *filename, char *info); +typedef void (__WINAPI reset_basis_func)(lprec *lp); +typedef MYBOOL (__WINAPI read_params_func)(lprec *lp, char *filename, char *options); +typedef void (__WINAPI reset_params_func)(lprec *lp); +typedef MYBOOL (__WINAPI resize_lp_func)(lprec *lp, int rows, int columns); +typedef MYBOOL (__WINAPI set_add_rowmode_func)(lprec *lp, MYBOOL turnon); +typedef void (__WINAPI set_anti_degen_func)(lprec *lp, int anti_degen); +typedef int (__WINAPI set_basisvar_func)(lprec *lp, int basisPos, int enteringCol); +typedef MYBOOL (__WINAPI set_basis_func)(lprec *lp, int *bascolumn, MYBOOL nonbasic); +typedef void (__WINAPI set_basiscrash_func)(lprec *lp, int mode); +typedef void (__WINAPI set_bb_depthlimit_func)(lprec *lp, int bb_maxlevel); +typedef void (__WINAPI set_bb_floorfirst_func)(lprec *lp, int bb_floorfirst); +typedef void (__WINAPI set_bb_rule_func)(lprec *lp, int bb_rule); +typedef MYBOOL (__WINAPI set_BFP_func)(lprec *lp, char *filename); +typedef MYBOOL (__WINAPI set_binary_func)(lprec *lp, int colnr, MYBOOL must_be_bin); +typedef MYBOOL (__WINAPI set_bounds_func)(lprec *lp, int colnr, REAL lower, REAL upper); +typedef void (__WINAPI set_bounds_tighter_func)(lprec *lp, MYBOOL tighten); +typedef void (__WINAPI set_break_at_first_func)(lprec *lp, MYBOOL break_at_first); +typedef void (__WINAPI set_break_at_value_func)(lprec *lp, REAL break_at_value); +typedef MYBOOL (__WINAPI set_column_func)(lprec *lp, int colnr, REAL *column); +typedef MYBOOL (__WINAPI set_columnex_func)(lprec *lp, int colnr, int count, REAL *column, int *rowno); +typedef MYBOOL (__WINAPI set_col_name_func)(lprec *lp, int colnr, char *new_name); +typedef MYBOOL (__WINAPI set_constr_type_func)(lprec *lp, int rownr, int con_type); +typedef void (__WINAPI set_debug_func)(lprec *lp, MYBOOL debug); +typedef void (__WINAPI set_epsb_func)(lprec *lp, REAL epsb); +typedef void (__WINAPI set_epsd_func)(lprec *lp, REAL epsd); +typedef void (__WINAPI set_epsel_func)(lprec *lp, REAL epsel); +typedef void (__WINAPI set_epsint_func)(lprec *lp, REAL epsint); +typedef MYBOOL (__WINAPI set_epslevel_func)(lprec *lp, int epslevel); +typedef void (__WINAPI set_epsperturb_func)(lprec *lp, REAL epsperturb); +typedef void (__WINAPI set_epspivot_func)(lprec *lp, REAL epspivot); +typedef MYBOOL (__WINAPI set_unbounded_func)(lprec *lp, int colnr); +typedef void (__WINAPI set_improve_func)(lprec *lp, int improve); +typedef void (__WINAPI set_infinite_func)(lprec *lp, REAL infinite); +typedef MYBOOL (__WINAPI set_int_func)(lprec *lp, int colnr, MYBOOL must_be_int); +typedef void (__WINAPI set_lag_trace_func)(lprec *lp, MYBOOL lag_trace); +typedef MYBOOL (__WINAPI set_lowbo_func)(lprec *lp, int colnr, REAL value); +typedef MYBOOL (__WINAPI set_lp_name_func)(lprec *lp, char *lpname); +typedef MYBOOL (__WINAPI set_mat_func)(lprec *lp, int row, int column, REAL value); +typedef void (__WINAPI set_maxim_func)(lprec *lp); +typedef void (__WINAPI set_maxpivot_func)(lprec *lp, int max_num_inv); +typedef void (__WINAPI set_minim_func)(lprec *lp); +typedef void (__WINAPI set_mip_gap_func)(lprec *lp, MYBOOL absolute, REAL mip_gap); +typedef MYBOOL (__WINAPI set_multiprice_func)(lprec *lp, int multiblockdiv); +typedef void (__WINAPI set_negrange_func)(lprec *lp, REAL negrange); +typedef MYBOOL (__WINAPI set_obj_func)(lprec *lp, int colnr, REAL value); +typedef void (__WINAPI set_obj_bound_func)(lprec *lp, REAL obj_bound); +typedef MYBOOL (__WINAPI set_obj_fn_func)(lprec *lp, REAL *row); +typedef MYBOOL (__WINAPI set_obj_fnex_func)(lprec *lp, int count, REAL *row, int *colno); +typedef void (__WINAPI set_obj_in_basis_func)(lprec *lp, MYBOOL obj_in_basis); +typedef MYBOOL (__WINAPI set_outputfile_func)(lprec *lp, char *filename); +typedef void (__WINAPI set_outputstream_func)(lprec *lp, FILE *stream); +typedef MYBOOL (__WINAPI set_partialprice_func)(lprec *lp, int blockcount, int *blockstart, MYBOOL isrow); +typedef void (__WINAPI set_pivoting_func)(lprec *lp, int piv_rule); +typedef void (__WINAPI set_preferdual_func)(lprec *lp, MYBOOL dodual); +typedef void (__WINAPI set_presolve_func)(lprec *lp, int presolvemode, int maxloops); +typedef void (__WINAPI set_print_sol_func)(lprec *lp, int print_sol); +typedef MYBOOL (__WINAPI set_pseudocosts_func)(lprec *lp, REAL *clower, REAL *cupper, int *updatelimit); +typedef MYBOOL (__WINAPI set_rh_func)(lprec *lp, int rownr, REAL value); +typedef MYBOOL (__WINAPI set_rh_range_func)(lprec *lp, int rownr, REAL deltavalue); +typedef void (__WINAPI set_rh_vec_func)(lprec *lp, REAL *rh); +typedef MYBOOL (__WINAPI set_row_func)(lprec *lp, int rownr, REAL *row); +typedef MYBOOL (__WINAPI set_rowex_func)(lprec *lp, int rownr, int count, REAL *row, int *colno); +typedef MYBOOL (__WINAPI set_row_name_func)(lprec *lp, int rownr, char *new_name); +typedef void (__WINAPI set_scalelimit_func)(lprec *lp, REAL scalelimit); +typedef void (__WINAPI set_scaling_func)(lprec *lp, int scalemode); +typedef MYBOOL (__WINAPI set_semicont_func)(lprec *lp, int colnr, MYBOOL must_be_sc); +typedef void (__WINAPI set_sense_func)(lprec *lp, MYBOOL maximize); +typedef void (__WINAPI set_simplextype_func)(lprec *lp, int simplextype); +typedef void (__WINAPI set_solutionlimit_func)(lprec *lp, int limit); +typedef void (__WINAPI set_timeout_func)(lprec *lp, long sectimeout); +typedef void (__WINAPI set_trace_func)(lprec *lp, MYBOOL trace); +typedef MYBOOL (__WINAPI set_upbo_func)(lprec *lp, int colnr, REAL value); +typedef MYBOOL (__WINAPI set_var_branch_func)(lprec *lp, int colnr, int branch_mode); +typedef MYBOOL (__WINAPI set_var_weights_func)(lprec *lp, REAL *weights); +typedef void (__WINAPI set_verbose_func)(lprec *lp, int verbose); +typedef MYBOOL (__WINAPI set_XLI_func)(lprec *lp, char *filename); +typedef int (__WINAPI solve_func)(lprec *lp); +typedef MYBOOL (__WINAPI str_add_column_func)(lprec *lp, char *col_string); +typedef MYBOOL (__WINAPI str_add_constraint_func)(lprec *lp, char *row_string ,int constr_type, REAL rh); +typedef MYBOOL (__WINAPI str_add_lag_con_func)(lprec *lp, char *row_string, int con_type, REAL rhs); +typedef MYBOOL (__WINAPI str_set_obj_fn_func)(lprec *lp, char *row_string); +typedef MYBOOL (__WINAPI str_set_rh_vec_func)(lprec *lp, char *rh_string); +typedef REAL (__WINAPI time_elapsed_func)(lprec *lp); +typedef void (__WINAPI unscale_func)(lprec *lp); +typedef MYBOOL (__WINAPI write_lp_func)(lprec *lp, char *filename); +typedef MYBOOL (__WINAPI write_LP_func)(lprec *lp, FILE *output); +typedef MYBOOL (__WINAPI write_mps_func)(lprec *lp, char *filename); +typedef MYBOOL (__WINAPI write_MPS_func)(lprec *lp, FILE *output); +typedef MYBOOL (__WINAPI write_freemps_func)(lprec *lp, char *filename); +typedef MYBOOL (__WINAPI write_freeMPS_func)(lprec *lp, FILE *output); +typedef MYBOOL (__WINAPI write_XLI_func)(lprec *lp, char *filename, char *options, MYBOOL results); +typedef MYBOOL (__WINAPI write_basis_func)(lprec *lp, char *filename); +typedef MYBOOL (__WINAPI write_params_func)(lprec *lp, char *filename, char *options); + + +/* Prototypes for callbacks from basis inverse/factorization libraries */ +/* ------------------------------------------------------------------------- */ +typedef MYBOOL (__WINAPI userabortfunc)(lprec *lp, int level); +typedef void (__VACALL reportfunc)(lprec *lp, int level, char *format, ...); +typedef char * (__VACALL explainfunc)(lprec *lp, char *format, ...); +typedef int (__WINAPI getvectorfunc)(lprec *lp, int varin, REAL *pcol, int *nzlist, int *maxabs); +typedef int (__WINAPI getpackedfunc)(lprec *lp, int j, int rn[], double bj[]); +typedef REAL (__WINAPI get_OF_activefunc)(lprec *lp, int varnr, REAL mult); +typedef int (__WINAPI getMDOfunc)(lprec *lp, MYBOOL *usedpos, int *colorder, int *size, MYBOOL symmetric); +typedef MYBOOL (__WINAPI invertfunc)(lprec *lp, MYBOOL shiftbounds, MYBOOL final); +typedef void (__WINAPI set_actionfunc)(int *actionvar, int actionmask); +typedef MYBOOL (__WINAPI is_actionfunc)(int actionvar, int testmask); +typedef void (__WINAPI clear_actionfunc)(int *actionvar, int actionmask); + + +/* Prototypes for basis inverse/factorization libraries */ +/* ------------------------------------------------------------------------- */ +typedef char *(BFP_CALLMODEL BFPchar)(void); +typedef void (BFP_CALLMODEL BFP_lp)(lprec *lp); +typedef void (BFP_CALLMODEL BFP_lpint)(lprec *lp, int newsize); +typedef int (BFP_CALLMODEL BFPint_lp)(lprec *lp); +typedef int (BFP_CALLMODEL BFPint_lpint)(lprec *lp, int kind); +typedef REAL (BFP_CALLMODEL BFPreal_lp)(lprec *lp); +typedef REAL *(BFP_CALLMODEL BFPrealp_lp)(lprec *lp); +typedef void (BFP_CALLMODEL BFP_lpbool)(lprec *lp, MYBOOL maximum); +typedef int (BFP_CALLMODEL BFPint_lpbool)(lprec *lp, MYBOOL maximum); +typedef int (BFP_CALLMODEL BFPint_lpintintboolbool)(lprec *lp, int uservars, int Bsize, MYBOOL *usedpos, MYBOOL final); +typedef void (BFP_CALLMODEL BFP_lprealint)(lprec *lp, REAL *pcol, int *nzidx); +typedef void (BFP_CALLMODEL BFP_lprealintrealint)(lprec *lp, REAL *prow, int *pnzidx, REAL *drow, int *dnzidx); +typedef MYBOOL (BFP_CALLMODEL BFPbool_lp)(lprec *lp); +typedef MYBOOL (BFP_CALLMODEL BFPbool_lpbool)(lprec *lp, MYBOOL changesign); +typedef MYBOOL (BFP_CALLMODEL BFPbool_lpint)(lprec *lp, int size); +typedef MYBOOL (BFP_CALLMODEL BFPbool_lpintintchar)(lprec *lp, int size, int deltasize, char *options); +typedef MYBOOL (BFP_CALLMODEL BFPbool_lpintintint)(lprec *lp, int size, int deltasize, int sizeofvar); +typedef LREAL (BFP_CALLMODEL BFPlreal_lpintintreal)(lprec *lp, int row_nr, int col_nr, REAL *pcol); +typedef REAL (BFP_CALLMODEL BFPreal_lplrealreal)(lprec *lp, LREAL theta, REAL *pcol); + +typedef int (BFP_CALLMODEL getcolumnex_func)(lprec *lp, int colnr, REAL *nzvalues, int *nzrows, int *mapin); +typedef int (BFP_CALLMODEL BFPint_lpintrealcbintint)(lprec *lp, int items, getcolumnex_func cb, int *maprow, int*mapcol); + +/* Prototypes for external language libraries */ +/* ------------------------------------------------------------------------- */ +typedef char *(XLI_CALLMODEL XLIchar)(void); +typedef MYBOOL (XLI_CALLMODEL XLIbool_lpintintint)(lprec* lp, int size, int deltasize, int sizevar); +typedef MYBOOL (XLI_CALLMODEL XLIbool_lpcharcharcharint)(lprec *lp, char *modelname, char *dataname, char *options, int verbose); +typedef MYBOOL (XLI_CALLMODEL XLIbool_lpcharcharbool)(lprec *lp, char *filename, char *options, MYBOOL results); + + +/* Main lp_solve prototypes and function definitions */ +/* ------------------------------------------------------------------------- */ +struct _lprec +{ + /* Full list of exported functions made available in a quasi object-oriented fashion */ + add_column_func *add_column; + add_columnex_func *add_columnex; + add_constraint_func *add_constraint; + add_constraintex_func *add_constraintex; + add_lag_con_func *add_lag_con; + add_SOS_func *add_SOS; + column_in_lp_func *column_in_lp; + copy_lp_func *copy_lp; + default_basis_func *default_basis; + del_column_func *del_column; + del_constraint_func *del_constraint; + delete_lp_func *delete_lp; + dualize_lp_func *dualize_lp; + free_lp_func *free_lp; + get_anti_degen_func *get_anti_degen; + get_basis_func *get_basis; + get_basiscrash_func *get_basiscrash; + get_bb_depthlimit_func *get_bb_depthlimit; + get_bb_floorfirst_func *get_bb_floorfirst; + get_bb_rule_func *get_bb_rule; + get_bounds_tighter_func *get_bounds_tighter; + get_break_at_value_func *get_break_at_value; + get_col_name_func *get_col_name; + get_columnex_func *get_columnex; + get_constr_type_func *get_constr_type; + get_constr_value_func *get_constr_value; + get_constraints_func *get_constraints; + get_dual_solution_func *get_dual_solution; + get_epsb_func *get_epsb; + get_epsd_func *get_epsd; + get_epsel_func *get_epsel; + get_epsint_func *get_epsint; + get_epsperturb_func *get_epsperturb; + get_epspivot_func *get_epspivot; + get_improve_func *get_improve; + get_infinite_func *get_infinite; + get_lambda_func *get_lambda; + get_lowbo_func *get_lowbo; + get_lp_index_func *get_lp_index; + get_lp_name_func *get_lp_name; + get_Lrows_func *get_Lrows; + get_mat_func *get_mat; + get_mat_byindex_func *get_mat_byindex; + get_max_level_func *get_max_level; + get_maxpivot_func *get_maxpivot; + get_mip_gap_func *get_mip_gap; + get_multiprice_func *get_multiprice; + get_nameindex_func *get_nameindex; + get_Ncolumns_func *get_Ncolumns; + get_negrange_func *get_negrange; + get_nz_func *get_nonzeros; + get_Norig_columns_func *get_Norig_columns; + get_Norig_rows_func *get_Norig_rows; + get_Nrows_func *get_Nrows; + get_obj_bound_func *get_obj_bound; + get_objective_func *get_objective; + get_orig_index_func *get_orig_index; + get_origcol_name_func *get_origcol_name; + get_origrow_name_func *get_origrow_name; + get_partialprice_func *get_partialprice; + get_pivoting_func *get_pivoting; + get_presolve_func *get_presolve; + get_presolveloops_func *get_presolveloops; + get_primal_solution_func *get_primal_solution; + get_print_sol_func *get_print_sol; + get_pseudocosts_func *get_pseudocosts; + get_ptr_constraints_func *get_ptr_constraints; + get_ptr_dual_solution_func *get_ptr_dual_solution; + get_ptr_lambda_func *get_ptr_lambda; + get_ptr_primal_solution_func *get_ptr_primal_solution; + get_ptr_sensitivity_obj_func *get_ptr_sensitivity_obj; + get_ptr_sensitivity_objex_func *get_ptr_sensitivity_objex; + get_ptr_sensitivity_rhs_func *get_ptr_sensitivity_rhs; + get_ptr_variables_func *get_ptr_variables; + get_rh_func *get_rh; + get_rh_range_func *get_rh_range; + get_row_func *get_row; + get_rowex_func *get_rowex; + get_row_name_func *get_row_name; + get_scalelimit_func *get_scalelimit; + get_scaling_func *get_scaling; + get_sensitivity_obj_func *get_sensitivity_obj; + get_sensitivity_objex_func *get_sensitivity_objex; + get_sensitivity_rhs_func *get_sensitivity_rhs; + get_simplextype_func *get_simplextype; + get_solutioncount_func *get_solutioncount; + get_solutionlimit_func *get_solutionlimit; + get_status_func *get_status; + get_statustext_func *get_statustext; + get_timeout_func *get_timeout; + get_total_iter_func *get_total_iter; + get_total_nodes_func *get_total_nodes; + get_upbo_func *get_upbo; + get_var_branch_func *get_var_branch; + get_var_dualresult_func *get_var_dualresult; + get_var_primalresult_func *get_var_primalresult; + get_var_priority_func *get_var_priority; + get_variables_func *get_variables; + get_verbose_func *get_verbose; + get_working_objective_func *get_working_objective; + has_BFP_func *has_BFP; + has_XLI_func *has_XLI; + is_add_rowmode_func *is_add_rowmode; + is_anti_degen_func *is_anti_degen; + is_binary_func *is_binary; + is_break_at_first_func *is_break_at_first; + is_constr_type_func *is_constr_type; + is_debug_func *is_debug; + is_feasible_func *is_feasible; + is_infinite_func *is_infinite; + is_int_func *is_int; + is_integerscaling_func *is_integerscaling; + is_lag_trace_func *is_lag_trace; + is_maxim_func *is_maxim; + is_nativeBFP_func *is_nativeBFP; + is_nativeXLI_func *is_nativeXLI; + is_negative_func *is_negative; + is_obj_in_basis_func *is_obj_in_basis; + is_piv_mode_func *is_piv_mode; + is_piv_rule_func *is_piv_rule; + is_presolve_func *is_presolve; + is_scalemode_func *is_scalemode; + is_scaletype_func *is_scaletype; + is_semicont_func *is_semicont; + is_SOS_var_func *is_SOS_var; + is_trace_func *is_trace; + is_unbounded_func *is_unbounded; + is_use_names_func *is_use_names; + lp_solve_version_func *lp_solve_version; + make_lp_func *make_lp; + print_constraints_func *print_constraints; + print_debugdump_func *print_debugdump; + print_duals_func *print_duals; + print_lp_func *print_lp; + print_objective_func *print_objective; + print_scales_func *print_scales; + print_solution_func *print_solution; + print_str_func *print_str; + print_tableau_func *print_tableau; + put_abortfunc_func *put_abortfunc; + put_bb_nodefunc_func *put_bb_nodefunc; + put_bb_branchfunc_func *put_bb_branchfunc; + put_logfunc_func *put_logfunc; + put_msgfunc_func *put_msgfunc; + read_LP_func *read_LP; + read_MPS_func *read_MPS; + read_XLI_func *read_XLI; + read_params_func *read_params; + read_basis_func *read_basis; + reset_basis_func *reset_basis; + reset_params_func *reset_params; + resize_lp_func *resize_lp; + set_add_rowmode_func *set_add_rowmode; + set_anti_degen_func *set_anti_degen; + set_basisvar_func *set_basisvar; + set_basis_func *set_basis; + set_basiscrash_func *set_basiscrash; + set_bb_depthlimit_func *set_bb_depthlimit; + set_bb_floorfirst_func *set_bb_floorfirst; + set_bb_rule_func *set_bb_rule; + set_BFP_func *set_BFP; + set_binary_func *set_binary; + set_bounds_func *set_bounds; + set_bounds_tighter_func *set_bounds_tighter; + set_break_at_first_func *set_break_at_first; + set_break_at_value_func *set_break_at_value; + set_column_func *set_column; + set_columnex_func *set_columnex; + set_col_name_func *set_col_name; + set_constr_type_func *set_constr_type; + set_debug_func *set_debug; + set_epsb_func *set_epsb; + set_epsd_func *set_epsd; + set_epsel_func *set_epsel; + set_epsint_func *set_epsint; + set_epslevel_func *set_epslevel; + set_epsperturb_func *set_epsperturb; + set_epspivot_func *set_epspivot; + set_unbounded_func *set_unbounded; + set_improve_func *set_improve; + set_infinite_func *set_infinite; + set_int_func *set_int; + set_lag_trace_func *set_lag_trace; + set_lowbo_func *set_lowbo; + set_lp_name_func *set_lp_name; + set_mat_func *set_mat; + set_maxim_func *set_maxim; + set_maxpivot_func *set_maxpivot; + set_minim_func *set_minim; + set_mip_gap_func *set_mip_gap; + set_multiprice_func *set_multiprice; + set_negrange_func *set_negrange; + set_obj_bound_func *set_obj_bound; + set_obj_fn_func *set_obj_fn; + set_obj_fnex_func *set_obj_fnex; + set_obj_func *set_obj; + set_obj_in_basis_func *set_obj_in_basis; + set_outputfile_func *set_outputfile; + set_outputstream_func *set_outputstream; + set_partialprice_func *set_partialprice; + set_pivoting_func *set_pivoting; + set_preferdual_func *set_preferdual; + set_presolve_func *set_presolve; + set_print_sol_func *set_print_sol; + set_pseudocosts_func *set_pseudocosts; + set_rh_func *set_rh; + set_rh_range_func *set_rh_range; + set_rh_vec_func *set_rh_vec; + set_row_func *set_row; + set_rowex_func *set_rowex; + set_row_name_func *set_row_name; + set_scalelimit_func *set_scalelimit; + set_scaling_func *set_scaling; + set_semicont_func *set_semicont; + set_sense_func *set_sense; + set_simplextype_func *set_simplextype; + set_solutionlimit_func *set_solutionlimit; + set_timeout_func *set_timeout; + set_trace_func *set_trace; + set_upbo_func *set_upbo; + set_use_names_func *set_use_names; + set_var_branch_func *set_var_branch; + set_var_weights_func *set_var_weights; + set_verbose_func *set_verbose; + set_XLI_func *set_XLI; + solve_func *solve; + str_add_column_func *str_add_column; + str_add_constraint_func *str_add_constraint; + str_add_lag_con_func *str_add_lag_con; + str_set_obj_fn_func *str_set_obj_fn; + str_set_rh_vec_func *str_set_rh_vec; + time_elapsed_func *time_elapsed; + unscale_func *unscale; + write_lp_func *write_lp; + write_LP_func *write_LP; + write_mps_func *write_mps; + write_MPS_func *write_MPS; + write_freemps_func *write_freemps; + write_freeMPS_func *write_freeMPS; + write_XLI_func *write_XLI; + write_basis_func *write_basis; + write_params_func *write_params; + + /* Spacer */ + int *alignmentspacer; + + /* Problem description */ + char *lp_name; /* The name of the model */ + + /* Problem sizes */ + int sum; /* The total number of variables, including slacks */ + int rows; + int columns; + int equalities; /* No of non-Lagrangean equality constraints in the problem */ + int boundedvars; /* Count of bounded variables */ + int INTfuture1; + + /* Memory allocation sizes */ + int sum_alloc; /* The allocated memory for row+column-sized data */ + int rows_alloc; /* The allocated memory for row-sized data */ + int columns_alloc; /* The allocated memory for column-sized data */ + + /* Model status and solver result variables */ + MYBOOL source_is_file; /* The base model was read from a file */ + MYBOOL model_is_pure; /* The model has been built entirely from row and column additions */ + MYBOOL model_is_valid; /* Has this lp pased the 'test' */ + MYBOOL tighten_on_set; /* Specify if bounds will be tightened or overriden at bound setting */ + MYBOOL names_used; /* Flag to indicate if names for rows and columns are used */ + MYBOOL use_row_names; /* Flag to indicate if names for rows are used */ + MYBOOL use_col_names; /* Flag to indicate if names for columns are used */ + + MYBOOL lag_trace; /* Print information on Lagrange progression */ + MYBOOL spx_trace; /* Print information on simplex progression */ + MYBOOL bb_trace; /* TRUE to print extra debug information */ + MYBOOL streamowned; /* TRUE if the handle should be closed at delete_lp() */ + MYBOOL obj_in_basis; /* TRUE if the objective function is in the basis matrix */ + + int spx_status; /* Simplex solver feasibility/mode code */ + int lag_status; /* Extra status variable for lag_solve */ + int solutioncount; /* number of equal-valued solutions found (up to solutionlimit) */ + int solutionlimit; /* upper number of equal-valued solutions kept track of */ + + REAL real_solution; /* Optimal non-MIP solution base */ + REAL *solution; /* sum_alloc+1 : Solution array of the next to optimal LP, + Index 0 : Objective function value, + Indeces 1..rows : Slack variable values, + Indeced rows+1..sum : Variable values */ + REAL *best_solution; /* sum_alloc+1 : Solution array of optimal 'Integer' LP, + structured as the solution array above */ + REAL *full_solution; /* sum_alloc+1 : Final solution array expanded for deleted variables */ + REAL *edgeVector; /* Array of reduced cost scaling norms (DEVEX and Steepest Edge) */ + + REAL *drow; /* sum+1: Reduced costs of the last simplex */ + int *nzdrow; /* sum+1: Indeces of non-zero reduced costs of the last simplex */ + REAL *duals; /* rows_alloc+1 : The dual variables of the last LP */ + REAL *full_duals; /* sum_alloc+1: Final duals array expanded for deleted variables */ + REAL *dualsfrom; /* sum_alloc+1 :The sensitivity on dual variables/reduced costs + of the last LP */ + REAL *dualstill; /* sum_alloc+1 :The sensitivity on dual variables/reduced costs + of the last LP */ + REAL *objfrom; /* columns_alloc+1 :The sensitivity on objective function + of the last LP */ + REAL *objtill; /* columns_alloc+1 :The sensitivity on objective function + of the last LP */ + REAL *objfromvalue; /* columns_alloc+1 :The value of the variables when objective value + is at its from value of the last LP */ + REAL *orig_obj; /* Unused pointer - Placeholder for OF not part of B */ + REAL *obj; /* Special vector used to temporarily change the OF vector */ + + COUNTER current_iter; /* Number of iterations in the current/last simplex */ + COUNTER total_iter; /* Number of iterations over all B&B steps */ + COUNTER current_bswap; /* Number of bound swaps in the current/last simplex */ + COUNTER total_bswap; /* Number of bount swaps over all B&B steps */ + int solvecount; /* The number of solve() performed in this model */ + int max_pivots; /* Number of pivots between refactorizations of the basis */ + + /* Various execution parameters */ + int simplex_strategy; /* Set desired combination of primal and dual simplex algorithms */ + int simplex_mode; /* Specifies the current simplex mode during solve; see simplex_strategy */ + int verbose; /* Set amount of run-time messages and results */ + int print_sol; /* TRUE to print optimal solution; AUTOMATIC skips zeros */ + FILE *outstream; /* Output stream, initialized to STDOUT */ + + /* Main Branch and Bound settings */ + MYBOOL *bb_varbranch; /* Determines branching strategy at the individual variable level; + the setting here overrides the bb_floorfirst setting */ + int piv_strategy; /* Strategy for selecting row and column entering/leaving */ + int _piv_rule_; /* Internal working rule-part of piv_strategy above */ + int bb_rule; /* Rule for selecting B&B variables */ + MYBOOL bb_floorfirst; /* Set BRANCH_FLOOR for B&B to set variables to floor bound first; + conversely with BRANCH_CEILING, the ceiling value is set first */ + MYBOOL bb_breakfirst; /* TRUE to stop at first feasible solution */ + MYBOOL _piv_left_; /* Internal variable indicating active pricing loop order */ + MYBOOL BOOLfuture1; + + REAL scalelimit; /* Relative convergence criterion for iterated scaling */ + int scalemode; /* OR-ed codes for data scaling */ + int improve; /* Set to non-zero for iterative improvement */ + int anti_degen; /* Anti-degen strategy (or none) TRUE to avoid cycling */ + int do_presolve; /* PRESOLVE_ parameters for LP presolving */ + int presolveloops; /* Maximum number of presolve loops */ + + int perturb_count; /* The number of bound relaxation retries performed */ + + /* Row and column names storage variables */ + hashelem **row_name; /* rows_alloc+1 */ + hashelem **col_name; /* columns_alloc+1 */ + hashtable *rowname_hashtab; /* hash table to store row names */ + hashtable *colname_hashtab; /* hash table to store column names */ + + /* Optionally specify continuous rows/column blocks for partial pricing */ + partialrec *rowblocks; + partialrec *colblocks; + + /* Row and column type codes */ + MYBOOL *var_type; /* sum_alloc+1 : TRUE if variable must be integer */ + + /* Data for multiple pricing */ + multirec *multivars; + int multiblockdiv; /* The divisor used to set or augment pricing block */ + + /* Variable (column) parameters */ + int fixedvars; /* The current number of basic fixed variables in the model */ + int int_vars; /* Number of variables required to be integer */ + + int sc_vars; /* Number of semi-continuous variables */ + REAL *sc_lobound; /* sum_columns+1 : TRUE if variable is semi-continuous; + value replaced by conventional lower bound during solve */ + int *var_is_free; /* columns+1: Index of twin variable if variable is free */ + int *var_priority; /* columns: Priority-mapping of variables */ + + SOSgroup *GUB; /* Pointer to record containing GUBs */ + + int sos_vars; /* Number of variables in the sos_priority list */ + int sos_ints; /* Number of integers in SOS'es above */ + SOSgroup *SOS; /* Pointer to record containing all SOS'es */ + int *sos_priority; /* Priority-sorted list of variables (no duplicates) */ + + /* Optionally specify list of active rows/columns used in multiple pricing */ + REAL *bsolveVal; /* rows+1: bsolved solution vector for reduced costs */ + int *bsolveIdx; /* rows+1: Non-zero indeces of bsolveVal */ + + /* RHS storage */ + REAL *orig_rhs; /* rows_alloc+1 : The RHS after scaling and sign + changing, but before 'Bound transformation' */ + LREAL *rhs; /* rows_alloc+1 : The RHS of the current simplex tableau */ + + /* Row (constraint) parameters */ + int *row_type; /* rows_alloc+1 : Row/constraint type coding */ + + /* Optionally specify data for dual long-step */ + multirec *longsteps; + + /* Original and working row and variable bounds */ + REAL *orig_upbo; /* sum_alloc+1 : Bound before transformations */ + REAL *upbo; /* " " : Upper bound after transformation and B&B work */ + REAL *orig_lowbo; /* " " */ + REAL *lowbo; /* " " : Lower bound after transformation and B&B work */ + + /* User data and basis factorization matrices (ETA or LU, product form) */ + MATrec *matA; + INVrec *invB; + + /* Basis and bounds */ + BBrec *bb_bounds; /* The linked list of B&B bounds */ + BBrec *rootbounds; /* The bounds at the lowest B&B level */ + basisrec *bb_basis; /* The linked list of B&B bases */ + basisrec *rootbasis; + OBJmonrec *monitor; /* Objective monitoring record for stalling/degeneracy handling */ + + /* Scaling parameters */ + REAL *scalars; /* sum_alloc+1:0..Rows the scaling of the rows, + Rows+1..Sum the scaling of the columns */ + MYBOOL scaling_used; /* TRUE if scaling is used */ + MYBOOL columns_scaled; /* TRUE if the columns are scaled too */ + MYBOOL varmap_locked; /* Determines whether the var_to_orig and orig_to_var are fixed */ + + /* Variable state information */ + MYBOOL basis_valid; /* TRUE is the basis is still valid */ + int crashmode; /* Basis crashing mode (or none) */ + int *var_basic; /* rows_alloc+1: The list of columns in the basis */ + REAL *val_nonbasic; /* Array to store current values of non-basic variables */ + MYBOOL *is_basic; /* sum_alloc+1: TRUE if the column is in the basis */ + MYBOOL *is_lower; /* " " : TRUE if the variable is at its + lower bound (or in the basis), FALSE otherwise */ + + /* Simplex basis indicators */ + int *rejectpivot; /* List of unacceptable pivot choices due to division-by-zero */ + BBPSrec *bb_PseudoCost; /* Data structure for costing of node branchings */ + int bb_PseudoUpdates; /* Maximum number of updates for pseudo-costs */ + int bb_strongbranches; /* The number of strong B&B branches performed */ + int is_strongbranch; /* Are we currently in a strong branch mode? */ + int bb_improvements; /* The number of discrete B&B objective improvement steps */ + + /* Solver working variables */ + REAL rhsmax; /* The maximum |value| of the rhs vector at any iteration */ + REAL suminfeas; /* The working sum of primal and dual infeasibilities */ + REAL bigM; /* Original objective weighting in primal phase 1 */ + REAL P1extraVal; /* Phase 1 OF/RHS offset for feasibility */ + int P1extraDim; /* Phase 1 additional columns/rows for feasibility */ + int spx_action; /* ACTION_ variables for the simplex routine */ + MYBOOL spx_perturbed; /* The variable bounds were relaxed/perturbed into this simplex */ + MYBOOL bb_break; /* Solver working variable; signals break of the B&B */ + MYBOOL wasPreprocessed; /* The solve preprocessing was performed */ + MYBOOL wasPresolved; /* The solve presolver was invoked */ + int INTfuture2; + + /* Lagragean solver storage and parameters */ + MATrec *matL; + REAL *lag_rhs; /* Array of Lagrangean rhs vector */ + int *lag_con_type; /* Array of GT, LT or EQ */ + REAL *lambda; /* Lambda values (Lagrangean multipliers) */ + REAL lag_bound; /* The Lagrangian lower OF bound */ + REAL lag_accept; /* The Lagrangian convergence criterion */ + + /* Solver thresholds */ + REAL infinite; /* Limit for dynamic range */ + REAL negrange; /* Limit for negative variable range */ + REAL epsmachine; /* Default machine accuracy */ + REAL epsvalue; /* Input data precision / rounding of data values to 0 */ + REAL epsprimal; /* For rounding RHS values to 0/infeasibility */ + REAL epsdual; /* For rounding reduced costs to zero */ + REAL epspivot; /* Pivot reject tolerance */ + REAL epsperturb; /* Perturbation scalar */ + REAL epssolution; /* The solution tolerance for final validation */ + + /* Branch & Bound working parameters */ + int bb_status; /* Indicator that the last solvelp() gave an improved B&B solution */ + int bb_level; /* Solver B&B working variable (recursion depth) */ + int bb_maxlevel; /* The deepest B&B level of the last solution */ + int bb_limitlevel; /* The maximum B&B level allowed */ + COUNTER bb_totalnodes; /* Total number of nodes processed in B&B */ + int bb_solutionlevel; /* The B&B level of the last / best solution */ + int bb_cutpoolsize; /* Size of the B&B cut pool */ + int bb_cutpoolused; /* Currently used cut pool */ + int bb_constraintOF; /* General purpose B&B parameter (typically for testing) */ + int *bb_cuttype; /* The type of the currently used cuts */ + int *bb_varactive; /* The B&B state of the variable; 0 means inactive */ + DeltaVrec *bb_upperchange; /* Changes to upper bounds during the B&B phase */ + DeltaVrec *bb_lowerchange; /* Changes to lower bounds during the B&B phase */ + + REAL bb_deltaOF; /* Minimum OF step value; computed at beginning of solve() */ + + REAL bb_breakOF; /* User-settable value for the objective function deemed + to be sufficiently good in an integer problem */ + REAL bb_limitOF; /* "Dual" bound / limit to final optimal MIP solution */ + REAL bb_heuristicOF; /* Set initial "at least better than" guess for objective function + (can significantly speed up B&B iterations) */ + REAL bb_parentOF; /* The OF value of the previous BB simplex */ + REAL bb_workOF; /* The unadjusted OF value for the current best solution */ + + /* Internal work arrays allocated as required */ + presolveundorec *presolve_undo; + workarraysrec *workarrays; + + /* MIP parameters */ + REAL epsint; /* Margin of error in determining if a float value is integer */ + REAL mip_absgap; /* Absolute MIP gap */ + REAL mip_relgap; /* Relative MIP gap */ + + /* Time/timer variables and extended status text */ + double timecreate; + double timestart; + double timeheuristic; + double timepresolved; + double timeend; + long sectimeout; + + /* Extended status message text set via explain() */ + char *ex_status; + + /* Refactorization engine interface routines (for dynamic DLL/SO BFPs) */ +#if LoadInverseLib == TRUE + #ifdef WIN32 + HINSTANCE hBFP; + #else + void *hBFP; + #endif +#endif + BFPchar *bfp_name; + BFPbool_lpintintint *bfp_compatible; + BFPbool_lpintintchar *bfp_init; + BFP_lp *bfp_free; + BFPbool_lpint *bfp_resize; + BFPint_lp *bfp_memallocated; + BFPbool_lp *bfp_restart; + BFPbool_lp *bfp_mustrefactorize; + BFPint_lp *bfp_preparefactorization; + BFPint_lpintintboolbool *bfp_factorize; + BFP_lp *bfp_finishfactorization; + BFP_lp *bfp_updaterefactstats; + BFPlreal_lpintintreal *bfp_prepareupdate; + BFPreal_lplrealreal *bfp_pivotRHS; + BFPbool_lpbool *bfp_finishupdate; + BFP_lprealint *bfp_ftran_prepare; + BFP_lprealint *bfp_ftran_normal; + BFP_lprealint *bfp_btran_normal; + BFP_lprealintrealint *bfp_btran_double; + BFPint_lp *bfp_status; + BFPint_lpbool *bfp_nonzeros; + BFPbool_lp *bfp_implicitslack; + BFPint_lp *bfp_indexbase; + BFPint_lp *bfp_rowoffset; + BFPint_lp *bfp_pivotmax; + BFPbool_lpint *bfp_pivotalloc; + BFPint_lp *bfp_colcount; + BFPbool_lp *bfp_canresetbasis; + BFPreal_lp *bfp_efficiency; + BFPrealp_lp *bfp_pivotvector; + BFPint_lp *bfp_pivotcount; + BFPint_lpint *bfp_refactcount; + BFPbool_lp *bfp_isSetI; + BFPint_lpintrealcbintint *bfp_findredundant; + + /* External language interface routines (for dynamic DLL/SO XLIs) */ +#if LoadLanguageLib == TRUE + #ifdef WIN32 + HINSTANCE hXLI; + #else + void *hXLI; + #endif +#endif + XLIchar *xli_name; + XLIbool_lpintintint *xli_compatible; + XLIbool_lpcharcharcharint *xli_readmodel; + XLIbool_lpcharcharbool *xli_writemodel; + + /* Miscellaneous internal functions made available externally */ + userabortfunc *userabort; + reportfunc *report; + explainfunc *explain; + getvectorfunc *get_lpcolumn; + getpackedfunc *get_basiscolumn; + get_OF_activefunc *get_OF_active; + getMDOfunc *getMDO; + invertfunc *invert; + set_actionfunc *set_action; + is_actionfunc *is_action; + clear_actionfunc *clear_action; + + /* User program interface callbacks */ + lphandle_intfunc *ctrlc; + void *ctrlchandle; /* User-specified "owner process ID" */ + lphandlestr_func *writelog; + void *loghandle; /* User-specified "owner process ID" */ + lphandlestr_func *debuginfo; + lphandleint_func *usermessage; + int msgmask; + void *msghandle; /* User-specified "owner process ID" */ + lphandleint_intfunc *bb_usenode; + void *bb_nodehandle; /* User-specified "owner process ID" */ + lphandleint_intfunc *bb_usebranch; + void *bb_branchhandle; /* User-specified "owner process ID" */ + + /* replacement of static variables */ + char *rowcol_name; /* The name of a row/column */ +}; + + +#ifdef __cplusplus +__EXTERN_C { +#endif + + +/* User and system function interfaces */ +/* ------------------------------------------------------------------------- */ + +void __EXPORT_TYPE __WINAPI lp_solve_version(int *majorversion, int *minorversion, int *release, int *build); + +lprec __EXPORT_TYPE * __WINAPI make_lp(int rows, int columns); +MYBOOL __EXPORT_TYPE __WINAPI resize_lp(lprec *lp, int rows, int columns); +int __EXPORT_TYPE __WINAPI get_status(lprec *lp); +char __EXPORT_TYPE * __WINAPI get_statustext(lprec *lp, int statuscode); +MYBOOL __EXPORT_TYPE __WINAPI is_obj_in_basis(lprec *lp); +void __EXPORT_TYPE __WINAPI set_obj_in_basis(lprec *lp, MYBOOL obj_in_basis); +/* Create and initialise a lprec structure defaults */ + +lprec __EXPORT_TYPE * __WINAPI copy_lp(lprec *lp); +MYBOOL __EXPORT_TYPE __WINAPI dualize_lp(lprec *lp); +STATIC MYBOOL memopt_lp(lprec *lp, int rowextra, int colextra, int nzextra); +/* Copy or dualize the lp */ + +void __EXPORT_TYPE __WINAPI delete_lp(lprec *lp); +void __EXPORT_TYPE __WINAPI free_lp(lprec **plp); +/* Remove problem from memory */ + +MYBOOL __EXPORT_TYPE __WINAPI set_lp_name(lprec *lp, char *lpname); +char __EXPORT_TYPE * __WINAPI get_lp_name(lprec *lp); +/* Set and get the problem name */ + +MYBOOL __EXPORT_TYPE __WINAPI has_BFP(lprec *lp); +MYBOOL __EXPORT_TYPE __WINAPI is_nativeBFP(lprec *lp); +MYBOOL __EXPORT_TYPE __WINAPI set_BFP(lprec *lp, char *filename); +/* Set basis factorization engine */ + +lprec __EXPORT_TYPE * __WINAPI read_XLI(char *xliname, char *modelname, char *dataname, char *options, int verbose); +MYBOOL __EXPORT_TYPE __WINAPI write_XLI(lprec *lp, char *filename, char *options, MYBOOL results); +MYBOOL __EXPORT_TYPE __WINAPI has_XLI(lprec *lp); +MYBOOL __EXPORT_TYPE __WINAPI is_nativeXLI(lprec *lp); +MYBOOL __EXPORT_TYPE __WINAPI set_XLI(lprec *lp, char *filename); +/* Set external language interface */ + +MYBOOL __EXPORT_TYPE __WINAPI set_obj(lprec *lp, int colnr, REAL value); +MYBOOL __EXPORT_TYPE __WINAPI set_obj_fn(lprec *lp, REAL *row); +MYBOOL __EXPORT_TYPE __WINAPI set_obj_fnex(lprec *lp, int count, REAL *row, int *colno); +/* set the objective function (Row 0) of the matrix */ +MYBOOL __EXPORT_TYPE __WINAPI str_set_obj_fn(lprec *lp, char *row_string); +/* The same, but with string input */ +void __EXPORT_TYPE __WINAPI set_sense(lprec *lp, MYBOOL maximize); +void __EXPORT_TYPE __WINAPI set_maxim(lprec *lp); +void __EXPORT_TYPE __WINAPI set_minim(lprec *lp); +MYBOOL __EXPORT_TYPE __WINAPI is_maxim(lprec *lp); +/* Set optimization direction for the objective function */ + +MYBOOL __EXPORT_TYPE __WINAPI add_constraint(lprec *lp, REAL *row, int constr_type, REAL rh); +MYBOOL __EXPORT_TYPE __WINAPI add_constraintex(lprec *lp, int count, REAL *row, int *colno, int constr_type, REAL rh); +MYBOOL __EXPORT_TYPE __WINAPI set_add_rowmode(lprec *lp, MYBOOL turnon); +MYBOOL __EXPORT_TYPE __WINAPI is_add_rowmode(lprec *lp); +/* Add a constraint to the problem, row is the constraint row, rh is the right hand side, + constr_type is the type of constraint (LE (<=), GE(>=), EQ(=)) */ +MYBOOL __EXPORT_TYPE __WINAPI str_add_constraint(lprec *lp, char *row_string, int constr_type, REAL rh); +/* The same, but with string input */ + +MYBOOL __EXPORT_TYPE __WINAPI set_row(lprec *lp, int rownr, REAL *row); +MYBOOL __EXPORT_TYPE __WINAPI set_rowex(lprec *lp, int rownr, int count, REAL *row, int *colno); +MYBOOL __EXPORT_TYPE __WINAPI get_row(lprec *lp, int rownr, REAL *row); +int __EXPORT_TYPE __WINAPI get_rowex(lprec *lp, int rownr, REAL *row, int *colno); +/* Fill row with the row row_nr from the problem */ + +MYBOOL __EXPORT_TYPE __WINAPI del_constraint(lprec *lp, int rownr); +STATIC MYBOOL del_constraintex(lprec *lp, LLrec *rowmap); +/* Remove constrain nr del_row from the problem */ + +MYBOOL __EXPORT_TYPE __WINAPI add_lag_con(lprec *lp, REAL *row, int con_type, REAL rhs); +/* add a Lagrangian constraint of form Row' x contype Rhs */ +MYBOOL __EXPORT_TYPE __WINAPI str_add_lag_con(lprec *lp, char *row_string, int con_type, REAL rhs); +/* The same, but with string input */ +void __EXPORT_TYPE __WINAPI set_lag_trace(lprec *lp, MYBOOL lag_trace); +MYBOOL __EXPORT_TYPE __WINAPI is_lag_trace(lprec *lp); +/* Set debugging/tracing mode of the Lagrangean solver */ + +MYBOOL __EXPORT_TYPE __WINAPI set_constr_type(lprec *lp, int rownr, int con_type); +int __EXPORT_TYPE __WINAPI get_constr_type(lprec *lp, int rownr); +REAL __EXPORT_TYPE __WINAPI get_constr_value(lprec *lp, int rownr, int count, REAL *primsolution, int *nzindex); +MYBOOL __EXPORT_TYPE __WINAPI is_constr_type(lprec *lp, int rownr, int mask); +STATIC char *get_str_constr_type(lprec *lp, int con_type); +STATIC int get_constr_class(lprec *lp, int rownr); +STATIC char *get_str_constr_class(lprec *lp, int con_class); +/* Set the type of constraint in row Row (LE, GE, EQ) */ + +MYBOOL __EXPORT_TYPE __WINAPI set_rh(lprec *lp, int rownr, REAL value); +REAL __EXPORT_TYPE __WINAPI get_rh(lprec *lp, int rownr); +/* Set and get the right hand side of a constraint row */ +MYBOOL __EXPORT_TYPE __WINAPI set_rh_range(lprec *lp, int rownr, REAL deltavalue); +REAL __EXPORT_TYPE __WINAPI get_rh_range(lprec *lp, int rownr); +/* Set the RHS range; i.e. the lower and upper bounds of a constraint row */ +void __EXPORT_TYPE __WINAPI set_rh_vec(lprec *lp, REAL *rh); +/* Set the right hand side vector */ +MYBOOL __EXPORT_TYPE __WINAPI str_set_rh_vec(lprec *lp, char *rh_string); +/* The same, but with string input */ + +MYBOOL __EXPORT_TYPE __WINAPI add_column(lprec *lp, REAL *column); +MYBOOL __EXPORT_TYPE __WINAPI add_columnex(lprec *lp, int count, REAL *column, int *rowno); +MYBOOL __EXPORT_TYPE __WINAPI str_add_column(lprec *lp, char *col_string); +/* Add a column to the problem */ + +MYBOOL __EXPORT_TYPE __WINAPI set_column(lprec *lp, int colnr, REAL *column); +MYBOOL __EXPORT_TYPE __WINAPI set_columnex(lprec *lp, int colnr, int count, REAL *column, int *rowno); +/* Overwrite existing column data */ + +int __EXPORT_TYPE __WINAPI column_in_lp(lprec *lp, REAL *column); +/* Returns the column index if column is already present in lp, otherwise 0. + (Does not look at bounds and types, only looks at matrix values */ + +int __EXPORT_TYPE __WINAPI get_columnex(lprec *lp, int colnr, REAL *column, int *nzrow); +MYBOOL __EXPORT_TYPE __WINAPI get_column(lprec *lp, int colnr, REAL *column); +/* Fill column with the column col_nr from the problem */ + +MYBOOL __EXPORT_TYPE __WINAPI del_column(lprec *lp, int colnr); +STATIC MYBOOL del_columnex(lprec *lp, LLrec *colmap); +/* Delete a column */ + +MYBOOL __EXPORT_TYPE __WINAPI set_mat(lprec *lp, int rownr, int colnr, REAL value); +/* Fill in element (Row,Column) of the matrix + Row in [0..Rows] and Column in [1..Columns] */ +REAL __EXPORT_TYPE __WINAPI get_mat(lprec *lp, int rownr, int colnr); +REAL __EXPORT_TYPE __WINAPI get_mat_byindex(lprec *lp, int matindex, MYBOOL isrow, MYBOOL adjustsign); +int __EXPORT_TYPE __WINAPI get_nonzeros(lprec *lp); +/* get a single element from the matrix */ /* Name changed from "mat_elm" by KE */ + +void __EXPORT_TYPE __WINAPI set_bounds_tighter(lprec *lp, MYBOOL tighten); +MYBOOL get_bounds(lprec *lp, int column, REAL *lower, REAL *upper); +MYBOOL __EXPORT_TYPE __WINAPI get_bounds_tighter(lprec *lp); +MYBOOL __EXPORT_TYPE __WINAPI set_upbo(lprec *lp, int colnr, REAL value); +REAL __EXPORT_TYPE __WINAPI get_upbo(lprec *lp, int colnr); +MYBOOL __EXPORT_TYPE __WINAPI set_lowbo(lprec *lp, int colnr, REAL value); +REAL __EXPORT_TYPE __WINAPI get_lowbo(lprec *lp, int colnr); +MYBOOL __EXPORT_TYPE __WINAPI set_bounds(lprec *lp, int colnr, REAL lower, REAL upper); +MYBOOL __EXPORT_TYPE __WINAPI set_unbounded(lprec *lp, int colnr); +MYBOOL __EXPORT_TYPE __WINAPI is_unbounded(lprec *lp, int colnr); +/* Set the upper and lower bounds of a variable */ + +MYBOOL __EXPORT_TYPE __WINAPI set_int(lprec *lp, int colnr, MYBOOL must_be_int); +MYBOOL __EXPORT_TYPE __WINAPI is_int(lprec *lp, int colnr); +MYBOOL __EXPORT_TYPE __WINAPI set_binary(lprec *lp, int colnr, MYBOOL must_be_bin); +MYBOOL __EXPORT_TYPE __WINAPI is_binary(lprec *lp, int colnr); +MYBOOL __EXPORT_TYPE __WINAPI set_semicont(lprec *lp, int colnr, MYBOOL must_be_sc); +MYBOOL __EXPORT_TYPE __WINAPI is_semicont(lprec *lp, int colnr); +MYBOOL __EXPORT_TYPE __WINAPI is_negative(lprec *lp, int colnr); +MYBOOL __EXPORT_TYPE __WINAPI set_var_weights(lprec *lp, REAL *weights); +int __EXPORT_TYPE __WINAPI get_var_priority(lprec *lp, int colnr); +/* Set the type of variable */ + +MYBOOL __EXPORT_TYPE __WINAPI set_pseudocosts(lprec *lp, REAL *clower, REAL *cupper, int *updatelimit); +MYBOOL __EXPORT_TYPE __WINAPI get_pseudocosts(lprec *lp, REAL *clower, REAL *cupper, int *updatelimit); +/* Set initial values for, or get computed pseudocost vectors; + note that setting of pseudocosts can only happen in response to a + call-back function optionally requesting this */ + +int __EXPORT_TYPE __WINAPI add_SOS(lprec *lp, char *name, int sostype, int priority, int count, int *sosvars, REAL *weights); +MYBOOL __EXPORT_TYPE __WINAPI is_SOS_var(lprec *lp, int colnr); +/* Add SOS constraints */ + +MYBOOL __EXPORT_TYPE __WINAPI set_row_name(lprec *lp, int rownr, char *new_name); +char __EXPORT_TYPE * __WINAPI get_row_name(lprec *lp, int rownr); +char __EXPORT_TYPE * __WINAPI get_origrow_name(lprec *lp, int rownr); +/* Set/Get the name of a constraint row */ /* Get added by KE */ + +MYBOOL __EXPORT_TYPE __WINAPI set_col_name(lprec *lp, int colnr, char *new_name); +char __EXPORT_TYPE * __WINAPI get_col_name(lprec *lp, int colnr); +char __EXPORT_TYPE * __WINAPI get_origcol_name(lprec *lp, int colnr); +/* Set/Get the name of a variable column */ /* Get added by KE */ + +void __EXPORT_TYPE __WINAPI unscale(lprec *lp); +/* Undo previous scaling of the problem */ + +void __EXPORT_TYPE __WINAPI set_preferdual(lprec *lp, MYBOOL dodual); +void __EXPORT_TYPE __WINAPI set_simplextype(lprec *lp, int simplextype); +int __EXPORT_TYPE __WINAPI get_simplextype(lprec *lp); +/* Set/Get if lp_solve should prefer the dual simplex over the primal -- added by KE */ + +void __EXPORT_TYPE __WINAPI default_basis(lprec *lp); +void __EXPORT_TYPE __WINAPI set_basiscrash(lprec *lp, int mode); +int __EXPORT_TYPE __WINAPI get_basiscrash(lprec *lp); +int __EXPORT_TYPE __WINAPI set_basisvar(lprec *lp, int basisPos, int enteringCol); +MYBOOL __EXPORT_TYPE __WINAPI set_basis(lprec *lp, int *bascolumn, MYBOOL nonbasic); +MYBOOL __EXPORT_TYPE __WINAPI get_basis(lprec *lp, int *bascolumn, MYBOOL nonbasic); +void __EXPORT_TYPE __WINAPI reset_basis(lprec *lp); +/* Set/Get basis for a re-solved system */ /* Added by KE */ +MYBOOL __EXPORT_TYPE __WINAPI guess_basis(lprec *lp, REAL *guessvector, int *basisvector); + +MYBOOL __EXPORT_TYPE __WINAPI is_feasible(lprec *lp, REAL *values, REAL threshold); +/* returns TRUE if the vector in values is a feasible solution to the lp */ + +int __EXPORT_TYPE __WINAPI solve(lprec *lp); +/* Solve the problem */ + +REAL __EXPORT_TYPE __WINAPI time_elapsed(lprec *lp); +/* Return the number of seconds since start of solution process */ + +void __EXPORT_TYPE __WINAPI put_bb_nodefunc(lprec *lp, lphandleint_intfunc newnode, void *bbnodehandle); +void __EXPORT_TYPE __WINAPI put_bb_branchfunc(lprec *lp, lphandleint_intfunc newbranch, void *bbbranchhandle); +/* Allow the user to override B&B node and branching decisions */ + +void __EXPORT_TYPE __WINAPI put_abortfunc(lprec *lp, lphandle_intfunc newctrlc, void *ctrlchandle); +/* Allow the user to define an interruption callback function */ + +void __EXPORT_TYPE __WINAPI put_logfunc(lprec *lp, lphandlestr_func newlog, void *loghandle); +/* Allow the user to define a logging function */ + +void __EXPORT_TYPE __WINAPI put_msgfunc(lprec *lp, lphandleint_func newmsg, void *msghandle, int mask); +/* Allow the user to define an event-driven message/reporting */ + +MYBOOL __EXPORT_TYPE __WINAPI get_primal_solution(lprec *lp, REAL *pv); +MYBOOL __EXPORT_TYPE __WINAPI get_ptr_primal_solution(lprec *lp, REAL **pv); +MYBOOL __EXPORT_TYPE __WINAPI get_dual_solution(lprec *lp, REAL *rc); +MYBOOL __EXPORT_TYPE __WINAPI get_ptr_dual_solution(lprec *lp, REAL **rc); +MYBOOL __EXPORT_TYPE __WINAPI get_lambda(lprec *lp, REAL *lambda); +MYBOOL __EXPORT_TYPE __WINAPI get_ptr_lambda(lprec *lp, REAL **lambda); +/* Get the primal, dual/reduced costs and Lambda vectors */ + +/* Read an MPS file */ +lprec __EXPORT_TYPE * __WINAPI read_MPS(char *filename, int options); +lprec __EXPORT_TYPE * __WINAPI read_mps(FILE *filename, int options); +lprec __EXPORT_TYPE * __WINAPI read_freeMPS(char *filename, int options); +lprec __EXPORT_TYPE * __WINAPI read_freemps(FILE *filename, int options); + +/* Write a MPS file to output */ +MYBOOL __EXPORT_TYPE __WINAPI write_mps(lprec *lp, char *filename); +MYBOOL __EXPORT_TYPE __WINAPI write_MPS(lprec *lp, FILE *output); +MYBOOL __EXPORT_TYPE __WINAPI write_freemps(lprec *lp, char *filename); +MYBOOL __EXPORT_TYPE __WINAPI write_freeMPS(lprec *lp, FILE *output); + +MYBOOL __EXPORT_TYPE __WINAPI write_lp(lprec *lp, char *filename); +MYBOOL __EXPORT_TYPE __WINAPI write_LP(lprec *lp, FILE *output); + /* Write a LP file to output */ + +MYBOOL __WINAPI LP_readhandle(lprec **lp, FILE *filename, int verbose, char *lp_name); +lprec __EXPORT_TYPE * __WINAPI read_lp(FILE *filename, int verbose, char *lp_name); +lprec __EXPORT_TYPE * __WINAPI read_LP(char *filename, int verbose, char *lp_name); +/* Old-style lp format file parser */ + +MYBOOL __EXPORT_TYPE __WINAPI write_basis(lprec *lp, char *filename); +MYBOOL __EXPORT_TYPE __WINAPI read_basis(lprec *lp, char *filename, char *info); +/* Read and write basis from/to file in CPLEX BAS format */ + +MYBOOL __EXPORT_TYPE __WINAPI write_params(lprec *lp, char *filename, char *options); +MYBOOL __EXPORT_TYPE __WINAPI read_params(lprec *lp, char *filename, char *options); +void __EXPORT_TYPE __WINAPI reset_params(lprec *lp); +/* Read and write parameter file */ + +void __EXPORT_TYPE __WINAPI print_lp(lprec *lp); +void __EXPORT_TYPE __WINAPI print_tableau(lprec *lp); +/* Print the current problem, only useful in very small (test) problems */ + +void __EXPORT_TYPE __WINAPI print_objective(lprec *lp); +void __EXPORT_TYPE __WINAPI print_solution(lprec *lp, int columns); +void __EXPORT_TYPE __WINAPI print_constraints(lprec *lp, int columns); +/* Print the solution to stdout */ + +void __EXPORT_TYPE __WINAPI print_duals(lprec *lp); +/* Print the dual variables of the solution */ + +void __EXPORT_TYPE __WINAPI print_scales(lprec *lp); +/* If scaling is used, print the scaling factors */ + +void __EXPORT_TYPE __WINAPI print_str(lprec *lp, char *str); + +void __EXPORT_TYPE __WINAPI set_outputstream(lprec *lp, FILE *stream); +MYBOOL __EXPORT_TYPE __WINAPI set_outputfile(lprec *lp, char *filename); + +void __EXPORT_TYPE __WINAPI set_verbose(lprec *lp, int verbose); +int __EXPORT_TYPE __WINAPI get_verbose(lprec *lp); + +void __EXPORT_TYPE __WINAPI set_timeout(lprec *lp, long sectimeout); +long __EXPORT_TYPE __WINAPI get_timeout(lprec *lp); + +void __EXPORT_TYPE __WINAPI set_print_sol(lprec *lp, int print_sol); +int __EXPORT_TYPE __WINAPI get_print_sol(lprec *lp); + +void __EXPORT_TYPE __WINAPI set_debug(lprec *lp, MYBOOL debug); +MYBOOL __EXPORT_TYPE __WINAPI is_debug(lprec *lp); + +void __EXPORT_TYPE __WINAPI set_trace(lprec *lp, MYBOOL trace); +MYBOOL __EXPORT_TYPE __WINAPI is_trace(lprec *lp); + +MYBOOL __EXPORT_TYPE __WINAPI print_debugdump(lprec *lp, char *filename); + +void __EXPORT_TYPE __WINAPI set_anti_degen(lprec *lp, int anti_degen); +int __EXPORT_TYPE __WINAPI get_anti_degen(lprec *lp); +MYBOOL __EXPORT_TYPE __WINAPI is_anti_degen(lprec *lp, int testmask); + +void __EXPORT_TYPE __WINAPI set_presolve(lprec *lp, int presolvemode, int maxloops); +int __EXPORT_TYPE __WINAPI get_presolve(lprec *lp); +int __EXPORT_TYPE __WINAPI get_presolveloops(lprec *lp); +MYBOOL __EXPORT_TYPE __WINAPI is_presolve(lprec *lp, int testmask); + +int __EXPORT_TYPE __WINAPI get_orig_index(lprec *lp, int lp_index); +int __EXPORT_TYPE __WINAPI get_lp_index(lprec *lp, int orig_index); + +void __EXPORT_TYPE __WINAPI set_maxpivot(lprec *lp, int max_num_inv); +int __EXPORT_TYPE __WINAPI get_maxpivot(lprec *lp); + +void __EXPORT_TYPE __WINAPI set_obj_bound(lprec *lp, REAL obj_bound); +REAL __EXPORT_TYPE __WINAPI get_obj_bound(lprec *lp); + +void __EXPORT_TYPE __WINAPI set_mip_gap(lprec *lp, MYBOOL absolute, REAL mip_gap); +REAL __EXPORT_TYPE __WINAPI get_mip_gap(lprec *lp, MYBOOL absolute); + +void __EXPORT_TYPE __WINAPI set_bb_rule(lprec *lp, int bb_rule); +int __EXPORT_TYPE __WINAPI get_bb_rule(lprec *lp); + +MYBOOL __EXPORT_TYPE __WINAPI set_var_branch(lprec *lp, int colnr, int branch_mode); +int __EXPORT_TYPE __WINAPI get_var_branch(lprec *lp, int colnr); + +MYBOOL __EXPORT_TYPE __WINAPI is_infinite(lprec *lp, REAL value); +void __EXPORT_TYPE __WINAPI set_infinite(lprec *lp, REAL infinite); +REAL __EXPORT_TYPE __WINAPI get_infinite(lprec *lp); + +void __EXPORT_TYPE __WINAPI set_epsint(lprec *lp, REAL epsint); +REAL __EXPORT_TYPE __WINAPI get_epsint(lprec *lp); + +void __EXPORT_TYPE __WINAPI set_epsb(lprec *lp, REAL epsb); +REAL __EXPORT_TYPE __WINAPI get_epsb(lprec *lp); + +void __EXPORT_TYPE __WINAPI set_epsd(lprec *lp, REAL epsd); +REAL __EXPORT_TYPE __WINAPI get_epsd(lprec *lp); + +void __EXPORT_TYPE __WINAPI set_epsel(lprec *lp, REAL epsel); +REAL __EXPORT_TYPE __WINAPI get_epsel(lprec *lp); + +MYBOOL __EXPORT_TYPE __WINAPI set_epslevel(lprec *lp, int epslevel); + +void __EXPORT_TYPE __WINAPI set_scaling(lprec *lp, int scalemode); +int __EXPORT_TYPE __WINAPI get_scaling(lprec *lp); +MYBOOL __EXPORT_TYPE __WINAPI is_scalemode(lprec *lp, int testmask); +MYBOOL __EXPORT_TYPE __WINAPI is_scaletype(lprec *lp, int scaletype); +MYBOOL __EXPORT_TYPE __WINAPI is_integerscaling(lprec *lp); +void __EXPORT_TYPE __WINAPI set_scalelimit(lprec *lp, REAL scalelimit); +REAL __EXPORT_TYPE __WINAPI get_scalelimit(lprec *lp); + +void __EXPORT_TYPE __WINAPI set_improve(lprec *lp, int improve); +int __EXPORT_TYPE __WINAPI get_improve(lprec *lp); + +void __EXPORT_TYPE __WINAPI set_pivoting(lprec *lp, int piv_rule); +int __EXPORT_TYPE __WINAPI get_pivoting(lprec *lp); +MYBOOL __EXPORT_TYPE __WINAPI set_partialprice(lprec *lp, int blockcount, int *blockstart, MYBOOL isrow); +void __EXPORT_TYPE __WINAPI get_partialprice(lprec *lp, int *blockcount, int *blockstart, MYBOOL isrow); + +MYBOOL __EXPORT_TYPE __WINAPI set_multiprice(lprec *lp, int multiblockdiv); +int __EXPORT_TYPE __WINAPI get_multiprice(lprec *lp, MYBOOL getabssize); + +MYBOOL __EXPORT_TYPE __WINAPI is_use_names(lprec *lp, MYBOOL isrow); +void __EXPORT_TYPE __WINAPI set_use_names(lprec *lp, MYBOOL isrow, MYBOOL use_names); + +int __EXPORT_TYPE __WINAPI get_nameindex(lprec *lp, char *varname, MYBOOL isrow); + +MYBOOL __EXPORT_TYPE __WINAPI is_piv_mode(lprec *lp, int testmask); +MYBOOL __EXPORT_TYPE __WINAPI is_piv_rule(lprec *lp, int rule); + +void __EXPORT_TYPE __WINAPI set_break_at_first(lprec *lp, MYBOOL break_at_first); +MYBOOL __EXPORT_TYPE __WINAPI is_break_at_first(lprec *lp); + +void __EXPORT_TYPE __WINAPI set_bb_floorfirst(lprec *lp, int bb_floorfirst); +int __EXPORT_TYPE __WINAPI get_bb_floorfirst(lprec *lp); + +void __EXPORT_TYPE __WINAPI set_bb_depthlimit(lprec *lp, int bb_maxlevel); +int __EXPORT_TYPE __WINAPI get_bb_depthlimit(lprec *lp); + +void __EXPORT_TYPE __WINAPI set_break_at_value(lprec *lp, REAL break_at_value); +REAL __EXPORT_TYPE __WINAPI get_break_at_value(lprec *lp); + +void __EXPORT_TYPE __WINAPI set_negrange(lprec *lp, REAL negrange); +REAL __EXPORT_TYPE __WINAPI get_negrange(lprec *lp); + +void __EXPORT_TYPE __WINAPI set_epsperturb(lprec *lp, REAL epsperturb); +REAL __EXPORT_TYPE __WINAPI get_epsperturb(lprec *lp); + +void __EXPORT_TYPE __WINAPI set_epspivot(lprec *lp, REAL epspivot); +REAL __EXPORT_TYPE __WINAPI get_epspivot(lprec *lp); + +int __EXPORT_TYPE __WINAPI get_max_level(lprec *lp); +COUNTER __EXPORT_TYPE __WINAPI get_total_nodes(lprec *lp); +COUNTER __EXPORT_TYPE __WINAPI get_total_iter(lprec *lp); + +REAL __EXPORT_TYPE __WINAPI get_objective(lprec *lp); +REAL __EXPORT_TYPE __WINAPI get_working_objective(lprec *lp); + +REAL __EXPORT_TYPE __WINAPI get_var_primalresult(lprec *lp, int index); +REAL __EXPORT_TYPE __WINAPI get_var_dualresult(lprec *lp, int index); + +MYBOOL __EXPORT_TYPE __WINAPI get_variables(lprec *lp, REAL *var); +MYBOOL __EXPORT_TYPE __WINAPI get_ptr_variables(lprec *lp, REAL **var); + +MYBOOL __EXPORT_TYPE __WINAPI get_constraints(lprec *lp, REAL *constr); +MYBOOL __EXPORT_TYPE __WINAPI get_ptr_constraints(lprec *lp, REAL **constr); + +MYBOOL __EXPORT_TYPE __WINAPI get_sensitivity_rhs(lprec *lp, REAL *duals, REAL *dualsfrom, REAL *dualstill); +MYBOOL __EXPORT_TYPE __WINAPI get_ptr_sensitivity_rhs(lprec *lp, REAL **duals, REAL **dualsfrom, REAL **dualstill); + +MYBOOL __EXPORT_TYPE __WINAPI get_sensitivity_obj(lprec *lp, REAL *objfrom, REAL *objtill); +MYBOOL __EXPORT_TYPE __WINAPI get_sensitivity_objex(lprec *lp, REAL *objfrom, REAL *objtill, REAL *objfromvalue, REAL *objtillvalue); +MYBOOL __EXPORT_TYPE __WINAPI get_ptr_sensitivity_obj(lprec *lp, REAL **objfrom, REAL **objtill); +MYBOOL __EXPORT_TYPE __WINAPI get_ptr_sensitivity_objex(lprec *lp, REAL **objfrom, REAL **objtill, REAL **objfromvalue, REAL **objtillvalue); + +void __EXPORT_TYPE __WINAPI set_solutionlimit(lprec *lp, int limit); +int __EXPORT_TYPE __WINAPI get_solutionlimit(lprec *lp); +int __EXPORT_TYPE __WINAPI get_solutioncount(lprec *lp); + +int __EXPORT_TYPE __WINAPI get_Norig_rows(lprec *lp); +int __EXPORT_TYPE __WINAPI get_Nrows(lprec *lp); +int __EXPORT_TYPE __WINAPI get_Lrows(lprec *lp); + +int __EXPORT_TYPE __WINAPI get_Norig_columns(lprec *lp); +int __EXPORT_TYPE __WINAPI get_Ncolumns(lprec *lp); + +typedef int (__WINAPI read_modeldata_func)(void *userhandle, char *buf, int max_size); +typedef int (__WINAPI write_modeldata_func)(void *userhandle, char *buf); +MYBOOL __WINAPI MPS_readex(lprec **newlp, void *userhandle, read_modeldata_func read_modeldata, int typeMPS, int options); + +/* #if defined develop */ +lprec __EXPORT_TYPE * __WINAPI read_lpex(void *userhandle, read_modeldata_func read_modeldata, int verbose, char *lp_name); +MYBOOL __EXPORT_TYPE __WINAPI write_lpex(lprec *lp, void *userhandle, write_modeldata_func write_modeldata); + +lprec __EXPORT_TYPE * __WINAPI read_mpsex(void *userhandle, read_modeldata_func read_modeldata, int options); +lprec __EXPORT_TYPE * __WINAPI read_freempsex(void *userhandle, read_modeldata_func read_modeldata, int options); + +MYBOOL __EXPORT_TYPE __WINAPI MPS_writefileex(lprec *lp, int typeMPS, void *userhandle, write_modeldata_func write_modeldata); +/* #endif */ + +#ifdef __cplusplus +} +#endif + + +/* Forward definitions of functions used internaly by the lp toolkit */ +MYBOOL set_callbacks(lprec *lp); +STATIC int yieldformessages(lprec *lp); +MYBOOL __WINAPI userabort(lprec *lp, int message); +/*char * __VACALL explain(lprec *lp, char *format, ...); +void __VACALL report(lprec *lp, int level, char *format, ...);*/ + +/* Memory management routines */ +STATIC MYBOOL append_rows(lprec *lp, int deltarows); +STATIC MYBOOL append_columns(lprec *lp, int deltacolumns); +STATIC void inc_rows(lprec *lp, int delta); +STATIC void inc_columns(lprec *lp, int delta); +STATIC MYBOOL init_rowcol_names(lprec *lp); +STATIC MYBOOL inc_row_space(lprec *lp, int deltarows); +STATIC MYBOOL inc_col_space(lprec *lp, int deltacols); +STATIC MYBOOL shift_rowcoldata(lprec *lp, int base, int delta, LLrec *usedmap, MYBOOL isrow); +STATIC MYBOOL shift_basis(lprec *lp, int base, int delta, LLrec *usedmap, MYBOOL isrow); +STATIC MYBOOL shift_rowdata(lprec *lp, int base, int delta, LLrec *usedmap); +STATIC MYBOOL shift_coldata(lprec *lp, int base, int delta, LLrec *usedmap); + +/* INLINE */ MYBOOL is_chsign(lprec *lp, int rownr); + +STATIC MYBOOL inc_lag_space(lprec *lp, int deltarows, MYBOOL ignoreMAT); +lprec *make_lag(lprec *server); + +REAL get_rh_upper(lprec *lp, int rownr); +REAL get_rh_lower(lprec *lp, int rownr); +MYBOOL set_rh_upper(lprec *lp, int rownr, REAL value); +MYBOOL set_rh_lower(lprec *lp, int rownr, REAL value); +STATIC int bin_count(lprec *lp, MYBOOL working); +STATIC int MIP_count(lprec *lp); +STATIC int SOS_count(lprec *lp); +STATIC int GUB_count(lprec *lp); +STATIC int identify_GUB(lprec *lp, MYBOOL mark); +STATIC int prepare_GUB(lprec *lp); + +STATIC MYBOOL refactRecent(lprec *lp); +STATIC MYBOOL check_if_less(lprec *lp, REAL x, REAL y, int variable); +STATIC MYBOOL feasiblePhase1(lprec *lp, REAL epsvalue); +STATIC void free_duals(lprec *lp); +STATIC void initialize_solution(lprec *lp, MYBOOL shiftbounds); +STATIC void recompute_solution(lprec *lp, MYBOOL shiftbounds); +STATIC int verify_solution(lprec *lp, MYBOOL reinvert, char *info); +STATIC int check_solution(lprec *lp, int lastcolumn, REAL *solution, + REAL *upbo, REAL *lowbo, REAL tolerance); +/* INLINE */ MYBOOL is_fixedvar(lprec *lp, int variable); +/* INLINE */ MYBOOL is_splitvar(lprec *lp, int colnr); + +void __WINAPI set_action(int *actionvar, int actionmask); +void __WINAPI clear_action(int *actionvar, int actionmask); +MYBOOL __WINAPI is_action(int actionvar, int testmask); + +/* INLINE */ MYBOOL is_bb_rule(lprec *lp, int bb_rule); +/* INLINE */ MYBOOL is_bb_mode(lprec *lp, int bb_mask); +/* INLINE */ int get_piv_rule(lprec *lp); +STATIC char *get_str_piv_rule(int rule); +STATIC MYBOOL __WINAPI set_var_priority(lprec *lp); +STATIC int find_sc_bbvar(lprec *lp, int *count); +STATIC int find_sos_bbvar(lprec *lp, int *count, MYBOOL intsos); +STATIC int find_int_bbvar(lprec *lp, int *count, BBrec *BB, MYBOOL *isfeasible); + +/* Solution-related functions */ +STATIC REAL compute_dualslacks(lprec *lp, int target, REAL **dvalues, int **nzdvalues, MYBOOL dosum); +STATIC MYBOOL solution_is_int(lprec *lp, int index, MYBOOL checkfixed); +STATIC MYBOOL bb_better(lprec *lp, int target, int mode); +STATIC void construct_solution(lprec *lp, REAL *target); +STATIC void transfer_solution_var(lprec *lp, int uservar); +STATIC MYBOOL construct_duals(lprec *lp); +STATIC MYBOOL construct_sensitivity_duals(lprec *lp); +STATIC MYBOOL construct_sensitivity_obj(lprec *lp); + +STATIC int add_GUB(lprec *lp, char *name, int priority, int count, int *sosvars); +STATIC basisrec *push_basis(lprec *lp, int *basisvar, MYBOOL *isbasic, MYBOOL *islower); +STATIC MYBOOL compare_basis(lprec *lp); +STATIC MYBOOL restore_basis(lprec *lp); +STATIC MYBOOL pop_basis(lprec *lp, MYBOOL restore); +STATIC MYBOOL is_BasisReady(lprec *lp); +STATIC MYBOOL is_slackbasis(lprec *lp); +STATIC MYBOOL verify_basis(lprec *lp); +STATIC int unload_basis(lprec *lp, MYBOOL restorelast); + +STATIC int perturb_bounds(lprec *lp, BBrec *perturbed, MYBOOL doRows, MYBOOL doCols, MYBOOL includeFIXED); +STATIC MYBOOL validate_bounds(lprec *lp, REAL *upbo, REAL *lowbo); +STATIC MYBOOL impose_bounds(lprec *lp, REAL * upbo, REAL *lowbo); +STATIC int unload_BB(lprec *lp); + +STATIC REAL feasibilityOffset(lprec *lp, MYBOOL isdual); +STATIC MYBOOL isP1extra(lprec *lp); +STATIC REAL get_refactfrequency(lprec *lp, MYBOOL final); +STATIC int findBasicFixedvar(lprec *lp, int afternr, MYBOOL slacksonly); +STATIC MYBOOL isBasisVarFeasible(lprec *lp, REAL tol, int basis_row); +STATIC MYBOOL isPrimalFeasible(lprec *lp, REAL tol, int infeasibles[], REAL *feasibilitygap); +STATIC MYBOOL isDualFeasible(lprec *lp, REAL tol, int *boundflips, int infeasibles[], REAL *feasibilitygap); + +/* Main simplex driver routines */ +STATIC int preprocess(lprec *lp); +STATIC void postprocess(lprec *lp); +STATIC MYBOOL performiteration(lprec *lp, int rownr, int varin, LREAL theta, MYBOOL primal, MYBOOL allowminit, REAL *prow, int *nzprow, REAL *pcol, int *nzpcol, int *boundswaps); +STATIC void transfer_solution_var(lprec *lp, int uservar); +STATIC void transfer_solution(lprec *lp, MYBOOL dofinal); + +/* Scaling utilities */ +STATIC REAL scaled_floor(lprec *lp, int colnr, REAL value, REAL epsscale); +STATIC REAL scaled_ceil(lprec *lp, int colnr, REAL value, REAL epsscale); + +/* Variable mapping utility routines */ +STATIC void varmap_lock(lprec *lp); +STATIC void varmap_clear(lprec *lp); +STATIC MYBOOL varmap_canunlock(lprec *lp); +STATIC void varmap_addconstraint(lprec *lp); +STATIC void varmap_addcolumn(lprec *lp); +STATIC void varmap_delete(lprec *lp, int base, int delta, LLrec *varmap); +STATIC void varmap_compact(lprec *lp, int prev_rows, int prev_cols); +STATIC MYBOOL varmap_validate(lprec *lp, int varno); +/* STATIC MYBOOL del_varnameex(lprec *lp, hashelem **namelist, hashtable *ht, int varnr, LLrec *varmap); */ + STATIC MYBOOL del_varnameex(lprec *lp, hashelem **namelist, int items, hashtable *ht, int varnr, LLrec *varmap); + +/* Pseudo-cost routines (internal) */ +STATIC BBPSrec *init_pseudocost(lprec *lp, int pseudotype); +STATIC void free_pseudocost(lprec *lp); +STATIC REAL get_pseudorange(BBPSrec *pc, int mipvar, int varcode); +STATIC void update_pseudocost(BBPSrec *pc, int mipvar, int varcode, MYBOOL capupper, REAL varsol); +STATIC REAL get_pseudobranchcost(BBPSrec *pc, int mipvar, MYBOOL dofloor); +STATIC REAL get_pseudonodecost(BBPSrec *pc, int mipvar, int vartype, REAL varsol); + +/* Matrix access and equation solving routines */ +STATIC void set_OF_override(lprec *lp, REAL *ofVector); +STATIC void set_OF_p1extra(lprec *lp, REAL p1extra); +STATIC void unset_OF_p1extra(lprec *lp); +MYBOOL modifyOF1(lprec *lp, int index, REAL *ofValue, REAL mult); +REAL __WINAPI get_OF_active(lprec *lp, int varnr, REAL mult); +STATIC MYBOOL is_OF_nz(lprec *lp, int colnr); + +STATIC int get_basisOF(lprec *lp, int coltarget[], REAL crow[], int colno[]); +int __WINAPI get_basiscolumn(lprec *lp, int j, int rn[], double bj[]); +int __WINAPI obtain_column(lprec *lp, int varin, REAL *pcol, int *nzlist, int *maxabs); +STATIC int compute_theta(lprec *lp, int rownr, LREAL *theta, int isupbound, REAL HarrisScalar, MYBOOL primal); + +/* Pivot utility routines */ +STATIC int findBasisPos(lprec *lp, int notint, int *var_basic); +STATIC MYBOOL check_degeneracy(lprec *lp, REAL *pcol, int *degencount); + +#endif /* HEADER_lp_lib */ diff --git a/src/external/lpsolve/headers/run_headers/lp_matrix.h b/src/external/lpsolve/headers/run_headers/lp_matrix.h new file mode 100644 index 00000000..5fb1e35a --- /dev/null +++ b/src/external/lpsolve/headers/run_headers/lp_matrix.h @@ -0,0 +1,266 @@ +// Copyright(c) 2016-2018 Kjell Konis . +// Version: 5.5.2.0-17 +// Description: The lpSolveAPI package provides an R interface to 'lp_solve', +// a Mixed Integer Linear Programming (MILP) solver with support for pure +// linear, (mixed) integer/binary, semi-continuous and special ordered sets +// (SOS) models. +// License: LGPL-2 +// Repository: CRAN + +#ifndef HEADER_lp_matrix +#define HEADER_lp_matrix + +#include "lp_types.h" +#include "lp_utils.h" + + +/* Sparse matrix element (ordered columnwise) */ +typedef struct _MATitem +{ + int rownr; + int colnr; + REAL value; +} MATitem; + +/* Constants for matrix product rounding options */ +#define MAT_ROUNDNONE 0 +#define MAT_ROUNDABS 1 +#define MAT_ROUNDREL 2 +#define MAT_ROUNDABSREL (MAT_ROUNDABS + MAT_ROUNDREL) +#define MAT_ROUNDRC 4 +#define MAT_ROUNDRCMIN 1.0 /* lp->epspivot */ +#if 1 + #define MAT_ROUNDDEFAULT MAT_ROUNDREL /* Typically increases performance */ +#else + #define MAT_ROUNDDEFAULT MAT_ROUNDABS /* Probably gives more precision */ +#endif + +/* Compiler option development features */ +/*#define DebugInv*/ /* Report array values at factorization/inversion */ +#define NoLoopUnroll /* Do not do loop unrolling */ +#define DirectArrayOF /* Reference lp->obj[] array instead of function call */ + + +/* Matrix column access macros to be able to easily change storage model */ +#define CAM_Record 0 +#define CAM_Vector 1 +#if 0 + #define MatrixColAccess CAM_Record +#else + #define MatrixColAccess CAM_Vector +#endif + +#if MatrixColAccess==CAM_Record +#define SET_MAT_ijA(item,i,j,A) mat->col_mat[item].rownr = i; \ + mat->col_mat[item].colnr = j; \ + mat->col_mat[item].value = A +#define COL_MAT_COLNR(item) (mat->col_mat[item].colnr) +#define COL_MAT_ROWNR(item) (mat->col_mat[item].rownr) +#define COL_MAT_VALUE(item) (mat->col_mat[item].value) +#define COL_MAT_COPY(left,right) mat->col_mat[left] = mat->col_mat[right] +#define COL_MAT_MOVE(to,from,rec) MEMMOVE(&(mat->col_mat[to]),&(mat->col_mat[from]),rec) +#define COL_MAT2_COLNR(item) (mat2->col_mat[item].colnr) +#define COL_MAT2_ROWNR(item) (mat2->col_mat[item].rownr) +#define COL_MAT2_VALUE(item) (mat2->col_mat[item].value) +#define matRowColStep (sizeof(MATitem)/sizeof(int)) +#define matValueStep (sizeof(MATitem)/sizeof(REAL)) + +#else /* if MatrixColAccess==CAM_Vector */ +#define SET_MAT_ijA(item,i,j,A) mat->col_mat_rownr[item] = i; \ + mat->col_mat_colnr[item] = j; \ + mat->col_mat_value[item] = A +#define COL_MAT_COLNR(item) (mat->col_mat_colnr[item]) +#define COL_MAT_ROWNR(item) (mat->col_mat_rownr[item]) +#define COL_MAT_VALUE(item) (mat->col_mat_value[item]) +#define COL_MAT_COPY(left,right) COL_MAT_COLNR(left) = COL_MAT_COLNR(right); \ + COL_MAT_ROWNR(left) = COL_MAT_ROWNR(right); \ + COL_MAT_VALUE(left) = COL_MAT_VALUE(right) +#define COL_MAT_MOVE(to,from,rec) MEMMOVE(&COL_MAT_COLNR(to),&COL_MAT_COLNR(from),rec); \ + MEMMOVE(&COL_MAT_ROWNR(to),&COL_MAT_ROWNR(from),rec); \ + MEMMOVE(&COL_MAT_VALUE(to),&COL_MAT_VALUE(from),rec) +#define COL_MAT2_COLNR(item) (mat2->col_mat_colnr[item]) +#define COL_MAT2_ROWNR(item) (mat2->col_mat_rownr[item]) +#define COL_MAT2_VALUE(item) (mat2->col_mat_value[item]) +#define matRowColStep 1 +#define matValueStep 1 + +#endif + + +/* Matrix row access macros to be able to easily change storage model */ +#define RAM_Index 0 +#define RAM_FullCopy 1 +#define MatrixRowAccess RAM_Index + +#if MatrixRowAccess==RAM_Index +#define ROW_MAT_COLNR(item) COL_MAT_COLNR(mat->row_mat[item]) +#define ROW_MAT_ROWNR(item) COL_MAT_ROWNR(mat->row_mat[item]) +#define ROW_MAT_VALUE(item) COL_MAT_VALUE(mat->row_mat[item]) + +#elif MatrixColAccess==CAM_Record +#define ROW_MAT_COLNR(item) (mat->row_mat[item].colnr) +#define ROW_MAT_ROWNR(item) (mat->row_mat[item].rownr) +#define ROW_MAT_VALUE(item) (mat->row_mat[item].value) + +#else /* if MatrixColAccess==CAM_Vector */ +#define ROW_MAT_COLNR(item) (mat->row_mat_colnr[item]) +#define ROW_MAT_ROWNR(item) (mat->row_mat_rownr[item]) +#define ROW_MAT_VALUE(item) (mat->row_mat_value[item]) + +#endif + + +typedef struct _MATrec +{ + /* Owner reference */ + lprec *lp; + + /* Active dimensions */ + int rows; + int columns; + + /* Allocated memory */ + int rows_alloc; + int columns_alloc; + int mat_alloc; /* The allocated size for matrix sized structures */ + + /* Sparse problem matrix storage */ +#if MatrixColAccess==CAM_Record + MATitem *col_mat; /* mat_alloc : The sparse data storage */ +#else /*MatrixColAccess==CAM_Vector*/ + int *col_mat_colnr; + int *col_mat_rownr; + REAL *col_mat_value; +#endif + int *col_end; /* columns_alloc+1 : col_end[i] is the index of the + first element after column i; column[i] is stored + in elements col_end[i-1] to col_end[i]-1 */ + int *col_tag; /* user-definable tag associated with each column */ + +#if MatrixRowAccess==RAM_Index + int *row_mat; /* mat_alloc : From index 0, row_mat contains the + row-ordered index of the elements of col_mat */ +#elif MatrixColAccess==CAM_Record + MATitem *row_mat; /* mat_alloc : From index 0, row_mat contains the + row-ordered copy of the elements in col_mat */ +#else /*if MatrixColAccess==CAM_Vector*/ + int *row_mat_colnr; + int *row_mat_rownr; + REAL *row_mat_value; +#endif + int *row_end; /* rows_alloc+1 : row_end[i] is the index of the + first element in row_mat after row i */ + int *row_tag; /* user-definable tag associated with each row */ + + REAL *colmax; /* Array of maximum values of each column */ + REAL *rowmax; /* Array of maximum values of each row */ + + REAL epsvalue; /* Zero element rejection threshold */ + REAL infnorm; /* The largest absolute value in the matrix */ + REAL dynrange; + MYBOOL row_end_valid; /* TRUE if row_end & row_mat are valid */ + MYBOOL is_roworder; /* TRUE if the current (temporary) matrix order is row-wise */ + +} MATrec; + +typedef struct _DeltaVrec +{ + lprec *lp; + int activelevel; + MATrec *tracker; +} DeltaVrec; + + +#ifdef __cplusplus +__EXTERN_C { +#endif + +/* Sparse matrix routines */ +STATIC MATrec *mat_create(lprec *lp, int rows, int columns, REAL epsvalue); +STATIC MYBOOL mat_memopt(MATrec *mat, int rowextra, int colextra, int nzextra); +STATIC void mat_free(MATrec **matrix); +STATIC MYBOOL inc_matrow_space(MATrec *mat, int deltarows); +STATIC int mat_mapreplace(MATrec *mat, LLrec *rowmap, LLrec *colmap, MATrec *insmat); +STATIC int mat_matinsert(MATrec *mat, MATrec *insmat); +STATIC int mat_zerocompact(MATrec *mat); +STATIC int mat_rowcompact(MATrec *mat, MYBOOL dozeros); +STATIC int mat_colcompact(MATrec *mat, int prev_rows, int prev_cols); +STATIC MYBOOL inc_matcol_space(MATrec *mat, int deltacols); +STATIC MYBOOL inc_mat_space(MATrec *mat, int mindelta); +STATIC int mat_shiftrows(MATrec *mat, int *bbase, int delta, LLrec *varmap); +STATIC int mat_shiftcols(MATrec *mat, int *bbase, int delta, LLrec *varmap); +STATIC MATrec *mat_extractmat(MATrec *mat, LLrec *rowmap, LLrec *colmap, MYBOOL negated); +STATIC int mat_appendrow(MATrec *mat, int count, REAL *row, int *colno, REAL mult, MYBOOL checkrowmode); +STATIC int mat_appendcol(MATrec *mat, int count, REAL *column, int *rowno, REAL mult, MYBOOL checkrowmode); +MYBOOL mat_get_data(lprec *lp, int matindex, MYBOOL isrow, int **rownr, int **colnr, REAL **value); +MYBOOL mat_set_rowmap(MATrec *mat, int row_mat_index, int rownr, int colnr, int col_mat_index); +STATIC MYBOOL mat_indexrange(MATrec *mat, int index, MYBOOL isrow, int *startpos, int *endpos); +STATIC MYBOOL mat_validate(MATrec *mat); +STATIC MYBOOL mat_equalRows(MATrec *mat, int baserow, int comprow); +STATIC int mat_findelm(MATrec *mat, int row, int column); +STATIC int mat_findins(MATrec *mat, int row, int column, int *insertpos, MYBOOL validate); +STATIC void mat_multcol(MATrec *mat, int col_nr, REAL mult, MYBOOL DoObj); +STATIC REAL mat_getitem(MATrec *mat, int row, int column); +STATIC MYBOOL mat_setitem(MATrec *mat, int row, int column, REAL value); +STATIC MYBOOL mat_additem(MATrec *mat, int row, int column, REAL delta); +STATIC MYBOOL mat_setvalue(MATrec *mat, int Row, int Column, REAL Value, MYBOOL doscale); +STATIC int mat_nonzeros(MATrec *mat); +STATIC int mat_collength(MATrec *mat, int colnr); +STATIC int mat_rowlength(MATrec *mat, int rownr); +STATIC void mat_multrow(MATrec *mat, int row_nr, REAL mult); +STATIC void mat_multadd(MATrec *mat, REAL *lhsvector, int varnr, REAL mult); +STATIC MYBOOL mat_setrow(MATrec *mat, int rowno, int count, REAL *row, int *colno, MYBOOL doscale, MYBOOL checkrowmode); +STATIC MYBOOL mat_setcol(MATrec *mat, int colno, int count, REAL *column, int *rowno, MYBOOL doscale, MYBOOL checkrowmode); +STATIC MYBOOL mat_mergemat(MATrec *target, MATrec *source, MYBOOL usecolmap); +STATIC int mat_checkcounts(MATrec *mat, int *rownum, int *colnum, MYBOOL freeonexit); +STATIC int mat_expandcolumn(MATrec *mat, int colnr, REAL *column, int *nzlist, MYBOOL signedA); +STATIC MYBOOL mat_computemax(MATrec *mat); +STATIC MYBOOL mat_transpose(MATrec *mat); + +/* Refactorization and recomputation routine */ +MYBOOL __WINAPI invert(lprec *lp, MYBOOL shiftbounds, MYBOOL final); + +/* Vector compression and expansion routines */ +STATIC MYBOOL vec_compress(REAL *densevector, int startpos, int endpos, REAL epsilon, REAL *nzvector, int *nzindex); +STATIC MYBOOL vec_expand(REAL *nzvector, int *nzindex, REAL *densevector, int startpos, int endpos); + +/* Sparse matrix products */ +STATIC MYBOOL get_colIndexA(lprec *lp, int varset, int *colindex, MYBOOL append); +STATIC int prod_Ax(lprec *lp, int *coltarget, REAL *input, int *nzinput, REAL roundzero, REAL ofscalar, REAL *output, int *nzoutput, int roundmode); +STATIC int prod_xA(lprec *lp, int *coltarget, REAL *input, int *nzinput, REAL roundzero, REAL ofscalar, REAL *output, int *nzoutput, int roundmode); +STATIC MYBOOL prod_xA2(lprec *lp, int *coltarget, REAL *prow, REAL proundzero, int *pnzprow, + REAL *drow, REAL droundzero, int *dnzdrow, REAL ofscalar, int roundmode); + +/* Equation solution */ +STATIC MYBOOL fimprove(lprec *lp, REAL *pcol, int *nzidx, REAL roundzero); +STATIC void ftran(lprec *lp, REAL *rhsvector, int *nzidx, REAL roundzero); +STATIC MYBOOL bimprove(lprec *lp, REAL *rhsvector, int *nzidx, REAL roundzero); +STATIC void btran(lprec *lp, REAL *rhsvector, int *nzidx, REAL roundzero); + +/* Combined equation solution and matrix product for simplex operations */ +STATIC MYBOOL fsolve(lprec *lp, int varin, REAL *pcol, int *nzidx, REAL roundzero, REAL ofscalar, MYBOOL prepareupdate); +STATIC MYBOOL bsolve(lprec *lp, int row_nr, REAL *rhsvector, int *nzidx, REAL roundzero, REAL ofscalar); +STATIC void bsolve_xA2(lprec *lp, int* coltarget, + int row_nr1, REAL *vector1, REAL roundzero1, int *nzvector1, + int row_nr2, REAL *vector2, REAL roundzero2, int *nzvector2, int roundmode); + +/* Change-tracking routines (primarily for B&B and presolve) */ +STATIC DeltaVrec *createUndoLadder(lprec *lp, int levelitems, int maxlevels); +STATIC int incrementUndoLadder(DeltaVrec *DV); +STATIC MYBOOL modifyUndoLadder(DeltaVrec *DV, int itemno, REAL target[], REAL newvalue); +STATIC int countsUndoLadder(DeltaVrec *DV); +STATIC int restoreUndoLadder(DeltaVrec *DV, REAL target[]); +STATIC int decrementUndoLadder(DeltaVrec *DV); +STATIC MYBOOL freeUndoLadder(DeltaVrec **DV); + +/* Specialized presolve undo functions */ +STATIC MYBOOL appendUndoPresolve(lprec *lp, MYBOOL isprimal, REAL beta, int colnrDep); +STATIC MYBOOL addUndoPresolve(lprec *lp, MYBOOL isprimal, int colnrElim, REAL alpha, REAL beta, int colnrDep); + + +#ifdef __cplusplus +} +#endif + +#endif /* HEADER_lp_matrix */ + diff --git a/src/external/lpsolve/headers/run_headers/lp_mipbb.h b/src/external/lpsolve/headers/run_headers/lp_mipbb.h new file mode 100644 index 00000000..1d1ca4d4 --- /dev/null +++ b/src/external/lpsolve/headers/run_headers/lp_mipbb.h @@ -0,0 +1,73 @@ +// Copyright(c) 2016-2018 Kjell Konis . +// Version: 5.5.2.0-17 +// Description: The lpSolveAPI package provides an R interface to 'lp_solve', +// a Mixed Integer Linear Programming (MILP) solver with support for pure +// linear, (mixed) integer/binary, semi-continuous and special ordered sets +// (SOS) models. +// License: LGPL-2 +// Repository: CRAN + +#ifndef HEADER_lp_mipbb +#define HEADER_lp_mipbb + +#include "lp_types.h" +#include "lp_utils.h" + + +/* Bounds storage for B&B routines */ +typedef struct _BBrec +{ + struct _BBrec *parent; + struct _BBrec *child; + lprec *lp; + int varno; + int vartype; + int lastvarcus; /* Count of non-int variables of the previous branch */ + int lastrcf; + int nodesleft; + int nodessolved; + int nodestatus; + REAL noderesult; + REAL lastsolution; /* Optimal solution of the previous branch */ + REAL sc_bound; + REAL *upbo, *lowbo; + REAL UPbound, LObound; + int UBtrack, LBtrack; /* Signals that incoming bounds were changed */ + MYBOOL contentmode; /* Flag indicating if we "own" the bound vectors */ + MYBOOL sc_canset; + MYBOOL isSOS; + MYBOOL isGUB; + int *varmanaged; /* Extended list of variables managed by this B&B level */ + MYBOOL isfloor; /* State variable indicating the active B&B bound */ + MYBOOL UBzerobased; /* State variable indicating if bounds have been rebased */ +} BBrec; + +#ifdef __cplusplus +extern "C" { +#endif + +STATIC BBrec *create_BB(lprec *lp, BBrec *parentBB, MYBOOL dofullcopy); +STATIC BBrec *push_BB(lprec *lp, BBrec *parentBB, int varno, int vartype, int varcus); +STATIC MYBOOL initbranches_BB(BBrec *BB); +STATIC MYBOOL fillbranches_BB(BBrec *BB); +STATIC MYBOOL nextbranch_BB(BBrec *BB); +STATIC MYBOOL strongbranch_BB(lprec *lp, BBrec *BB, int varno, int vartype, int varcus); +STATIC MYBOOL initcuts_BB(lprec *lp); +STATIC int updatecuts_BB(lprec *lp); +STATIC MYBOOL freecuts_BB(lprec *lp); +STATIC BBrec *findself_BB(BBrec *BB); +STATIC int solve_LP(lprec *lp, BBrec *BB); +STATIC int rcfbound_BB(BBrec *BB, int varno, MYBOOL isINT, REAL *newbound, MYBOOL *isfeasible); +STATIC MYBOOL findnode_BB(BBrec *BB, int *varno, int *vartype, int *varcus); +STATIC int solve_BB(BBrec *BB); +STATIC MYBOOL free_BB(BBrec **BB); +STATIC BBrec *pop_BB(BBrec *BB); + +STATIC int run_BB(lprec *lp); + +#ifdef __cplusplus + } +#endif + +#endif /* HEADER_lp_mipbb */ + diff --git a/src/external/lpsolve/headers/run_headers/lp_types.h b/src/external/lpsolve/headers/run_headers/lp_types.h new file mode 100644 index 00000000..e98fbe37 --- /dev/null +++ b/src/external/lpsolve/headers/run_headers/lp_types.h @@ -0,0 +1,339 @@ +// Copyright(c) 2016-2018 Kjell Konis . +// Version: 5.5.2.0-17 +// Description: The lpSolveAPI package provides an R interface to 'lp_solve', +// a Mixed Integer Linear Programming (MILP) solver with support for pure +// linear, (mixed) integer/binary, semi-continuous and special ordered sets +// (SOS) models. +// License: LGPL-2 +// Repository: CRAN + +#ifndef HEADER_lp_types +#define HEADER_lp_types + +#ifdef WIN32 + #include +#endif + +/* Define data types */ +/* ------------------------------------------------------------------------- */ +#ifndef LLONG + #if defined __BORLANDC__ + #define LLONG __int64 + #elif !defined _MSC_VER || _MSC_VER >= 1310 + #define LLONG long long + #else + #define LLONG __int64 + #endif +#endif + +#ifndef COUNTER + #define COUNTER LLONG +#endif + +#ifndef REAL + #define REAL double +#endif + +#ifndef REALXP + #if 1 + #define REALXP long double /* Set local accumulation variable as long double */ + #else + #define REALXP REAL /* Set local accumulation as default precision */ + #endif +#endif + +#ifndef LREAL + #if 0 + #define LREAL long double /* Set global solution update variable as long double */ + #else + #define LREAL REAL /* Set global solution update variable as default precision */ + #endif +#endif + +#define RESULTVALUEMASK "%18.12g" /* Set fixed-format real-valued output precision; + suggested width: ABS(exponent of DEF_EPSVALUE)+6. */ +#define INDEXVALUEMASK "%8d" /* Set fixed-format integer-valued output width */ + +#ifndef DEF_STRBUFSIZE + #define DEF_STRBUFSIZE 512 +#endif +#ifndef MAXINT32 + #define MAXINT32 2147483647 +#endif +#ifndef MAXUINT32 + #define MAXUINT32 4294967295 +#endif + +#ifndef MAXINT64 + #if defined _LONGLONG || defined __LONG_LONG_MAX__ || defined LLONG_MAX + #define MAXINT64 9223372036854775807ll + #else + #define MAXINT64 9223372036854775807l + #endif +#endif +#ifndef MAXUINT64 + #if defined _LONGLONG || defined __LONG_LONG_MAX__ || defined LLONG_MAX + #define MAXUINT64 18446744073709551615ll + #else + #define MAXUINT64 18446744073709551615l + #endif +#endif + +#ifndef CHAR_BIT + #define CHAR_BIT 8 +#endif +#ifndef MYBOOL + #define MYBOOL unsigned char /* Conserve memory, could be unsigned int */ +#endif + + +/* Constants */ +/* ------------------------------------------------------------------------- */ +#ifndef NULL + #define NULL 0 +#endif + +/* Byte-sized Booleans and extended options */ +#define FALSE 0 +#define TRUE 1 +#define AUTOMATIC 2 +#define DYNAMIC 4 + +/* Sorting and comparison constants */ +#define COMP_PREFERCANDIDATE 1 +#define COMP_PREFERNONE 0 +#define COMP_PREFERINCUMBENT -1 + +/* Library load status values */ +#define LIB_LOADED 0 +#define LIB_NOTFOUND 1 +#define LIB_NOINFO 2 +#define LIB_NOFUNCTION 3 +#define LIB_VERINVALID 4 +#define LIB_STR_LOADED "Successfully loaded" +#define LIB_STR_NOTFOUND "File not found" +#define LIB_STR_NOINFO "No version data" +#define LIB_STR_NOFUNCTION "Missing function header" +#define LIB_STR_VERINVALID "Incompatible version" +#define LIB_STR_MAXLEN 23 + + +/* Compiler/target settings */ +/* ------------------------------------------------------------------------- */ +#if (defined _WIN32) || (defined WIN32) || (defined _WIN64) || (defined WIN64) +# define __WINAPI WINAPI +#else +# define __WINAPI +#endif + +#if (defined _WIN32) || (defined WIN32) || (defined _WIN64) || (defined WIN64) +# define __VACALL __cdecl +#else +# define __VACALL +#endif + +#ifndef __BORLANDC__ + + #ifdef _USRDLL + + #if 1 + #define __EXPORT_TYPE __declspec(dllexport) + #else + /* Set up for the Microsoft compiler */ + #ifdef LP_SOLVE_EXPORTS + #define __EXPORT_TYPE __declspec(dllexport) + #else + #define __EXPORT_TYPE __declspec(dllimport) + #endif + #endif + + #else + + #define __EXPORT_TYPE + + #endif + + #ifdef __cplusplus + #define __EXTERN_C extern "C" + #else + #define __EXTERN_C + #endif + +#else /* Otherwise set up for the Borland compiler */ + + #ifdef __DLL__ + + #define _USRDLL + #define __EXTERN_C extern "C" + + #ifdef __READING_THE_DLL + #define __EXPORT_TYPE __import + #else + #define __EXPORT_TYPE __export + #endif + + #else + + #define __EXPORT_TYPE + #define __EXTERN_C extern "C" + + #endif + +#endif + + +#if 0 + #define STATIC static +#else + #define STATIC +#endif + +#if !defined INLINE + #if defined __cplusplus + #define INLINE inline + #elif (defined _WIN32) || (defined WIN32) || (defined _WIN64) || (defined WIN64) + #define INLINE __inline + #else + #define INLINE static + #endif +#endif + +/* Function macros */ +/* ------------------------------------------------------------------------- */ +#define my_limitrange(x, lo, hi) ((x) < (lo) ? (lo) : ((x) > (hi) ? (hi) : (x))) +#ifndef my_mod + #define my_mod(n, m) ((n) % (m)) +#endif +#define my_if(t, x, y) ((t) ? (x) : (y)) +#define my_sign(x) ((x) < 0 ? -1 : 1) +#if 1 + #define my_chsign(t, x) ( ((t) && ((x) != 0)) ? -(x) : (x)) +#else + #define my_chsign(t, x) ( (2*((t) == 0) - 1) * (x) ) /* "Pipelined", but problem with "negative zero" and possible problems on AIX */ +#endif +#define my_flipsign(x) ( fabs((REAL) (x)) == 0 ? 0 : -(x) ) +#define my_roundzero(val, eps) if (fabs((REAL) (val)) < eps) val = 0 +#define my_avoidtiny(val, eps) (fabs((REAL) (val)) < eps ? 0 : val) + +#if 1 + #define my_infinite(lp, val) ( (MYBOOL) (fabs(val) >= lp->infinite) ) +#else + #define my_infinite(lp, val) is_infinite(lp, val) +#endif +#define my_inflimit(lp, val) ( my_infinite(lp, val) ? lp->infinite * my_sign(val) : (val) ) +#if 0 + #define my_precision(val, eps) ((fabs((REAL) (val))) < (eps) ? 0 : (val)) +#else + #define my_precision(val, eps) restoreINT(val, eps) +#endif +#define my_reldiff(x, y) (((x) - (y)) / (1.0 + fabs((REAL) (y)))) +#define my_boundstr(x) (fabs(x) < lp->infinite ? sprintf("%g",x) : ((x) < 0 ? "-Inf" : "Inf") ) +#ifndef my_boolstr + #define my_boolstr(x) (!(x) ? "FALSE" : "TRUE") +#endif +#define my_basisstr(isbasic) ((isbasic) ? "BASIC" : "NON-BASIC") +#define my_simplexstr(isdual) ((isdual) ? "DUAL" : "PRIMAL") +#define my_plural_std(count) (count == 1 ? "" : "s") +#define my_plural_y(count) (count == 1 ? "y" : "ies") +#define my_lowbound(x) ((FULLYBOUNDEDSIMPLEX) ? (x) : 0) + + +/* Bound macros usable for both the standard and fully bounded simplex */ +/* ------------------------------------------------------------------------- */ +/* +#define my_lowbo(lp, varnr) ( lp->isfullybounded ? lp->lowbo[varnr] : 0.0 ) +#define my_upbo(lp, varnr) ( lp->isfullybounded ? lp->upbo[varnr] : lp->lowbo[varnr] + lp->upbo[varnr] ) +#define my_rangebo(lp, varnr) ( lp->isfullybounded ? lp->upbo[varnr] - lp->lowbo[varnr] : lp->upbo[varnr] ) +*/ +#define my_lowbo(lp, varnr) ( 0.0 ) +#define my_upbo(lp, varnr) ( lp->lowbo[varnr] + lp->upbo[varnr] ) +#define my_rangebo(lp, varnr) ( lp->upbo[varnr] ) + +#define my_unbounded(lp, varnr) ((lp->upbo[varnr] >= lp->infinite) && (lp->lowbo[varnr] <= -lp->infinite)) +#define my_bounded(lp, varnr) ((lp->upbo[varnr] < lp->infinite) && (lp->lowbo[varnr] > -lp->infinite)) + +/* Forward declarations */ +/* ------------------------------------------------------------------------- */ +typedef struct _lprec lprec; +typedef struct _INVrec INVrec; +union QSORTrec; + +#ifndef UNIONTYPE + #ifdef __cplusplus + #define UNIONTYPE + #else + #define UNIONTYPE union + #endif +#endif + +/* B4 factorization optimization data */ +typedef struct _B4rec +{ + int *B4_var; /* Position of basic columns in the B4 basis */ + int *var_B4; /* Variable in the B4 basis */ + int *B4_row; /* B4 position of the i'th row */ + int *row_B4; /* Original position of the i'th row */ + REAL *wcol; + int *nzwcol; +} B4rec; + +#define OBJ_STEPS 5 +typedef struct _OBJmonrec { + lprec *lp; + int oldpivstrategy, + oldpivrule, pivrule, ruleswitches, + limitstall[2], limitruleswitches, + idxstep[OBJ_STEPS], countstep, startstep, currentstep, + Rcycle, Ccycle, Ncycle, Mcycle, Icount; + REAL thisobj, prevobj, + objstep[OBJ_STEPS], + thisinfeas, previnfeas, + epsvalue; + char spxfunc[10]; + MYBOOL pivdynamic; + MYBOOL isdual; + MYBOOL active; +} OBJmonrec; + +typedef struct _edgerec +{ + REAL *edgeVector; +} edgerec; + +typedef struct _pricerec +{ + REAL theta; + REAL pivot; + REAL epspivot; + int varno; + lprec *lp; + MYBOOL isdual; +} pricerec; +typedef struct _multirec +{ + lprec *lp; + int size; /* The maximum number of multiply priced rows/columns */ + int used; /* The current / active number of multiply priced rows/columns */ + int limit; /* The active/used count at which a full update is triggered */ + pricerec *items; /* Array of best multiply priced rows/columns */ + int *freeList; /* The indeces of available positions in "items" */ + UNIONTYPE QSORTrec *sortedList; /* List of pointers to "pricerec" items in sorted order */ + REAL *stepList; /* Working array (values in sortedList order) */ + REAL *valueList; /* Working array (values in sortedList order) */ + int *indexSet; /* The final exported index list of pivot variables */ + int active; /* Index of currently active multiply priced row/column */ + int retries; + REAL step_base; + REAL step_last; + REAL obj_base; + REAL obj_last; + REAL epszero; + REAL maxpivot; + REAL maxbound; + MYBOOL sorted; + MYBOOL truncinf; + MYBOOL objcheck; + MYBOOL dirty; +} multirec; + +#endif /* HEADER_lp_types */ diff --git a/src/external/lpsolve/headers/run_headers/lp_utils.h b/src/external/lpsolve/headers/run_headers/lp_utils.h new file mode 100644 index 00000000..f5137c6f --- /dev/null +++ b/src/external/lpsolve/headers/run_headers/lp_utils.h @@ -0,0 +1,155 @@ +// Copyright(c) 2016-2018 Kjell Konis . +// Version: 5.5.2.0-17 +// Description: The lpSolveAPI package provides an R interface to 'lp_solve', +// a Mixed Integer Linear Programming (MILP) solver with support for pure +// linear, (mixed) integer/binary, semi-continuous and special ordered sets +// (SOS) models. +// License: LGPL-2 +// Repository: CRAN + +#ifndef HEADER_lp_utils +#define HEADER_lp_utils + +#ifdef FORTIFY + +#include "lp_fortify.h" + +#define allocCHAR allocCHAR_FORTIFY +#define allocMYBOOL allocMYBOOL_FORTIFY +#define allocINT allocINT_FORTIFY +#define allocREAL allocREAL_FORTIFY +#define allocLREAL allocLREAL_FORTIFY + +#endif + +#include "lp_types.h" + +/* Temporary data storage arrays */ +typedef struct _workarraysrec +{ + lprec *lp; + int size; + int count; + char **vectorarray; + int *vectorsize; +} workarraysrec; + +typedef struct _LLrec +{ + int size; /* The allocated list size */ + int count; /* The current entry count */ + int firstitem; + int lastitem; + int *map; /* The list of forward and backward-mapped entries */ +} LLrec; + +typedef struct _PVrec +{ + int count; /* The allocated list item count */ + int *startpos; /* Starting index of the current value */ + REAL *value; /* The list of forward and backward-mapped entries */ + struct _PVrec *parent; /* The parent record in a pushed chain */ +} PVrec; + + +#ifdef __cplusplus +extern "C" { +#endif + +/* Put function headers here */ +STATIC MYBOOL allocCHAR(lprec *lp, char **ptr, int size, MYBOOL clear); +STATIC MYBOOL allocMYBOOL(lprec *lp, MYBOOL **ptr, int size, MYBOOL clear); +STATIC MYBOOL allocINT(lprec *lp, int **ptr, int size, MYBOOL clear); +STATIC MYBOOL allocREAL(lprec *lp, REAL **ptr, int size, MYBOOL clear); +STATIC MYBOOL allocLREAL(lprec *lp, LREAL **ptr, int size, MYBOOL clear); +STATIC MYBOOL allocFREE(lprec *lp, void **ptr); +REAL *cloneREAL(lprec *lp, REAL *origlist, int size); +MYBOOL *cloneMYBOOL(lprec *lp, MYBOOL *origlist, int size); +int *cloneINT(lprec *lp, int *origlist, int size); + +int comp_bits(MYBOOL *bitarray1, MYBOOL *bitarray2, int items); + +STATIC workarraysrec *mempool_create(lprec *lp); +STATIC char *mempool_obtainVector(workarraysrec *mempool, int count, int unitsize); +STATIC MYBOOL mempool_releaseVector(workarraysrec *mempool, char *memvector, MYBOOL forcefree); +STATIC MYBOOL mempool_free(workarraysrec **mempool); + +STATIC void roundVector(LREAL *myvector, int endpos, LREAL roundzero); +STATIC REAL normalizeVector(REAL *myvector, int endpos); + +STATIC void swapINT(int *item1, int *item2); +STATIC void swapREAL(REAL *item1, REAL *item2); +STATIC void swapPTR(void **item1, void **item2); +STATIC REAL restoreINT(REAL valREAL, REAL epsilon); +STATIC REAL roundToPrecision(REAL value, REAL precision); + +STATIC int searchFor(int target, int *attributes, int size, int offset, MYBOOL absolute); + +STATIC MYBOOL isINT(lprec *lp, REAL value); +STATIC MYBOOL isOrigFixed(lprec *lp, int varno); +STATIC void chsign_bounds(REAL *lobound, REAL *upbound); +STATIC REAL rand_uniform(lprec *lp, REAL range); + +/* Doubly linked list routines */ +STATIC int createLink(int size, LLrec **linkmap, MYBOOL *usedpos); +STATIC MYBOOL freeLink(LLrec **linkmap); +STATIC int sizeLink(LLrec *linkmap); +STATIC MYBOOL isActiveLink(LLrec *linkmap, int itemnr); +STATIC int countActiveLink(LLrec *linkmap); +STATIC int countInactiveLink(LLrec *linkmap); +STATIC int firstActiveLink(LLrec *linkmap); +STATIC int lastActiveLink(LLrec *linkmap); +STATIC MYBOOL appendLink(LLrec *linkmap, int newitem); +STATIC MYBOOL insertLink(LLrec *linkmap, int afteritem, int newitem); +STATIC MYBOOL setLink(LLrec *linkmap, int newitem); +STATIC MYBOOL fillLink(LLrec *linkmap); +STATIC int nextActiveLink(LLrec *linkmap, int backitemnr); +STATIC int prevActiveLink(LLrec *linkmap, int forwitemnr); +STATIC int firstInactiveLink(LLrec *linkmap); +STATIC int lastInactiveLink(LLrec *linkmap); +STATIC int nextInactiveLink(LLrec *linkmap, int backitemnr); +STATIC int prevInactiveLink(LLrec *linkmap, int forwitemnr); +STATIC int removeLink(LLrec *linkmap, int itemnr); +STATIC LLrec *cloneLink(LLrec *sourcemap, int newsize, MYBOOL freesource); +STATIC int compareLink(LLrec *linkmap1, LLrec *linkmap2); +STATIC MYBOOL verifyLink(LLrec *linkmap, int itemnr, MYBOOL doappend); + +/* Packed vector routines */ +STATIC PVrec *createPackedVector(int size, REAL *values, int *workvector); +STATIC void pushPackedVector(PVrec *PV, PVrec *parent); +STATIC MYBOOL unpackPackedVector(PVrec *PV, REAL **target); +STATIC REAL getvaluePackedVector(PVrec *PV, int index); +STATIC PVrec *popPackedVector(PVrec *PV); +STATIC MYBOOL freePackedVector(PVrec **PV); + +#ifdef __cplusplus + } +#endif + +#endif /* HEADER_lp_utils */ + +#ifdef FORTIFY + +#if defined CODE_lp_utils && !defined CODE_lp_utils_ +int _Fortify_ret; +#else +extern int _Fortify_ret; +#endif + +#ifdef CODE_lp_utils +#define CODE_lp_utils_ +#else +# undef allocCHAR +# undef allocMYBOOL +# undef allocINT +# undef allocREAL +# undef allocLREAL +# define allocCHAR(lp, ptr, size, clear) (Fortify_LINE(__LINE__), Fortify_FILE(__FILE__), _Fortify_ret = allocCHAR_FORTIFY(lp, ptr, size, clear), Fortify_LINE(0), Fortify_FILE(NULL), _Fortify_ret) +# define allocMYBOOL(lp, ptr, size, clear) (Fortify_LINE(__LINE__), Fortify_FILE(__FILE__), _Fortify_ret = allocMYBOOL_FORTIFY(lp, ptr, size, clear), Fortify_LINE(0), Fortify_FILE(NULL), _Fortify_ret) +# define allocINT(lp, ptr, size, clear) (Fortify_LINE(__LINE__), Fortify_FILE(__FILE__), _Fortify_ret = allocINT_FORTIFY(lp, ptr, size, clear), Fortify_LINE(0), Fortify_FILE(NULL), _Fortify_ret) +# define allocREAL(lp, ptr, size, clear) (Fortify_LINE(__LINE__), Fortify_FILE(__FILE__), _Fortify_ret = allocREAL_FORTIFY(lp, ptr, size, clear), Fortify_LINE(0), Fortify_FILE(NULL), _Fortify_ret) +# define allocLREAL(lp, ptr, size, clear) (Fortify_LINE(__LINE__), Fortify_FILE(__FILE__), _Fortify_ret = allocLREAL_FORTIFY(lp, ptr, size, clear), Fortify_LINE(0), Fortify_FILE(NULL), _Fortify_ret) +#endif + +#endif + diff --git a/src/external/minimum_ellipsoid/bnmin_main.h b/src/external/minimum_ellipsoid/bnmin_main.h new file mode 100644 index 00000000..bc109dab --- /dev/null +++ b/src/external/minimum_ellipsoid/bnmin_main.h @@ -0,0 +1,87 @@ +// VolEsti (volume computation and sampling library) + +// Copyright (c) 20012-2018 Vissarion Fisikopoulos +// Copyright (c) 2018 Apostolos Chalkis + +// This file is converted from BNMin1 (https://www.mrao.cam.ac.uk/~bn204/oof/bnmin1.html) by Apostolos Chalkis + +// Original copyright notice: + +/** + Bojan Nikolic + Initial version 2008 + + This file is part of BNMin1 and is licensed under GNU General + Public License version 2. + + \file bnmin_main.cxx + +*/ +#ifndef BNMIN_MAIN_H +#define BNMIN_MAIN_H + +#include +#include + +#include + +//#include "bnmin_main1.h" +//#include "config.h" + +//namespace Minim { + + inline const char * version(void) + { + //return PACKAGE_VERSION; + return "11"; + } + + class BaseErr: + public std::runtime_error + { + public: + BaseErr(const std::string &s): + std::runtime_error(s) + { + } + + }; + + class NParsErr: + public BaseErr + { + public: + NParsErr(const std::string &fname, + size_t expected, + size_t received): + BaseErr( (boost::format("In function %s expected %i but received %i pars ") + % fname + % expected + % received).str()) + { + } + + + }; + + /*BaseErr::BaseErr(const std::string &s): + std::runtime_error(s) + { + } + + NParsErr::NParsErr(const std::string &fname, + size_t expected, + size_t received): + BaseErr( (boost::format("In function %s expected %i but received %i pars ") + % fname + % expected + % received).str()) + { + }*/ + + +#endif + +//} + + diff --git a/src/external/minimum_ellipsoid/khach.h b/src/external/minimum_ellipsoid/khach.h new file mode 100644 index 00000000..56904cab --- /dev/null +++ b/src/external/minimum_ellipsoid/khach.h @@ -0,0 +1,233 @@ +// VolEsti (volume computation and sampling library) + +// Copyright (c) 20012-2018 Vissarion Fisikopoulos +// Copyright (c) 2018 Apostolos Chalkis + +// This file is converted from BNMin1 (https://www.mrao.cam.ac.uk/~bn204/oof/bnmin1.html) by Apostolos Chalkis + +// Original copyright notice: + +/** + Bojan Nikolic + Initial version 2010 + + This file is part of BNMin1 and is licensed under GNU General + Public License version 2 + + \file ellipsoids.cxx + + Computation and use of ellipsoids releated to sets of points +*/ +#ifndef KHACH_H +#define KHACH_H + +#include +#include +#include + +#include +#include +#include + +#include +#include + +//#include "khach1.h" +//#include "mcpoint1.h" +#include "mcpoint.h" +//#include "bnmin_main1.h" +//#include "bnmin_main2.h" + +//#include "../bnmin_main.hxx" + +//namespace Minim { + + namespace ublas=boost::numeric::ublas; + + struct KhachiyanEllipsoid + { + ublas::matrix Q; + ublas::vector c; + }; + + template + bool InvertMatrix(const ublas::matrix &input, + ublas::matrix &inverse) + { + using namespace boost::numeric::ublas; + typedef permutation_matrix pmatrix; + matrix A(input); + pmatrix pm(A.size1()); + int res = lu_factorize(A,pm); + if( res != 0 ) return false; + inverse.assign(ublas::identity_matrix(A.size1())); + lu_substitute(A, pm, inverse); + return true; + } + + + inline void InvertLP(const ublas::matrix &Lambdap, + ublas::matrix &LpInv) + { + bool res=InvertMatrix(Lambdap, LpInv); + if (not res) + { + // throw an error of your choice here! + // throw MatrixErr("Could not invert matrix: ", + // Lambdap); + } + } + + inline void Lift(const ublas::matrix &A, + ublas::matrix &Ap) + { + Ap.resize(A.size1()+1, + A.size2()); + ublas::matrix_range > + sub(Ap, + ublas::range(0, A.size1()), + ublas::range(0, A.size2())); + sub.assign(A); + ublas::row(Ap, Ap.size1()-1)=ublas::scalar_vector(A.size2(),1.0); + + } + + inline void genDiag(const ublas::vector &p, + ublas::matrix &res) + { + res.assign(ublas::zero_matrix(p.size(), + p.size())); + for(size_t i=0; i &Ap, + const ublas::vector &p, + ublas::matrix &Lambdap) + { + + ublas::matrix dp(p.size(), p.size()); + genDiag(p, dp); + + dp=ublas::prod(dp, ublas::trans(Ap)); + Lambdap=ublas::prod(Ap, + dp); + } + + inline double KhachiyanIter(const ublas::matrix &Ap, + ublas::vector &p) + { + /// Dimensionality of the problem + const size_t d=Ap.size1()-1; + + ublas::matrix Lp; + ublas::matrix M; + KaLambda(Ap, p, Lp); + ublas::matrix ILp(Lp.size1(), Lp.size2()); + InvertLP(Lp, ILp); + M=ublas::prod(ILp, Ap); + M=ublas::prod(ublas::trans(Ap), M); + + double maxval=0; + size_t maxi=0; + for(size_t i=0; i maxval) + { + maxval=M(i,i); + maxi=i; + } + } + const double step_size=(maxval -d - 1)/((d+1)*(maxval-1)); + ublas::vector newp=p*(1-step_size); + newp(maxi) += step_size; + + const double err= ublas::norm_2(newp-p); + p=newp; + return err; + + } + + inline void KaInvertDual(const ublas::matrix &A, + const ublas::vector &p, + ublas::matrix &Q, + ublas::vector &c + ) + { + const size_t d=A.size1(); + ublas::matrix dp(p.size(), p.size()); + genDiag(p, dp); + + ublas::matrix PN=ublas::prod(dp, ublas::trans(A)); + PN=ublas::prod(A, PN); + + ublas::vector M2=ublas::prod(A, p); + ublas::matrix M3=ublas::outer_prod(M2, M2); + + ublas::matrix invert(PN.size1(), PN.size2()); + InvertLP(PN- M3, invert); + + Q.assign( 1.0/d *invert); + c=ublas::prod(A, p); + + + } + + inline double KhachiyanAlgo(const ublas::matrix &A, + double eps, + size_t maxiter, + ublas::matrix &Q, + ublas::vector &c) + { + ublas::vector p=ublas::scalar_vector(A.size2(), 1.0)*(1.0/A.size2()); + + ublas::matrix Ap; + Lift(A, Ap); + + double ceps=eps*2; + for (size_t i=0; ieps; ++i) + { + ceps=KhachiyanIter(Ap, p); + } + + KaInvertDual(A, p, Q, c); + + return ceps; + + + } + + inline double KhachiyanAlgo(const std::set &ss, + double eps, + size_t maxiter, + KhachiyanEllipsoid &res) + { + const size_t d=ss.begin()->p.size(); + ublas::matrix A(d, + ss.size()); + + size_t j=0; + for (std::set::const_iterator i=ss.begin(); + i != ss.end(); + ++i) + { + for(size_t k=0; k p[k]; + ++j; + } + + ublas::matrix Q(d,d); + ublas::vector c(d); + + const double ceps=KhachiyanAlgo(A, eps, maxiter, + Q, c); + res.Q=Q; + res.c=c; + return ceps; + } + +#endif + +//} diff --git a/src/external/minimum_ellipsoid/mcpoint.h b/src/external/minimum_ellipsoid/mcpoint.h new file mode 100644 index 00000000..5e332695 --- /dev/null +++ b/src/external/minimum_ellipsoid/mcpoint.h @@ -0,0 +1,477 @@ +// VolEsti (volume computation and sampling library) + +// Copyright (c) 20012-2018 Vissarion Fisikopoulos +// Copyright (c) 2018 Apostolos Chalkis + +// This file is converted from BNMin1 (https://www.mrao.cam.ac.uk/~bn204/oof/bnmin1.html) by Apostolos Chalkis + +// Original copyright notice: + +/** + Bojan Nikolic + Initial version 2009 + + This file is part of BNMin1 and is licensed under GNU General + Public License version 2 + + \file mcpoint.cxx +*/ +#ifndef MCPOINT_H +#define MCPOINT_H + +#include +#include +#include + +#include +#include + +//exclude gsl library Apostolos Chalkis +//#include +//#include + +//#include "mcpoint1.h" +//#include "mcpoint2.h" +#include "bnmin_main.h" +//#include "bnmin_main2.h" + +//namespace Minim { + struct MCPoint + { + /// The actual parameters + std::vector p; + /// Log-likelihood of this point + double ll; + /// A vector to store derived quantities at sample of the + /// distribution + std::vector fval; + + /// Default constructor allowed, fill in the data later + MCPoint(void): + p(0), + ll(-9999), + fval(0) + { + } + + /** \Construct with supplied position vector + */ + MCPoint(const std::vector &p): + p(p), + ll(-9999), + fval(0) + { + } + + /** \brief The parameter vector has n values + */ + MCPoint(size_t np): + p(np), + ll(-9999), + fval(0) + { + } + + MCPoint(const MCPoint &other): + p(other.p), + ll(other.ll), + fval(other.fval) + { + } + + MCPoint & operator=(const MCPoint &other) + { + p=other.p; + ll=other.ll; + fval=other.fval; + return *this; + } + + + }; + + inline bool operator< (const MCPoint &a, const MCPoint &b) + { + return a.ll < b.ll; + } + + struct WPPoint: + public MCPoint + { + /** \brief Weight factor + */ + double w; + + WPPoint(void): + w(0.0) + { + } + + WPPoint(const std::vector &p, + double w): + MCPoint(p), + w(w) + { + } + + /** \brief Construct from MCPoint and a supplied weight + */ + WPPoint(const MCPoint &mp, + double w): + MCPoint(mp), + w(w) + { + } + + }; + + /* + MCPoint::MCPoint(void): + p(0), + ll(-9999), + fval(0) + { + } + + MCPoint::MCPoint(const std::vector &p): + p(p), + ll(-9999), + fval(0) + { + } + + MCPoint::MCPoint(size_t np): + p(np), + ll(-9999), + fval(0) + { + } + + MCPoint::MCPoint(const MCPoint &other): + p(other.p), + ll(other.ll), + fval(other.fval) + { + } + + MCPoint &MCPoint::operator=(const MCPoint &other) + { + p=other.p; + ll=other.ll; + fval=other.fval; + return *this; + }*/ + + + inline void moment1(const std::list &l, + std::vector &res) + { + const size_t n=l.begin()->p.size(); + res=std::vector(n, 0.0); + for(std::list::const_iterator i=l.begin(); + i!= l.end(); + ++i) + { + for (size_t j=0; jp[j] * i->w * exp(- i->ll)); + } + } + } + + inline void moment1(const std::list &l, + double Z, + std::vector &res) + { + moment1(l,res); + for(size_t j=0; j &l, + const std::vector &m1, + std::vector &res) + { + const size_t n=m1.size(); + res=std::vector(n, 0.0); + for(std::list::const_iterator i=l.begin(); + i!= l.end(); + ++i) + { + for (size_t j=0; jp[j]-m1[j],2.0) * i->w * exp(- i->ll)); + } + } + } + + inline void moment2(const std::list &l, + const std::vector &m1, + double Z, + std::vector &res) + { + moment2(l, m1, res); + for(size_t j=0; j &s, + std::vector &res) + { + const size_t n=s.begin()->p.size(); + res=std::vector(n, 0.0); + + size_t N=0; + for(std::set::const_iterator i=s.begin(); + i!= s.end(); + ++i) + { + if(i->p.size() != n) + { + throw NParsErr("moment1", n, i->p.size()); + } + for (size_t j=0; jp[j]); + } + ++N; + } + + for(size_t j=0; j &s, + const std::vector &m1, + std::vector &res) + { + const size_t n=m1.size(); + res=std::vector(n, 0.0); + + size_t N=0; + for(std::set::const_iterator i=s.begin(); + i!= s.end(); + ++i) + { + for (size_t j=0; jp[j]-m1[j], 2); + } + ++N; + } + + for(size_t j=0; j &s, + const std::vector &m1, + std::vector &res) + { + const size_t n=m1.size(); + res=std::vector(n*n, 0.0); + + size_t N=0; + for(std::set::const_iterator i=s.begin(); + i!= s.end(); + ++i) + { + for (size_t j=0; jp[j]-m1[j])*(i->p[k]-m1[k]); + } + } + ++N; + } + + for(size_t j=0; j &s, + std::vector &res) + { + std::vector m1; + moment1(s, m1); + omoment2(s, m1, res); + } + + + inline void StdDev(const std::set &s, + std::vector &res) + { + std::vector m1, m2; + moment1(s, m1); + moment2(s, m1, m2); + res.resize(m2.size()); + for(size_t j=0; j &cv, + std::vector &eigvals, + std::vector &eigvects) + { + const size_t n=sqrt(cv.size()); + gsl_matrix_view m + = gsl_matrix_view_array (const_cast(&cv[0]), n, n); + + gsl_vector *eval = gsl_vector_alloc (n); + gsl_matrix *evec = gsl_matrix_alloc (n, n); + + gsl_eigen_symmv_workspace * w = + gsl_eigen_symmv_alloc (n); + + gsl_eigen_symmv (&m.matrix, + eval, + evec, + w); + + gsl_eigen_symmv_free (w); + + gsl_eigen_symmv_sort (eval, + evec, + GSL_EIGEN_SORT_ABS_ASC); + + eigvals.resize(n); + eigvects.resize(n*n); + for(size_t j=0; j &l, + double Z, + const std::vector &low, + const std::vector &high, + size_t nbins, + std::vector &res) + { + const size_t ndim=low.size(); + + //res.resize(pow(nbins, static_cast(ndim))); + res.resize( static_cast( pow(static_cast(nbins), static_cast(ndim)) ) ); + std::fill(res.begin(), res.end(), 0.0); + + + std::vector deltas(ndim); + for(size_t i=0; i::const_iterator i=l.begin(); + i!= l.end(); + ++i) + { + bool inside=true; + size_t k=0; + for (size_t j=0; jp[j]-low[j])/deltas[j]); + if (dimi >= 0 and dimi < (int)nbins) + { + k+= dimi * static_cast( pow(static_cast(nbins), static_cast(ndim-j-1)) ); + } + else + { + inside=false; + } + } + if (inside) + { + res[k]+= i->w * exp(- i->ll); + } + } + } + + + inline void marginHist(const std::list &l, + size_t pi, + double Z, + double low, + double high, + size_t nbins, + std::vector &res) + { + res.resize(nbins); + std::fill(res.begin(), res.end(), + 0.0); + + const double d=(high-low)/nbins; + for(std::list::const_iterator i=l.begin(); + i!= l.end(); + ++i) + { + int k=int((i->p[pi]-low)/d); + if (k > 0 and k < (int)nbins) + { + res[k]+= i->w * exp(- i->ll); + } + } + + for(size_t i=0; i &l, + double Z, + size_t i, + double ilow, + double ihigh, + size_t j, + double jlow, + double jhigh, + size_t nbins, + std::vector &res) + { + // Two dimensions only + res.resize( static_cast( pow(static_cast(nbins), static_cast(2)) ) ); + std::fill(res.begin(), res.end(), + 0.0); + const double idelta=(ihigh-ilow)/nbins; + const double jdelta=(jhigh-jlow)/nbins; + + for(std::list::const_iterator p=l.begin(); + p!= l.end(); + ++p) + { + + int dimi = int((p->p[i]-ilow)/idelta); + int dimj = int((p->p[j]-jlow)/jdelta); + + if (dimi >= 0 and dimi<((int)nbins) and dimj >= 0 and dimj < ((int)nbins)) + { + const size_t k= dimi*nbins + dimj; + res[k]+= p->w * exp(- p->ll); + } + + } + } +//} + +#endif diff --git a/src/extractMatPoly.h b/src/extractMatPoly.h new file mode 100644 index 00000000..5adb9d56 --- /dev/null +++ b/src/extractMatPoly.h @@ -0,0 +1,37 @@ +// VolEsti (volume computation and sampling library) + +// Copyright (c) 2018 Vissarion Fisikopoulos, Apostolos Chalkis + +//Contributed and/or modified by Apostolos Chalkis, as part of Google Summer of Code 2018 program. + +// VolEsti is free software: you can redistribute it and/or modify it +// under the terms of the GNU Lesser General Public License as published by +// the Free Software Foundation, either version 3 of the License, or (at +// your option) any later version. +// +// VolEsti is distributed in the hope that it will be useful, but WITHOUT +// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +// for more details. +// +// See the file COPYING.LESSER for the text of the GNU Lesser General +// Public License. If you did not receive this file along with HeaDDaCHe, +// see . + + +#ifndef EXTRACTMATPOLY_H +#define EXTRACTMATPOLY_H + +// Take a H or a V-polytope and return a numerical matrix in ine or ext format respectively +template +Rcpp::NumericMatrix extractMatPoly(Polytope P) { + + typedef typename Polytope::MT MT; + + MT Mat(P.get_mat().rows(), P.dimension()+1); + Mat << P.get_vec(), P.get_mat(); + + return Rcpp::wrap(Mat); +} + +#endif diff --git a/src/frustum_of_simplex.cpp b/src/frustum_of_simplex.cpp new file mode 100644 index 00000000..7841627b --- /dev/null +++ b/src/frustum_of_simplex.cpp @@ -0,0 +1,43 @@ +// VolEsti (volume computation and sampling library) + +// Copyright (c) 20012-2018 Vissarion Fisikopoulos +// Copyright (c) 2018 Apostolos Chalkis + + +#include +#include +#include "volume/exact_vols.h" + +//' Compute the percentage of the volume of the simplex that is contained in the intersection of a half-space and the simplex. +//' +//' A half-space \eqn{H} is given as a pair of a vector \eqn{a\in R^d} and a scalar \eqn{z0\in R} s.t.: \eqn{a^Tx\leq z0}. This function calls the Ali's version of the Varsi formula to compute a frustum of the simplex. +//' +//' @param a A \eqn{d}-dimensional vector that defines the direction of the hyperplane. +//' @param z0 The scalar that defines the half-space. +//' +//' @references \cite{Varsi, Giulio, +//' \dQuote{The multidimensional content of the frustum of the simplex,} \emph{Pacific J. Math. 46, no. 1, 303--314,} 1973.} +//' +//' @references \cite{Ali, Mir M., +//' \dQuote{Content of the frustum of a simplex,} \emph{ Pacific J. Math. 48, no. 2, 313--322,} 1973.} +//' +//' @return The percentage of the volume of the simplex that is contained in the intersection of a given half-space and the simplex. +//' +//' @examples +//' # compute the frustum of H: -x1+x2<=0 +//' a=c(-1,1) +//' z0=0 +//' frustum = frustum_of_simplex(a, z0) +//' @export +// [[Rcpp::export]] +double frustum_of_simplex(Rcpp::NumericVector a, double z0){ + + unsigned int dim = a.size(); + if (dim < 2) { + throw Rcpp::exception("Dimension has to be greater than 2"); + } + std::vector hyp = Rcpp::as >(a); + + return vol_Ali(hyp, -z0, dim); + +} diff --git a/src/frustum_of_simplex.o b/src/frustum_of_simplex.o new file mode 100644 index 0000000000000000000000000000000000000000..5913466590ef59d653dd6f74cb99a137c33dabf2 GIT binary patch literal 55488 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 literal 0 HcmV?d00001 diff --git a/src/inner_ball.cpp b/src/inner_ball.cpp new file mode 100644 index 00000000..ca0e9ef1 --- /dev/null +++ b/src/inner_ball.cpp @@ -0,0 +1,112 @@ + +// Copyright (c) 20012-2018 Vissarion Fisikopoulos +// Copyright (c) 2018 Apostolos Chalkis + + +#include +#include +#include +#include "cartesian_geom/cartesian_kernel.h" +#include +#include +#include +#include +#include "volume/volume_sequence_of_balls.hpp" + +//' Compute an inscribed ball of a convex polytope +//' +//' For a H-polytope described by a \eqn{m\times d} matrix \eqn{A} and a \eqn{m}-dimensional vector \eqn{b}, s.t.: \eqn{P=\{x\ |\ Ax\leq b\} }, this function computes the largest inscribed ball (Chebychev ball) by solving the corresponding linear program. +//' For both zonotopes and V-polytopes the function computes the minimum \eqn{r} s.t.: \eqn{ r e_i \in P} for all \eqn{i=1, \dots ,d}. Then the ball centered at the origin with radius \eqn{r/ \sqrt{d}} is an inscribed ball. +//' +//' @param P A convex polytope. It is an object from class (a) Hpolytope or (b) Vpolytope or (c) Zonotope or (d) VpolytopeIntersection. +//' +//' @return A \eqn{(d+1)}-dimensional vector that describes the inscribed ball. The first \eqn{d} coordinates corresponds to the center of the ball and the last one to the radius. +//' +//' @examples +//' # compute the Chebychev ball of the 2d unit simplex +//' P = gen_simplex(2,'H') +//' ball_vec = inner_ball(P) +//' +//' # compute an inscribed ball of the 3-dimensional unit cube in V-representation +//' P = gen_cube(3, 'V') +//' ball_vec = inner_ball(P) +//' @export +// [[Rcpp::export]] +Rcpp::NumericVector inner_ball(Rcpp::Reference P) { + + typedef double NT; + typedef Cartesian Kernel; + typedef typename Kernel::Point Point; + typedef BoostRandomNumberGenerator RNGType; + typedef HPolytope Hpolytope; + typedef VPolytope Vpolytope; + typedef Zonotope zonotope; + typedef IntersectionOfVpoly InterVP; + typedef Eigen::Matrix VT; + typedef Eigen::Matrix MT; + + unsigned int n, type_num; + std::string type = Rcpp::as(P.slot("type")); + + if (type.compare(std::string("Hpolytope")) == 0) { + n = Rcpp::as(P.slot("A")).cols(); + type_num = 1; + } else if (type.compare(std::string("Vpolytope")) == 0) { + n = Rcpp::as(P.slot("V")).cols(); + type_num = 2; + } else if (type.compare(std::string("Zonotope")) == 0) { + n = Rcpp::as(P.slot("G")).cols(); + type_num = 3; + } else if (type.compare(std::string("VpolytopeIntersection")) == 0) { + n = Rcpp::as(P.slot("V1")).cols(); + type_num = 4; + } else { + throw Rcpp::exception("Unknown polytope representation!"); + } + + std::pair InnerBall; + switch (type_num) { + case 1: { + // Hpolytope + Hpolytope HP; + HP.init(n, Rcpp::as(P.slot("A")), Rcpp::as(P.slot("b"))); + InnerBall = HP.ComputeInnerBall(); + break; + } + case 2: { + // Vpolytope + Vpolytope VP; + VP.init(n, Rcpp::as(P.slot("V")), VT::Ones(Rcpp::as(P.slot("V")).rows())); + InnerBall = VP.ComputeInnerBall(); + break; + } + case 3: { + // Zonotope + zonotope ZP; + InnerBall = ZP.ComputeInnerBall(); + ZP.init(n, Rcpp::as(P.slot("G")), VT::Ones(Rcpp::as(P.slot("G")).rows())); + InnerBall = ZP.ComputeInnerBall(); + break; + } + case 4: { + // Intersection of two V-polytopes + Vpolytope VP1; + Vpolytope VP2; + InterVP VPcVP; + VP1.init(n, Rcpp::as(P.slot("V1")), VT::Ones(Rcpp::as(P.slot("V1")).rows())); + VP2.init(n, Rcpp::as(P.slot("V2")), VT::Ones(Rcpp::as(P.slot("V2")).rows())); + VPcVP.init(VP1, VP2); + if (!VPcVP.is_feasible()) throw Rcpp::exception("Empty set!"); + InnerBall = VPcVP.ComputeInnerBall(); + break; + } + } + + Rcpp::NumericVector vec(n + 1); + for (unsigned int k = 0; k < n; ++k){ + vec[k] = InnerBall.first[k]; + } + + vec[n] = InnerBall.second; + return vec; +} diff --git a/src/inner_ball.o b/src/inner_ball.o new file mode 100644 index 0000000000000000000000000000000000000000..5268c9e9f4ab58ed17f0e37aae39df1fafcdd312 GIT binary patch literal 448620 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 z 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 z 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 +#include +#include +#include "cartesian_geom/cartesian_kernel.h" +#include +#include +#include +#include +#include "convex_bodies/spectrahedra/LMI.h" +#include "convex_bodies/spectrahedra/spectrahedron.h" +#include "SDPAFormatManager.h" + +//' An internal Rccp function to read a SDPA format file +//' +//' @param input_file Name of the input file +//' +//' @keywords internal +//' +//' @return A list with two named items: an item "matrices" which is a list of the matrices and an vector "objFunction" +// [[Rcpp::export]] +Rcpp::List load_sdpa_format_file(Rcpp::Nullable input_file = R_NilValue) { + + typedef double NT; + typedef Eigen::Matrix VT; + typedef Eigen::Matrix MT; + typedef Cartesian Kernel; + typedef typename Kernel::Point Point; + typedef boost::mt19937 RNGType; + typedef LMI LMI; + typedef Spectrahedron Spectrahedron; + + Spectrahedron _spectrahedron; + Point c; + + // open stream + std::ifstream os; + os.open(Rcpp::as (input_file),std::ifstream::in); + + // read file + SdpaFormatManager sdpaFormatManager; + sdpaFormatManager.loadSDPAFormatFile(os, _spectrahedron, c); + + std::vector matrices = _spectrahedron.getLMI().getMatrices(); + + // return spectrahedron and objective function + Rcpp::List _matrices; + + for (auto matrix : matrices) + _matrices.push_back(Rcpp::wrap(matrix)); + + Rcpp::List retList = Rcpp::List::create(Rcpp::Named("matrices") = _matrices , Rcpp::_["objFunction"] = Rcpp::wrap(c.getCoefficients())); + return Rcpp::wrap(retList); +} + diff --git a/src/load_sdpa_format_file.o b/src/load_sdpa_format_file.o new file mode 100644 index 0000000000000000000000000000000000000000..d33eb97fe8349fb2cb3de1f50be2f4cae74455f6 GIT binary patch literal 115519 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

h7_$YLk*n~`v-)0>Tb`Ny} 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 literal 0 HcmV?d00001 diff --git a/src/poly_gen.cpp b/src/poly_gen.cpp new file mode 100644 index 00000000..05b7b5ba --- /dev/null +++ b/src/poly_gen.cpp @@ -0,0 +1,111 @@ +// [[Rcpp::depends(BH)]] + +// VolEsti (volume computation and sampling library) + +// Copyright (c) 20012-2018 Vissarion Fisikopoulos +// Copyright (c) 2018 Apostolos Chalkis + +//Contributed and/or modified by Apostolos Chalkis, as part of Google Summer of Code 2018 program. + +#include +#include +#include +#include "cartesian_geom/cartesian_kernel.h" +#include +#include +#include +#include +#include "convex_bodies/hpolytope.h" +#include "convex_bodies/vpolytope.h" +#include "convex_bodies/zpolytope.h" +#include "generators/known_polytope_generators.h" +#include "generators/h_polytopes_generator.h" +#include "generators/v_polytopes_generators.h" +#include "generators/z_polytopes_generators.h" +#include "extractMatPoly.h" + +//' An internal Rccp function as a polytope generator +//' +//' @param kind_gen An integer to declare the type of the polytope. +//' @param Vpoly_gen A boolean parameter to declare if the requested polytope has to be in V-representation. +//' @param Zono_gen A boolean parameter to declare if the requested polytope has to be a zonotope. +//' @param dim_gen An integer to declare the dimension of the requested polytope. +//' @param m_gen An integer to declare the number of generators for the requested random zonotope or the number of vertices for a V-polytope. +//' @param seed Optional. A fixed seed for the random polytope generator. +//' +//' @keywords internal +//' +//' @return A numerical matrix describing the requested polytope +// [[Rcpp::export]] +Rcpp::NumericMatrix poly_gen (int kind_gen, bool Vpoly_gen, bool Zono_gen, int dim_gen, int m_gen, + Rcpp::Nullable seed = R_NilValue) { + + typedef double NT; + typedef Cartesian Kernel; + typedef typename Kernel::Point Point; + typedef boost::mt19937 RNGType; + typedef HPolytope Hpolytope; + typedef VPolytope Vpolytope; + typedef Zonotope zonotope; + + double seed2 = (!seed.isNotNull()) ? std::numeric_limits::signaling_NaN() : Rcpp::as(seed); + + if (Zono_gen) { + switch (kind_gen) { + + case 1: + return extractMatPoly(gen_zonotope_uniform(dim_gen, m_gen, seed2)); + case 2: + return extractMatPoly(gen_zonotope_gaussian(dim_gen, m_gen, seed2)); + case 3: + return extractMatPoly(gen_zonotope_exponential(dim_gen, m_gen, seed2)); + + } + + } else if (Vpoly_gen) { + switch (kind_gen) { + + case 1: + return extractMatPoly(gen_cube(dim_gen, true)); + + case 2: + return extractMatPoly(gen_cross(dim_gen, true)); + + case 3: + return extractMatPoly(gen_simplex(dim_gen, true)); + + case 4: + return extractMatPoly(random_vpoly(dim_gen, m_gen, seed2)); + + case 5: + return extractMatPoly(random_vpoly_incube(dim_gen, m_gen, seed2)); + + } + } else { + switch (kind_gen) { + + case 1: + return extractMatPoly(gen_cube(dim_gen, false)); + + case 2: + return extractMatPoly(gen_cross(dim_gen, false)); + + case 3: + return extractMatPoly(gen_simplex(dim_gen, false)); + + case 4: + return extractMatPoly(gen_prod_simplex(dim_gen)); + + case 5: + return extractMatPoly(gen_skinny_cube(dim_gen)); + + case 6: + return extractMatPoly(random_hpoly(dim_gen, m_gen, seed2)); + + case 7: + return extractMatPoly(random_hpoly_ball(dim_gen, m_gen, seed2)); + } + } + + throw Rcpp::exception("Wrong inputs!"); +} diff --git a/src/poly_gen.o b/src/poly_gen.o new file mode 100644 index 0000000000000000000000000000000000000000..b412302b143d63872626d4cbbad29bf1f91ecdb8 GIT binary patch literal 385833 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

=>Q0cphaFUr!udDf)DFbET)b_ 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 U*?y~viQ$AKZ7iYEHRqB4AJVu6zW@LL literal 0 HcmV?d00001 diff --git a/src/rotating.cpp b/src/rotating.cpp new file mode 100644 index 00000000..fb1bf7cf --- /dev/null +++ b/src/rotating.cpp @@ -0,0 +1,121 @@ +// [[Rcpp::depends(BH)]] + +// VolEsti (volume computation and sampling library) + +// Copyright (c) 20012-2018 Vissarion Fisikopoulos +// Copyright (c) 2018 Apostolos Chalkis + +//Contributed and/or modified by Apostolos Chalkis, as part of Google Summer of Code 2018 program. + +#include +#include +#include +#include "cartesian_geom/cartesian_kernel.h" +#include +#include +#include +#include +#include "volume/volume_sequence_of_balls.hpp" +#include "volume/rotating.hpp" +#include "extractMatPoly.h" + +//' An internal Rccp function for the random rotation of a convex polytope +//' +//' @param P A convex polytope (H-, V-polytope or a zonotope). +//' @param T Optional. A rotation matrix. +//' @param seed Optional. A fixed seed for the random linear map generator. +//' +//' @keywords internal +//' +//' @return A matrix that describes the rotated polytope +// [[Rcpp::export]] +Rcpp::NumericMatrix rotating (Rcpp::Reference P, Rcpp::Nullable T = R_NilValue, + Rcpp::Nullable seed = R_NilValue){ + + typedef double NT; + typedef Cartesian Kernel; + typedef typename Kernel::Point Point; + typedef BoostRandomNumberGenerator RNGType; + typedef HPolytope Hpolytope; + typedef VPolytope Vpolytope; + typedef Zonotope zonotope; + typedef IntersectionOfVpoly InterVP; + typedef Eigen::Matrix VT; + typedef Eigen::Matrix MT; + + MT TransorfMat; + Rcpp::NumericMatrix Mat; + unsigned int n, type_num; + + std::string type = Rcpp::as(P.slot("type")); + + if (type.compare(std::string("Hpolytope")) == 0) { + n = Rcpp::as(P.slot("A")).cols(); + type_num = 1; + } else if (type.compare(std::string("Vpolytope")) == 0) { + n = Rcpp::as(P.slot("V")).cols(); + type_num = 2; + } else if (type.compare(std::string("Zonotope")) == 0) { + n = Rcpp::as(P.slot("G")).cols(); + type_num = 3; + } else if (type.compare(std::string("VpolytopeIntersection")) == 0) { + throw Rcpp::exception("volesti does not support roatation of this kind of representation."); + } else { + throw Rcpp::exception("Unknown polytope representation!"); + } + + int seed2 = (!seed.isNotNull()) ? std::chrono::system_clock::now() + .time_since_epoch().count() + : Rcpp::as(seed); + + switch (type_num) { + case 1: { + // Hpolytope + Hpolytope HP; + HP.init(n, Rcpp::as(P.slot("A")), Rcpp::as(P.slot("b"))); + if (T.isNotNull()) { + TransorfMat = Rcpp::as(T); + HP.linear_transformIt(TransorfMat.inverse()); + } else { + TransorfMat = rotating < MT > (HP, seed2); + } + Mat = extractMatPoly(HP); + break; + } + case 2: { + // Vpolytope + Vpolytope VP; + VP.init(n, Rcpp::as(P.slot("V")), VT::Ones(Rcpp::as(P.slot("V")).rows())); + if (T.isNotNull()) { + TransorfMat = Rcpp::as(T); + VP.linear_transformIt(TransorfMat.inverse()); + } else { + TransorfMat = rotating < MT > (VP, seed2); + } + Mat = extractMatPoly(VP); + break; + } + case 3: { + // Zonotope + zonotope ZP; + ZP.init(n, Rcpp::as(P.slot("G")), VT::Ones(Rcpp::as(P.slot("G")).rows())); + if (T.isNotNull()) { + TransorfMat = Rcpp::as(T); + ZP.linear_transformIt(TransorfMat.inverse()); + } else { + TransorfMat = rotating < MT > (ZP, seed2); + } + Mat = extractMatPoly(ZP); + break; + } + case 4: { + throw Rcpp::exception("volesti does not support rotation for this representation currently."); + } + } + + TransorfMat.conservativeResize(n+1, n); + TransorfMat.row(n) = VT::Ones(n); + MT res(TransorfMat.rows(), Rcpp::as(Mat).rows()+n); + res << Rcpp::as(Mat).transpose(), TransorfMat; + return Rcpp::wrap(res); +} diff --git a/src/rotating.o b/src/rotating.o new file mode 100644 index 0000000000000000000000000000000000000000..2ef4c90776ce9485c2722903b195cd58a9e948d5 GIT binary patch literal 433243 zcmeFae|%KedFMX^vaLA8SI&}zq$F07X(Of78U5BYG!YIsckmrsNx=~=IBJ3^O-Z9o zP|CW1WecTDh5>CBQZ|dTYHPRbmc(quaGwzSw@AtpX>xJ&U=YH;a&hwn-JkN8UbM9sNw|b|=_*LCBJ+}2+a~8XJ^)+i& z>oolJ-5rZ9{ZcHJc*{UzXF1fyI=e4k{`;$czW{ohV@IrW_~I{p;~VbnVOxz`6zhw1 z4}YRLQWUG<^07JbNMUVFXZI(X+9G9DT%9bzb<`v~KGD_?!Oh@m0^A3FZMrGfUxRB% zwzxpiJzY|tq1({Z?&3su#&1R2XX|TgbaA3v1FpSei?B?P`n19{UZ;hgx9T*Vx?T;?%y|!MQ)vzQ*>5VAQ^0aL@kaC|D z-Fv}ReXN9TQ*#6-x{p<&+ti+P>l58ka2JI273nrNMA|31Crj!x{5Ch2^~dQFoZ+{* zJt9BRjkU*Pb4uy9G)6Q~bZ3Bbe}-;LYnhy9m*5QD)?@@Hy0zdImeOsF_M7O=DXGuU zZA(VvCpph8!5O-3EfKkhZU?xPC3G)d6V< zk84Y}wY8LP-DfJvxiwYFZxY-MWpvw`-1x z<3n=p0{5*lew&gmPIOmRq}vp6Afnp?Zm^7QQ@d+lM0YK?AC}Q=F0;>@D$;F^=)LG} z1-GY+Zc8Mfl$?jaJsjeu2V{7{KG;svE67e-zbG z-2REi))v>ktUd=^XFRszcPy^p_rbNf@;e6It}ElQQz1?^RPh10c6Xfbrabut^uEK^ zNA+QR+SV#r6n^4k6rB4rcBrwvsnlMb1lJMPR~$!;sfc~RU_w<+1~@*%n>E75IgXmtBSbYBLy$EnZK zZHP=P`oP7OpjRPI^;^2p34_Y}z_~wLUt`2?iS9;lzcJ7DTT#wUjcu;K>;tzI-24zX zMYpLe-k5n+CAv+`rFL>QxUFS$qZ0Pnu?^WWrrA)69;FgBGs~rIq+?k4y+fHvrfEnNq!KkHjS%;JUzF z>ENtBryAXU6W#3<>84s-J0!Y8;8r{JS-p>rbJ5)e?mG_7&}~kZ#giv1(QQsf zgWK)YXXrLJL?&>Z;9|>&Cqta#3QM;k5=V&NPH^rotS^$`5Zx|tua?mzKyV%w-R0nB z&bR$BMYpjz>EJ~7){1l++uZm?bZ-YYH>|Iy&&?P>r@leX4}rTX#1;KQb5kUvWB9nb z62DEYE+4`z2e+x5Ze(IM1g;0%{|s?Tb6GhzH@f3Z_0@c_65ZyOQrv8C&y>-PCK|+V z9k{9mR?e#5(rsyS{Y)+8d%&#?acY6>- zj%vZJ?vBT1UuxSoMYlELw?ua3*9|N-k+_fR@x2WIf zRZC+;@3&Jv{1wJ!x}<+wnj&%$zg>S6k6jw#ruc1+jJG}l*X7`rhq#&|-IfR+lJoJe zqW23+>9$7fi|EGwm^d-SP0?+O#6umxW`LU$;-=)>*5>N7>{S5H{h4vp(jJ-ji0&eA zSC`RkkHou4aNXe6hPYzf-ja$Wxaeqm%k3z&#w|ihiNBAu|6Eza71m=r)%5K_A?i zGP+HX_`Zg`_abn!FSGh0pJDlJO1b_+`n>$Qcr3`2=v8ZZTz4AWl_9RESFJ4(y6WHR zKH`HASM1-`mdN~9a&8B=v5anO#12WXd~n|>quUzkw*KLCmzVO}7MbUX?l8C;LfjO;ZIQg0__!CG`?GZ0BME5r`(q_IGme<%mHNR^a6@Hu zQ<3;jbWfJlXXuj8cI}$zo-V-|x^2la`y9I=9{a~qx@`>+J1M#|z&+;3&(e+NH$-fhwI;;~&JPH2m3Zg$7H_?-*xZl^v=w9`tZ{;$@Z(Ag9A-Y50E_QI1ZhOR@itgcxblY28 zxrpvDaDh{wl}oBDZa)t0De_oP#w;kUghGS3?Xw@LN=?o@wRx=j&#UjuIT#tQth z-s6rB(VYYCLr#5`ZgV6q=>yjeZmxr~bO~U%SNMtUo{Dr^Qf_=8x`)7B<T`QEFNI5ptpT?u#C@

84nq;a=eE0-yLQ<40T=(dCVNQhI-hA!y{ zcOojfekHo#+yt-a2H@tD(rrjKxPgx7c7a=1PPfrDsG_^FGTlaZ;w`$Xz%44LO9qvj z;jfe98gO3^am9IPL$b*Yuwct!VRa6h`Lq<_J=i2;q@*!FnraEL3~tA=D`0vrGv`fud*e$UpY z78t#1NJbWNhi*gXRH5zXne}%qum-0*A(HWQGcM#m^ z5I4myaY>S!;ZOYT0O$TJ-Nr^YfhB%-mEbJDjZJRCNpyFE`@rwp_BnK$-9$qlxZ6wW z3+YA{1Vnf4P0{v+bX!smAEMg2`;R!(VfVP?p$!Y%jrfE(6W<0xcft#);UAE&29o(A{yISiQlFcHz6jvv;GJ1 z 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%0D2qK-cP%Nf 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 V+x*Xs;RNEDYs +#include +#include +#include "cartesian_geom/cartesian_kernel.h" +#include +#include +#include +#include +#include "random_walks/random_walks.hpp" +#include "volume/volume_sequence_of_balls.hpp" +#include "volume/volume_cooling_gaussians.hpp" +#include "extractMatPoly.h" + +//' Internal rcpp function for the rounding of a convex polytope +//' +//' @param P A convex polytope (H- or V-representation or zonotope). +//' @param settings A list to set the random walk and its walk length +//' @param seed Optional. A fixed seed for the number generator. +//' +//' @keywords internal +//' +//' @return A numerical matrix that describes the rounded polytope, a numerical matrix of the inverse linear transofmation that is applied on the input polytope, the numerical vector the the input polytope is shifted and the determinant of the matrix of the linear transformation that is applied on the input polytope. +// [[Rcpp::export]] +Rcpp::List rounding (Rcpp::Reference P, + Rcpp::Nullable settings = R_NilValue, + Rcpp::Nullable seed = R_NilValue){ + + typedef double NT; + typedef Cartesian Kernel; + typedef typename Kernel::Point Point; + typedef BoostRandomNumberGenerator RNGType; + typedef HPolytope Hpolytope; + typedef VPolytope Vpolytope; + typedef Zonotope zonotope; + typedef Eigen::Matrix VT; + typedef Eigen::Matrix MT; + + bool cdhr = false, rdhr = false; + unsigned int n, walkL, type_num; + + std::string type = Rcpp::as(P.slot("type")); + + if (type.compare(std::string("Hpolytope")) == 0) { + n = Rcpp::as(P.slot("A")).cols(); + type_num = 1; + } else if (type.compare(std::string("Vpolytope")) == 0) { + n = Rcpp::as(P.slot("V")).cols(); + type_num = 2; + } else if (type.compare(std::string("Zonotope")) == 0) { + n = Rcpp::as(P.slot("G")).cols(); + type_num = 3; + } else if (type.compare(std::string("VpolytopeIntersection")) == 0) { + throw Rcpp::exception("volesti does not support roatation of this kind of representation."); + } else { + throw Rcpp::exception("Unknown polytope representation!"); + } + + RNGType rng(n); + if (seed.isNotNull()) { + unsigned seed2 = Rcpp::as(seed); + rng.set_seed(seed2); + } + + Hpolytope HP; + Vpolytope VP; + zonotope ZP; + + std::pair InnerBall; + Rcpp::NumericMatrix Mat; + + if (!settings.isNotNull() || !Rcpp::as(settings).containsElementNamed("random_walk")) { + if (type_num == 1) { + walkL = 10 + 10 * n; + cdhr = true; + } else { + walkL = 2; + } + } else if (Rcpp::as(Rcpp::as(settings)["random_walk"]).compare(std::string("CDHR")) == 0) { + walkL = 10 + 10 * n; + cdhr = true; + } else if (Rcpp::as(Rcpp::as(settings)["random_walk"]).compare(std::string("BiW")) == 0) { + walkL = 2; + } else if (Rcpp::as(Rcpp::as(settings)["random_walk"]).compare(std::string("RDHR")) == 0) { + walkL = 10 + 10 * n; + rdhr = true; + } else { + throw Rcpp::exception("Unknown walk type!"); + } + + if (Rcpp::as(settings).containsElementNamed("walk_length")) { + walkL = Rcpp::as(Rcpp::as(settings)["walk_length"]); + if (walkL <= 0) { + throw Rcpp::exception("The walk length has to be a positive integer!"); + } + } + + switch (type_num) { + case 1: { + // Hpolytope + HP.init(n, Rcpp::as(P.slot("A")), Rcpp::as(P.slot("b"))); + HP.normalize(); + InnerBall = HP.ComputeInnerBall(); + break; + } + case 2: { + // Vpolytope + VP.init(n, Rcpp::as(P.slot("V")), VT::Ones(Rcpp::as(P.slot("V")).rows())); + InnerBall = VP.ComputeInnerBall(); + break; + } + case 3: { + // Zonotope + ZP.init(n, Rcpp::as(P.slot("G")), VT::Ones(Rcpp::as(P.slot("G")).rows())); + InnerBall = ZP.ComputeInnerBall(); + break; + } + case 4: { + throw Rcpp::exception("volesti does not support rounding for this representation currently."); + } + } + + std::pair< std::pair, NT > round_res; + switch (type_num) { + case 1: { + if (cdhr) { + round_res = round_polytope(HP, InnerBall, walkL, rng); + } else if(rdhr) { + round_res = round_polytope(HP, InnerBall, walkL, rng); + } else { + round_res = round_polytope(HP, InnerBall, walkL, rng); + } + Mat = extractMatPoly(HP); + break; + } + case 2: { + if (cdhr) { + round_res = round_polytope(VP, InnerBall, walkL, rng); + } else if(rdhr) { + round_res = round_polytope(VP, InnerBall, walkL, rng); + } else { + round_res = round_polytope(VP, InnerBall, walkL, rng); + } + Mat = extractMatPoly(VP); + break; + } + case 3: { + if (cdhr) { + round_res = round_polytope(ZP, InnerBall, walkL, rng); + } else if (rdhr) { + round_res = round_polytope(ZP, InnerBall, walkL, rng); + } else { + round_res = round_polytope(ZP, InnerBall, walkL, rng); + } + Mat = extractMatPoly(ZP); + break; + } + } + + return Rcpp::List::create(Rcpp::Named("Mat") = Mat, Rcpp::Named("T") = Rcpp::wrap(round_res.first.first), + Rcpp::Named("shift") = Rcpp::wrap(round_res.first.second), + Rcpp::Named("round_value") = round_res.second); +} diff --git a/src/rounding.o b/src/rounding.o new file mode 100644 index 0000000000000000000000000000000000000000..b713e8a34f49770d45ffa38fe7617376d8dcb299 GIT binary patch literal 773516 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 +#include +#include +#include +#include +#include +#include +#include "random_walks/random_walks.hpp" +#include "volume/volume_sequence_of_balls.hpp" +#include "volume/volume_cooling_gaussians.hpp" +#include "sampling/sampling.hpp" + +template +void sample_from_polytope(Polytope &P, RNGType &rng, PointList &randPoints, unsigned int const& walkL, unsigned int const& numpoints, + bool const& gaussian, NT const& a, NT const& L, bool const& boundary, Point const& StartingPoint, unsigned int const& nburns, + bool const& set_L, bool const& cdhr, bool const& rdhr, bool const& billiard, bool const& ball_walk) +{ + if (boundary) { + if (cdhr) { + uniform_sampling_boundary (randPoints, P, rng, walkL, numpoints, + StartingPoint, nburns); + } else { + uniform_sampling_boundary (randPoints, P, rng, walkL, numpoints, + StartingPoint, nburns); + } + } else if (cdhr) { + if (gaussian) { + gaussian_sampling(randPoints, P, rng, walkL, numpoints, + a, StartingPoint, nburns); + } else { + uniform_sampling(randPoints, P, rng, walkL, numpoints, + StartingPoint, nburns); + } + } else if (rdhr){ + if (gaussian) { + gaussian_sampling(randPoints, P, rng, walkL, numpoints, + a, StartingPoint, nburns); + } else { + uniform_sampling(randPoints, P, rng, walkL, numpoints, + StartingPoint, nburns); + } + } else if (billiard) { + if (set_L) { + BilliardWalk WalkType(L); + uniform_sampling(randPoints, P, rng, WalkType, walkL, numpoints, StartingPoint, nburns); + } else { + uniform_sampling(randPoints, P, rng, walkL, numpoints, + StartingPoint, nburns); + } + } else { + if (set_L) { + if (gaussian) { + GaussianBallWalk WalkType(L); + gaussian_sampling(randPoints, P, rng, WalkType, walkL, numpoints, a, + StartingPoint, nburns); + } else { + BallWalk WalkType(L); + uniform_sampling(randPoints, P, rng, WalkType, walkL, numpoints, + StartingPoint, nburns); + } + } else { + if (gaussian) { + gaussian_sampling(randPoints, P, rng, walkL, numpoints, + a, StartingPoint, nburns); + } else { + uniform_sampling(randPoints, P, rng, walkL, numpoints, + StartingPoint, nburns); + } + } + } +} + + +//' Sample uniformly or normally distributed points from a convex Polytope (H-polytope, V-polytope, zonotope or intersection of two V-polytopes). +//' +//' Sample n points with uniform or multidimensional spherical gaussian -with a mode at any point- as the target distribution. +//' +//' @param P A convex polytope. It is an object from class (a) Hpolytope or (b) Vpolytope or (c) Zonotope or (d) VpolytopeIntersection. +//' @param n The number of points that the function is going to sample from the convex polytope. +//' @param random_walk Optional. A list that declares the random walk and some related parameters as follows: +//' \itemize{ +//' \item{\code{walk} }{ A string to declare the random walk: i) \code{'CDHR'} for Coordinate Directions Hit-and-Run, ii) \code{'RDHR'} for Random Directions Hit-and-Run, iii) \code{'BaW'} for Ball Walk, iv) \code{'BiW'} for Billiard walk, v) \code{'BCDHR'} boundary sampling by keeping the extreme points of CDHR or vi) \code{'BRDHR'} boundary sampling by keeping the extreme points of RDHR. The default walk is \code{'BiW'} for the uniform distribution or \code{'CDHR'} for the Gaussian distribution.} +//' \item{\code{walk_length} }{ The number of the steps per generated point for the random walk. The default value is 1.} +//' \item{\code{nburns} }{ The number of points to burn before start sampling.} +//' \item{\code{starting_point} }{ A \eqn{d}-dimensional numerical vector that declares a starting point in the interior of the polytope for the random walk. The default choice is the center of the ball as that one computed by the function \code{inner_ball()}.} +//' \item{\code{BaW_rad} }{ The radius for the ball walk.} +//' \item{\code{L} }{ The maximum length of the billiard trajectory.} +//' \item{\code{seed} }{ A fixed seed for the number generator.} +//' } +//' @param distribution Optional. A list that declares the target density and some related parameters as follows: +//' \itemize{ +//' \item{\code{density} }{ A string: (a) \code{'uniform'} for the uniform distribution or b) \code{'gaussian'} for the multidimensional spherical distribution. The default target distribution is uniform.} +//' \item{\code{variance} }{ The variance of the multidimensional spherical gaussian. The default value is 1.} +//' \item{\code{mode} }{ A \eqn{d}-dimensional numerical vector that declares the mode of the Gaussian distribution. The default choice is the center of the as that one computed by the function \code{inner_ball()}.} +//' } +//' +//' @return A \eqn{d\times n} matrix that contains, column-wise, the sampled points from the convex polytope P. +//' @examples +//' # uniform distribution from the 3d unit cube in H-representation using ball walk +//' P = gen_cube(3, 'H') +//' points = sample_points(P, n = 100, random_walk = list("walk" = "BaW", "walk_length" = 5)) +//' +//' # gaussian distribution from the 2d unit simplex in H-representation with variance = 2 +//' A = matrix(c(-1,0,0,-1,1,1), ncol=2, nrow=3, byrow=TRUE) +//' b = c(0,0,1) +//' P = Hpolytope(A = A, b = b) +//' points = sample_points(P, n = 100, distribution = list("density" = "gaussian", "variance" = 2)) +//' +//' # uniform points from the boundary of a 2-dimensional random H-polytope +//' P = gen_rand_hpoly(2,20) +//' points = sample_points(P, n = 100, random_walk = list("walk" = "BRDHR")) +//' +//' @export +// [[Rcpp::export]] +Rcpp::NumericMatrix sample_points(Rcpp::Reference P, + int n, + Rcpp::Nullable random_walk = R_NilValue, + Rcpp::Nullable distribution = R_NilValue){ + + typedef double NT; + typedef Cartesian Kernel; + typedef BoostRandomNumberGenerator RNGType; + typedef typename Kernel::Point Point; + typedef HPolytope Hpolytope; + typedef VPolytope Vpolytope; + typedef Zonotope zonotope; + typedef IntersectionOfVpoly InterVP; + typedef Eigen::Matrix VT; + typedef Eigen::Matrix MT; + + unsigned int dim, walkL = 1, type_num; + + std::string type = Rcpp::as(P.slot("type")); + + if (type.compare(std::string("Hpolytope")) == 0) { + dim = Rcpp::as(P.slot("A")).cols(); + type_num = 1; + } else if (type.compare(std::string("Vpolytope")) == 0) { + dim = Rcpp::as(P.slot("V")).cols(); + type_num = 2; + } else if (type.compare(std::string("Zonotope")) == 0) { + dim = Rcpp::as(P.slot("G")).cols(); + type_num = 3; + } else if (type.compare(std::string("VpolytopeIntersection")) == 0) { + dim = Rcpp::as(P.slot("V1")).cols(); + type_num = 4; + } else { + throw Rcpp::exception("Unknown polytope representation!"); + } + + RNGType rng(dim); + if (Rcpp::as(random_walk).containsElementNamed("seed")) { + unsigned seed2 = Rcpp::as(Rcpp::as(random_walk)["seed"]); + rng.set_seed(seed2); + } + + Hpolytope HP; + Vpolytope VP; + zonotope ZP; + InterVP VPcVP; + + unsigned int numpoints, nburns = 0; + NT radius = 1.0, L; + bool set_mode = false, cdhr = false, rdhr = false, ball_walk = false, gaussian = false, + billiard = false, boundary = false, set_starting_point = false, set_L = false; + std::list randPoints; + std::pair InnerBall; + Point mode(dim); + + numpoints = n; + if (numpoints <= 0) throw Rcpp::exception("The number of samples has to be a positice integer!"); + + if (!distribution.isNotNull() || !Rcpp::as(distribution).containsElementNamed("density")) { + billiard = true; + } else if ( + Rcpp::as(Rcpp::as(distribution)["density"]).compare(std::string("uniform")) == 0) { + billiard = true; + } else if ( + Rcpp::as(Rcpp::as(distribution)["density"]).compare(std::string("gaussian")) == 0) { + gaussian = true; + } else { + throw Rcpp::exception("Wrong distribution!"); + } + + if (Rcpp::as(distribution).containsElementNamed("mode")) { + if (!gaussian) throw Rcpp::exception("Mode is given only for Gaussian sampling!"); + if (Rcpp::as(Rcpp::as(distribution)["mode"]).size() != dim) { + throw Rcpp::exception("Mode has to be a point in the same dimension as the polytope P"); + } else { + set_mode = true; + VT temp = Rcpp::as(Rcpp::as(distribution)["mode"]); + mode = Point(dim, std::vector(&temp[0], temp.data() + temp.cols() * temp.rows())); + } + } + + NT a = 0.5; + if (Rcpp::as(distribution).containsElementNamed("variance")) { + a = 1.0 / (2.0 * Rcpp::as(Rcpp::as(distribution)["variance"])); + if (!gaussian) { + Rcpp::warning("The variance can be set only for Gaussian sampling!"); + } else if (a <= 0.0) { + throw Rcpp::exception("The variance has to be positive!"); + } + } + + if (!random_walk.isNotNull() || !Rcpp::as(random_walk).containsElementNamed("walk")) { + if (gaussian) { + if (type_num == 1) { + cdhr = true; + } else { + rdhr = true; + } + } else { + billiard = true; + } + } else if (Rcpp::as(Rcpp::as(random_walk)["walk"]).compare(std::string("CDHR")) == 0) { + cdhr = true; + billiard = false; + } else if (Rcpp::as(Rcpp::as(random_walk)["walk"]).compare(std::string("RDHR")) == 0) { + rdhr = true; + billiard = false; + } else if (Rcpp::as(Rcpp::as(random_walk)["walk"]).compare(std::string("BaW")) == 0) { + if (Rcpp::as(random_walk).containsElementNamed("BaW_rad")) { + L = Rcpp::as(Rcpp::as(random_walk)["BaW_rad"]); + set_L = true; + if (L<=0.0) throw Rcpp::exception("BaW diameter must be a postitive number!"); + } + ball_walk = true; + billiard = false; + } else if (Rcpp::as(Rcpp::as(random_walk)["walk"]).compare(std::string("BiW")) == 0) { + if (gaussian) throw Rcpp::exception("Billiard walk can be used only for uniform sampling!"); + billiard = true; + if (Rcpp::as(random_walk).containsElementNamed("L")) { + L = Rcpp::as(Rcpp::as(random_walk)["L"]); + set_L = true; + if (L<=0.0) throw Rcpp::exception("L must be a postitive number!"); + } + } else if (Rcpp::as(Rcpp::as(random_walk)["walk"]).compare(std::string("BRDHR")) == 0) { + if (gaussian) throw Rcpp::exception("Gaussian sampling from the boundary is not supported!"); + rdhr = true; + boundary = true; + } else if (Rcpp::as(Rcpp::as(random_walk)["walk"]).compare(std::string("BCDHR")) == 0) { + if (gaussian) throw Rcpp::exception("Gaussian sampling from the boundary is not supported!"); + cdhr = true; + boundary = true; + } else { + throw Rcpp::exception("Unknown walk type!"); + } + + Point StartingPoint; + if (Rcpp::as(random_walk).containsElementNamed("starting_point")) { + if (Rcpp::as(Rcpp::as(random_walk)["starting_point"]).size() != dim) { + throw Rcpp::exception("Starting Point has to lie in the same dimension as the polytope P"); + } else { + set_starting_point = true; + VT temp = Rcpp::as(Rcpp::as(random_walk)["starting_point"]); + StartingPoint = Point(dim, std::vector(&temp[0], temp.data() + temp.cols() * temp.rows())); + } + } + + if (Rcpp::as(random_walk).containsElementNamed("walk_length")) { + walkL = Rcpp::as(Rcpp::as(random_walk)["walk_length"]); + if (walkL <= 0) { + throw Rcpp::exception("The walk length has to be a positive integer!"); + } + } + + + if (Rcpp::as(random_walk).containsElementNamed("nburns")) { + nburns = Rcpp::as(Rcpp::as(random_walk)["nburns"]); + if (nburns < 0) { + throw Rcpp::exception("The number of points to burn before sampling has to be a positive integer!"); + } + } + + switch(type_num) { + case 1: { + // Hpolytope + HP.init(dim, Rcpp::as(P.slot("A")), + Rcpp::as(P.slot("b"))); + + if (!set_starting_point || (!set_mode && gaussian)) { + InnerBall = HP.ComputeInnerBall(); + if (!set_starting_point) StartingPoint = InnerBall.first; + if (!set_mode && gaussian) mode = InnerBall.first; + } + if (HP.is_in(StartingPoint) == 0) { + throw Rcpp::exception("The given point is not in the interior of the polytope!"); + } + HP.normalize(); + if (gaussian) { + StartingPoint = StartingPoint - mode; + HP.shift(mode.getCoefficients()); + } + break; + } + case 2: { + // Vpolytope + VP.init(dim, Rcpp::as(P.slot("V")), + VT::Ones(Rcpp::as(P.slot("V")).rows())); + + if (!set_starting_point || (!set_mode && gaussian)) { + InnerBall = VP.ComputeInnerBall(); + if (!set_starting_point) StartingPoint = InnerBall.first; + if (!set_mode && gaussian) mode = InnerBall.first; + } + if (VP.is_in(StartingPoint) == 0) + throw Rcpp::exception("The given point is not in the interior of the polytope!"); + if (gaussian) { + StartingPoint = StartingPoint - mode; + VP.shift(mode.getCoefficients()); + } + break; + } + case 3: { + // Zonotope + ZP.init(dim, Rcpp::as(P.slot("G")), + VT::Ones(Rcpp::as(P.slot("G")).rows())); + + if (!set_starting_point || (!set_mode && gaussian)) { + InnerBall = ZP.ComputeInnerBall(); + if (!set_starting_point) StartingPoint = InnerBall.first; + if (!set_mode && gaussian) mode = InnerBall.first; + } + if (ZP.is_in(StartingPoint) == 0) + throw Rcpp::exception("The given point is not in the interior of the polytope!"); + if (gaussian) { + StartingPoint = StartingPoint - mode; + ZP.shift(mode.getCoefficients()); + } + break; + } + case 4: { + // Intersection of two V-polytopes + Vpolytope VP1; + Vpolytope VP2; + VP1.init(dim, Rcpp::as(P.slot("V1")), + VT::Ones(Rcpp::as(P.slot("V1")).rows())); + VP2.init(dim, Rcpp::as(P.slot("V2")), + VT::Ones(Rcpp::as(P.slot("V2")).rows())); + VPcVP.init(VP1, VP2); + + if (!VPcVP.is_feasible()) throw Rcpp::exception("Empty set!"); + InnerBall = VPcVP.ComputeInnerBall(); + if (!set_starting_point) StartingPoint = InnerBall.first; + if (!set_mode && gaussian) mode = InnerBall.first; + if (VPcVP.is_in(StartingPoint) == 0) + throw Rcpp::exception("The given point is not in the interior of the polytope!"); + if (gaussian) { + StartingPoint = StartingPoint - mode; + VPcVP.shift(mode.getCoefficients()); + } + break; + } + } + + switch (type_num) { + case 1: { + sample_from_polytope(HP, rng, randPoints, walkL, numpoints, gaussian, a, L, boundary, StartingPoint, nburns, + set_L, cdhr, rdhr, billiard, ball_walk); + break; + } + case 2: { + sample_from_polytope(VP, rng, randPoints, walkL, numpoints, gaussian, a, L, boundary, StartingPoint, nburns, + set_L, cdhr, rdhr, billiard, ball_walk); + break; + } + case 3: { + sample_from_polytope(ZP, rng, randPoints, walkL, numpoints, gaussian, a, L, boundary, StartingPoint, nburns, + set_L, cdhr, rdhr, billiard, ball_walk); + break; + } + case 4: { + sample_from_polytope(VPcVP, rng, randPoints, walkL, numpoints, gaussian, a, L, boundary, StartingPoint, nburns, + set_L, cdhr, rdhr, billiard, ball_walk); + break; + } + } + + if (numpoints % 2 == 1 && boundary) numpoints--; + MT RetMat(dim, numpoints); + unsigned int jj = 0; + + for (typename std::list::iterator rpit = randPoints.begin(); rpit!=randPoints.end(); rpit++, jj++) { + if (gaussian) { + + RetMat.col(jj) = rpit->getCoefficients() + mode.getCoefficients(); + + } else { + RetMat.col(jj) = (*rpit).getCoefficients(); + } + } + + return Rcpp::wrap(RetMat); + +} diff --git a/src/sample_points.o b/src/sample_points.o new file mode 100644 index 0000000000000000000000000000000000000000..eb3c8273c0fd8a6f56dae1bde1dbc909aed8a9ec GIT binary patch literal 872014 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

6G}XvEHjv|Yw%q95C-!f1oM+hJpG?yF#oB+ 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 literal 0 HcmV?d00001 diff --git a/src/volesti.dll b/src/volesti.dll new file mode 100644 index 0000000000000000000000000000000000000000..9081e3b2e8ec52d47da6794ef6d345d308783d49 GIT binary patch literal 3587584 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

_)1w-~NJiG+B!W76Pm$4%P~VEf&w zG)Y#m{qA26vi;nsi0yw?Y<~uCZa+(VG4m~-l6;R*cE;SCj^+IXAk7pQP01M%Uo>rnmVX)@BO~ zP!;SYV3uH)-?|T1A3qc9TK5gdZnz62ytdoaq1>T<6%=mz$lubcVPV>uy*I4j`8)XE zu-_h`{K4|@#$(i>p3t)#>=dmEA2Un;1IU;YgUX4)G^pT+?(M)KmkbBU?uvZ57<%4{ zKq<{>a>OUG%Z*b#Cf-CpO4wN4j`WI3zhRKFW`um-F0y=_%|kXFHJ(jleP$fu z$xhCaO|91e#3GBg5A9L1r~^efW2F{rj?%Gra9 zRUL4z1P=%g{i*=gO^d45p}uO*61e$sVW=hlosRHII^i~Clm_P-Z29jXM>7>0{v{zp2Rk-3KLRE@@ z1(Uv)LPm$lbkYwfkx zUOTGwJsm!b+HxoI?Hn7w>bhWzIus6C3*RDB)P(^3-cNE@lj6o}06n~R>pGKropUI{ zqT(2o45c;R*=v(*rz$Y=HLJA9u5NFGpPp;`U+kExZOV*$tIsu=y|uKPanzYdwrz|8 zBs{60X0A*Q_Fn19+@M9VS}hD{pDvI&fJoH=QDqB;(;IRG5}$HxH@M50MY<2GQ-lXi zBmKF&9DCzu-3AwxP^SlROFiI_)@r`qdO$Kql6)A!caBP%L!SG^a^&r6!5MJ9o@dW@ zggtPv7W}ea1am4?IzJ@M`8LI_}^LXsnRILizMwZEEb>|cvff}VzQdWxwuImM@h zL=Zs1-5PC{D>mrfT{@5J6z{SS?06t+D3a;BOK-Q_>>=^Xpup_!uU zqJ2)}WGP2;_XaoKFM++)BA8IfEZgAl=92xrwjEa2 z)7l}}`O46i7dSkv%L0DHxa{G$se8#lY)QutwW3)Gyii}(7Oti@g{$F>tZ3FYZsNeO z=@Xs1FB=IhzcyeLc7FX90_S-azT}y) zNh4B^A9Yc91YT`;1Rln+Wq!-6H1Q;{9Y)4shnp;trs=Q-TyEm?1>&;Z$&3)BjM==Z zX}XBu{yG;2%wzc>JkyMk_qR}3aXCtCCW5sz37()pquSjeM|}*jw;FQ5@IRz)%vqh4 zlkOe9GBpL=>`1KBs9-fP*Ky>jPDG+MH_h+`FH&)}e(Y|mR?X<3dU?x*(?G8@XZ6Y^ z8_&&p#xrqNmlTfIE)~syre4s;(~TcNwA#K2baFrAC!fC{IrZc|M&iEgRZ|6ptkd_f zn$f;WBxvhXW&+&z!jhycRj}L(MibbDr7;%x&U-akQ^aHPCSoVG!^K%yqZfKBfu1fs zy_S5>Br2BR%7=u}Yw7}2Kw1a=38JaL52JhVuDfvvygPFUwsm7OFzl&jg@1jRy8M=R zU78GL>X?96;!$RRHyx18ZqaE^N}sG-5W4jjN&^uc{Ux()3fE?qBIyus(7>@cHOOKG z4?gu7ceZkq#F&=pC3N0iqN-L_P@%1x0(6ZtzPi?jS4|c@Yv$_ehu1mbRios!52GV8 ztYf)Co;Bl*&QV4O1R<%e#3;$$kWl4=lcmeUfr;p=G%`-d0+GVPuKP0R8HXdM-*k5j zkUUwcOQNn}EK1tulLX`iS^Y5+%ELyXw46r@d#axF%TU_F@%|os<{mk^KA^K^C0L(7CFa>u9 zzh5BI)i%ur$ka1@NL_TV%}v9R>$t7AQHa*;>-2rbz$#JI=aFKKZ)N9mZ-=mn$5kST z&`w*ChZFK5(ILFGksEKf&-Mg|EEG-p?Myw=3)2_<$sWuimW*M^$eBU*0jn7|2m%N@ z&rHFG$sYD7*mRe=bA#)SHIPr~4jbog2)pw%12>>MIN>-oul1m>KhgQW7m1?{>`I&P zS)HUSQ01^I!GyaFmaZSTO~)LBVul>xz`fR|2j<%a&*L&fS+a@RqcCXJMg9)c&84fc zJ4AF-q*Rw+srK4GCV~#Hbe04d#|oi5+MOCTDRXfhz9PPEvt!WUHZliIhnT`uiTRmX zD99j>GIiN+qk_}xjh$H=IEWYR!^G?{8aX+{X@Kgw7KE2PySAWjZ@+X&I6P%_%;gYxU@J?SkHTQC;4*B(MEFFHQDfV;S-4a#xjlLzs7hD+<|LY(} znhm)X_Vvbyayq6ETucel$BMP=eJk#mP>*iX=#vL9he!uBsDzJFLbMQAZXeq08}x00 z+V{neg-{VcPAn3mvQdlT0hcLrbLdK3C1 zR6L&0PLOlNnYGOUN((}oTM69xW)*^)nK{QL)acCN(bA8P>dcv>309Wi*zfB;O9nFw zd;#mgi-boo91f|3LGGtw-&r@=ve^#6oyQtr%6BP+_QHaJUa?hf>et}rPdSFX?MN|X zb4CD-EQ@Hpiqf?xWWF`wbzXSw4zH5jl&?O#-piFBJ9wcmQ_59e<^}^bVofsrBrHPg z8Ga^fZexkO7M$Tld2t-Ts?bY@j>rmuv;z;nv=~}CM}2X8x>A$f@oD;|{RcN_49x%F z9C&&)ERh|oS%Ws_bA1{5z*WHd&t8VQ(wMeUJwz^+Q&Q15K;r+Z!kl|WFbV0>LhpT> zu0@?nU(llwan&;P&8oq~j)ej;Ee@EI#lmG;vJw`(`T6R^)S(u6pz2gJL0mDJ`qiw^lPzKgJ1lICIS|ZPTz0YQq)N7 z65ONVl4dOLg*O-goXk+9mWCbG(aBE-El42rt5$u^WHnfP=h!7|mvFbF))+uSWe!Z% zNTj$$p1Hy8#gLo9xRAN5cYKl=X>&)K>&TtJ7)sh27QFCVYk-X}kGi_>x+d)1yvdhMTNnlYO3B&%*?grEadM3V)hp0aU1JL?G7 z&xPtbxHnDPcyKw?>+DhBwRI)ZFKX(fC5y?mOuJ-U!)#j&*^S0PydH&5GWw(YP~N}= zhYcqNbWa@*#{bIkNjNAbaJT-m;E={%p*l85p|8^4;piU0xy`{D6;vpYv9*$83Nn?tXp7-zn3-OI^F#|s_7g*@`pS& zD&rzKi{B=E$(_d6OeZ&z>w~lTG}^0kEHzkFM{xt;s0+z+ZYwMeCL9v<;7I#ssqupX z%W9|?<=#MUty>4_!=`~*ik2etqMtby9dIK6(vo4dpGg#Xhd##!+a}E7PjPf>6CO9` z;7Ylpald56H;Nm+L}d*}YqR5^Q|jOLD|)i|!jTn))le2y zd56Agb*O@^(%W|=?x~XtEA2f{} zboTFbUZbvBrow|QH$g5XcC;!Ll~9MOq55@t&7bbO?M{upJ8TAK!z09PQCH}t>6yYz zEHChj>}5CM6%)EI}!$ZN2p`N^q&h>-GliHZJ;`q%%Wyd zgVJolf$rn?6(s)X-j5?aNl}3{jI{%b2$n!W8SklED+_6(h@#WFC`gB zi87iibJywW7-vFMk>VZNjiRqdL;T_t@6sN2PcZQw8Iht2huyiW1h$&>{>ItaRL9|+p%&Hl@4 zlDy7f=gD0U^G|%NM-b`An>i?0`ZJ*iRbC!(l=+_qs$$id{A>dg&jCe3&h>nJ4U^h7h z;F^Z365lBN;TAOU5o&v_UxH!e4j0$3*+q42XK7X_qDmf2HbgMlDLqfy4yp5G`u;pq zC$~xvr?2b&U412W65R~@>SvD6eG&ba4b6P(BO8{prgENDDw5COew$dmU_4?mN?-LP znRWWWDl?DCl@QUvX}gl?^?IHvoT}3-nNJy#18SwwZRSCdr;L}xufV*4z8Q%d6x|_R z-F)5)+Inw+#H{HQ$1Ian?GAglmGoTGOln3iAhU)^RmS}cR?YFHCBaos0|UU+%-dkY zJi5+{e@PJ)+2g|ss z)s?}YbO)jMCD%D#JS6?sE)^#jpyd>1JowXMn_dxG*)$6=B*LuM4YPgzc9Iv70E0L+(Ofk;P zLDIX_1jWjt(dughTF=Ga>y1Rk!(Q9{T3c&w z3|9wt@#Ez6=u3l0^vUb`q;OE7rxPB?THVnG{B7FWC*W7A;2FC-qT@)ak zvBU!?;L$5H5wd^VEHY&W>ByV+T5eOi*%}#{;p`Ftqu0;2bt80r_5_wu~%WvRn z3tYS)*{rL0H0<=6rZ3a11liD5vCO+}lzJ~8$WQ?+=f_9TXD2Ei@vhsSm$sPuLXoVr zQi6wCRtX8$NbQY_o1ZloSrbjl>=q~qM?qz;%sRrQnEr4PZ{%Y1xXgA_@>Jsz>)fT@ zU7Foxj=Rivmj&+9!G-0#z^Ol4)x{a|x(w!wE#kjtc4aIofPvF^j!imdWRtzuU)P$k$Xp{&(f87Mnau*S89 zW#T;L)EL+@-Khej?GKr(p_q%4V7_Juy7&y)c*`#=-B{1TDmFJ*y!xp!Ce>0Ys;Ot5 z>LKhtZnxRzx#tv?kNcbu*M6j!v~!75EPNar)q(ULmSu(nne2SpL|I77Mrob%6|_0H z`bSzGSSmq@=yVAyFT=U?&B}@?L5uj&Y*b~Jo7C?FG-^`@nhF9}*YyG5;%RzI{Ck!e zAl(Dae6B4s*}~;x0Dd}QG2E8I3WXu$(esz zNudo{M=&5pErtrB;e(Rnkt=l0O=U9n3h9-|5S@*7?o1-K+o{eMb3z`Ly^3{>e-h>< zP>13qyuy4OZ7egkL6h+cA<|8AgPUeSNr;kQD>%L(45`U9?5U>P)_QGx?sGp}V1Twl z<$s>92taKBdmksRTS*(8-qX#=^ZS-_ZS$#><+`=O=?;Q*H`4}aZu_t7UG+F^GDa3q z`v)|d7-oIIcg}ZiT!SYw){FA67f2Cp-BwoH|3rJ^YOjnGvCS+pYit+81$D_7CJV^@ ztPe`)$~a_Vn;-s%j50WN4k+z#1pP8z5+Hd`a_9|0t+8)fG_uXK8MQ<+7q*e7(oagi z?P#Bt?#^mOk`*_L0(k9r^N>nE zm&+MPi$+b;S%TEy89i`12Y0pGKvahFnIj;|b3YgKqv3C?bfwT;6&aETN>Lk_3G=z| z)n~%q1AF0Ra319%2-8+QQhGBNuYEj4=N_V=_&Z3?C+z~71`2{ohJG=}MLP^mU?W6< zx)={NGPlKf8lZ2`VlCOO4Vvata|OHCHwGt@umx3wbF-=GbF! zjqm+Ar@JZt-^ma4e@%X1KK?WELn4$P4i{`PANKR*hlP>+Z~!ku`2nr9@h>Uu^JIuR zCqtmg{r^RV_*&M<5Zj0TcghfD`7(raPA0sA#0V{ri@+?1CH%1wB&;3{%j`hR=!GNJ zB(jydmM}d<$Nqj90=t072NSQ7@29cB%b1qbz$Bvy1Z5$wuS%jw>WJ1JFT030?3+Nw zF$#oQ%WEHk9Ff4U)a~#N$pfE<^a4?~Tg@lVNhnb$qP7vr-~eAnJY+9JZ;%Ah2gZGf4e~Q%43QiDA(7#> z8>m|%!!KzwtQAoUf53f+3?_R;Y{kLWjo&X@to8qh$na0Lb@yDzsuLBE5vC=}UY3Wv zaYPs2-na}Mz#4!dHv~4dX!h zVDtOR2RB_OF#J!-2YIS|$4%Sj)4*WUkFDZ9`GDwAk`DkwtzTiwL9gA`jwIx?7-!-& z^I518!n`^?F$cW9~eHLrh63GuC z70`zf85l$9m>nqGbBk9YKWJ|mF(go;B>m}l>uoUmm>ocJ`76Li)!^EF%xo}PXn872)U?)ldgD3&0nqwo*4`yRhyL(_3P z$9qj5OVT*@g*}U2c`J>@h~H79@0OC4c+qjPE^gc`eZ>^-Q$1H5irS?KDl&f9TW`@T z>0k)9gIGAB)@xmTFj98rdilgAi7I_?;^YTMbMLiQ7K7_;Z%UQ^?m$(#zYF^tDy@oV z8E)^c>yr4h}S*{;cXP2zNbYV4!T^&yY*PsnoSZe_o&|F9$R}1}% z?PJ|FxkSdAkjUJlR{0fMrjHhTDSY-d@51G9h{E*>157%*_vK&o5$cmcaMo8oKtr+< zrlm3yr)mXSlgixE43ecXch2Nuuqy@xsSJ54w%}ItTD4ak$NK&_5!)wiP2i#1RE~VG zp@{7Ff>$yZ|um+xXV_Mu;I@ z-i;kzb*HxSlvyKjXzn1-ef+DExuq+)0hQMDXWUK3_kO;~eU7UXEfW6nbpc}yZtDCt zLr`!!E@M^*LQ_yHVtt}zS&<*x>Bk;TR6OOi&SdC?AIm6Wxc1L*jFgH2#qpjve&v;i zzIF!g+Z&XL!b!Q}ZW+8fXsXJr!GA!OhH-*UNisXDbUtr%7@`J3y5sU-?h{A$b<(}J z-inAzrCcu0Vq&*{3PR#O>+648C$zoVyXVX^Y|Z`~qr_);t0+x9>Fdiq41KeA=8yuVe)f`Ja2m&~PU>j>8Xu&)2hrULboUNwq?aYu%hR=V*k?D}$R?`tKK=Y__3x{npP{%sdH5Rq z{V<^rW_Rbq3JXk0zR!%>H^B+|Id5a<0 zu(=MUUh@hRwLFE5wtXDp+nL$Ihj6n*cNwxK?>y~6V3`NGNlkmzaVQ$iTR;+FM5InF8b+Azx@j%c@ z{6Q5hZlq1;PBrj8mP(&nlfs9f{Q`&ztPgMEu2km2@&sGa%Q}clvqUpPv0>On_+{wt z*vCS0>efSgJDe$VJT-l7rSE+KJ3X@)I;NwlH$ovEx@td&rzp2v6>?CRWOn!nn8#`x zw6n6>-BGMljA`Tu1@12pf-`7d>r*z$7Zw2qMvWnR9Q`ZG;-@uwtZHraeof0!$4VRO zMh{NOx_~Gp9Z8m2odO@j@xoqT7e;RklQUY+iBb|XpI>@<1{kAzrkiLHd+{5e2VPBO z{qh>9MLd3f4Z5JyvAM&3pB;)B0&W zBu0?>xmf+wNLfFR!QVpdUTppARR8E?pZr1p5(D~YaR*$_ECxXsb%0Eb&kMy2pF#cE zzl3B|EuT;slY!M_TaFDVpf`|N&hm0Mk!%}}WZQTo+r}f=HXg~g6ys!D%4z0vwxvjP z9$>Jwez#(GT!T^6k;$$^=1c*%6K>Gyd@4KP2A#RTkj3(gn;aE#lS42&g2@P==N&!r zwX%ZT|3R>KT!n%-b;L26XZBU#O}0i@#{i}7+_N&5d~D-FJiizAqy$-W!wPM2QvGOCHtV*j2gj@IIAk9|!ajnLG6&k-eo{ zPZhfxixGb-xkvoH);o&Xv@w`m zf225yGU<2#0}f)btajd^>+sX*m7G+L#NNa)m1yQ@#EIa^>%O%K|=Bc4-~> zTpx#O5{KFehFmW(o3%j$QrGUF@k$0{pcQ;SeHra;zd-NV_9R>Dwnqik3DcO44>qe1 z>Tl1&vLu69L|{3Wj(ro}vQ5JI#O&~GT=*U_A7h(I><||Gu}mCRlHRi^g@7(51XkKn zc+V%(Pq0Yj2yl3ED!qX-sJCF1YgT57Z#9zqe5}WQjHm~bO2-i~Qt6d;qROLQ>vp5^ zZ+fj)&^mb3R=mE#Sjmz%>mm_T;(Kkd>U;FDVwbkXp(S)uq`Fk+XD7y*+QS`&2yIyO z;16`4>>OwLU71O6xRmNI7QpD1GXC1wRt`VsWSIyjo;H4mvw7o|+^Kw{!JRM_j8=!V z7SgsliSGs|jkAUrYx>>h8phWwT6oPWjs5oP8ofltEgHne{fL4+ZOd4VL)#6))o^r` zEQ6#M{G<`hz={de$juz<8#rWeL&dc781h5OTWi6NJ^`J*fI>Yb;x^D)I-3W-&k2T6 z(5g``HuJ+5_i_zh+;n7t@l&tu3Xs6@&$c@Wq-c!BYx^w?<#qyW1~IDjogL7b%!PHh zpnYe(>UxV}-=a$mM{Be7AP2_X+ATNxqDMm9CMLLd*Mv9+!E@bVF~LFXk84=VgP%2s z)(}R42X<_rGyoE#X`|MbNF6|4=k0=6(-N>ziG9lk=AkTL<#T zOS99c+j-F2;5nh>z-f7zzKN#ga=k}~qG@?9FElN4NAsoTPiJtd*H-DW+XM`LnwR|( zmfeU;ZV#v1plk^h12n;OF8%tJ+;%e9=!64|??05BnHUDPec<>A!>$Hgd4X5wgR zBH9+A#4wPni1t0O8w0x|0S5NWsqen>_dpya%<9HRbAJ@a`cx!8v5gvtC(|1onzfDr z%@Wz`Z)dm@nV$%eIg%rlyGj$@Xpv%r9 zD)^5lj&>;C_!UF%#xI9zkWeX-`+&fz#VJNj6H?9VF83fzkt#KHMTeVpWu|Hn+eT@w zgmg7m0g<4{4l-y)a5VKLrbKVesPO{;55Ggp^W}#G_??K&+P*QN7{EWLnbNiatQXK( ze?AAt*Kr;#oA>%_d)Xt)tK7L1=;Sh+l3r_RNS{m|>ghZ`!PUCg{VFuKrnRE}B%SS-F^5NqC@F8Xx-aLjcK2(fA+p$k7G4x4=GT zhI~{nED}n$UCpcjzy@xbTd{8XVeDg(RA=1B$V+g+r4Z!IPc*axkw%M>_NTWRhKP`+ zGKWDRS&0-6%e_n(g>2y*!nS+^TTus5oz}7tGdcbt$;_zOc6r(VkB-H912WP0lb4o+Jy#7yPUA z#6Lr7)(;Xko)eM_*$oqK5(nrL954voqc<>ZoJb(h352Qi^Ju>C?*d%uXZ+A4nM^;z z20?sxA}QhxW{UK8kqF^Dl4xS3N|R=gprp3MljjuhQvlKtg)1bYGQ%6UC5gXht^Pjm z^-T@JaU%AH_SW;{D;}KM74E%fQzfz5o@@LM#hpt(!ESG+${8$`bXE-rCh?yU71SJs z>9xB)3Nw|*zk|Zq&W(`36t6P^lea8;=oO;~Gbw8zMVKf_XCD-yYI#Hv+{Ejn2)8nX zLeY|lB0!!al2FdO+y^O9_Q}i@8~}A;t*X;rgFL>xZ?RkSe_1r!`^eB+A~_W+8V(N* z0`qOMe^{3J75s!E3B*YT!VSCL%Mn6G9K6^!X;2^poyaIBAqpt9-R{^@5B}Atx~8Y(`99l*5%nWq zHlp6lODN-L^bsYZ>K}MvUsT;`XI2|k&u!d{DEK&o9EtD|0nHt5NPc~@a3W9WwD3^!851Jd!^r(5OiM ze3BQEs6#qFVRY^nd>tHV?Y3#|%G|M&)M2hSCWgCK^eFk&sr%^UT+|GLeInab57D`5*r|@8h$>HcG;bfF$5_IN(TeasU7o zinO+YB2o?jSb3%E2wJ>agQ@SWZug(_+FHYV*5Xz~H!p0}@rho>?^A=mL?->S`_kBR za9CbL|I@zQFZUm`CU|3t4ZPt)wKrlyN$zespWo*dD6L#k@6hUkU^QPv0Q+iK)IBJ< zKw$b)6#P;pW^U;qui;%tfd=8p)_erd!;=G4mEj50Y-huX!6a2Ta0p&{Fb^iDNi~b!IE_>4;_{~p1)88OX&0rSBvZPlObwp@TOQTOtZh({5>T2on8)X z;_3NK{P(<%%Ulydl0Em^;+3h8Utsr>$qW&?y(uy(_UG74Yk4>4E z`v&)U0Tu`QFGz}!Vmz*k1?0$dVQFDou+={(Ml!|uk9khj-7I3>CCyV zAOsgHXdd~O7Y^wMQ$?;}gtnXs;C{9y7X11gK?W_AauSn`^o#v_{rbx;`F_J?cymVM z;XcvsG&PQ#_h~Hf6*<8B!I2tuF^;pPDKwc(jo$n(>gqbJ%tw$zS=&BRqIyUDY`v`c zyMr6emHm+5IH00wd34^8274Fh59NHGl;us$N*l_cjU>gXb80w(wcTU@Qr(xYJ_5iI zmvepa)XF0Y=&__aVT(Y>Lg$p=&or+Oecl6?f14C9s9Hqcg6dWlZFf?uJeaQvTX7)0 z4~~B7V=AgniVhX4Kg|!@Hyb|NHm|(cRE0gykCHF(nOKWey204U7BL zeXd634JrrJ_(F$kRC9lgD@gL$v3olZu<5!ZShUJjR%0z-7rs@5v*_|*#0o}{VN24M ztbM`j^}wK4m7TDQoq^!yI3Be9xJL!BVYl3_vq}T5DJW#y*G6bUbuc$O11yOh3R%~5 zM6{j&*hf9-l^wM<+MbN!d};0izH#~;W7Aw%v}2`k{; zPl?%|8)2E<}>kP0}2C*XB@&8fvFQ4bj4iFpCgAoMs;) zNz-he3Kfd$jvpGr5_{?6!hY|Pq15XlUksokLAE}nUCA`@yv%p> zkl>aF9I)0bbkkX#4ZcfaKLPnbnC0?&3`+#!-bD^e?sZrq%-jY_h<4OyfGkL|=tg-^ zy#%abcGi+^bdan5tU=+u#V`*Jla>mNk=uHYS}W1H759zT6D=?9#q+{src}l2(?6=k z;C^(A(DW}Aux%`~lgr8^lOigsoe>qIt9=yg$Tl}IenaDhFOOP(W*M~$nn;Ygydo$G zv&_6Z?DC#qm@+`YI@ERv96N$NOI??Z@F*{#IbsWi{=>rq9g(l``01tpxn0E8Gzzz(orP zzB{g z-uNwx>}qpXeIO)=c=o;AN>8*yST9KEPnLlI#;np%POMvX+8yqH@&Q7FrXJ*Gd zp&mxa$nK$74&xOjC%^0!JR+JtIAxB!9STcfzD22+yaP|CpAR+WETAIWJoq9}v9oa% zxE{o69byS`!RzPoAmhUB;J(WhB7`^}YA;Mn0xdIM#hJ zg*nD_B@g5&;KEZEm*BH}26=I`(jdzg87w)s+9cuT4x1d@EDGb~GP(g@dS$nk_Sp4~ z(gFlv13cH@q{AUg09tKF-5nf#uljO#=`@~2g>pt>!c|noBMm1rIkh6H=Y3H0%OiA7 z&F?0-b80e>2g-PNRLSKc>aA9YfUnFVJMpVNXz9&*CS52&4_9&__e?Iq!e1Owko!31 zBjlfh?|qbVGQ&D`(e}wvZ#}{tI9f|r^ruSV+$*g$YL=p(IA#ULM@N&~rp(Z|D~kD)sZE|5@1xqq6A)Kc37my`?jvyFtQz-TV= z+*EutCF}^E{E~x{@FZ9jJ}ltj{dw;}7qVn(LNT zgL%BSOOJWH*Wa}pPf~BzDfAJY|4PM&nLU~#Mg;cwK*oFNA2j1_G>q%k2#V`Y{b#st zfa6EVbzeR~C>615$894noX>S9zaQ7__xJdF`0v^Q{8vU?;8Exel= zoD|;Gigbgyy}Fa=G_StL`RONUOT<$fH#^-RWpmC4Ls7RSRfm zNUM(dV;`-${_cKSmA5!>0<(aw1%wc+mupa~mi$fPq+WT4ZWg<`9T@g44Ag%8X<^Xq zwSH0!>t7grNRN5MDOwopN2l@^2E*lR1|ceu_)o)BMewMCKWi<#J{W%zoC4UYw%}Ju z8tf+XB{;dfk1&1Alz(b6zjE=Bd6PJt8hw-aJ+m^{v){l;^V%I6*ZxU!|6iLl8-8k& z=K7P}r1^-TrAhO~lzmT{cfRvCC(REjQq$rW$GBH#n<52B!sAT9n zVle(8Y|xW&n=RB0Z23a(DVjm`l8>i>orbf!gAKov{Od4E3q6${2}S8`(sSIX`14+2il6kv+y7j)B8l^vz zU?izYwd&23>_m4;>`kJ2|V-`C$1nPvJ@H_|nHa>-jw1Fbgx;E=# z{Oc*!k8&U%?beT2m9>0a5iTFsHoiiH00gAP_>gZ*;q>?rOLJ&GpKF$(HE|mgyjC4c zfEN=-Lg0+dmX;??lT1E=85Iu88d}MG@!4FbsiKoUR&v#x@3LnH5xrkvS)Fbpn$=#J z)8=_)PH2^0>t6ew5SLtoF@F#i<$}_Lz`i3G{$mLcp;?VnK;AZz?X)SuyS^iFb5v7C zu3M1`Wxi6RLV5UPM-Bfnx1VAKE9^VQ2DYUg9A@3q&I_?Ic3yB9u=67L2_Kj`Zs9QX z+3Bb_Hew(>&t1F?E9JK=FH5S^EbpT5Y?{4;^4^AhG+Fi*F=(BFbSkb{7LZm7(yz)- zYhOy*cRt5)VQ9C%tlZgAU;neF@$TSUe8^cl1)FbotEN|fKzUm8Z5LDNDwcAM=T%}MP1-W}(V$%#f zr|4p@?H!z1{OlRK{8L@;_sjA89%DdgBmlP-sBk1zk?jGd0A~Pbn&7zB+JIs(0Q5n% zLkT(p3#evaqSD-*q_D2=4mI!iJ-F619^hBt>|ba`i#;4Xn;XLIc<`w%WCFj+LKQ(m zakV^l7b?a3*qzgI1>dAGx%yWJ7BT+%eHL+t^{Ag?-r+dr$5q5tsH*c@Q8j&^MZ8Zd zHdRx^x8x7duO4gN(+dQ)@)ODJtv)97+~;IR&&zf{Hu2mY{Pb~FjO+LkeCa>p?8Z3J zD3d1V*RB=mcQlSD|E53S@cI|=494NiX%f8Fs~LR}^KU+&oj+{zgOFpZEgQc~)O-kL z`x!fO|1MwWh>uenUIAS<%ak96iqk3c(AZ!k-HHwr_&;P&^~Fqf(~%Q@g*<%?a4K`J z^)--24G0!R4d|Eu2e;$bLYVAH=bWgCwIg`o6n8w|3Sh>3n|i!a*sb8b zv{J)v{~C{vpGwHZ`IhaZ!^5vUEu3u-Pg7HdT!s>-_qAN=sqCKCAl(eSL1<*JJecdHQ<022naj2GVfzEy4{|5q^3ngL;a>+OqZcsz3tnh)$R{-?YYq-U7RvPq7YH{z z`%ETa?gD;7yJcS+47WO{k&@nELKg({2AA|^MB=Taxgs0C62YQXpBT^|b2<6+EqN{{ z$$@2|0EuM(+z(!$2n|rD05E8PN>9=N{fakHd;86RP9JSv1@EPVxn32UJ@`)xgdU-1 z$MT^%=IO;;0Lj(W*IZWB6ZTQ{uTNCfV|bH$;3f^klH9-jOxNYPbvKf@ki^_M`uV(m z()#%fQ!n>x-EGv*rTY1te*RrwY~n|spQe-@3E!XpKG#{~%l$+@3&SrS2(OC=T^|mgb_Vdj$DH#_&t?x!%q%a+ zy?)&%n3|OZ(*M)-5y);;#hmXrz#pk)>ol*dp|sd5!!koa6fBASVu$CKu(X{asZ@GifN95@uo-Si%S&t#zt#MFw42yYuH&dgj!5(gCCILD_64LeAFXHdx7$@I${4LY>tW%gz6!PrXxjm7M|tn_Xm=GLA{@0JynMej5oAX9U?R%NazEETs0 zTjhekN^Zu>{LXhy^EG$sv_{(7eibWX{pFgaYmfv>wfy2 z$V@IuWyYqmmvNxfW!UJRhjrPW(2-c6^zaV*F^Q!x*$!SURU*RcJ7;IdY~`vKn*`G_ zdlT6iLrHl);oj`!%@(~m@wp_2tZAP?_LR5BzDe>fNHvUE-&a*$FpUI4N zwh|M>i(^21Qc)T#+Q=HW8GhuuI9-mE=jF&%iI%vQ5cz}9 zi~rXCCn{cR{0%Wc3R7%-Y**M3P%S~sp4_2$3Mf9l>r>qIDgIyUQ%>hbn0*2W8?63j zxnYLC4y)V~G*%}f5^Bg{EE_64JApjnuc5Iok@-G8(PP0=4mvI#zBiG%n&%V1i`7aa zboSn{Z_>E6j5x*=0#Ty#X%TMp0EnI1|~m2EQNtJcvGXsN=&#FHzWo&fTZ^oL$zL`}~>N!UKsI zl`LE76Karc>+Q!%X34~oActb>6V4BfGQsq1-;xxkMMNp>;Mk;8dJkW>;TQC7qI2`G zMCS{Ie!8$U(fRUF*S@o|M^&7aJ@Io=nVhFJa1qOPNM+&MeRu@XlsA{Qe3c~2R?)l4 zZVmqjbr-yLI=5msm7-XMV|CY?ta!SST}&9Fv)AljNVuND6s8r9_KUH(blZ#{N@+S( z!uB-3;+3X}95KyAIDpNs%K)kzpO+y_c8Z^=T^}Lr#@kU`8tUkTf`*Z1q{G>ojIpa~ z8N2P)QX1z0wk#bz0CC2?yJcQPj|RaTQ{N+r^pp6g5lb1bHc<3FxR9OA+vnY8041Dt zjAe=Z&a>kSfC*c)6lLHWoe2&%WgEVH3W%i(=qmKGTzj+IZ)Bjdg$MZAD`Sk)7-Cqs z9+F`k^Ow!l4W%W#rM!mH(cBExO|c57)b?TaglS(5+7PidzlGH=fo0#O)U&dMacy;| zVZoWq&cHg@unht3{AGv%;9V5wLIGaTfQ^$|x_8%O1h>?Tp_L=|*E7?d@RCX!PV|== zVz`VFCFz8+FXxbvCDN_nMAJ3nj|7P1+=(^G*y?1(`K3iOZV|HN?Ra;a)(~i$u3^sr zVXUs9KWKf5eRc+w5Nr}QyE~CNjKST(t(fe3x-+KGYmF46Pp0@9@XK zh5dlsQ0eZbc!w1}H05;fu;IjwNp2&4<+4I=!~v3asJpQv8N;m-gwS=gev17H4w?35 zcR+Cg*O+jlk^^YAYOgur;sQLQ2oa?1SaMm49<-4eA*G4Q@nX|SsSNwvClsBTodldY zoD5}J$Jh?xyz%QW_QX>3?L??b#a`me#x>yL)B(6S9;6?m)k{ck5fz435lal3{PdaG z^VOjZ#FvwjvUoq{(oj`!2sdXCs(Wc;mmM`ewj=jr+NSw22%rA}`7V{I%a`vso|JPs zB;T>sv1KzN-c1t6u#>;9h<8HOo6Gla9E<%GDn&0g#)#{~CU_^~y$P9JPC}J;OXv8a zHKB|b`Zte#v+BnVt2FSeJlUSUy~na z1fFA!!|kR-_C(2VTM+&v`0YG9JA93JYM#ukh%tp5dAS(etS#*3cZB^G58p(pljukr zt~bSnn@Mvboy*79$(JPhIjPPP6D?SuEB?}Wt1-3=onuy-NN4gKN5t#8Pm%6jM7kIF zKrR@qW1$LDr~vo9DHDLe<|$u5rrWqrnNIIFNyf_;>8wMiGxfV^62Y1_&R8%9ek7)U zQ8YjQhx(tYc!B;S)+IzW7pY5`6H=LP6y=UIM9=G3+&UKjFLo^VQ4=6kZrlOvZ}Ybf~W9TGMz;t>I7MPQ<;OnkJYRucEi>Oh<50`467a` zL#N^2O2faE($6RH^V&$PlTR>#knMg$jUd$Y(nNYK-$63tg^!w`q+wpEVb*61^QsxR zyRI_Pj`fPLcAw=ll^ZwqiFV^9QKWZ7qMZWLW5xfFfcno!cC7bc-pF;A+pr+lSv%gZ zy?vtHm55@g^veLMiX|q(LX~$zCy;13Di!OE?!iqFL2V^rb3hSkOKTn zg@iZ-XHj!>RP1O@K3qY5llGK=7~$H+`1_f{QptH|WluSosBIFfCX0i!t8wHIWQm7E zegwN2DDSP6KxguviFQujGttlFJx6lF#pY!=Ki^@bA{qSnkCCT)oDUN4^{j!eW|CP@t zi4L4C9O1XTyw`=>4i9{7zXC>#71G!w+?JJI`$Ur90PvM$_F~xK@YQ2k8fzV$$efP8 z?bEQ5637{gJfixbg-*u0O+q0iQt@zB%2nN7S)vCel9qhS3eV0a$0EvZo3S9#vMrYA z+%{xlw)D5Gr`Q1Sa?_<}XD=zh+Vqmu-9c(U|FXLC&VNiOJh|1cXi64L)Ysme;*spK z`y%V3j>c!HaR@b*p@-c*<3Yb=drW5r(C<|CqEis?HZ^@gyz*?yNvXKb7o_}YrCw7b ztWL!`v6F6A)pLyhw{+m?K}^98* zZdN96giFO%rqU}C>NV!OcDH$9jFX+%t@vglP54@Z=Ut>_aGTX#JCYP~njo{~lAIS{irwl)kD-gu9W6G1U zUM#&xn3nx#MhR9Ie!QanZPPLyyyQBCUJG7ASV|&%=k-KQ{m%-`PjZf3y@*$~MH!C#8 znObMurMB{A)XMF#RM}I4{@K~{KR3jes&ZYbVtvz>h%0V(s@S8d|Fg-=5LJ10cI3Kb zcKka9e(ZTgvrJ|$dZ*8RHH1}0QGytjsQD^;*>u`SC~Ts*$5v2c77M=gBBckP2jgQ1>B%xq5MK#)*nCu6a|`^4{|0~}7L;H1 zgq`Eb+RbEjK>h$DP~exnlgys@fbhugd})Z$i&X4oc~V{Eqbj2K2v8PDd*vy{c}Db!!Hr(?_RbE`Xy>gI#rY_L|S4SM4lJ#I_UF zbH+^JX`OXgLA}dZTI|8ey6H>IBWsr*dqVBvsCaa9*`pq@_Gb=Zy{Le%TZmvu@3uJq zuNYX2{}&;FMpO~$@nQLYq0x^$p#Z@544?r>%|DuxryiM8b#B!;Rg=y+@7yl~byOEg zPVZy7X_wN<=okc%<%lGA7|eIk96-5Htpd6W1yW}$Xn&NX1d2PXc*9H4bvoTy0SI&g zOBXgp6+Qz{AMb;3B@-b61P3)`H zRq5u7>SG;2DCthBeWs6IMkNw`mWb1409lbwFT()JD;jUzLRf3j#=x6>B;BM-TQdFh ze=xrr{4Dycad}_+f)uv@1$)Hc`k=|RvKg1iW-MzlifK7O3OzZ3r})!EwC=rXa^rb~ zyvFai_~09FD=WBCip7I>aObb6D$=0RWNf^v8ZZ$q4B zD<%aw6iwPBP8OJCX9HYu1t&$o#ka4rgA-15S#W)vyn>QyRrgBo2hUj-zR1(|Rg^U9 z$y-&@@oTOi9Orq9`SLQwG)b^&0?3teMi%S z_bGagHILkn6AB)ZoaE%23QRM$*}vg{ppkD0zg6Ow?UcjQjL;Esh8H?P-pfR2_EM-* zq(8yGgdx$eX#yHRM-OyR(Nq<1SNfR)6B%P?qy4ncNYs=hGBvu!xsq0ciK?cAYbDom zt~Ff8ajoU*bDheyhHE|7IzK(9nWij3K7$-u6;)9)D6ERY6;Y>(!YlPm;gu9#Md6ik zu0B^Psj6Yj`iZaU$;5wMfyH6Jq5|nhRr%j6aBzA3?Mu=w!3h}k>#GDmUX1R;w}H?9 z&-*uM{Qg$`gW>njjd!Ku0QwsBI&Xxpk&i~amb7VkBhKwq2H!;EOiewvrj5-QI`A~# zu%aKn1J)PUZVh0MipNxG*G0A?3Z~|^*>c0CU*2#tx3t;aaAdo?!N1wvxR6WaA#8z5 zS!BNJQe{rXs3kA`8m?N(Xk!x~xudjB2`zh3R=<`c(y=$51<4~?-pF^{rsE2!K$TyT zQp;{!Y{#!LiK*qKUae<+4mR$5VVDz~qP#jkO2%Q6Ss!|@fF&I>iy1^OS+gm(+xFe} zlKarj1TsI}>&JHKsoS2yw-tK<_Fg5cb%?fXOHx(jmvc<}S+?6IS`Xu9)=*jlnE+Yo zV7RXHD;C*$*~@~9h9Q=lLUscE!f5VR z5G+b1DfF#R60m<0y>X7H@RrWtyUhDJU_0yKBuDa?U8)hxp?foLQA zg6Qsc-KmxF75aIZAI_-a=S3>w7`DlqRja*|%id%)xAp~Pppx2Us{b8TyGeI%=;dBs z)~@CyaTIC=vM*Kgb7l?6_47KcUVx*UR|S%;zLx0DTJjiKgsI(yN9TOnUTkGcWsL;*FkZv%ri0&|T|qFF>RL z9PuB`(ex0clw$3gQ|#W=&(n>PKtz7b5mFEbF{m0(naQuHt~c~DCm85JHXFLhTSx;! zmdg-ovixhT-CKdp%MNT_?USVbaK4)0#ecsbY|2b|#R+}y)v=b=run+l@HOk5foiQ< zVtBkp)pofia<^Ko6H3L`>rO}t-g=W++5k)*URVC*`q@BRo~P>FT$k|=ylY?M`9~eD zNk0_nqLBLAEBjhf6Sl;X)TH@JF)(RJ93H)+ngtkeMgP=gFCSC=f6-%)UfSIwa1+P4&%n5d?lAf~p26#o$#R-ptgEL20o*e?@iKB$E2c0s7jXW?Q43wOOM<2LNEXpfEJ9}sFa8G4zSd|r6e_MjeqT8QFpvgi~M1_OIEz& z&6YQy(M}b6N-3YkAs_MQwQ#B@KANiS%~)r^Y!ZE?!?u?)s0Y{l}`w^O^ z^H5-yNZpj8>1}eNR9<0boGD!Vy<+vGMrqqo0u}0J1=>$4!&8I@JP2xE=cf3hdNM52 zw0}uS-!4|RUEYZA6_W%si;p9@_7!i$aV+#d%KsU~%J(h%tx_hTVyDu|^aD|c^76?V z@_wb5p9A?H!9PojirwC<%h=H*_`*tWGQq+WsIl|q^Sw+Uy`Dy$b0Tb)3 zPCJ0*X;mER^Fn?}j`T`z^Z_hp@ws~_#pz?l_fmv85Z_~yq+@w`=l&fEUX;jRcpGn2c6m0TKqEYer9sQZql$l*FQ(tQ|1Lk%2XR?xd zTqf%Huloo!FDb@7p1QHcT;eaHbwJjJuumB$nTiAdcbfwct8MtF1bcqD3vqII8G zU08$jEh-BZ3X-;wmo*=#T#~k>#d?)ITFH50wD||Vz)E|rg^RMs?*07E7xq_#R-L&# z*CIio&v7c}T}+?37C1`X$QP{RDq4pS4n>$(t=W-JDQ|h$k^-)5Wd>GigwE;i7nfP8 zXb!f202x^OrN$`-o4VBtr*BJTEhdAOYHGP zJ<6HTJszdUq2VK{bK)ftvILsG(qfBl-$}Zt(EMWhR?$DZIS3*BH z!iD&;fa>G_@l}a&loX{7_$G7WAlEb_nE0gx+N(PX0$0eds-0Y?##FkZSt^FFn#=7o zFaGr!<(#R-mkNxo~4M8S$LdKp&fgeXD_9X|@v4H}Nr&Wne)3XoV18r@M!A zHwh5|R{w+&ByrSEDlJyJW0Bk;Cq#Ke4FG9f5L>nY0WB^AM=aaou^7?>5Bc=8iBz!{l2_>s=|R zlkA2S1JF>JD``fA3mPXX;9u>Ld@OdjPP47tZ+WG8km&hm6FrHKpAE)q%2_R>d>coYpP626v5Jgr4A_3CSoOTEc7b#gZi z(psFR^UT<5m9dya7NNCl-j;~jfrz=dI90K?ae)!QeghIh;UWAVFX1v3ql1`y#Eh*3 zom0z#D|}kU@doz3+#7KSiNyzn5@ncIpO)lh9tzh!$gh|c%7F(F*5Be8!ve&}#6HAT z#ZGYf#tPkPIZcRjiaInd2FOJ&up!)8JjwBoM5fyK2U>lx5ZHluhuDGff(6*-*=mIC z9_bEmgFbj7n<3VkR0g5f*1qC1xv>PFQE(~TxD=rkHXTfqq;vq;%JL`=uUwwWC{H}f zQxoMOv&&N#UAeJ?n$GbYD5hXGqk0{@{&;BNwTn+|gjj3s_x4;_+-ElyTAVaA(1 z#)R}x7Z^%Glo{U=i9+v{gNVJt;Bc0&*FH}}88Lsay+ea0Q^p;o<;V>wxIDJ(H<*e} za!I>-60mKj=L)5oP+D>lPpG=hp0dB6?jp7|+Dm_EsEEuKA{l|F*nZKDv3m+!P(r!P zVkpqQ#qNWvFfbj3aC$n*G)0cr&KGHTy}NRf`qXyRVXyGKTXF{qG;PCdzts>7J(wcT zpvuucK34E(4f_3YV~m9ykct35_Jhei*b3QKP<(k1K0K!fQuSu?>Fg7%<K z4#L+S&0tP`DH+?$Y1Ej^@#~qqf%hNb`UL-vpi=yZuWasR?GYp#f%Ns^@cB@l59OHy znwGFLOa;{HSmFZ{73;mWPlG{P>e6NABTd95fs+cIZ0F5h4;n}(tC5Ms-=u6-p#qpS znbVm&EvrJwxCPlC7(NMUq2TC7wa|?!0My_(DRDT8bB9;B!3-R?6LBDNuur6SYT3oq zJqWlr9i!c3&B73^9|}2gdUBy*xP#mB#z12%;K+5D%|1TMKI=VaBYU;H8Nqg(_3XqI zz02#@UbN@=X3CPePvQg?p78*w*RQ#-=k$K8_TsHdHZ92W-QcDz9tIp*SZxz zOTr)tB9i!_h`*sJqx7(R4gE|AQZERm{@Dm8|7g_S=`}0<@?Dl0FIA zUfU&yye$}&+50B*b}ed>g;S~%qSYN(Fm+yBq( z@!xp!V{oB;+2hOhdW_7zP5pw$KVcsa?WMAsnx(W3vuLd>r=hiUsyAZaX40Bz*huA3 znHXR(dHyBx_9)?K0X#z{QlV_SYqPCvLePT%-UM!g-`rqHa|B8PH zO{}S-ZlCK^uEOJiejbs2^}naS!S&Qq-}`$RyziVD01ZcP%=58j>o`CAO~z=oJb=<= zphd%U_KF3E^g;@d9ODG7(FsIXmh1GP#v{CY4xjmD@}E((eEcwGSIg3IqIdY$V3BWl zc?*($s9#15B`Q$4uJqHXO7=i+Kybu6u-Ao2~Alt@s7jBA7J$|}vrkcv$h1QG7TRrwoT$O3j^bh)(>Pr7) zYoRxHF%9x=?l@*~ReG(t#s5~KWF}SVXWB~ChslOJIrUMk>U2l`>8@ z^3jZIr$PyAprN!p>SX2|TsaLPf`gyYYOK005nIY-svldPsCcgFE8N#B7GZ1&kBRhp zuyYNYPpezmHvTPDk+A{x(+kzAl=Sv{7*XL^GM$1tI&hr*CoSeuwYksmjhnZC#!sd> z;iGY!A8V`$LG8_Iu;qVaF{NmHh!E5?#?PFCNL%-1XYsrCxmDd}YnvCW!$+& znY+e}GpU~7t#ZP=wKNs6-ry`<3B%N69jkcRo3)0u4>QN&w7tl^q7vp_hYW?4UGZbw z>4T?8*^<`GzIL}Y;Wk8x58+JJ6I^o~nah^4=K}Zp^uoS^8}kazaGyIBkVzgm)e87T zUjZja1)$QmDSy{_3LHOuT5f+n17~}Kan^;;=hKn&ipCF-`+HC3+Q<&_Y3`%Nv7Y66 z(FrVqNrc^kDjU zb2HUMB=UiCHQ^3o)73Ik>5XBfQOVmQD*34Ltf4Gw`gGhJ z8aY}4{$n`Pv0XtPW6L#LS{_ilh0B_;Ui(s&W_qb}Dj|}|^u=+O$lXk^5)h!439g|` zrXMg$D06hW+7~|3YDX_sP9MEg;k3jNfG61_zfdWC`>@mJO!do_Q(vv54VlE-=Iir_ zjI`a(Q!oc!jkX06G1Y6|UnRCouT(3?K|Sk2%K2GvGnu(m$DKnwA(_z1+zdXC!+9MB(ze*-Ot>h?gdXjp=nlKpU}DM)zfH4ic_G7h1Axp z%&_wpmLp7&{Ee$?+k5SF3xpKY%7w*p zjS=O$I;4Ehl7|*q<0>|Lv-Uz=#t#1{`A;4`4&-UKv&K%xTw?{C)LCn4f(`@i@9&j-$at;eic zvu0+^T5G2L-+M5=UuXGNxFGI!-9qIX`v;Im8I7$&l5z{}F!pXbrs?@xw&=TJ*(R7_`r^tvA#c)!p$@ zT=d}rQTn3zVcZ-0JkmJihtSsRAwSIj7(Wy$WK5RI*dORn8N2yms4{+N%y5f$$MH&# zWrlKC)Zb}sspJ97aE39%ZHNFMGrh5!8=^P99_fu78}nvAV+^srG8*AXa)yzb1<)(_ z|7e-+ogNz_l`*_jeHq%cptn@^wW&dmnb4A(e$+9$71A2(u_W{_FqJW_`bxVL9WXVO z0dURaNM|%wn_7atcuFku=zI!8iA$tz#5313IyV{WaWaW&K8>_8;p6nj;nE*lD{9Dv zO-eeXlLA#pL9OKUO7D?|~5{ z0z6c6m0YkBvCJEcC(>VO>!(C%V0vW%Xw*^I0)|t(^cm=Zg2PIJL6VzwhL%TDjb7>cLzYOx~=AU?mJJ4V^j5jfDmN zkGFJl*Sly}j^DtWPf#m|ekSCuH%P5~P#nq%zN|;VH*g<(+1P7Y#J6u9mgTRT3ayA9 z{1xWVcWlI8D<%i8OHG8iu2=Ap#-93R#9X)Byf%1&AcByem;{^JOn?N>DQ79=E#{+` zD{@nub(VBV@rxt6IjeNc7QKhHP9%8`>jU~nFaCPBMnt#1nZsjz5oPJ`B($-)`kua! z?*4iq?2yq~!y68nq8IUW??NN3d6Se(7K^3^d*Sx_q%xEB-h0Rt*f@dbiD!Gq(ZCc- zp9JxQ3g*45l}EvtC$OD}*qGiOJBf-2{o03CyO2aeN|HB`{uWGjh%HS?p3e9$+l6$0 zGv7Gwj;baY(b0y2bFVBj)g0J!8tHsS+VyO=k znR`2Q$Nsd0jA~77Jhfi}A5cqK#ebZ-q=dywV1SD)Z7S2Lccu8#?2^J*%oEG7<5;IB z(qTD{0#oj4KkSqzR6v+m^cuNlnY_l=Ct@3XoFKHrB$$ zLJ^o)>do$F(wJg08MRZ>5gCb6^*(MUI>^{;DU&szN$sQJ*SHAXZMvkLe6Ud)nmsZq z-ImX=+9U|Pt7^v)HEn<0H%MnOpXeU z-2x#Knknf0m6ktQ<6p5#OlWEwVsA3yOLG^8;7EQO$Seyz%M#C(N1!3}kxd<60>qpy z)0m;JnzdG|L!o6B&}|D4`&5w3e2-)6oL*m%kHsinx~C4=g3tzAIB;kng{}VMxxGHZ1> z0&K`+XHN$AJu9;sLOhq5>54?@qZ$<6oO4W6G7vO_P1g^n4G+*#Zi{0jOKF@&%frG) z>h)M@lh}bb=RpaI^h7l18&NRfc8a~xC&&B2SA^)>_qvC}l(zWM94;7v26H)J_M?8p z@omry1X}H9WHAeNM31w|SjHhGotZCqIPsKzbfNB2O@^#=ljA5IA({KdPXH9CcA&eCNC%03~|T|-|s|;^y&EmvYD@5(>#77QN-R{Z_ang%V_XF*hs!#Dxbsk ztxv=<7dS|MG1x&8N-&&sNE^A|3Y>EW`Gf03jD*{ncY^9WPt}Pm>W3J_D+p)^dh~`5 zf--onlRiPDHm=|%*sKJRe4Nv!SJxrwSxX3h#wXSfdg%uXt;-h_HBc7z`a(VaRmuT> zC((}&>qUAD=0&8U@!webvO+mk#>%LU9uakMD>%2Qk^)a(ID?^~ZhTMiWbm{awE5}Xqs^U!D_mg9Ff}&U>u)=dU0U$0{ zOr5aQDH|h9YocRC}+r!#uTR*;RBK>e+4%0h6F;5sE4X}X*oxXJAEj1p_ z;Q-n5GNR3vRk10H!YN+UsV2*ssvj9mlZoyTqJ)rmac|tRs0&aWyxG5!_%?6MQ$g9A zXuDJ(Ad;!);;C0rx!P1Vf3WbGKqXD>=&N9*4il3p+n7fUEw4hJq?yv*M6>W)38SX$K8c4^?YU~sH6d6P~9Qu4I z1e9Z-uq*XF9fKRkGRp39ry*XKc)y}k{zore(<#TwL}b7}E)Q}9QQSjbI{}Sg?iSFt zc`H%cJmn39Jv*|tW5Ag5UvYeP$8$eqqiMWx3jxeJ_t(#f>X-CPSF}N_Ym%B-+Y%A8 z_jsyVoo~pSH&~ELbo0tk%icbe7}L6-G)kDa9$ZkS&&7Z4_YydCrRIZKeX;^0aTn`o z_uBYyC?!WeWveo$qM?!EatjSu7}F*@Zo|<~AXr>QiIjol@BWkY)p_%&MrAwTr9KNO7Oa4*w)($o zhCw^sG~W0wzCOpZ@-wg55{^g8n`);ZIZX>~z6}+pjV{sfn0h<9#QcGa>}1Ji(z`ks z)VYqBOCOv`b>5s8ncv3JQ-SbJ8kuAqI;IxK=NHqg*|i3gv2?V?cFj zBiAW7n)|@5bBz}Ue`QBCx*7C;<6!!-fWFDkYB22-6u*6+)6dM?aj}!mnfpfq>jC;1 zJU5V^nr!;NDsyIxQ#wv9@N!sD3+)z7MtTyp3XmlU8^g#J3fZQgp)q7Z_=S}cDp7BF zVJSMzmohPo5Po;13E`&ilaDA}Z}6zi3ZGhYip5C3+FlyZi3g(5nM}y_qg`lt?_Yt$z;(%XfL7j+>k*1NneS11Qp0wwR9gW zC1pl4^I~>E_o=9f*&!$tA7`$8g0|@IBxK>s&~g+F*HV_AmOhd)*}?g!Kli(?)oDUA^uBSi;GyV#FYm}|LUEch zNnn;bvobonmo)hQS%rx5)oiBdwy!4AMJKY6;1!Iw)T2f+e3c4&%3x&uT+-_gEOfA+ z0kx@DOCBDnyKh*>RbUrm;id0|#FM3+HV(FDJe&uRcR+eiZ;-*Bp{8^5$aP zLn7WM)`GA$#7kdNh;F!D$F0#_%4B6&EZUw=3H}?ulUi`^d@HS@jiNZN%nM;W&M5|N zLs;7^iNP9XPNYw0yIi(M_Mvp^3#b8Qave5O?ops$(;f99YF#)5j?^GE(x15y2H9wZ zqaHYfNVqgsOfHP&N_!t)$#*q658=`vSY$0cMw3YdKE`ph$=rPj+!^LJ z%_k)<%DBB-x23j2%bQbeipGuktTx1%wzwgK0NRd?GB)L9jP4K9x z3!(Yv*L=xZOFlgG0CizK-%KWbKtM!HwR#S&lbHmG?X5v#k5{9R<$d%pN)MT{Uu>4Z z-R>Xtq*Da0QHIQs=WRt1xPH4+1kPB6B9P!ih=E%Zn*TbT<(3EtHt~d_E;yQ`GL3w% ze^xUPFwzY6c#Yqn;@}Ek4Cghn#8g^Jrx`SpH0G6e22Y`SSdRO+2|le>VI4WmaAN12Lw#L)+O5GJ^`(=k|a~!ioJU1}^Z*azzLbmT0 z!c|?UfYI_^Dj%j^!RQXV zua&?a+wbq*0Gr61UHvz0xZ3UyXmy=$y8<$U?u{|HGDl9~;-5SW^r3~M`ppU;iBncW z3Odhh@0R+PuQ-LIY|isDCyQ7%_>Ue1Ri>7<2cf^ct9Ha%)dpTZ75T)}R#()Co3#^G z&h*@Rb+noF+s{&h_IF-?rn-fW%qHxyf;KnYZ;YPs`F}l(&P~_bmU~Wc+|VpGUgj#* zUIdHx7-LJsjCTx>HU4=t3uw(jp??Ptjh)BTu~U7}m~oN>8~hV1)SRU(2Gk8>d??{? z|HfFdh&*a2Cgh~JD5h*Go7()ygbqg+3>eSvBtKx3`M zf96jBbK)~ry0h-oSn4E=#u_SOWe(CjB&=(8R9C&#bs;ni3OR*0(mzv)jX0{{Koh}c zgNika1Y4&4Ur{N|BdU{)|DA!3RkOc3bM|i+32yp-x$FO7#uEnJFvj&i7ysnX3sLI- zkKR%L)8D4~TmI|9{A-rE{8zaAr@Q>;DF5cuqx_4M{~c-y&N4VCbE*F+ayt4+7OBZ< z&sBrfo(=xD`#VZ{L*xXxEN$n`a&25nuJpKkf25LHrZ0q z%a5gR!#cX$%bYfXW)qb;^I6@nr^Oylq}__Xl=Ik;hRdb?6l+O~ zpJy0BIbPwfIZYvzI{-FSoSKZp@AsEOM2Q9dJ0x~pzAbzArWL?xIv0TBKzD=0vx>Y2 z-@f&3swB{Su7*rHKA5faqTm{>E7>mTriUeN@k7@@Lj7G!F#4sUQT+G5QeP3vuz0Th z@@3sqYxwc0V}~%=V?REJ7Aa?~*L1GRA#6KEh;+nPAfFjlrlv@o-|(DqGgD+X05R*G zi@`pWT?q=zNokZmkF`227A>vc*#iP9{$o-Vdrgm0a3X!-V2zL(I&YM|_{YS

J-?(s`KC+VAN9fwYPA1@x`! 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

-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
cS!>Cr>T$%t0JX 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

R?TxBOxu1J0u85i=oSOd9a$r)#@zQ(#g zn!*eyGP_-ipQkM4r04rih}%rtD2n{z>Y(-)hVJ9nj9N?OeiS(-q#M;SXb2TX5TjbRZb9d%x$jf*L}3* z8Rm77(IjUC-c`TiigM+#jA89f1_?Y|YAZUU<<{)z+y%uI7win`{{XKl(%o|ps7FAh zDR-Hal`tZ*sP#mk+u9cL?)W`}+IKY~5uGKeE3pmU8qHVa*u!xfPM#j6>1-VI9_5)b ze~*|A>0A=rZ$B?@!YCCPL8+h}Y$>SQ#6$=cHA&_lXrnAGJ{*6+<2L@j)Wd;^#3Z^a(R_1B!;MYaDdGF^Z*)vb?l%`T6yIoTk-WT0;+E$>IZR+1 zHumowriM#GxyO@_E7+l?&}VFcn84ECX5q4H)psWc8>m|gjVm=kBl%-qDA3Ld_idna zGO7EMMfo}I!b2n;aQ4s6=_Eyjsro9D7X-u{BJtp2TPiT`vHOJIH`TEHGm-m?O$hNY zx%0QBhzEmz5sC*%u^{oow?AOT$8Rwb272G0)X`vT{kaGX?#tiB-c!bz7I&mVk1F&z zg$BGuXt+ZADD-KCnh0@Hiw_UWJQS^RLUD~@$0+Bf;&$^Q|1@WQ`a_(Uy_LSO5MQUK zy6Z+fD|svI>J>_+j3l8*)NuRH4zr* zJ(P&VrYS0mA?fXlP&~2Zj1Mh1@-T5<6wD-kQ<2Yw5xE2?ajJiIj3Cmnmxq4hGbwW1 z9q)8Q?_M-b9@%Ex` zD9Yq$VZmNh#Ur#A6%v%aC|@~XY8AxM!z3Pq6mkyWF_~DbhrMVDDG+H66cpKu#*qXk zSZ>O*t3aR?`A;SXps8V#p=3A`sb=XZ3DetWXrw~a2n50mW6vT_xA-kdsJc^Ri@3sE z()3eUG_Ied%o@UaE>xMf`BI=zTM<}|ic)_&S(U1+ic7U}1v0gfs9{KM|Eru8Vm;Tm zdR32EQ#zxVWADQnVI5|QGG-z^qApq8M_nD7m>%VV5BUK^CMH4RcFps+Z&}wjdE8gu z-Jx_@B+{wKa3aF}!XU-OR0wLwZ^vU8CMJ(zc@c(TV)7W47hzalgkhMNJci{(7)Cv9 z)Q5>l2;9GkX~)B%iK*EK`kI*Xukj`(`G$x$c_A~!#I%gwcoWmNxO$}9#Iy}_wZz#2 zr%`op6Vs2UcoUPKv;Iv?<-0X8EeNaL!_cV-04yNmj!>%G#`ILGjfuru2BtB;QCBfG z(GzWqtzk)>;0;ZqlYNw->CaJNY(3POTJKHKEAtv)MKQ!NOOu8}xTLyh&0CrTS<-Ew zNvo1fO(Mb`rY1YATS#8_)Dhm+REUV<6-_C3vNbh<*n&7|Yg$NtQO#nq>Sq)bh9g^( zBVFCaha$2yVY6!z4d@kchQ_8O1i=lrQimw0N%ccktz-=9Zwyo0mD+HdKcj(6=evEI zK_R8lyd|2H8K@^mR;S3?R36lJLYQW43b;yE3}u|vh@Z8r0az5?3=I|2&xKGL?9+a4 za@}i=_ATze*&A?VMH2ff=jm=DQ5~{0M4a&5RGxr8nFnt>eXNp)`?fETBO-xwHkux1 zDp=^;cog-NZS^f~K37d(&B&mD>_7U%MZfl+N!sh42pH!$d1g77n+I@PrBfHN$+KDwp?Q|P|#Esqc`A7;n^pxfw^9lg<2#3JHu!w-0q&7_&_=Y~yQOh_ZaT@yxxNv<-Cv?+3N7|Ejt z?%XJ%Hv{LSn21CSNm($4iKsldRv-M5jGm)X4BJ$9D&K2OtolIH(Ag%I?9Mbag0~v& z#7`w=_lH~BZ(pnt@R(5Pu7#Lj1ew3&+bAj_G|}>^r?f)&AXdjF!Jou4p;pokq=-nm zLZv-@8)JgRL%Wa?-Fv%j#d>Y4AM#XQ+ zi_x|LE9cfum8vYJYhEZ;O$r&x=2hJ;n^#00p}}j(pUvRKZNT2iC8{52$Gp@U8oZ1w z!=`$WrPOZ31{u1%tcZ}Ww57SNNlVv)T-{4-W+`{4*bm*4B;`Nneik7HxlSX_@3NL- z%*eH!OH|Cb)kT1oYj`Kn#M;#9`C(jDE549;Qh!!kPgsM(%6{!&H!-YINDcuYFQRxm znCj8#X;_$=FjJUK!SFYkg0OvF3aMzeorkT8As9+lyfcgo-`tqbm?^B)-Ytl>GL}%i zYEVv@!VUq=lBTdP_cDbIpbB+!CWXutW}AUDWC>7=C?GV2`L@jz=BV7Av5z%hLs1#g zt`iuHq|krV({eX7t_F>cvt+@8mCSlZVxbbdtPHESbqga{XkP-EV%n+5p=mHqb}w>( zWSGce@y#N9EMlb`EBVD+Zi0>9uz*OaIy?zT!xadp6``$8A{vqS7aDFB#DpE6786IjCNK; z)-mTkKLjgf59^rqAimlCPvvG=#|jqY*3j{wUMw3DQzS~OTdppGi^2i7A=?|vL|GWi zL{Bo7=_zB`>*Vbw)@~9_v|&j}9)R<9vMhByw3A7Rks-|0Sp7Z{S;d~xz%l`vpOW}a z9ZJy^dh7UP0DF)m^5rc48zu7fH|%2moR;p7$+%D7Qr4)g<Qr^QCHs zcJoFKCNXC6UO1R>c31z}8^$y)?xY|zjA?44xvMYMe6oBnv|3G!uu`fy$go$&F>wvo zK!u4RTD8G^<<(DN(RvgX8t9jxLDlW~4WN;x!Um()QD&F3lDmla$P?s(X=Wxr0|pY2Ibf8^VhT%?a`x>@0{Dv_;KUSf zqU!jDpr6gZ#P`FLHBm~(5{2|x1P^>&XbCgC{qqamz`OH-DsgI9KA}Eo(Qvh49<3$r zM`6TiGA|7yLOM6WB3^D0ztG?$9tWMnOF(-0TaAW=$$mDMTBXJ;LMpYK}zJ!}av`Gv^x_C$a^CPNF7f=8)hfw`)4R;Y^~l?PB0V>+N59Q>k+Blp3D; zDZDTWhqETxU-|T$%hRn3O>Fsqp%XEqyIr`lw9dG6KyDN@Fxy za*TX3r-pX31^?=4H`@SoZp{o&D3?jdaIHk(};0@T|zYmzz}p0nxCHLE09uD5GeLGn$vYZeq4F<>E49$)}m zs%sYL#~Opo=j~-pK-|M#7P&^bo%-UrjAD{G*`Vv`g*6VIrJu+oz(P|_T$VAWWVMK5 za`;~1%9QZTlV6Z?L33)_aEYC)_MW8E0sR>@$C8+B}KAJY+7Ng zDqa7_Fttso*lG-8WLry`(=aVm1hp4t`_i4{*DaQ6#Y}5U|3}=7LqMvCL7c2bOAt#- zD5TaBzTzHhz%xl|WQ8V##c$#%qAESTXOlWDHmQ+vN0Ufja!7+AN}Cohko8Pi zG-&j{Mh_elRp7l^D^MBcgbQfFG#9T5!UPtX3zoTbjU$EfZ4@-VIGVUTx|&FcPX5?- zie+FnH5=}iG!a?iW>Ufs+v&}cr`4P7ZZeiQ~D|Al|aZybz9*$E>V%AajJCZ zk4@U*(Csmah+1sT(qw26(_l;0@CQaTaqh9{V(ngt>+6UWV_A0VXUhzyPd9{a?lWFM z4PEZtu<&lUg?dopV7z8^Ge#=|0(x1jLGs8tbG-t@SOfP*p;0Kg!rgr{TK~>!9lz7j z7EZ=to2b!J(x2y*rW`#_w*h)r8f!=O%dBv@Np#kP`Hy&)EAT-=d?Re6^NmFD~80pd=w}+8s zG~s^!lcd$n+h-uO)y4zl(^wH)d$4X-V71t5s~ofNCs%32tn+1ioAH6Rw=+yS+MVrf zU*2l46F-v_&!krZPfv_W5}p~zDkIu+@1N{#aQogR>I}tlG7F=CO@vT$udi!R@WP^*TsH$?OUgObGxCvyET#PJ66Hl?hak&BubQcrlzJ#76Ca6)@ zkC9U})tIK)u~($$q=YqvQMyPr3Tv*Ta4ZbF5kvOyQ~+y-<={sG9UIKo$}m=ECn0e%b&<6Y8a4*3l?+fsx2gFG!tze(mS1!l{JMOHas z(IkgG`7dL}>oxS7LLvii#rig&YHmdBv_@9In4bj0+ozPl*Og5z;`%k@u=6z7*R4+W z>qycvw~!}ST~V2zY1YwB_j3%~w5wK>M}tc(*=n5R4N4}iWX0RVxW?TrOEW7_myiZF ztT`g9t`p#4723TxdY$4mvmv;4J_8hM?DopKl8QvzQ_T)lt+x$|fil8_&Dg16(03>66-dJo&62Y)9Ql^~W+7tQ-MEYi64=;E5DQ{yj9zc7oZT zV2}wG`_XjB+n-9~ugD&yxOgAqjWNn?`IqQW&R7|S-=Q;>A3~1w1A|bw3z&ULB(?i9``r#Cot${>QhY4x=I<%fkE7OHCxH>}mw+=b0O zA?iHCq9N>KZORGzE9%~@A69O+f2@#qH~v_6ypKSrGl*zCub4lUy5RQTiZj+4oUyn% z^iOc8qJsCryRYH$Q{7Kg3W-7pk8w$eE#s1&$L|r;en-R6hjJ2!ikYS$6L%0_2t{F9 zdPn0JnU-uIXOiGXSTo+n#8@TGo#ujdpo%i~nwk>1g4)=Y$OX%fcu+SqOY2Hr8y6SL z2PJOXKq_W~@TBO;S-_x%f zym?12UB!Enk+D5$95rn9YZ*TVN2C?ims-UjRT+O%Jps4f5-LmFq(uR=Q``C}EDG{r zs7rywa&Oo1B#eU%X@W6=Z7>C>bqNo5KD9~;VA-E%(xG};;acYG+Qs~>q+~kNDIN%< ziWYF-`yC8Bp+KOGZ!ZuK81u{$$?@S?S1nw!AO72{{@t9Dq`SI}{;BS*_xvPo0Xw$1u-mYImA8n?Mr{dpg z%f~5C89x;{_rp(Z@_{7cr$*Mq#U$M1ojWzlAHq-V2u9@Js_#ama?+!yqMMWcKx6U| zIO+5qAt${;tPv2zLB&bMQTykl2Cd6S9|;Y2Qt)yyYcCN$xpwzyD2q9CIS!FJ` z-py3kbnP_1R-f97sV1~iQN*Kq#8l0%HDam~oW)fCGr!iGx~=yY%*AehljMDGx3^ax zgV`Pr@1)uO*P{8Ct7Nvf>N{o`vG-={pPKOjY<+co3R{nF>&@23elT1Aw4rU1tv^X+ ziG4m2TmRw*vvn;w%#gA5S_3hKtw)|iTAT7i+^P^y$#FMt%`h+4aXr0QgPF5I4`!pU zC+mgA{8K$yy~+OBM>CB*YQb@HAMl!%=~Jg%-p6GB6Ydy~YzUDGleh)@deV;H$A|T& z$ydEi{PwY2L6w*y57)C#!b0Ev2BEJh^zQ3~3Kgo|MCi*3-J#Ht3N;hL!*v55t~_Sw zl=RRuu#X4)li7PO{oCKADas0O6c8={x8Cp7zCY;6$~oCRsUy?KX*LG4luQ|oLDX0G zmG5EKkL)F=j^7FEIC!U4zwlP`eaNIpn}+h``6))r(biOGwETjVO}H0#P!{X{-p7f{ zv~--SfAw~CtUIlY&Ya9Y(h@qm?2c1PKK~LU6g|wp>$p~h7U|z@`u79<14mjq&g5U> zOsTE(rBI97-|zDslXm9*6h_3ixevp?k+9)rS;QZV5%tqdu_6&Ptp8e<3L{ zoL3l&!_n04)AA;N+)Xk50<|vOI`L>tG7BUbU>KPP{Zj(S4(^7Yx7b^4GY=pMbN|^? z6}rpj5R|)Yx@Bhg3>B~+(`VEx^_GFTjr=@fdfCHmwv-eEpHALKZnLtWBk!QurfJ;D z2eH8e_}YvEIMr)1*#-iV`dWG7+7>yP(n_JF;Eh40#{RQNaFwl^IK(L;qI%8sT$-|r zPrL}P*A={$)LF?>KZWN;VfIHPpKGeMipXN1{CcWd_rN=#Y1oG9&z3|Yi(s$%smFxY zupT#0<>;KICcI9|*QgGv1+h1c5e7LeZ1XLMlBdQr1LAb~im0o`_9CUiO}@hJ-a4-0 z4}S09w<-(esSek0sV77A#!bA@lcC1V-LXc<5K`-+FtSi@zH*eAVOGoERv4)x-oj8$ zz~T?(0}*ECMVQI{fyd0e2s7C~FwC5>QfS_Dw?I~D1l}7Ld9*upf&#%2J7t`G7$IQ% z1CoH(x(Cjb?6AOms>L0_+T9)F{zB+^N|uM+JjzL)A3?pzoq}eaAIAt-zQzqLQoVG- zMw6SbXcZIEoBHe&S6fy_8wFephJrA$Q_wV#W8zv@psJD9_chE*qXIS1B#a~1(RTj4 zIk^5$kvnO4CD(l_bJPjePdsd?PbY}RuR=5BbU0_ZvsIIIQ7*RMkBWz8`yO>qj9!LL zwlmcW)E~`WwCkkaEg{Y*uyGKgUbII5EZk5EN*R8s4~AdlGCF2a6@6k5;Eh}Mx=h^= z1h_8SOlTo%qH;Io2yYGM@>9RFP@}q_s8+bAe(Ij$ZDCyPl>5z{-(yg*g2akbc_`q9yA zIqW@Wo(2kI6>zz4tRw@X+G`_~F$6?5Oe$omG|t|>u1>oQI5SANM$2j%ba%J1dGM${pAeI`b_dTXDQgvuw2wC##{a#t!lcWh_6jH_NK1dkC1= z4O%G6xgS~E(bB?Q0d+DSSj!FFHDJC$JgESphCG^oe=J&d%a=)s?!zu>*mu+}?oq81 zlaoD>DKMVefUOLZsYZ$g&l)Ox-#Y=aKY*3e;BXK8cu)EEs;BbpEfW@qHi+xi5pbBV zO?&$l?ypT*;CmAcqgD5@b}&;IE+~RotvRTbHfjb&4O{$4j7n|{UneR${>0$gNyr+q zN`N+J=T0u-N@%rT>5iOk787-{s9X^i9ww+?&AHSycc3 zEf5=lasw17n?wwlvbHGF0+j?(xYd9GK~pFg6|pEvloqQ(4P9(Qhz6)q0VQhDDpkv( z6a~4ZTUuGdUiK6a<`R~$m6oObzdz^9bMxFJATGb}Kd)DNXP#M}S@qG%Lv*j{XwL zKdUnfq9lgG&R}G&@z$dr=PJ|f<7}i!hX{)vmCTQd^sg16KJmry2~|!?PT5xN#bsi( zxbJA3G@ql%A{0R|TP-6=qZ-0d+)t*HdXLaOWm+6FE#O!6N~tAt*fr+6-i864f>CN- z=m7bcJ12icwbfNG=Be0L*l(3u61}phR@t-79m&_%{A}!Qz4XQ?*!R~SOi1HJeE|AL zvKWm{Az}aCCu1ejSTf~>d}VC%fc^UV@!qfNF%93VUq_KIAzY0^i%eqpsFQZ=C%&9& z|CrT$K)1J_;TS1~y`9t8#+6{MlHN)GUMc&+QwVlJ?m!%o}yH!TPwdvOqkS#p@fG%>YHRQ zUyi_H=B>+=kT{U;Vq4i_a8g?JP?QU6FiE1dQq?O$RMs}jv_CdU1ynHX{Uu}t8%l%| zk!xJPoa|`g&`rg+Oqxt0honfO{j$+W26%YVBo)9e-4Fb`6vQqEnw-f;QCSy~K$d}y33BpP`{n?+;m zX_~Fy$Pb#1Gg6=Rh?=H+r0XJv(q|+zKJ@KNqQF2-U{V+xd}k`+f)1Fh$fjk5I$(W_ zV^EMC)|ny!Qr)u6tW}wrGt_WOy~MA)q37F9pt9GcyUFhNlit(yWDIYuEAC{=Iq%)c zD~|O}USq@5+sTjo(>pmgOMj4x-bwLuBP!Zu{G8U5hm}t|D?iG3e~Oh0_b(7g5i5`T z>?u~>yg`h-Bdq>wijki`(HS}PCX9bVPyS}Ubr|)CIdR^m>Q{U>vhEH(&m)$zKh0rU zwL&ygb?y`bxwq4-aL>0vBeo=q2J_vjIzLwR4y(LSmD5{sZ8KHdgK19DkB?}dy})Jq z@eyGZVVnJh4#Bz#cyf4aKOTKq5YfvD-6eO>XB9e82c{oWs9B+V6}nQPRSMPHscrY5 z>@E|vfBPoJ74MO+>6d9VLAm=WSeryl%GD`_!N`e@p8AkS%qU%Va>^)O^~01=x?3!> zMrATF(yqv_Q~?0db9)*vr9{3gKzif4|Uwxo(t?rQI3*XA-?WtiS*@<`Hft zWS8pMop}AuGcQ2e3y+cCn_O94CWwRUWv~jv$jX->yO;u&|=hlWwqk z(Rkt)qluH&K|9&zd(9sco{Xt~vzh6~Hs29mzQrMeGOP#IKU}+H+SRc5mV@8;sdM^8 z&>5_(tmIst1Jcw`TLft&1_jbgR0+7$NaAqtsr*2oI#S2aXkx|S%;7x2INO4X6L6-S zN8*?0Nh0fOE;mN6SBue0aWGcXp$B+J1h2Zz(r2bG!4t^fwgPG4-oG#fta3F}C;moj z9UH0>aSbhhsda7o?96Q`a^+cD?MX;=9|yU5Lm1ivY2G% z*m~u~nH|sKgf0(d*65+{sp95FTnw*A&&S+c(WLl{8WxbZtB@ag)oF4$3pwy~nB-n(H1T7NgdzIwRt-5z(ZhLai_Y;GuO{Bo>}MNw%*0 zS^+&-!pNi=MvsEwsngvaUa#lmU1RBQGH3omGZ#wQL1@Ab z-D+)r6)tPNkUC@-hLh3TF(lU^HO1OsV8SIa1uz}{PwD>?t z&!deR?M3ROy-_`r_3$!JdhOxrmXq*A&{ZXyD;;2JZc(}v#d@_MJD%IGo1YVH>iyx@ z-6hPfoVCq+BB>~2_71pPYO-?(2TGM7kiWLc4I-GWcv4%_Jd77SQ|cQJU|X1Qbjwkenty%XLOs?K1-VV*W#y||ey z;~X_TFfeY`Ii*|ky*@KzZ|kgoZ*JLx!ppwGTwiFwPw`w!kZA!*zmiBu=3XnTJk&qv z=GMqqQase~u?IBZth<~RSWd)Pl_dRKNlMA;t8gX-q2sDB@efk-F7hivGoSH2bFN`? zfdX#k5=PU( zPqyXK#1~^l_i2VlwQO;z4X3^#*=(u*jypz9#Ia2ODOA5g10OQ8e=oZ%o}$F$cqn}C zvudDK-`#5OjWMY`ny$*%y1)28X-{TC$=%IxJessZOksGc~+`pDh7DJA}jmoA{${Z{pqp)M$B~wF$pA#Dv-z zPW>`wa;d>@Goc@&$yNF1wG+;|$AHMiqpMk26qCCY==}<4B$Z#$9%**=WMmvaNF~=J1Q?^0z0FbxAn>cWR~I zB*BU;D_KNy#cSDZri4~9%ued^FV$YN5cn`1Q?7XqU%J<{^wU+EZD>$Pi7-N zQ$Nj9N18NBB9iqq57D?GOk9xWf1ir{k0ka>`f|JcjPzA_ees>{U%xvEpN(h^qjt3q zB&^R*fNv-JL19;(=C|Ne2w_`=J|TQ(h(aqBdS@3x>lAubp&`O|@(TT(kk)51hw7ot zVt$&W0#Hhc{+p6?Hk|X@R7dw7FW9HpF3{lG>KLz_OnXDP>W|LHyBPBTy%|4Qqsa2f zDN}p66^N$xRxx6N;51bLb9<)DF`(}o1h%w$M}1#;sYYyRH{Tat+P$;>+fr|>3#)$P z@2?8CD#UEnL%!kLyx*LO$ePy|+08?z&-q+g2*QJ;bPLBBL>xfJ4zqeA z)@C^sCwNc;kF?fZg9zW}i(x{trjmt)Voi{8C@@>hM=K#Z>#X;;G}@EYAzkr^uynq2 zBN-zp97o|C>H5<+w-MIwB9+P9%7{Q_im-gmj)BjSRZo>QORqYJhZ6;+@lfMnmbz3Q zFNg6HAtyCNZT6D*1Q!f`F$6(MRyRn7)!ESC5YqY|$V3_dLQ?Lq%h68PR^)|mIbHWC zrHU?VRcKto$6{oWBA?4e2uXBi?5&;0f{>ixfRH4H&?6Fpt4s*4G9kFigy4XXXs9wL z1V=q0I3Og^b3X_PMXc=LN1D{BvXad&Frk1bKp*dvc!&_vkq0=0G><_OcW?nw_#U1E zH!eTEU8Y_npTzqh1x2MLZM;Idklkr#5K=B&w0kjxq^Xd?-tm4RB;Xz(q^kkC^^RkC zFH)(C(X+rvZ)~m?L+Z+S+j=d7h#~#T2EZ|-9EC56macj#p?GalkRh>Ms@^)=lcea5 zvsiS6z|-7{q$Kh+@i}W&#E{gq0)~XK;TV!uCgx|+C-b=5h`eF#BPk52$LJaz0{O05 zS)dU{`YV)=f;G{6H6*nb=|wCnK`Q!FxFLq=!(DpyBxVyVX>Giwkm^ojw~gnJgdNGX zFX?$hG8ayacv6FPK?W|1t20KjnOTP`U8UhbXGz_>!Md*f{{oa0)Dns{(h~KeEymSK z#TO74vM@;1jsXl+e8viRAx#>)e40^d*#Xw$#|hlKhHY4G)He`rb_t@lXzG|o97YXM{o`s9%2*=2-d(&hx5x%IX~f0ax==E zgbiF;Oh9?p@JmzSM|u#2AswsJb4ZoVB|>5&qb(<7nk|c>&*fu`o{q;yXU$aGvm`6Pa|Rv^s^=HS3-fnS2p# zdHC*fhj$K&B^PLAFsXB<5D;;%(lTQ;IdW}Dhbt)!?{tXm{NM`LpT)SsL1W#x$qC#M zBPvb!yyili>;1r;$i=6B+RkZ2^I#uU3bn4Gif}C2W&T=&bY>E__Ep}W!gU__ALBZv zh9tPobwUQxxX!d{@!5#$BrY8qs8U7%2a(K=X3)mk)?qJ>Yt3pQJu-et*XFg&umyFg zhq*tlbz(Fm!8?Pe?QY)}*iIz7?XiPz-da^B`JE8)eEYpmQJpp`Vv2sI- z>&a2ug6|)Vhn4;4O0}KmRaVmZ3KTOn+q&QV8hdqEU6}FQ;A30Qy0`SW){482ZQZ)k za2(FSZgng~eJG8kORd#nS%YhvSC60Z=HO}Ni9Jd;wzjcILSV zpdy^DGc&tINK_;d!`V(bqL)N2gaTIOk9$w_=}+=oE1*w_(a!>0E%a$sehTT#iA1^- z5>tF^F45TjJtZ5lC4po2+Y|{kv*gr|) zYJ_;f%pv3x&6>|IpWZ<)SZIY^FSz#Z5*8>cIf1=!v2awe{3Ji+cZ``RKrNNV!1bYGEe(v4 zbj0w?v1)ZPlt?I0yCZLvghCzJfSgf5mryXIYBr-1krehl!91Td*wuWgWY!hrwh6`o z`YsKt3o`b0c|Wb5X`8Gz=*4;or_VDp4~$c!O^ww2G^nE8l_q{x;3KZ9q5dm{nZUoj zQ@WayxhRqu`F-s`Gm`mHv&P|l&Ps~k|F7ofV*}5Rx+f$=A6~Pm`Ls2^cxrxoOPrcl zij)VF6&IP#CYjM+b2#D_*Bsi4HHWF+VZu^pDq&414O5S{X#_>aI<90Pu4TS9gil|Z z(it{>Jn9T24Frg;Y4CHY81V$>RwPtN*Ifp};VMm2_ z=^?bWLgN+MOret%T3psg>tFiY}ri)`s&ST>oQD5L}apmRDA1S%50R56GvK zMwP>gZQ@sd3b!X=^5u9Y5v_dsRZU^Hh=YooOXw9YEwsvO{79i1pth={-HjlFqTq5T z9MsxC7xa$M!PzPLxPQ;rgeMGugDQ8}Zj{rw75V2xr|~YOj8<1!7aEVSZ;WV`!{dLC zIOs?y#D=k*$94?SNCq6#39S-y-Jc|c1`aBW6L>KpG;mNSw916gz(I550S6Tw7vrFQ zAo1Y)zOFu%mAq}gejf2b;Smu9J$z?bn5oao^1>VidcP~Xm=?QU^1U*30vJ>W5;vzH z`NpyISp)DlD#t7s^Ls z4!@ZhFAilC1+3qACd{qHn^CscwTj6&WZkY&0dW-?t9VLIVX3NJ zD2io{vj?Ifr|(m_8eZaX66{GXRT?w{QcwJt1E~vC7u-W59roa%fK-V})=W-m?xxp4 zumGf9=|Jks2N{rB#?k~g=K3;ahbs-|fx79CY9d|F$UJaX#Z=2!N(P!QQ^}q-8iv_L zR0BTO@Kudom1WSkaS7-_UGiWMHRwSD55k$Wqu^Ut=`Y7Bn4`4wFNAe54hR3$Ws%00 z5$g4=BT)dXhETH}_Is^_Mpeq$bpNWainoBjYGrER%WM`L4%O>L1N~gtphG$i0N8Le9%n|5dRaYYd1lrD6wte2toz&nT|}gC-K5FAw|l z3xB=$-7h0#*oHzG|Xh+m!eTT1*;YA3wqWu08k({_cye$*oY6%ukSA?0r*B0>6AY zT(M7Ylgv-BQE-VtSXm#yRXY^>2@YaTYntbq>&HNjf)8D!p})v)6L3dCNrhrZLGFkY z#cAFLJa1b|I}?Awe&=luB(avs?bp-~#ikw&1gmZ|7`36RAp3eGE%rYQ^th7L#NIc$ z&Epmv@nnc#RsQYwy#4lI4dHtrxNiyJWd-#xPEj`ysf(>A2yT($MG^y%jS5(J6UT5y zrDVG=pvECN)oxWM8L7K`n#i0P5&a0oatj)Tv_}}9`w*&F0nL>}5Spv92|lYjOj3;5 z8<3V`Xyi#0QIkXBL0F0GUmkL>!MN?@kU}PmQYP8vTrNqaz4DkcMcFpQwE5tT~PWu`;RhfiE$zZ6JUroq{*Z<}?p${OI z`Pwjjv>${Gv`5Oo8h%xlRTJHo+xQxhPMFFFj(9Z@2a85YA^oGmJ?O z8H@TrFHCn3Dx*HKiubugy-=@`f#}sG=yjEJiGm7I-C_votl0O>D5X=s3(W`Llsl~u zx|`@!&(UM^&oAxY*`FNpuR8l{zVD;XF4g-O0Zo$*H}Cs9@9ZUJq{T!jNpx27#;A;5 znY^JBsQVhqD`pMZtzLfcYVIIo?~vQk;L6tIoDu_VlS`OQsg zO-KH2b~XzjW?y_W;&1PEF~C+D4hBkWWkAy{{|a|Vgk5=A{#IB}*jAw?!J$JG+D_2t zJ3WM|6?#>n6BWuUG!j?T@PtC+41-(H~E%+nZY%z z*if;D1EKHQx`JdrRK*~=Nug(<3+xW6=6rApF8a%-QgG1+tw4l}-ab#I;{yAWD!?1y z!Dj@C=ED<~DE;Dog_5?-q3Zm38a}{HeICX?2D4Zpt_NP){STYZ{0^SQ?ukooZR?AF zVon(TX}>rB7x%RRdt&rcjpLsLv_sZllk5JVeD9bI3BK-G%i-XeT{3gv`gVVq9S;7Y zS^Z-lK3N>KZ0wg5rOP5xFwiZiDf)tT@s!5Oqj3UvY1uq7E4fb9(x3)@^`~%C5{B_ND6>SVB%3npw~^nl(*o!uzCe|i zL9qi>uFEr$O2U)B^+KK0Q1BpCbxe!apIyeL_N%LUT~>#d#nLol%26)l)LIX6s)mJ6 zeg@qOTe;Te~d2y4ORGnMu==0#<1bLis)k1A9F{#Sj~ojk$t6NEZ&Rx}LS_qrrM{sm5r$f$%iE5@W&W5h4YcHdi~YAFXr_Xz!ULN- zkh#~XRBfzN&!uJ8FAEc1ebcP4m-Xy+0ahCQ+7T~hmuxC&J!Y`-KhEpcad54N2A(ER z6*cL!JHs^9n|$SEy_5 z#cRD=@((?(P_FM6UOrh!@h`kg6|tZxOck-Xj^Xm3*El4qrnzru>KiXws70=!T8L%T z6?VEx;2Xp*-3grv?8ZQ)s&EINxl)5)Qy;}YM8H}&9pGB}Q@AsRH3pg$@#D7{!Y2RXdHn*Z9 zrcEV{hE3v!)ErNVHLAc@y+9dD-(HUFp*E0M9#}Ki=s^nxm|omQ5zE%&Rpf~4d3*AF zkQGB8pA%CS@f$W%Q{xw+E0Y}BmkGnC_)hC0t}M^CKowX~Goc@p4>zDhhT$H*#Uc){ zOf(~14MFNuD1zq{h~ui`oAF|0osfa&6WA^m#0Kqz>Yau05ECUy)NBaHRZ1fPOvHJE zd;Sn!;UD|S*M+Y^(>cS@7La??y2O6eDlLyi^12$3QOSnCU{o6($!x&yU%;0DsF>{@dTSm#R4J|1TGPeDUVL)k`aehg_U+qaoB0Gy5BCr8p3wGlDbAB` z*SZ<584?2Xh!$S@12iIZOZlazL~Mo|8ALEy#wlEOj%!b&6}d1*gfNElV`LsJ4vmV? z-}2FU4fnVsj93fLM$jo~A)vZ`Go3uIOTuh7 zu2EjG-_Z6wt(|Y@7*wDICOrwJp`K{> zyPbL&-1X!f&g;~CHBC3*EGWG4g;rk40>n|vZ)6eLPtJ4+8Ts|KCM~R)`R zvsMH3(NJ!KBf$GcrrsC%0^j@QRhk#XKHC)t0A*t3sH+TBj-vVlUeRZh%Eq2>oU1!S zk0+3A-J%mJ8;L@IW>GK5MNCvog7+<>oN$MsRF&A1C&?d84&*;$Jksm?p)lz|8`r;S zJoTy>Ho%Ok?d`%c{BGKNL{qCHzF*ypGg>_P4s^}Ycj@Rdh7N_Tk%XdE-(%*h#dY6` z3&#*?squcgAPzdShdOxbirO)^O|De+jeedu{CO&SPt24CU2boxGO4AuIVW9L#Nn7> z?O<@(u8q@n&^d3NFXno_yOZnrUc`-U+HQsY656|kX2U;mEEl&IBo5Ypx^)ZO)K(5A zohhBLk%x9W0JFF4pc=a*;aeE&gMb`gE^fK$*|D0YbpqGkXdZ`_gJOAD2g|z>gUS4J1`_ju_ zDuBE&?$*IhI>hJRQn?uz_9M%u|2u2qEgNT&^_4~-JMAhYx1fP~s)(owbFt5B1f_(u1s z8J%13dll?67yrS%3O!(B>Gl*fkA67bH#LiiUeZr*`GoO<$`#>Tj{yrZy7|j>9{bD0@*9Q6O;Bi> z+!H^e&_adADRgs0=1Re=@-0SYQZ{e;h(^g7RCx5v)TI7+D+lE|Of;B91q%*~l?P^A z6^^@08g@j}zNp+p41W0dAu0G_wiSr*!}nt8si91znWp-Cf!`wag;Qd3V>mvR5+e;Y zMDm}D0NW|?_Z$A}P-Aph?A}uf5KYp$*d|t1AC_$ih6gOpz%K2+UjtAREBSK#oy2dy z`}}0<2xu#}U%u4Nuh|Jz9>5{c19Owx``pwb&-~=}zJ(QSo(BgX4{%2g0qI4J#zc$n z^P59|^|6Hye^c{<_JMJOV!~9H{1MoP^V=UiM*O~P?4J~+uQ~b(WH*e;B4pRa6G3*Z z%7MrqL=vK99zV#S`Q+oLR4*@r?6&3!x=Y$!v4@(Faq-rn$D%_%52c$4sWX|hMh{TZ z#6YOI%F?4tu%GP9kwQI@VU>JUWQMG_as%AvC$=W`)}&t)V!O?+!5*eu3#F4b@=$*Y zx5co4GvNnnQU||Mn^jo9sxe%BR0Pt_I?{o(>y#TBRH<-TsZ+9whOd3xDLJReEoX@I zol%BGF`@|zn=@Nd;|)tQa;Z$n1uV_Ur7|Ix%7k3N3mT0kD(5HH^(Ev2B#c{Pc zl#{oi=CdGZnQV;=Ep%v24eJN3X+iaa*2>8lp1)Lp3IqUr!zdP@wQM-y>weB!(3*K5 ziZDgQ@>kQJ!sRi{Fx+Wi5z~gG`(wdRl216d*tTsNSks#`7mk*B#j8gWJEJ!9P3&`b z_*F$yGqZ*(U4@yjvmY1Es*YxMoQU-VrX~ocOU-~b7VB44(HzB_Vq8sCyiIXF3(I#A zKFen8jJ{d5FU&Er>l#}Wb6t6u=Xt$#9v3V-O7#Y6z6TOM{cG?RtJxL5r@nMJ$h2({= z^N=PD(u#(*Y~(0dN}Sh~ku_ARTyi;|fEdOT23)DM!@mRrV$kNE>B7Ng#`k&jRfzda zL<-}2@gEW6f^2ple1sNC{NS>XRqw3WwlHpO@17Fw?Uiuvc&b_K17RzmyCFcQQ;NY<`-oiKSycoJn0p6@JnWS zAiO~rK&e-uc1w*TyY5)B&?7JyL$y8}eD;f*3Qwq6Jnb%h09$I6A?S3u*8?^Rb1OXvqHP{+&iaHBowAmz0Be!YmQ(M zGB$>1ce5M&PS=fnr?V*AN!E>hm-RI@tC+HaVL6fr->0+hNPLGjCbKZ=g=F%I=EL>v zmh0ERW?E)E%Kvx~HowLisBT_XJ>s=lx$k}uceKn*ah+^Si*8=4p7Az!L22=fx@TN# zO~v5F^l?-58$H!y?#s-*E%TRqS`RPlK9c!u*`kHRtN2=3x#ruJJh#=TPJW&oa>0{L zpWE-}9?4wrB%0An7I|*FQGA&1jW@Uo{hSYHFW4Z}YszBL$(j<;fK}A}+laTQtyj^G z=9gQCec+9|n;#gnB%3+%70s?)I~eIlald^K0=Zuc#-!t&3h5Y=PN%Phcn(~f`Qe!w zGhX-5kY0ninDoNm&%#)4&O>=da3aV^bK;#wa=VTykepubgeWR|RHCbncL&V0G1ukXglMmOyzFNj>?SKt?=#G=c)gEKK{|fJd3B4ZLy61Bf>%&eufO* zozVKrco;HZY?%pUsRvt`Ad(lZJ*fJy12WV9h=rGsJb0?NDw4iDgj1wHV}~KMI7RxB z=;ByfCK8ag6hyIn|L=!xKHDeFDKiO5H;7xFH?XXAGM~|JT=rPX6`oQIe%CW3;qr-6 zZ6gxistCMsmVUKJ!}nvdL{T_k<2G>*0@p>ca&ujDeIr8OE>@@i4Ln=&Vh)+YPIhKE zT3Y+WsK+Ps^Z?Ucn4!ndb{dXJ}9~tQJ%>fM(wSQ2DTQqg@Xni!Rv!5Os%t4At1X66?EA zqQBR*U9iwZu)Zul7Nvq)_M&W-a)tz-sEhVMdA+QNP3V+ukqSYtlnVS>Kq@ z*3{)Ya@*ePQ~oN^&d!v%m@S|sEaI_eFd+OQ{un&5tD&_TA{O1GBC!&`FfpE7b_uNO z0*PdA`CCecY|1pR7GGXI;vMvZ=8Nb*J({Jf%bMTOEB+?*yLq9Fvf`Ht7T0okP)ym_ z^J;~}p4rXgN(9*RlFSePX(I{#4IL%4kPJq3bKaGMu-jJ)>{l#VTvP&9d{@?$IFghS zq2OGYz)(g0tKk&KREwN3*K&G!=1(k zt?rB6+1C-Ho5HKJW7dN|j>}AZusKxo86YqPxgbDi(Y7tKFC$$oI;X87 z$s$fV$eK}5BF2=xe@=Sr1fJhddIH>`VwVzLM z(<2mtnh(*hant={vT@U{^^u$QVvxJ(Ag(D9=n;D`ZkZonK-Juz@{Yzd{NZNRm}rxn zJSYr4y9mX*2Rj*V31#dC9=ux$4{lzW|2o}`e9iTU8SkLS?8`Wgx~HafTtST)bAQxg zK3>*+RK!95Lp^5QnC0i}lBh8^i2-i=j^@c3-~!00SvwES8(N1AdE;)rv2@fu&G+XY z5d#JpcqtJL(8_b&U+UdY`fqVr7Y!3$mwb3d@?m3U_Fu%I(>Ul?-&RYbd>FC5d3k<} zWig#>^5_0Tk+3N>XrWEpI!^Nj4cZ95-e%j%q}mDqvLB+~WAF*nQZw(1yE}H)+F6)gPr`BKPuNWw_~to{QrfU+>1L zrT9sHglEg^vMBZWnE1;ztrjo$-|kD4_yHn`^CZ80{3qwYHH62?M37sCykZQG9Yg{F zziyWR=9E8i#}>n5C4>mz@8y9Tl8ZILVR<4~#3nI^-tVj6uZrKO(vZsS8lK%EDBEKX z?NZI1s}N}|2VXMEWZl?Z6lK^t84*C)3Tlj?Y!6Qa%C5%{7bsgs5;9|fsI+i~e7IUr z1j_El6QH1BlurC82k{8qz@3;vC0F4~R@RdPs@IE6=mr7;B?Qiz)8X8TE*itT>gjQT&9nB9 z)etmk;$DtIH8@1lcn!AN+^G5(MfJLt8bsI11P&b4cOvD&cdhP|4vl#3mHQRrxwalw zzT%6+vR?inUmQVgdI2X#t%oi}x?-eVkDid-8&vkOEOvtS=Avf?`>5HJ9 z^W)tH_(nRpf#)`Ol9L;FuBdrnJolFU9Xu4E-u?yC6TG{k&e0K)Ri@!)PqR zvbkPJ_m>f9?hEODUY#z2bfwyQF9qqIQz+LL(*1HF#Ub5!l#>#tDNPJO&9?@J7CNM> zhV_GVbtJbRq&t$F;b(J%^|5!MMVNwg>%$MAa0H)uOBN25Yx!hhQ~Fc5E`}3GcPcXn zq*~cT}7+_=`OP7I|!SZb(ONT0Pr$xj_RtfnH}-7 zQv)Kf+oLecYK?xWuz^M?J}<`AV8s_GUN|t`S!z8l8~Ve2ojiA#MWFYKERG{4M|Icm`J#5-Ua^m{nPZ^Gk!u z^mBtB4k^)@YMu?0H=e5}mqMKAFlZwl* zuJmaX+N$Z0O_DPVR&DSd&$Xx|_^JrQQL#^N_A65XTV>qX{gwh^ucb2Ks*y*x zlnHD-(%t}ILQWksRR{g{_N=H%TD+Kcl_J|JFOde*d!=_Qx^7^6wl=e0(A8I}EnM@O zRJIzO+Ya=x1}_Laflkynpt(Ao`Vbqac(pC4O^TL>4eMUmBKuo3*GK%Pv+4a&0aK$L9Fq1M{IRHn|i0OWhOJI z0nuVtS4AgIAK3DmUXg$gHVah#tp)p{~D*G!qPXJ+{*p zv`83m)@>(tfE%mdKuvhOrg>@gm`*pN26ytJ23bhEO7JjeHfZDu$v5sz>WFg2_BXMr9s5Wx~e&> zJTqh00x3J~jcD{6A4x)thj9s28>Jjar6BSiDN&=9 zPX3Yns=TD16XS7bJN)wtEMqGvzJm0a^DJ2qHN8N(q`al*1QRJ~AU!gZ<|W~{akPLp zxgc2*K1p0o^`Fr5*zz#KG9l%uGCcZB3Q?E1Hbi|ffdVL0&}XI}$!9K9jr4=?WR2>? zH8_-h5gh$i`=AB=dMGUJE}#ba?`qBx;Gmyx*5PK!4gee^D?2}k91Nv22x&E@chSKt zZBI0c1b21qE9~<}2bYihuCJM~srX`SgB z1s#Jt1}@vDV#L3~8NtA1S*FNb*Oi#;@Xa?g60T17g3FWGKLZPu+M!RmERNu^AMlpI zFrg)US^Gw2;l(-*{%m*=aeAVSo(pYo?LSrEfry%3R zm0TqGt`7-g|5@&e>d^ZXNDIM)S+tbu9>^O-j#MZCD8FKj0>{P^VOJ~x<1xztC1A1S z^C_%pnb8Yi>!#1_GlHX;>RuzfBbLC!&k?wD8dytgqt9SY>U;? zy&&8CmNxtwvMsb>TyvLpaGM)xXHD~x>egX{BGg!o=7SJ4EM9j#BvSGHg7KdeYhmgA z;kkZN5nnKqiqWWpa!l{*Cm3IOUV_m@p0vq28tJgSM4wvclCE~lo0*wQZRnj7L_v4L zr`%;&O)t2XL*`O&5>l(xfgKlg30Q0Z{WPwpm`RmlZT;}#G3(#Me>lPKx!9h~(DAKX z{5~Px!zwc~-sUZ}%`5Uhg}38-F|PTU{8wNy{ZZbDP8a%~*?;bLI}pD6<-T%k z_A{cGi0{^n$U*A)ooHTEvNAIdV+Q^+VW#CXr;WOfZmk%UpGROINmiz1%$z5Z?A$m0 zT}d``l1sAt`${rhtXz;+numfU(}WvyidUGLzm?Qt_zs%ulF;&(LH@UC@zf93cD!}~@gx8yf1s#Fxc0B` zTMpY_3tqkY1wtQGi0_4N3Y!)Ynyt|53SFj9w?fB&a7WnJj82U0CPt%ss2+;9hq;4f zLA$OIzB5(>5&O8$6OJrP1ZF8HVO$W($0{ck)Q58>cm*9Khjovq0KHXPrU1R&tUv_x zGBMJwG6$&wSjuz10XPGL-*2D>$4@>zgJoT4?W)65tv!!7=T9{;zqI=vsz^ZaJcl?` zZ@w!2o*RF^&u=fF-3QNJ0|F>KTcDxv>oL5qmNy@R726iqUsT`mmgP?IF2dj%Lr<}4? zT0{r>AIB?D8lNBN7fk_LJ52#vJ55!hbs8yECNx!<&{XC8c*icFb-U-`K)(mxki0A=Zm%gi(_e1rbm$Vtqk`()%LTSF6WGi1lzU3ob9j`m=>{eG%)U z3MpwPWL))RX{i!TvxbEceh&|1t-5}2bvebupN#T3~*|=a(e$r=G0o;$%BZ4M+Y9!q^3OF z`%uKeD~Y++F?#>Y;SsEpBCq3<*CV^J%@&Z4fz~aeB6=1_9ktU9ZAFmoUdQt*x_HQt z&xvUQC1y%4IR3&tqP>2{@^h_(E~Ij1jXuofxSOJhzAp`9%@qUV+B%WTtd>(U-1nF? zj1vvE^Xn&AaqGj_L!;j@UmoL7`HO~F2kI9;yQ}x8Z5TGh0qm>`H_`OM$G`A5UPGS$OMl}@kaFUvllC{hjCQ1e<^R^-_=}n($nnfa(l&I8oH{iSEKRTNE7LL}Y$A{$2cyRWQ=r`|>x=_WBz?jSd4p)Y=d)lhG~X zz0UgZ|Bt^hmz=(fzj3|DzK_50_IYV!3E4|{i%}_~gqbY^$4K`%*)7XGv0bHs8|#-< zd#5p-6h@kZ9t(5PhQ^quWmR4J7E*NWjsvn_X^*IO0N{Q?N-Nq8E!i7)+M;pInY#L{^A z9uH_C4d7=yOm1$z&*+Z+|Bauq9E`!vzat7 zXqhn(VRlRsq0Ew9AS%!XwCTN8OBxh5k#+n%1A81#Sj&L$5(!+tazvylg;A?me{nNxFHGSmes^VQ_w=?Cv;xwq0lh*UFB|$K3XRx zLNY8m^-xNb+RT#CGJVJDiyO;iHyM|-S&Cp7`A;Mpt?wddB6Vt59I9Btj?HuLh6!}@ zX{rie_gm>zo8Gd~-oiG1;(QfFGcT-CHH8=2?L$@J=BE+X9OzgHh3Gw!mf{*3L2Wmq z)?}&DRos_8C~8RGEK)Z1DV|}iBsYvm9pYUQz*2Np(0|=%`htCc>NFdThr&*mGLSHP zgKrfu*jD$n*#6>!TJ+{a-6@*sV9P;Gt8RW9+D^MvPe6;*#5{Xnu>_i0-MqoaDAe{I zXVI7#VbE0(M&ef;hh}{928VAYmei=5eIk;pL8>Bdd-=zO+s?NpX}>{LCRN3&K}2c^ zUh7wb6ydcG7W?=1yYE4Fe)#<$e&2)qt!tXQ9IstM)B54H)w(hJSFHEGy3;25k~*|< z=ac<)r$e7L-6<>GDLcleE;H+xUd_pONz4>*^{H&^i$lx+FB|%p0?D?A>r!)IUZ^0!J7H5m1cdi=_ET|IiZ?0XV)m*#hV&NK?WUl{s(0?%3I|>J< ziTg3nse53U%kzh|F^pUEnO{-+a-Uzwed29^@;1q3(crI#M_x)OOiur;3@Ao&x zYY!l;cl`E_R67d0!TsR&?`h`Vb+7nHrNZueU`7K14f*eK+iz(38Tk7BLfS7-=!NGA zeMh113Y-6iLcdk$%L?5{NZ2;8#?t&R#9JT$$@Xv`8)-h(Z|;?v>OZV>@cmsIQBeMt zs+dvFcTaMiuwC_@r3!e7L6k?l%9lKebSUK#D-a>dS+VrgaF|LX6TbXocRFuU-ZKi7 zPgDrfJdxl0rz3=ZtpD;&GWs@C|NW-WvA6O`$3Cp02@T)30-XMcSZV4fc!UF2BI?AVD5LUGo6DksjbcxCiF@4X7w(ZOriaW-c9B zT}u<(|F2#*e7rPApwUdblo#9xo>X%CwutbSgU4+yNq&)CwJZKNbQ#Y<;cKWWdXtwC zlsEbBRRUOHBylXLzz^EWWTd8qXfXtTI8RWo?xT{#m0XgWH*6aZ2yFdTyftaFkVjh9 z!;eXpQq_gRw4Mjimt0fMTgvQ-A0jsGv5V)S;v zVimvoQ@9}sqvS2pGhQNnB~f7Yt7=129i$ZBq57-PZ3e2Jdb9?TdO|jq(+Jk$Wo6$q zQ;jw^H4fx=sRSKX3+)0DnRFUBv*K!Lll1{0Uu_F>_X5ag*JQVi!?;5+Gi$DLvJ{jl z9J9<9iRIj-#}`SvQogaLR#jX+4Hl8zwr;km_bYWTuaO=wzLOp>zLQ>MLVA@6=>g+A z=~YJ38{qO?-N%F-30Qy1reUT7D@I(f*)TnY~6 z@-Q}N`(s;*L>#E^2ootKf-QN9fe=u?2ANskLt)*Mw=O(-g=6(^>1`dR258_%Y|Jj% zSkihl{$1R;iwm@pF;Td4cgtAgu0~vI7&TSP>Af^AzZj>#!sQ?o{Rc&bD3xrj-bG-Z zenaL#HCTTH%r_?mBRHPx#rmfvNoq)c$;0YTa!8K5qq6#P^-!H{;U{EU_5RIE`Uhwi>0CWItxztX{UZCFB0^X)1o73(2Y zw=H!k*HFvFG{rhgt)+I)?xfJU!k~9uxC5h{WLf4`OpRFudGoSz{Q$l56Rx6wctDOU zb}NYP;bCmyNB(4?UG1b+G?JeztVL4f#jQOyqu9{|43@WFAT55wS7Oa;$gSdY^l+rN zFW56!ZA@E08V#Grk2o?G6~A6!*wd*bu#c z+JvOAK9RMh{Mu8BvA!mTEmZI3`c0!EACD2CBjKYlvPPq}iy|}udcVc>_?)j%0Qd%c z(YaRuexnsT{i}ksAP-5|aO7xL>lP?-aEvr5(y^=jRNzk+aIx-3!3MRS-&L>8qEPjo zCoSabcfYO<`f*YBm}AI&`Wn-iiOXD#;e3G|Ct01#TR$E!eBxtNYeuh*<3pg5N^F) z-kf@&uihWuVdqmi)l9}$Bc@h}Y)7r5m6`-C6FsooDDWK^7(96Aw~xc>eEm-vTj zNnB8S7!r-WXvA2maSgqLr6#v@7j((~pz)1XDX#Wf<=4_k5Ry4JW+(#D;9j5LtplVUWUQH$}#gaEtsC z@{~@Ne7~hU#q6wi^DFy?7CQQ0$XysOto$ssh3kmrSF(o?7ASP2jNM--^eu(vDm0yt zOt%vK_i<(?-0`FqpOZ`&sWuy@duFjK*iA;CJQlmU_B_d?sDdwxIp!$GWlyJ6@aJ~) z0h*_j$1Gz0W-5)u`CF5_i#@6~$cFUR9HQ175nE#;_$w8qX;MAHNqQZeWIf_DVP5%@ zHB96%3Oy%gHwrx?w!zvzAx3P*YLi+uV@DA2572N)_|on>^xsANXI|y{ebEqyrFkS; zG-~_!n^n>{*|Upim;B8n_syP_;3t6NoCo~#2PT;ZQHB8O1p#d`45BRq*t2(qvv-vU zK?77qw`bqp%kY*LGu;#>laow z5wzuN((%M$n%$Z4K1ysxt+uqis9d#VD5qj`{Lbm2huprr`K1Bu%V+syuqfS#`>$)AxSM!I7^-HIV#GbjA|me3F;Of@voDPl zurHkyurHkyDiczuOh^Iy(n+B*lEMYcL{3Eqn0xKZw|d;Z-2FBWr0mOAdG(#)pkKIs zSxWcBPVAKY%FVBgMFuyNqUY*#N3)Q0ZCMk%0*(sXowJ$%GB&F@kN?I$5 zQ7z(ajZmxGmugwTzU&k=$-X?RuYDO0#80l4eR)GgC(Fm}OU{c9_v6V0`%;u8DqMi+ zq(6lh#c*O@;;c2-RDQnXf_?cwmX{*hQud|4F>_%C&Y>mJshZHqsx-0OJK33;^%|90 z!Gd8a3y*O=>t1)lLN!%UHAFq*o;o4qvMN8XMsnI5qDA|ysBO4&w>Ld_L{6md&gp>ypw?+V6UCTrR^GH z*=uJN+iQRQZpvQEF^9(cHL0dUyS>JolOlb3sa3AI4kK@f_L}C(HNLUviiy4UiqtD8 ztb@GzQ&_5C67EWcLn_>p3a^jh@bsg`*Po_Sqxh0RL96>@vE9elO|TU8=5QT4U6I|l z_8$d}PTwW&wfj1$R4QGLmKBsZ5p1vBm#X(<>52o`eMgS&wfl^|>(-^LXSjZZi{Ml^`wz!=FYvS*BlKEwTgN|}C*`kG1~({GuXev$>N zIbd#76uO2=ae6t7<|5DhRsYJ)t2g`Y-Ic-*nYOdgu^drZT;D09j)fjR&7y_%mwfp- zx9IwDkAhhzijzE4j(%ocFBy___HBt-r!ryQwa|)xZUT+Y=v5RN+H>kT{3D^zwP7e4 z9gAIL1sl@D%=`*f^nS0$^!HfEiC}H0>`Pg*R~cnxK@{#vC`;YX@m3L*-fj%SC`~Ww zLuOUR>C5}PCzrMoKp3zR3}IMvuu+SLuF=7;UM~oPS zLYtqRRnXof<6QRur0tt155tO#Ex zMxZBunw*wUh_~WDt@k~na&Ap8NjH7*LRZcgXzjVQk+0L*EuH+w*bPY0Zn#K!6V>Vq zYf`G!b!0E7R##g@%jqrM@sHgwW3t-~htM2JA6v@Pl#Pfj8u&>mKnYJ`%Zq^E?RG?Ha-UN2J<580kMh0>Hx*=4 z0Og4T+`SGC&@%Q@!A%8O88Q`0R`DED;Y8xmR46AXQ{hi4f%i!jahyjw_(25511MQy z#k*g%JVEB@z+7T2jO3B51svVQDIVwRL+0E|1U6tzkhL&ebs=O+`L)v?uJiD+Dst)u z5MRr*K;gYmgfV>$gc|zP%?S0+Ue0L>BjippK~+PnA{i z1;oRR<(^gJ(B~uyg-{GtLJd)yy(D)DNUc=gm7`n+ht&;QWp!@8iy0Vuo${0v+HFs- zn5u0o%L4i9H#Ggu*MjB$?EStL)ba3}A-)!Jiu}wXS_`*+L^nm3!RED*Wi*DN;WUP! z;WSp6&{$HBMvHBO2opC6REE4WcbBgn8N6?9=K>SxKXQYchOa z63tyO)fCb+k@8cavVtnwdm?{n=WIVYg3Q8_3MQ%{L*a4tsjx!h7-Z6BoMjKTox4)cFm2@Q}()PO*{~$F$M> zvV1G~Ayw@rHj6v~$f_Q+usJ}92EwvRvX;o`)DsBTP(@-p ztWQ#=DrL#$EOMHk-$Sgs2HU|;e()@{-Sho#m=k8nQ(anoxR{EZjf26g5E6jSnpOY0 zB2edY6E_VcvM}X&bI`6@n*x8d9I-h-G52Wd+^O{kZPk3O6$+)BNc8+h3BNg zZK?3Q7!G?rJjBj*&*zQYdZUFiZq^HvtD+yVt}oCeqIa?V)T2SH3wPpLZ=0G}7#pg& zo+Mm!>&8vv#ylVOK0djAyN!Drm1=9EoGuh}J<*lecmI0NrCvGjYKO_b1F8B$&%V8S z-eQ%NMWOpyXlt)UVRWpNpLt5LMWL>THwL>JqVWmO#mFQ@9*dEnq3(up3r zC0jiqDeV+rWLLoDnLYm3I+(t-dADm9>O$4RXl28q-LWhF_^<4W6VO@S&;C)Fbey<4 z6H0`)Oro)giDANUQV3sj6JyZh(kvWwORs+spBDRzlEou!hRRAlLS{sLfrRA)0`8F_ zQ5DHyXxOzGsv{hDHPglmM5r{WgJ(w2mBb^eC|n1k4;9$T#uGTZ6kTC2X3`m0(I2bx zQ8LQ>_$>;O>Rdn_3A2JFt|3`}(h1u2OO~z}Z{j!EZ_x8WYL31i$VL70{h}uLR)dm6 z0nWsTOpTF7UG3Flm8e1LjhfnEw)D%qP!)!Q*Z|J90Mmd#jU+R6KHm#u#;seb)b45& z!AVVSB8MK9hnx7kMd6reS64>&T1Z&+D-#h z#asGqeo~{X{QFx?uwovw@U<#0{~P|fJ|Tmdbj=&}Xnwe+YSww!Gh!u3efO}Udk25! zQI`!lswB>0V$P)i4BelUV*U`j!Q?4J$uKf#7#sMoALKFX54la81qpJ8=L+FrHKk_OCTt^Yh(z$)hC1{dDulii)c!!iKy4kUy7{0RB9SV zuhY8Sz?Bf12G8Azbuq@X`tJdrO?X!SJ*eoTx;Oh_LI*ySnf+%?n=;1ZB}#jy`{Xm) z{C;Gd#&6@>6L#{XdC8LeR--!jSv%x{wf5}^i)1cXYu}zwB){FLj(B*-J^(&pnNaH$ zC=~~;&&)obmlgS!9`kE4hoW;WNwgu(^MBh8JL_Ta9Syln4e83v?nyb^{z63Z_h0ok zq&1m&+c)jARJ8VcSILkYpaqF9?ec1=uue2zl}vN8M-ukjOVTVea~G2oc$%;VOrl*z zfq^92)H8TGfHWKNmgvT*A?!v(OMaLh#&sNq#2hBb{(7YgvLn~nQj<4CL3HKcVn4Eg zVWdy(Xqj}+DJ1pV0zJ{Bk+W&7_k=IoClA7kZva{3xKS$Htk77#j2Ny{=xl`+DAYuV zrMeR6V?@jeny2wEfYOdmE{C3b|#>9HuafRa@5{+6z zaA*nUmp6FPY}kpf1E}aCMm}7w+(gXE`^L(Ym6x*u?llmukEQFwL%@Y1mW#hkHySh! zAQAeSo_@dMzqU=;onRrRgnU~SB-8el7%?TJK1PgPe>z62CmSyZ3;ATM(y)+mig^Dy z+2by~_3_=O^4n+sGhi$VsHn1E?s(+a6;KbjBNtERCRoOm@k#{tKifUe!gwVD)#UsM zAEYNB>Fn~<@7nE7x2S$%GI}$U@_RSA5YK|B#siWql`zqA^JduUk;PxRDw^~?L)iJD>~B_WJ?LlcSUBvmWaJhQ+iqmD>Qm1?9h zb^Pkj^zo(db658jbu)cGaIpw!2WyLxzmAEEuvWW1Fv-kGvHgbYDjHG}i zB6LA7j5sP2k^dhXl4Z!mkpx&E?F;Y*OwWOV->0yR)!_kr+Xv&wDU-YL9u@1|#t29HomDP^ktwhGGqXp;rX=_VYLnv| zH~%*c&FIITmS z8qkgRB3FVR+uJYK&?T~ts%S(+r5Oy?QW&l}D0&}6SbyrQ;=^NH;qp{?bShkx3TIQ{ zIjOKzNBwENNz`U$ccico^E%XHCf+=PAEu#<-XOK`!WSqjLnvpX0X6FBtOt220OWQD zKw9`X3{!R1?fMc?HZ$WBRIg5|R)ctzUGBcW?37l^&7-PyhOXAAaU(;`RmARzZQ>n@ z)J40R>a%7sz-rK_!(k^&fWIlreg>PkhhO2ih-n8*n1(G3;UO*PB&?Hu9jYHDu*QD5 zpORljW2BOs=NnEE?z`NIl(U-HqrK8VNR_Gd2lLI1Sd=h{Wct8ks%WALMh?Fa0`gLA zwBPx@qdUTH&M<<`k`T`3B?)%I?jJ=Vf_X}r^@@76A&eEs+rqfC;3vz2#8PDtG(%zR zMBjY9O_psHoDWgt^PkTn)=fUl{6fJq93rXpuK-?%%dQ4C z%NKO;12mN6j6Vt`c`f?e7EqE!)F&--5Pc|ELG3(D;{ko^--r6;aASVATq49 zb+DEWevXDiMqI` zxLPhoCUs9Ux_>APn&&39FpK*!hlE+MYPka(&;m1y0OoYP2H@&nO84^jiVcZ=s&O-w zb@Vh9ivqs*8@H&9wkn3ZMZJKGVJ9LrhfNujnX#AJtJX22j?b*6pIy`tE?Kt)B*nlP zT^-xJRzM|v>*4+CM5Q8YVx&B5KXG##o9oT%mqEIw1FzrO7B=vyO``^*C8TM7K>yuA zw*~+hX1@|m=Zz`T`JL`B{EzHbceMhAV?385b`I>x%)Y3v{X9hERct@gS5cmnxF&j` zaTan4j}l#IP*1p8!|nI7CHyMf@;d`}L_`92L~GQfsKA|DFG0r2_`EQ$;HT|?(au>Yx~LjrniGRBUCFw z8Ib58w%2~0BDNcMND`n)jx+%PvmQTQb6tzZBCQ;weRPPy9+A2Z*kO?xd262Z}rg@oRJ#)^G1fNoPb# z3bL$~p@;r@vHvK`rcRXBS#(>B$+1oOlpK47h}g_?dKi~Qcr4~H5!TicMOZ;@<)3~} zeB_dM$45?+O-`>QaWq1vBtqwt@^9hEVJY-iiz#8$`9C2YWfp`v6C)zBkG#ddM=W0_ zETvJQyA?V^p+Uk@CMvWoAp=QxpGGmV{_f!sIWZ>sN}%7uZ~vjmbG8s3(?cdf{ZE=1 z=3MCbiQ2B^81a*9$*Tc86SqoL(58hjQF)2TqzwoDC1pcSSJk8}P|6gG$cEfkrG>|y zK*J|SF$>Fi))b*r5c+q9uppv6)3NT0E zgWY)i?0 zD~1_F(9R=4A`8iZk*ldey84wMn(rLxy?}^5bfCdf%I*A0XIaE=xMMT;qPr?y@)6_h zlc>pNo@8d1E3L!gXI{YHM&N?wOqjc_<7R_ytrlz0q*m?twmy4w@bKFNE=)OH#BtFx zB9fQG4ZKLx{3x9@TUQpo1`*^ygNXr!-1Y#@LLP{Nc)>Cadoc)*-rpICsi6gLrX*R_mu{O0r`9Nu+LP?WGnoAwcQdU7#A`@wUwKT`p)YR)X zGs&9E8E7-}8ZwDvmQkJ9pWY`g1;%xy1Z~MznE>^+F*^cB>A6vK-X^UDi{3Y9vP<49 z$u7R;_x_j7{He3q@;3428M)2POGCaHEoXywWXjGLdAVk#q3(q&9;7jalgHfACsSBE z3pxjNT8AmcQUY@nXI`mXJkCLj-xP{YSgB$TTvTTcxDB6crH#uRe-HniwmNww^+xC; zGy8|+pvQax<9HO1`c*ovD;3A)fD?0Ezt7uf#D?%yU1v;k9fOoW^6~2(>1!3eqa zyjx2kW_`j%G&jKLUKr#v~b8(BJ>GkpJhU#!G*alLSpeSllq|~FJ~)n z9-;BR-QQqKRJDa+zo#jb=pvimUxhCt+1bD2fzuN2*Ld+F_7=bsAr*FnDh(-<&@40z zjvOkE^N(`1GXg3R$+LqBLf})mlB5mcaSL&Cy}kjFBP}!YdJ2g75b;rdY1NF}W=wz1 zrp;$6SgptB7=JJ!hA2mNforNCmvfmtg{cYaHvt1sr;$6oSZ|r$G`3f39{pwN4NmU9 zPOSgxny6nXFgp5FW14}w9oD`2lGWHmP0VOdwsk534$lT`tXSJsh*vg=xJ~E{`c%Md6lM!2(4V#Ynp%_dcta#66dv zT8h+xo8#ko%9EMy%0!zY*IidODE~Y2o~Y4qIepR1GMLN(o!|RFX66xbJPXs}{5Y8$ zv0$gg0Z8o9mtWeHe-m{&?EG0Yk?qhmLq?&GaQjUtQRqZM#?ZpL|Bt8#_J1Ov zQNbM)t@TN5tih^)^+9~pM1!8#plPKww1{a{img>tP}-tKlL*Hcq{>xnu}v#gytRtA zwxzAr6P`g)0u{waH7M#FBN}`Wu)zQOTQmFQB%r0J_qLzU|9n2lp4XmPvu4d&Yu2op zjj|$+)sj9(X;RW&RuVicJ(iS2a$y@ZzA$Zf(8N!OsLK831K)2$>CY93QTpu{vrzi3 zBIFoKPYXGQ((i=|45jCUh@rIFK06RldWz);r5A=|L+L}+StvdCfqaNQ?OuDq3+YJj zKmf<;4TSb13Hk6YY@4dC{8-54>AzaKFkMP~i|><4P-}llBK?!nk3PFv80*xJ?s+Vu zAKgc=tA5n`uU++{8!7QI^rPRd*Cex}_m}PSVfxW@ZVuiS{iuH*uOD^H>C}%d`nyN{ zG#V1>AEL9OCtY0rf36?h|1v;Htaa)^vo#fOvnz(T)Q_$S=(In5a{AHtNB`&RN2k57ao$otl775B`q5`@_4?5w24p++qj%wGpQL`&bLfZb zN6n~#Ufw-yp-)>sTFD0*WBJu7lRl1qbl1N0PArnyxxM<)?t4l6Wa&qrYs}J*-hJ0= z8~d?FGh9hOimW3aTR$q?vm5l=svn)Zr$Fx1k1qK|mVR_{fcSfy8v6M9QEfjqI)i>R z{m(JIyzq`fK|fliNG!~!J)I@Y58;{{<(M%4QOGf2en+Ulg!$AEf%J3S?_Tg#8^gWA zawN=Wgk%%uZ%xP&<~QH-sp?0keD=+tAFVHo^`o~GGX3Zkg*x@4r-*jbkLD?98}y_4 zx3f@swIVS}OP641YC_N)QTStvbe zme-FKt?)wnExu7HA^jP>fqwLhll~p_qxCp$XX{5vR{ty*(Tq==La?iT^v3VH>PHt* z;$!GX4OnV|e)KgyX#oq`iv4K9liQ{r<@EIW(aQTf^`r79J?h8NkWfG4xql=5=q6!) zEBeuu`hKbwqn&z_5#YI@e0TlmG|GR9`cWZke5m2*>if1)KRRUgC#N5M<(&U~{pb*k zmRr-0q#tjOezfjJuOHpbfNZCJ^dw%QpQL`Y`uGpmk7mj2S+B+G&n@(6>qm3eeA4>S z7ZTkxjP0-=z1>^lCrdxdy)8>WdXjIX%6{|@yf6({(vRMv@}bY ze>3EmFuy8PV8VQCh!`)uWrZ3E#*S}Tj)eKdkZi(y=_Ogh{IbSRRX>`?0>j&no+*y? zqooR&ezZWLPW|W)M7!xncPeQc^rP>afij?Ulp--oKlgYRN*`2&98)=W3OR<-Lqi3I z()~lkP+I(C7D{_qj!-%vBpXU6UYv!}1ApQ5qq~=QA-z;zN<~Po`fvQA6+8MZ$&>kTlU4R=tn1o^4;~LLn!|#>PK#l*N>`x zy^Z?OPIrHD`q3AM|L5yRJIO-375kC&q-gkCyk4_{q|bRyAblM-OrviS(oA9}l>a zezf#umH62DQ6j$^^xLW*9cUnT>PG_wF+x+Dh;D}f@u5Kc@%5vbQKx=X$+=EXFF)6v zxv~A|CyLOz?XL}AkR{AtQ-mB7=EsE`6XxfH3QU++gop|A%a{17&3<%@YyhSkM38<^rK%Z)TtlcO0=7PRHLMA(2u@i2FjoxeOZwh zrMdI7P&!SK7^Sbx^ErmnT|xzh(v7-uhygN`_79#?hSHZUM=0GnBpXUcUXX>-&Hv@~ zqe;{+Cz$*74nq3rNA+Cm&OQ8J){oeT*Zx`yJFVJZYvpPFN9{hq$p%V@QOR{7kzATc z%Jax?s^g3_l~mnHmr{`mE5g3J+@jSfCFWb=$bv!gTJA6x7INg$yH2$fGl^BK#fo#| zeyFfnetd~&FTPG6?KKhSTFO?GMtiY)&pFbI7Q0*Kf@AG%^VQ6m-ubBbWzZ6w3FLbq z5z?-DaiM7CsUL0{@;m7uXrBLS_q2v_hvy7CZ_Tjt-j|O(rS+D69K&?avVJJXJ4R{x z{*hiCR<|aa@&EzUr#@xB=$CVPL+{6l@MJ?lc3Lrcn`u46iJBcK>AQm>26{XY!4&x0Kxz-FxE5@%XBU+ZbSlPYGk}aI)t1ma-5c#tR z*KXIBM611Oe~uE{a1mY!!YLP;lE+rA93N6DRw}&^53@l;5)HSBvPFS?n)G(L#wYWd zo1^V}5{Hl|qOx}0v2FZvj+rUZH{f1SBBNhTbr7;qo)6m<^Of!@ZD*n{&!O32b(^Cp ze^p6FK|qz)k1QBFbnxOc8hUOd*+xlifojH}R!N*h;M+`Rk_b}rchH2#o25BXvpzSP zQbO`q8v5m{^7ykj~*+lnVV-hr!e5ensSE~Esg3fVT-%|v_d%!SAqtnZ1U7X_Y5DP zNHmZ9q1 z{s=LKle%1D)@i7Ghx9wRK5!3Q`e-@X;y0PlzjNtUBKeLR9bg^gMuyN3_q7lzbO}Q0 zS+PCSZu-M<&yG+TdiI4-w!-z!^lW!4y~^!kWu9?gEA-4z7y7p0NjtCYHvOBSf4|hf znfiBk`dq+{y)(D)KbX$pEIZ$7PYxsUG%Bs~0bII#fWwFcN|H}PV(%mxP}xfLZ5ocD zlI*^5PJYgxMP+cYv3L?5n3HU7at91~FCP~g}Sfw`&^%x1yZwr3}NbAfMe zRC_T#Z}mIWr34?W{JeL{&U+()=S>B#f)6A|97rgjn^Gzhb?-;D4}+rw{JHk`3d{i) z`dyQ_J+W>hHwZ>IeU6$Fc~|kK(<Yj^g&tgy#u#MtG)2lty`$94VlWu6r-}7SNQJ~iX0R~2gBv-WS9?)Eg3 zo6jCHxrgSI<-Rwx=+*Hr(Z(L&Lw935nyA?bPt^gML__Z{8MS*pnQMfdtBb+{KV9MZ zsb{8MPKrJ6lwqhevQt^^x&$KZRi7_6?e^)wU>7Y!m5WA40~cPAMyVUve8o$HQ;hi4 z`}+2F75^5O$2)S@MD9C@q6OofPK_1js<(xSB9w@zPUmV84f2$17^wq4eyVcRkBcBV zjN!ia5K0vkTkJYshLaGgaBo`36NH^nhA_lDJzIczdbR-b^lYKfvjvVFi;;BUqVUZo z_$F75=(0ihCRe5P-6P$PNEUI{ebd-yHgQflPe~2E-xCG6^92#J76MGA&n)kI^BVjSte4?K>>H(@e)Fd+756d2)W@t+KI5X z-CeQL0^ZzNDX)XJac)e)tL9I7u6K_ev>}VVcK;sOWFZi3pxB--7|0Jx2g~zN*KdPI=mepZ4Bnep)bX+xY2z zpCUhPyv1Pftn^K>($p2Nc~;s#md9XWyZNbxxs#vn@W+^+&Uzu{r$4t4t3OSD-T7e8 zm<@F2r?64+iw|L=hr;nPY;=Dj*=*E!W)~Sh<)Umhy1xMFWTO=y!A9TyyDu8ps2qDU zoHG~BnTbpj8{O}in2qjE$o28jE^KuD(VmSOOY8j?&qind&a=@I9`tOqc7M-CyPY4J zgBBqQ7#} z3Z>DjEV;p-SGEJw+#f&=YtBXAz#FMqYhRym zO|phGaK*hIm&fIhEJ^N17DUFPs}05}=qKlHGhh zCXjTD$!hW0H#ru@v)5izcqXDlTbal^fytS64hdcEHMGnn?#$zvdf=cKxOGUx0Fb6^ zNY9~ex8M2VGGKrrLbJN4BRc){q+??QNKtcC`)VJPL41TSoL{2eDhe6@e_!wb$8#Xw z5J;hXy-6V*>eE?~M%o3L@p-7^jDqu3f|AZdG$Y(j$wBY_9zMU z8y~XSh{^0NyMa?EX(UsP_nLa6mu`HAgee35bKWkG4t)*7+xcpAhMi_7G-Cg~gpZQw zTv@P2%=c$_=Erx-05oC`_1V|k7o&`Og|;(oQ8C9H2BxA(gY6w=+TI=^;o#OKB(qut zg8k>$(^8awa8F><%%e{I63aHQuewgb@`j_#+QXR72$!Z5?4D?Psb^V3X#q^1=}Rdi zp4kKv%Uq%%k(+30?U`s=)l=i6C6;JmvOU+A55NMspPBD;QOyL#TqDVVwo`zIzET>? z!+7d)e_*{`lduk~v+mFY(g5gJUs`a!v5gRq#|ZmXZEqN>Y#aAJ4Jl(G&`k?tto!i* z;-}Ah!|GO#`;0!bE+F-hvL?6qN$x@}dhP1H1w%E-vLj6(uc3DjcQ2WzHyrjQR&P>g zI`tD4Gc}9y+`BDnkd7m+clPPA%IjP8WSMnZM_87%mleHb_lKkyUak&$5J?MNzOMr+ ztfWRg0Yp*l8>EUrg+eHHSt7Y|bkq+JhVPLd>HA+KVi!y0kLJsR(SYLiMA6*wZRN>V z5)D1uPH*V7O00d6Qm_d`t9~j;=oyI#-A6!iA-@y_E|W zuD?{GjUl@B>zy|`#uq3xQ`@K|ZXu2cye;dBG-KRNn2`O}aPnGv3RqrNCTd=4&%%uG zk{9suXfz<<@d7fUhX1zaT(Ijx`@Q-0f-PQq&*Kf9?7Ai`oEzie2HnqNTRtMDN9yf4 zZ*)}I6KwZX`5jp9QXVw#C;Kq<^=t$Bp09)Do^2ddqr$hwJ6W=I$X6sbfoJE<7Vg3m zKiI6h%I^fLh;d#1>E469V$v@?zA(Ozc1A%8LeK%eMxL_0iyO;eyOJku_rQh>%5*Je zU(SH$56dH#f2=$DYa++|Vax@s;R{>b=Sfj7jR!~YOif;T=Z|~>WsB7)Ypb_HARk8c zzzWc+j?Il~P6dxe{#(pZEoNz69vH50s@aVw(^^#&h0nLv9!c8Z<(Z0UQPvoM@+SVk z`GH`*-B~Me7#E0U6bx`+b9CJ;Oyza&3{GJMF8W(EbS~3e4G2vso=ii|k;3{^`1(d# z3mhyr{YO^YVZ0?3Y>EwDGx#~`ZcZ;pZOj^9D4K5s-I}s_n}78Ali-h#{?l#ocj9j~ z!D9DkTB+^2KXa}INrz^2|HmHEemlRpqfC1fF?< z$L=F(i6&hGM!LXr<(XOVh?4WfRl&O!;enFFj@^vojF@Y`q&`ui(MHJM8o=nle>ea< zokaJmGev-Gz!?cB$rI)cq?0s7Y)L6F%>3((HARK1pa`iZj^|rExshh%3h|m{(e>A< z2B?QWUG2hE+;(?tJ4M#2$lB=ohfE5JU#xX|d^KD?VwdJu+HLkPf`w7fLO{<(*Ifn@ zOt3IVTB%z4>E*mH$t#5e>MLf#y64X2L+?XHLoq*IC8(d#KbIk-k<6O>qd!yUucUjo ztt#dx^*uFy%gtn${Fmto8`g-Y0NValuAogopEOvDv21$!r8<)MYSjLrO5O*VL#Bl zXO4jZQlcFyO21CGEKmHdGfyf|`ZwfhmW_eV%tk+y0CcoNqTyssBwrzWjZy74$l>O; z(NoFJ69;@dI=49yoyN{vinwi9j(^!EpSW%!*{rJtnmT&KaD1nGTbe6Wwo7QsJ8D{6 z8#D`O%jlgV=pF;HNT0JTtG!3r^RV{#m}~d;tZz&8wVNQfGMaakA8~0OUDKtBBiIo$ z7{Yabu4yP+^DG2bszPq8ZsduK_uM~EC*rl(i0U?Qqly^I7&lNhQs!$jCE3685lvqA z`#YsCbJZSixLF}msmQm~3ON;uoDm{gAGnebNhoquh!iXG-B3ZHBHs*=L5i%&3)_A& z7=SAlNF>XI-Jb-AIJO)Vaw(oqi7f|(vE`sJwj313mIEv|-f}=aW;wWaz6=vx3^nM- zLbQIgyAMOpWCOFwK{r@04C@grpex;o_8fIb}}HlR0zVm6>xg@_I4*buP+ zJugITKyM8d*nlQO#0GS~oqzyy`}w=tdZO)BpiJvCMS^y^{x#~~EG1t=vaA2R3{vyb zy5=rDfPbBPp9*!eFC`d8*_Rp-thSZU)Am18KH$GHPYOcGr=VW>z)ZXJku1JLZInbc zp2!AZE+R$tB`tLl=2BA5=osyI`_e2cFvEWpnic67_no`ArS4w)h@dwv**~AhQP;u!77<$mX&6EPYdg@l)*}5^f1dZ zxNbYxZ=k;v+4@ndE&0isZMD|g{FN=H*mMp0U~F*=xu&I&W0oK#m>pTg)K!_GREIS= z!I}&fA#YT`B4jlQGAmO}8B3W!ireeIWi0aEGvZ=%RKLJdO`xcSIC{g4M7tP^Ueq!; zPlcN{%UD#QAU)K3`qjLZ>mD8JjYaL`nH6Y5b_rErBzmV6!%V`fTPtREi3D}HABK|E zM7*&`A^pO*6cSY%lS8t*?e1)2QPYpjM9?d(XD}AAwt!{i^8(z$8;cGa;EhFt0BB2N zQ3uVrx6rvXmpjxTBcU!zz^f1HSf%1J7X38KSkxjw!EFVFSY_t-SsdVa5yTq;p^F^7 zNueQD(~N>fUILjJW6?te!&QQkt>ggwj9}?v8L~GyMlC?38IffyI{u@KMQRg(FcyiI zy4|lcW06cdqUk)IG&frS0oWV^%mzjB%gvu*#-a|ASwwHeSajZxz&70lP-=n(yBmv| zc~z_K{nIMh%~&*{yRk@(3RoG7=FoPmo2z1J#~6!Vv5STgQ5sed5{yNk?=%+O_CuqD zgP-OJy-2L;=Z!^gDcHqWBym&T@L|THIripu7>hKLSc$~;c`V@}dr+9z-bnN|xWQr+ z>_o!7e)YjlBm_oL>X4#3R zvh*&u$0$|?c1k(sD0?Jf-d$UL=2N|JMBY1 zvgWqIJ~RY!z#R3-*@r5a=+gI##X{=in@?Tx8E+rjL+u6o&$O|KiI(WjokykVO}}#U&?X;e8wIJ%<3HEES)!z2|OuR%P2)79GC@oLRP# zpIr7S+k3u+EujlM$8H54*?azrg6SQ=a#wqg7;E}&@`Sss+j}0r^i#C=oY~#pbLDYa z_{?T8*n3Rv39Kfn9WQ&&4Y9pP3=HlgE<_2(BfU?YC;ru$CoY+OF4$ly>A%@~jv>G# z?X>r(LbJh~M$R_cd-P5hdym0!bN9A>%dDfVPJ534w6@wbAOD%XhmyhGqxZVBXMNio z>^&{Yg;SaG+}+;OL8h@T1>CYPd3%q&vQ>MJ)(cVHvAQj{o+Yc?-yRyLp$g`LrHCCx zw7_w5L&VlZ<5f2~#mX5IB6*5@D@2AUaz=;@QsmlDL4QTYDMEWoxHH}Sx*NTg?vFai zz%!c!Gw`H*AYQr`#!Gh$Jbvk37%$y1@c5-W1|Gk3ryg6nUprrxf$jz#VOBrJ%^P@x z`}8z#rO`0!N2WLMh!E00jSW0f^3!{PIu!Z1XnLZ5HLf>Z78`gL^auu?tAc^Ylplz? zRh3>X1JAE0lKz_vJku4rE;jIJdFASq^k;A2xi%Phc9)^#TN;IxRN@Yr>IX}d;Z_Xx z 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

t5tPwZz|Nipt_E%0~TdX6l;V#_Kx{cdJ0+2Hj>~ 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

D_ws4!*e3%oXaL(b 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ⅆ{1p1(M*vmp?`nXz0LL; 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

(wgRWNA}94L|T5U>~$(keDK2iBWgk=OO1$lu)f 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 z z8kGPFapm{^oSEm|n-DCv+P?n(`+6nMGxN-H=FB-~&N;K~oRhjhW=gl{Gl=fE6>VC2 z&(e-7^zWeXwxna2ur+2EVM|rs{#CU^Rj$%)sZ^Omm5M3Bf#+Hk*%&0zzxfsT8m4A?o#tdF<1b#A%7>X1-( zzpuvaXeBH)tp@N@C)kj`RO^(Mb_`I7-#!@ZXaSZ$6v??4_osFOqD!|j1Vp@Uc?gKY z-Ms{CwN&rxm6p+8;*bJ+a&Z<z2&W)9lfu11zYQ0ev z$rSyTlna^TQY?y;Ha7Ncjn=q`{lpUlzKDu+9M*iRkd0oZBoJ_S509 zlHD1{t4BGvN*F}m2nvn#(?~B|=a7gILkJVVacMOw?=qGQ$e^QjB`W7t((6W8(=#NL z^oy2f35o)xdQ=7rcjlmtA;GPxcTMBausxix$X{4;-@Q%~cM&|$7e^0>>tG#&Q%|W) zrgGgc0iKWKNFj> zSWqRkpt6uAYstpzRvFUHT{6%!ruD#hGN`?Eg1DN1zhE3Hl;cKJ&1GPAvpBE3M08y= zBhYnGMAt>L16|{~@pN4j(KRKBu2E*hHr-@>Qo=i zNfP=@@(RWC-LmmLM_|CP{)z6xclQlo7dVyfq1evmV6;jo#d0&BeevwVW;K|>H{uTp z6-=?gvpsuUzn}Rg7Z8V2O!K>ITl}O!9#QMdWBV^-;~Oz}BJ+TPx6yqc+MbEs5wU|7 z$~Vva|NV57Hn$3zI4MqVaet&-wM-mF_45EjKNOfF&mgy7rBiCn1q~z`_J*q6{dhi> zV;3zZvERGbL2DSP?ega}nhMt^^pEWXOa9%_94MH)#`5vDwQBD+6CvC_S;l)js3Tyg6+#2kEOB?bFcn_?XTKHtr=8C?Pa-a z_N#0iRlI8aE9^+)@SGu!UUo!$@P8&SpuqC+Wqk z{SArLlOM=+=Zx|*4(k8Ii(=R8ZtDP0NzA08o3*ZV=y}WwgJ@9_u4hq_T+e!HW6r%= zZbR6lGgVec)Z<09j6;jjiEV9{Tv`I<=BC#CzByi^?3h+WK6 z+&yL=kM*e18atstVgljxFD3EA3xgzf^^_wCJjs+UX-$_{$ZqZ*0+gCZzqcJhRYMvd@iTVDFc;uOH7ZOOMM5$hA~>0wc$DA7MCi4%<8K z?+E5ld56wv@IvmC!nmf-Tfv-PH*ACSE>EKw4WM7etOt(WJTRTppBwid!>dJ>{vMs^ zT!{+lzuEBaoDFaHF=TRIRNiX<&lS(W;dQwB0SyxCskP&5_4Eq`UdW=)hPPVx;So{K zXdn`uSGm`S)5v*yNLA^E@02xi9{wd26GqO16kzC>@MDP(amk(`=4{0QAgW*mb<5e5BY{W!P~@+aRq%#A#YY9$ogEZfj-T>QHYvdy zrEXP`Mhb1U(xT8tx~#@z6x;bGDv$wvs1UEpT$|*Q23e)1N`Y|CeNi1~_a`tOH5+8q zqEFWxtxwEv?X3>?5J}nnqp~!jfm-5s&0bau0Hj6vetwklnfhHv61NliOMMj#pEX43 zC-9nh3X&=%+wiEgTe}?`;Za8E2Okj$$kETR+2+~^;9?N%s~Rdjx_NEe$jB+}Dv zAjh@l^<|*VqYg2(aN!kOEwQ3VUkX+&h*A$oyH$@+biFMk6Ncv)#2EfO-Rd|(Z;6J2 z4J=nt%_^fjsnfL^YX?b<=V*%U_Y&GXRBA#EX>`3gm~2+*RIUD#oHj*Qou~k6czt1= zQV=L`WAA+r5`HJK#O-;-no57ChS7XTgYH_?B2i_n z3YEI~kAV|ocO+paV4xM2f+Lmc2fC<0*&H5HxAu?@mcRN$=7Encf-ywVQ7TA2g)Tj# zT*cg=6Z+WZC6E;~3yX$Cy!bd z4{#$ktt(BuSX%soCOVq{H#TEY?5@Xh+o-j?;{<@OH!O@u_L+{pom-~if>INU7QWVR zSR0QQcAWG=-FFW7r4Pg=yH%PgTMF5 zDT4x3RL9NCgO?{>RHK9gZtK}?hfR+rRu(Ue9kX67w-sfOp}s0?$DPT5`cNHVXV-tA zbzEJd(O0F8zKVXz(wV7!g`{9;>8e-T8!=jkZ$3@GuBHqw*qpkQR8ohYYU!iYthdsd ztICb>WNBdy#LY|*rVi6AXiA=_!4A^Dl#zqC0{6vM%`2dNkI?CDN-OFW6$`B*PXykxX%^lF4lb2ue~6uQq@l%bpw2sYBF!Lc*mr_rbR`$>r?`Bv(ViKcS4>i zy`||XvxLGndCymSqB{}i>9!Ua*rb6*W#1IDFHoyS(k5%i3bo_vJuLp*V_8VC^qAP- z!WIn1?aGT6{pj_0;*r$u(7LU+5w%3i2Gp)@>uff9d*x%VBhm7_(d)s=CSm1mnfDuG z(;mn&SAH$Jirp*e>W?M3Hpm0d4YB%ffwg3xq|55uksF81}ft#?qKV*MNmU(0C8}hd;+ZQCJMs^!8;GJ4gu0~d^i@Wk4nZZyL`m$j2>%sgIlhM{=nm zt-A;;U%Bd?MUP{Tz(&ZlYMMIV)*1Ck*1mB-PRA74em5vL zhUwl4%n%&)GsLSnjDiXUzG^!-vrtaKB7-qpYw(3Mz$4NCpSOoV4@&U5bS*w+S_{qtRFXCl%5SsvEX|vq^1Hv^QFB@i_-l zZpTfE-Mwdy)cLwSx^UHc@h;&4WSy-Y2y)DMPDh``VVXZ|HRzGZN9d<$;XHvcI)zJ+3>)RPOFm2yjyXX23Z z>lC$*p_w?dW1(OvjT($(70S%fVD+Jl-F(E9G-~NcQjA4E8qP8kH)iL~qYOo3(|XfM zR+w1XPu!S&i+7zG;INfEY&4r~HBKyy3&bV@?t_@HYf~%u&(LwnMA7aRQ~)u>h50-o zXMur6kN=r)Bhx6xg=X9eVl~5PtUT3NAE87ht?b!Db{3{0fKDmI zQOK(9dQ(OPhV0w4lv7VBfH9laZGQV_S+XfC*-8}!#D310*<}+;e&SgYx!T$;Npz4^ zDj6_eB8FH_Zu>(M_Y*VGb|zNG9NLwaGphQ1un^1xiPD-fe4_73iO47n)sp_ zm>PS|wI$=a0;cv*-aJJf6C%4p%cgV))Gx8{L zBm0TFMCcE`H30ph)Q+8pfUILA%780dy7V;nRl0tPugZF_&U&xOdan)d>O7NDld&Py zoCatS6dgI)4V3lTY^4ff1`#0l_9#*if{>qnL~;j?gTVOc`#myfeP0u)*vmEL7ILQU zq|3Zs9Zgd`h?d*^1PGg^dS6&!7@T!SW|~Tt8B17j1Fk`99Pa{BGgU!U|T3YeLy5!3av6AAje5(Lf75Bn}j*j2&}0yzeLI~OIj|!z%0v%m#jN=2h|*^0)ko*ERCz#ra}FoTU4&fnM^r0j(=6F{#B5xv7!;??q~aW zHjTS`2Vh(5t`+%+$~wUUgGya+i(d0agvm`BQI+Bn_$`zDf@B@PmR4=2GF>VZ8c%OW zZ31Mc=hT;~zq7ALYK8l3y8a`mUteq7b|J3HEeq)?-HB_nw2YGs{Ger&Du8^Ne(@%0 zF>VHVI%W!tU8JoeCem3)u26$Rz(V%htM*X147|=EWc8$_q;lD2^9z7RZK} zBN2#Au|Q9-S3)7>iAS`d8Sbl7EKiw3vM9RZiHAhH(kG;gHrsb}AD(^{82&5RK{d3I z$Gv$ca+R^_l{I)kN7`kmoy6-W0W@G|;wgVIVGTaZ@$JPJb^5Wr)&$5xb9URrG|A?X zEUG@9q{bmR6Z)7p3&?YT91>SiK{>2+vAZEnzE$y!v9*P7`f0eG*zWbg5`8b=yV}{n zM}_l3SjsOhjTRmfJta2S^G!eTkx%arZI-FyM;By(efM|*P&IW=JPCXNQG`&0x=51D zcNaeK8V(><+X!9Bk$L5f7v`%L4Uqbwg94Y}7hKf_7b=Vwb?W01qTG(#*;=HL1>jhC zd{8y+ekM&s3ZDU1Q4Gbi@{tOews%mYhFo9^iDB{1K^$;+4*RYBQS+xGfxUe{>=~Jn z0@vkJP1K4cD@)kiD#)fRANOqrk9rSq5?j%nH)Zkw+D_(~wAyHX6oOs!;eKapWYHkV zW08-#$s;AwJ&Go`<{m!ilKCP~wNKF^F=;#P!BkxZ}$b@1NUL)_6v~Q20>U zSeqi^5fr2HzVVZQmJS9yw?L(n~!@&Z@Txt!njGu(=ug=>*51Q+$Z&t@I4 z{UB&F5Td(j^LAopTF}pk2@Ic85Rnwr27S*qas%+u97LT>VebH`Q5Z|T+OsP`_x&ow$@IfBuTKw8;nQ|-u}T$#K#{yt*_ zFhkH{5`lcF^<}aBx%KMw6d50KZ4Gt=VQFE7o%(Smxj7sD1C$GhvZyW2>22X`_;}+f zyK)6|srs=<>(I1bZAENwob_s)3nc!KjO9**tM}nZdErAH42YVH>)%Qa4&`3*qZAd5 z+n1g2>GN$VuMex?D*G(rly9YD%AjjvN+s>Beq4VH^C9o?zp~G}{2$ooy)sM_K97I7 zJlQB7C{IoiXT%#v!KY}O?s9JZ(dvRRbdNaxGhdPA!X_n9$jnw+yu{}gW^DjYY0(r-E7D6B>p*lfjyfBPplnf|mczcxPrrvUw7-3!85jo>N zH|((!!_^L=uiSk&?Ere+gY;}aevc#Vvu<^G@k{6M`eGZ3y(atNG z>P&!EPHoqd;U{ySLt9z#2budE7R9E0yAMgY&%s2%^7v$2TFP?ziden$(k#~H@RIJV z+l}Ak{{)4J-)Hedz7;wlO7^fdbESl(LE2WJ53EBG5l8~EG4H5 z;t_9b6lr@F+{m3huweaFGTdN^Dya(^VWeef4DI`y*F^uknj)dmu+4Qg6A7K%70JeYgyT#B2`yX!EqI|=w2J2{ zh;fLpHBo{ zO_WE+ux~G8E_42-z#VJ13!#9z*MFG}w8b+(#8cxyIZ%#1Y}Y3S=A_PG3XqXM^$*c^ zZz@P?Z(F2ma@{)_xLLv2BeEi*Q`XR2`gHLnLtB?`+|E1X>!3Jor;rN*CcsGWFOiX0 z6d8#{k&##w8Hu>#JALBFNTi&6Mhoo><*)bGsY*)ZWWi`omK9-DYn+e7O}NqMx{8z~3JII3~4( zQv}8qCUrjLBG9CB2a~$m-HWQIhSl(ms$2M`9}pcmn3^@{*|x@^)^P7SPqnjHgN_Cyh75-{)I04}<&C zw7i1^sAhQN`F@v%DwTWuK-GcM)SzG`gFEw&IP8**b$l&Pj;z6puJ6O$Uk~;hEiM28 z^@8w&1@3b9lpgG>#~i;wqS!0YrQQqMc9=KW)eK$qUaG5dY;Po-Agn64=vN46r&^85 z817@e;XYI;Fx*QZ9y8qc+8aAvhP!GJ{`b4KxMHv@hMfk|F z-ybmh{lS^ueqRyU@AnXqWxtO%^L<$as$j`z%u+p`zRsKP;!wW+3-diT`R8hAFyYMs z&aJOg)u70XU!5AP@t9t#HcE3vKxCb0LA7g@+l@GC`~Xn@9MsI=$au-4)(% z5U|hO50<>Qr`;{9y-YR%z3eC6Zy?!a)Ma~iSdiemjXc)*avBT`eCN(yE2lvbP0Bb8 z;t>-?P6II*Xd2z#ou^&{%q*t?OeM(9X1@ArN>$GZ5;Idip2t8~fT$$|L=5Bo2Jg}!hWio{h;|P99R+6m24Xb* zN|Wc99IuPQXpid6QHhszD%zBpDDu7f4Sr?%E=={LIBNq~@$LZg8@wQ`vZvp`E+{j< zfjJn=Zy;4M?Kj{QBqIsCQEY2|gSBS#taE4F_z`{s^y=U@m{}YA236)aDEp861{z2> zYxJZ128+Gl;0yQ-nqZjT{RQuTw7=ke^B2_7JKbbuv9ptW`1DA(IDmNA3du*?nb(_ZS#Mb@LcBE4_IPwkHiWOjHdM(;fp+ zBdV(R7$|_pK;#^oqE(yZoNW#S@rL&pEKGY0EGr&^xdx&vg#*92LQaEU1*d`JfW`ws zHISq#6@`=t56!m5K4Ickw{RY}o=BE*R^BY`zeOmeM;M(p|O`;)HX?A2cK6HJy z-8kIK)&+`Wc-e~GXt(j1-6*rr?8ev9c4KU6ba}N-h}@d(IMG~5>)cT@wqiTt!Wx3@ z_*XhfTA#$K2IC6t8j{d90q$ZqBe`!NO-3IO+((|VEX(rwwEQ9%YDHNKM$IqsAq#vW z12OFvc^TkghIibmT{C`>Zz8j#?@GpTqNDjmX4^E@R{bKWeECJ*mtUlPOTWm2d^Nv_ zCfV2GLiP5Z`A3%Ix!nfz?jJd>i#}`tYn7|Ya00d&C$IszH8$;3Itdwh(lZ(Yv-~3u z#_A_P^8b;4 zXF>a^`3K;Vy|cKa8G1yW#{07S^FF_L=DK9}YPxBJY^DmL_1;S`+_jzOEq*(%q7Xe{<93j=%eSM-$i4p6xE^c|P0!5Bvq2Yy|9k)}r411<8eBF>;CWf3ue5~o4?>qnuK8er2PdqQke{kW-(t+f5E+Qe`b7%?2jJ)f|_W& zl*7>1j{ejx}V^xO*_x^`|g3WMKwx8f?3jFwf0&Ok% z5B&tEAz|c8_?Lcy+1uhL*d$AmDYUOo+a^CjO?5Xv!AbumKf$)GFW44;K@VA3aIu$_ z*GpESdd%BlE6#$?eH>@OyOaO5vtT7@K8~~CbTrOhoCS;NKdI83w8bF9Teh=cpL^si z_>H+z5D7Yw*3@)xv{Fm;~11b@|Ap5AWLTgG3|{N1hi3%>EB)WP5{ zSn>BPmGzAYk-uPHrD4$ScXY;I5F_rR{RP$NPg-Bl&XBJu`%a!L5b#GF@xo45*>JJJ zGt6(o%dEnoK8Cg2{$*}q1ut4n;OxmsDS9$QdXW%aypmeQ&B?lYjE<1KCaX4O_9=4qfOcuI+pIU%Gh&mi1heuet97 zm`>odI2^p1ZHOw~Vg*4C0HYi%R+{KQ%_~p_)foAqaB{WqO+Nw0c}~${e60Z^pjmN! zsV-}rCgRn5NmxQ4Q>ee^!e( zwNqFN{%h@6D>g{`rP`{iBGgspn-jM_Rlm5~U9PpO3rNuAD?CKr&nB>$R`%yFVZqx( z|E++~q{vmgXjVT~ALp&C@f$;jy`i=4ZE6!ahim?PCUvk*Hu-lub!MuaCbKz~xEDQq zL}JN^!5{iFWH!d?{k+Y!TFE(L@`s!u!~8GzYL9F@F?Rt5rob*60>1M@sdlw6de+?KQghw zVFd)e%OOrA;{{yvqF%H^>N_p=jFs`mBi>V`Lpe=oG0E6&QmHd4S3n2;rVn1G`z1_O zyXR`NqA+hNE>E#m3s23%L;Uj;RlI22LGebGC=nQ;f1EG=G*&FfW)e^b3%n>N0JN1S zS|omymb>aW^0Pd*#g6>kRr8g5J{}vq=cB9u+>XW4KYFvgxaF!n)9V`mS?i<+_Ft$q z(tI0l=gWwMi2XWezUVm2mFR#G_OWZeCDoHnsms(B=uyB+nYROW04BJ#@YD5_jD9=I>CB_m7kbBzQDv+8NE?>FlH#f;;{vPyn%-x;#Bv z0CJVcj|Cua2-v6XG(`{R;4Zi~Rf^&q;Ev9hY38iEWS@VBDPgsS8z?Y$Y3i5ha_Opr zoOXJ3(F)@sqG*A~CsXQLsYxQ;xvj@PtQf+KTz%284IZj^? z-_sEvL~B^mIj6@H)^pK=URK=0Q?lZAo+Oh#p~X1Q*nNB+W{7v~Gth{R$ktDC=ka)Q zxQ0sMp^iAUubC%9?@%7#Xzj*$E;|;HU-~8q=@;ePgPW}9FggHV(}=_aBL;uqhf!|* z`z?ipQEbHI4;V&UNTXqNWHgL+mKMJjhS3A^J4$2P@AB`lEaT|gBZ?om^z+@u(WW0} zjiVYsrvO2Z0d!>Y;!1{1^}bdS7V+e=$yog<_+?IPJoF8rLfAh0)tIe2Z8@=V&!Hoe z-(`>91FSP`DTkznlBv8go)=%L)ab3A63ZrkkQ=K%fI3GNuO3%4s`0okwkjl+m+E#L z>+TKVUWdQ#$`du$ej|u^__HPw&m)y_DsyA}`KE z(}>#t10_&StLTaia_IYjZN0cc6cT7qyDwEtdGSNzK3g`Jm5p$^ib}jTDzVHhS-)xX zsKnc4$!X0h5G`Y zj#01WW$pq=-X;Yk>I*){>JNh8${P;|eUWmjNGH{WzSynE5T97;`(lRm#mMB{Dx*ht z#H~B#P}Zp8N5_3}RO3kB9p%Cr$=x5;3PCa!!e)W#je z(hJ+^l16+k&FqGF?K+AOuiY*l@s9}cwiMeV{#_w{6x30kcmuo^sCT*}9tAJLdY<)_ zu>QGkTWq73 z1aj{4>h22UaCenY1ZPrM0J;mgh!|lpPw1!eN`VDRYwXGCTRb&_w?lSSiYtCHR3Z>8CtWXI{J_<_+x@Ls`W%ttb(;OauV@3BL>4;O zQ0ZVpwW#bk7TO2s)R-!PHdDod*J?n@5hPDvt&5VjE{ zIXn`YV5R?#u9-A!43m`AX$pFpdc@+HmFab5Gcx{!uGmza!%rQjKMq!g>>isfm+(;H z#5XqDG|upQhfn#Vx3V<~M4Qjt{SSCMTs-G)4*@mE-9jL>n`ZvaWWj3L8{EXMn}i90 zWH458)eyYQO0Ak6rVpS%m^R|@=#MAb?ASq}z0FkY&wD-V++$)z2efkT-~kK$xq~e_ zcks#7Ibr@wdf5Z14LFGCj?o8>`YryJmG~IqL9}t;CoCnJ(NFJ^qS1R%^o}60mFS|f z=%eT*dT$Qz#(yU7Qrz`}21Y)AUG~4Mf~vQr^qkaX=AE^}JjY%9?~PMZEw2P8sFsuE zbc3)uE=Uhjsd7%C8}au%8kc&9&m-=$*GttPQZCG-?5MLL-Ny0Mt#VlV1&T{!lmA9; zk)_vFus19WhWm6H(jcrkytv7&S+p}D1dMjhw*VaB&fv|Cs%i(#TJzG$6ZVbVF-4I( zhBYq*P%WP#cTCaj;EpK@?wCo7<=g4D!o?l^HT+GYij2QKoABEO=c&KPV|AP+a#^p! z)g7%JG5!0R{@Ljf-_SHtLNKncBk)me{HTWTXe1QML#$&zwgz*GS`ZT4GS`>aQr*OH-uqQYli*wpH2SGg=KabiUV$pLyDNODQNV>j1tWv9sfVj1 zcvO^rk!X@Gv_N5S(xhhwMC818f3+CMk^5^Esl5B^xu0m5nD0H0RH`rD2`0?e5sDmN z{y06VFA3F~Crmx%hCe0J#Zf{fsN>b-0ywW|M9#0jlTdyqwXB8jIzX8ts)<$WZ3|Jm zvJogzS<5KP`^ZN3qjS>x!Nm}cZ|;sSd(L5HOBWE!=;QR-b*Lx8kDLFH8is~SAh8iV zunABUFvf|8>$EHpZ^opwznUaK2^q=l?3Je*WCt z_5S?d^;hkcX}?D9$AP6kqZ?N$7q9gGAfbx}3_P?jc!Zu{T#NcZ&Eq&h14v{l)|frP zdxBW)RLee-l4xS;qgfBu{?)*0X!~e+Z9C`+p{MX?3vqe*~cc1!+_XRm0s=r+N>NBn+Qs z6t;jhUi{e<^lc9h(2aa1b`d?0_5e**mW&7JFyyGwf0ll;BzE22y5S%w;I3*P&0lx| z(wSI+G|bK{Pb@;U+(mYr@}QvC;6Hp2|KT#cx%dxP;6KE_wA6-J*{29b`GM$- z*pGAb;K3>HVMb+;`ucGiWH`;q`+shUMvW&<^Zp;nIy;1v=6L^4wFoy$4wP?i{VB1a z=y)Jusm;%eovYQ`rdab;PyLj#D(hW^M)5V#JGM+SkwQrWPpIB|?%idJ#oR#<{Ba)% z0uI=R+l{&#r<;s2H;^~^xU95VUeH-~pEAV_rHV9Ip?LR`OL1$=_1{DW@&W<+@T|1v z3L3#ix+u@6LA)*;2IBQM!p1@qzp2huLsh_3efMd4eiP zVS0R2dHW^ihq1=cc){R3L4G`-*t91|-RP%7`gg&Vrs~II`?o-`XY}v{t;PX>46tU? zA`rI@K_)mEXBq@$?FV>ng2#^`PkjUb168xWevhv*RGKY1<&GyTm1ogky_mR%r^LkV zJV`c(Wb*$s_Z5VGaFw$75)?9vZ~94Zd?KF2Me9d6_E^$Tru*TM?C~N;mO&>?&B)92 z;6_%7`s7_UpHdf{&R>Xq&7tSnXY$)v8j{D84SrrlXY-#$S~-MD3%y53=BmmZu?f%6 z3*9_J_ytNEIT%3)@i(f3k1@l7XK3-IdqkxkC zSJsbAo>zp}5J`wz2JzIEvifgeE|o2OX?w}(vL|D>iVi5?CMq~Ov9O%(Eg+$shIFD4 z;;830ZDz8NUCeW>5ZoE&B#_-w`gTrY2?<3K;$zW-etK_;-tjDaF)i3`TcbgbzR^Lf zszX`CzYW5iub+1k*d1`X*lm#Y zFJhycpI}M%aejPe1McTFQ3K>vYF0Jym=L6OHSYe4JGe=t!E_fB$~~ZGwtGN~8=G>z%{Z{z41WN}5T$67`~y#ze_-uT)fAXNR z(Fb1i6Wkk{IQ}uxW2IMBq#o3%@+hf0o+=wZs@x=C>S7calglQIQ+eRUjCc-LX^l<3 zllDc@TN~N7DW~%CVYv|HfgcU)9xnx#4lsQ`$LfG0LW;~2FFG}&*y$|BldfFu-{{@{4nWc ztsP(1zt6=Ry}WU6->!DZX#UeFeg#Rb`^kgeg0FE;=_@+u{dU%6*ag5A_InO6!)J>rS~5iA8?Wx(v%US^#An#L zg*g2*1Z{owirMd7A(`y=7QKsHx{Z+^aq>j~k;Z@Y@|C? zL0j7ILbV&G)7MdI1w*jkRqdAcyR{tD_F})UB7+U%>Ixgi1){rrgPP@6*a&xXs6uqu zqQ>xCz*FP6?Du*4mTkX3yDALnS@yd!diz~j_1kv)eSOw?j^6BdwO^DI+3z_D!x}H0 z+l&1^WW6q;4bcFy+liU=8&UzA zp~~LZZv^{YVnNcWlBa&beh)51L`!u@pr?LHT$A-)oAq87y<@`9Q(DC7Or9`dSi~`( zEqNN$OcuPli)4W};f=r>vsQ9=1Au~>tRPwOaf+uzqsa)eP=kB$EVJV68+eJVcx91* z6!fyk$F_ zr#H-)ui`zLUi8NNJbi8CtD@&ol?>6V2R9On8{|$Zod$DsuUy8z-T~hjmiXAV;a{gPwLg2QO^Rj#u(-cKqX{ z?P_1+}}20Kx(h=tx{G-;LPU^#h2osKXou9j$T{{L>r-T42C(OTWM%e+Sdx?XIR(Hak#m7%&%b4X?eeDo8sF zJ}1AjO!mw=QTzzq^@^`?DDL6IW7ph?xh|-J!ypI-a8`r-%n=C5)1_G4TUZBjGCl(> zzWCuNFC|S1MW@!7&!CyK0$>L>iZs~r;&u59^vw1dNIt}-Y}egqpv{mOpTXZI%V*F* zoO}jdWKh?sPF-UELBjhCB#+X|3aW3BkfMKybf<=ZB%V8wKx*QaZi6Qz5+b+zKuA4u z8^|V+Xw)zf+y=t`mTrSDMCakKuAn!+!CBq>24jQYpn$UUli$Gel19;?Ay)6=bp7-$ zf{Nb764ATZLO&F($ZzmgX0AV0KbdcmzFzRLAcICF|83vF_r34ng2;Dp@FaW(T&A|U zEU`Sy_`k@vNTc?igb~4$aNqIXli)$|o`f^IdlJ@1%K^M6q5FD(UJkeL8il*`=B!RX zHw3KHM_WMtuW$19X|4wt@>!e-KkNF)^#CVK%UTc6R~GsKQnu&+)(@O>^@RUw-Svwi z_rXm2w%XP8mu?r@JJ}KjBA*Zf*5308bl|#e?YPzbvXGhjnfz057k90HQw5c7Sg4@Z zEloyh;v2`}XGpknqa2*A$)x{y?>tDIrDvlToNha-Q!bAMWD3{4_dGvi4x}l6LcTry zVf`4Ip2pJ_ColfYI9~h;S6*hDHpz>hY~aOvge9qmiY<}cMfRL)w{7WM!2;VIvkqT_ z911ynl_6K4RE=Rah=HvOV9>*~hTs`@!nfX&XS-4!hiA-*aQW4&M8}yh>_?a^u${z+ zev*D#5fEb#8OQV(o&|qPMfR!y%-yo&NR*W5ZVE<=ahiCQgpy`-$%n6$HBRvNH~4k`>)eCKMRub< zJn?UYGxNTeG4K0NKkqB50DopTvM^3ZKR$n?w;M%Be40@xczE&ikN5<-&HG-uFENWW z=etne?zYQzm3!T8Zdj2jfps)4)8>O{Gbqp`Y*p;XU!dC9l->ECY2JB*H3F@+DcG+z zc-|cDPAZWJhp93uIo?bH>r?fYrY-s};nO%-X=}G;15Bb45|wD?<#w_G%i87iuqu8h z&{y30x3SMrjCR=_{MOgG2AOmZLBnd+GWDywXrz!iUW6?ViNSG{t0dM&`B>$LrNw6# zmW=;{xrRZCn{bj4#G&{@j$Cu)z?=!kKr&KX550yhCD-{FFO6_2OU89`DwidmO?_65`$oS!Q|&ut5@P=nh`{ZX&mf_D z!QzP}x`$|qZZul$j-49y^Z7^7&k@YCX8CcUeuqtVQBV(m?SE0eMh;vrWqZn3EwSC2 zh^_w9Yc_cZy#*2b*~`6%eVFGbFJcE_RY`VkA!6@u2qN}$)!U1REy?*L&4?g5&7DA+zIA0JU;nsMuk!W9x~QK& zQ=BDVj{s(=Wrex_-<7Y!|Ikyu-gT*$uNRH`H00}ovaQJ1GqBZ7h5eBFKRx+6{Jc+G zzJ43_%gEPFt3GA)wa_Z{+LmznGD)Ke#I5yPq8PKa{WI z4(Uz4-ui#N$=8|0ZiD{%r5|R=*KwD9gnW(Fd?NC->H7bje4Q~NlCQ`2?Nz=`MgaS9 z^bdz*$=7Fp;^ph&_cr#Xzsm0$8!SU;Fw;HpsbZord<4%U7*xP zeQ}n2$BW0Z!+XlP7#wJ{mCV6h+pJH5o01P}{M^8t#){1bo=zH|5%rX&sUU-JTm<1F z`Hi=P&;Sc)&H`l|puBsL2jxEM(|*x4uAy>+oXnL|TCOfP2=qxv|7SoU>$MYOZ+$=U z8m63b(5NviyUssjgO+>n%AGkKa{Y$3t<^csMH>t-UY_!ZN?Pa?5~;wMOmvu!m3^q=D3FK-bxn`D-y96iP$GC7WH?t9Mv`JcSl$>n0?5yleUhMzY1G! z@?5RO-@X4syWo^*S>lQK&D&!+9Z&fL-}ebR{*j&FArizVyWH_7x!d{f8gGr|q-vmw zj^FrP2l!lfcFT36immer`uPMix+R!E0=I4xEZxH%T?I|bQ8&+?EOg$@S{&3e|^qOE=rA z{5WDmKlxt;srDlH>7;n0|Eg3KA(gqSBq>VV->&2wG8_RaprN$zJbC3x>RZO2yMzG6 zA!FR#)BWt}H-STz|0*hSza>%uwane10BY)9h~d~>buaF-zBem)vJIgY7PYL?d2p3wK&oPT-XL5Ft23poI75JgmH^l)5jJL)eXTk z{8xsOfUd+k?!Q)Yq%|AD)#_jC`{b6Pil9VVQn)Cj01}f04XY-BuCE@pQr7^AhgyEopc2I&Cwt$1}In z3n-OEk)lL$R#PIOL4@2j2TQB<%jansNmU&LP{LQ895qy_CMp$(ofAG*D)JjdQrZHG zn-MOb@+WgpdNoP-+T!b~QHIZkQt}}g4npQwZ(fWzR*{Mrj{Xi6w2$2EHKdha!><3j|ewVpe7!*96BP& zzEtYVR}$j3l)L{;I`9;P4ezZ-^bwR*d{-}tMb*C0gVH`k3JOYi*^^}LiU%}H&Ua5= zY$&&MeoS`@8a#8CTrvPYP1y#v7gU-Um%6iMT_n>=lS5tA$+?^)wQ=0nhdq-Xzik!- zW)Fn`_`7Af@HE;Cd&}0jJ^!(@E_WJ%*ZT>1tib*uz$3@)r2u%2yIt+g zbGn?wu=ILA)1HK9GmLNQSeTEfi1=D;Xah65N00&TJAd%ZeGll#@bqgI+BTkcH`j}e zV^gkVrZY8@KZmKZhDIJwjdU|eXc!4pL=8!k6GubfS;*= z>^!Msd)DYK=~;;@=vJ;T&z(TBRA1Xf&p}2Xyt9$zE=6sr{*1}IEO8xC%$GGs%&gr` z`e!?Zzalz3{3JguSmGv4^`pifuV;-KV~JE(+Ng1c0(APT7Xv;%=A%2k5}sN9+jIQZ zAg%Gc**J*dlPA+cNDu#l67F9hZU2I*?q6mX=8)Ou>+=1}e3OX8-0S-UwSHOX8!uXM zj}uOwRHUi6RpOIop&Ud@=1D1N;=8$xQQ4&iG!vE@Fo!2>_L7n_?hYlnetMTnJbIU` zvUjq!@M1Gus@uHb`QH(TF}PT^wHiG=T3C|v_QhjVyQElpsaB6$iVN#JJXq`sMu znSSY^MiFYuOht-lLPBwuerks&Ex(RRX`6_5Et9)8H`EtC#k(l`X`ag8Yk46L45s7; znCf$5>pjC(xkX7e26z?yZAC*CLXL}Dny`TU!3(8P_+q3~SkI$W_?~C0yzlv75f{RJ_aZjdCB zvQ}A~-`8UD3mj3E##J5^q`|kHM1)L5_?8MIE+6T0ZY+P6U)=&L@)na8_ZSDyOWW#GCTt3tf4(4pF&ywprRrUqZTbV=KoN*7T}X z4C1qUrpPz4BGg``$R#1NIz-kg@-IYEX`SNKVE`k!(msx z=SBOooTdrtUs7h-2Zx%L;yD6M%VV*GhuXJ*oYGG0Nv;aTQ+7996o;^9R77t8I&c9eO5~w#D-TC`&S@C2w+gf=xWiyXNfN96T%aFZM-d z{J_utA50cqXrZ5I@DAO72xO*TF(XdYpX|~*SYRcP_Xk3omUfR9dD$(I;TMY@K)Hfm zX_)1v=MS4Y#{A+(e)cp^*$ttZz5|G`b=fM+E&$WrcUTvrwcub8t3GtN-_qDr>n(=T zv#E}Czb&GBl@d>~qz3bm9G=lN6Ytz<)64`A#|vkxKrm3Z3D2~uLD7U2t#DHaw-a{P z%+bMGY@M=?EPUcw3ht_uNO(KYIJ_&q&>b0@@>Ly%)p)=MLY&lua&j}bY%Z_e^bI)G ztyp(9+-c8}G6A4<&FKeE`8*tF=F zc!GvgK>7?e$)!4F1vypa$*~j`DS}viQUsqn>pk17SfV6cpR2F=Ct#g!up8vVt3V^_^Y(kp-&6{xk;W?cXk?Q8K*bB zsy3^uj0t$kr?iYdVxvBL^4mYW`ip5g>w_1ovd^O<5Iod zT5O#R!T#W9^s?CC{^`R|Q>lrxKy>g*Jo!`YdZhcuyxj5qwEdIp^HYtMb{Iy&QY02G zO!XVKjK`WCC#|Xb&H=ylf!L%qIXO$#S|GK{uw~Jz8E%WSUgdtY2eizjGdAsWwwm(Y z8oF~l=i0A!8^0uBW5stg8tV)ECv9>6Tw@})>p^|JI2WcFg~WVPBKi?_D-YJ9+OT)< zrrAseL5N}VINdYlOj@b)HN=ilX7RpcK~xC1bZ=5l>QJF1;zyz0n5jy@h~?bsD_-B6 zdRK!x44@MA8@5p)@xFek99jsQcv<6hMloRov}6t}Q^LbtVX%8eBQ5C@kGe(oVOe_V zt);$_;v5>*&LcKum|06fQ(%}nmjZ3TG1@@qN~>AqlvWgJOOg_(S~!ohb(?uUg*X_} zGSf0BUnW$#e(sg1UHP7+I>i;Fo3>qbaz{<@M&`~eZ%s96-7q~klTHvcb5uK>Xqp$; z>89@!ZsNNebDFmtqf7!_nY?Iq%B-UD{G zKskxbhRvNN7^2pNy4|&;OyTXerC`Xkj$pmsDiQ>>3*7-xR23_Jhqa`hP|st)e%|f! zt~WtU4g}hE_g&`qkKD;qwJj6Q;-`x`yhh}HVPCY&be)~&9}Jp$MZ;EeK#997Th;GeTNLZ{Z9WLaPyESjMFfr z$c66}_8lq0ciF>CLzz9?Mp*XnDxN5IZz(x^Ek@N(?+dctTcUT0ZsR+!%=Lc7mj)xz zsHn{N(PqMpYdF7cnDo~N8Dp=;7& z5!M#=uzFFGp1#*PNrF1fV2N<tn(0Ju5392@3VmK3nQafZ@WK3ysCMdcr|?!NfSwYZvWJ@} z2P%%vJM()@l)ssHxBm@Zn*S=8#5j>iAIWv@an(uL5ZI-_vC(pXR0Ep$R~`-Zjzp?4hnd9hm`QxvYHt#w z2y>+LJMPb)_ts*yx(s@BG|kl#Nm;caE{~^>!zW_vd??30qU7qCSR}~j2wO+^yz_`Q zt9YiR^Cq8>(i}wu;Yy~V1Z4sb;^}FD7q@YbjNQ2``V!Zd{+CFMzT*z%GFIAW0*Bx& zOw$0Ir@R@q!HL36Y7t#YPI0$A$yG&D1hHX{?^WTue-hSr=*H(WVN~U=|DiZJaOv)+ zX6#PRoMrU4KKD{BTLPvfTykh4%=VRCkgKix?Vw9PSu}@XA*p}=X67c_j0`|CH}8nd z&8Nt}C-EY+huztq_o7i8>6gp@9CK4;^!?I_19N_`9{Kkx$ejZw=~ zkT9SjH*F6*WkpN-Y}3DGY0HzHFbiW-cQ$2dwM*^MhrVUCb*!>88n&@Kg_}Bx!vaOz zsIS^<&G;01>0>Q%R9PcrgRz+b1Vt;{9Ks?n*Z1e%`1CzC-{v!%IV)8ARq-X{Gr02@EBLxV+Zzsws+U8ANgXh~>~XngV&=6|ZHE(5YqF0GxBLuSLn#n|?mhje3@uWsx6c8G8v7c?wDsizf8NI5~i| z0;h4h^N=O6$&UdU9oJ>ns_%xm#?R{Q_a(8cFQ85JjeeqJ^^1OVoq7@`<=8E?5sP(1 z?7D9e7tR~D9?YCDZ0(O@ud+8Shbroqt!(thb=FMmdsvV zW%lZqJ$)V+of_AGg>hA(0VSvK*8i zn^K6zS;``pF|qn54Fm6tn7ky{jiOL>vDmWo@S(BEeQ1;V%Q#yv#?Prn>>ZCENTW&) z%f!pBDf!ywj+-#0Nv3;)!(#`kYo zqC@?LOQ7sg-sW0I$Le1Oa)@NiKMqte^I8~;uFS35XHuZK!D@nTz7hI|;CcB5vZCVBJs*HW!F?UFHnuZ`pmK(Ex` zk7_UGbi3@`7nCu@qwZm76Lm>z(1sWHuC@6;(@rFl_NQEmw! z38bhLjtO(GQ&8%|VBD%+{rt(vbs>~$27YM5WEt{AfC%VjQmQDEX^HiaXN92oxq;@j z2C=r3Dtxf+gJ%7993Sa~; z)RU4Tbwz4bq!p>+F2a(W(gq_fN%9GMI9R(hqD6^_9ID8=5MZh`C|@SdT+(Y$1vD>9 zZ~C@^A4_j?2c75b;ei=@*yA(xq4ihLH33?U5t2;@1GO_11|yYJs)4VWusixhOf@2h zTaTbEDG`}Wi`rVI6<^EF6l#FZq{OP^UTb=CR92>~BuXs}#&I_6?ib2QgR)_B#|eh0 zb)jzdLt`9I4#sh-+vnL}9RDV8YO9MyQQz^#@p)BZ71@$5G8h_)5Qmy_5*MXs(O*2| zS{3D@g!ZiWuB`VQ^6IBr^0MAlW)xo$-epZm%@GczW2#P#LNS(kEu%~~e@eHxW?8%9 z#D5KJCqH9jUHDavUg218pEyM>``T4vV7vv2k|9RHuvDoBAi}kX|bxRF-J5VnUSAp&1zvC;?-})*xZ!rZ5rhNlngBO4MAl zfU!>GsZIpvswg+!Si$NW4Fn{tv*Jso#K;kv?!!|G3wlspShS@1>Wq{W0aC6?F%#Sw zl%81JZBzWf(Xh4I=)d=zjaC~3w)jv|vsuLv79R_of((Ek#SwwX+~2Fb9e!r8!_`k_ zOFb|`cK9|Fp^?xk&zh&UUdx)N9<)M6IlXVn<~ld1pEt@)8;5qqobJV)%qVZ515B&2 zCk^8p(6-S|9*z(d%19y9seFGTpMaQ09JA1~ypJ7$;fS!=WqlEjL^DLp4b!k;I45hH zrCd424$FqGeMWyroA$})s{oKuL)v!U<av{~vqP-uKqMW^;C%SN3u!%qu6n zX`h}~ek&o<-p?yv5=?vbYsRz({U9OCE00ogbv2P_u!dy>8< zA(507o-}*iX+BxKEMr|yNtQaEHqMA+OO)9b7KZuc#*uzLIj$tk$EVWs$t7z0um15d z=92}f9d*uAW3I5OpXksqOPnyPpODWhoz8snOfu*yCFYa&BeGnMhp=1R>}oryC(I|8 zal-G`=aZNC`D6(q)ha}Pdh^Kx8@kOWs}-5~WE_?$!??R(BJ;^hvBE#_^U0-&wR*3g zMN{Ecn^Imf&70xk8kKc)N%W_V9~8;r!RLz~sSvU!yJyz-S4Sq^ce z=at(@V$5bJW`U7E07>)89@(+_gGnOB+lG1NaZ=K^m{gz&9G@op&COE`x?xL%hO5Xg@Q^^DTRI-T|fES#S>rHTps;UzFW^HTu za0eLVUQtL3c&zPlzux+6^8d+f0tNFZ+Fg07S1_9uxF`g~p6*Nq7`#U73HL<0iBzgc zl~R?a@&sKaQiUW}%+6j$Vu3$TPa?6i)4CRUSB2;TH+iDhl}@2mk&(@My@Z1FWqQ&% zf+9!c8){VrX${FO|E@Q(N65&YVUx}tjj0`3BrLJnA{>%eEm2-83*feHVj!Q?0q&ur zyd4~sV9m;^{a=@G!dJ3O2z8^*NR<_W{&fju*)VKNj?|4kX06p;x1EXs3E53>fBv!} zyF=wx9f@K7t@NyQ;vc~5)zB4&my%r*6?#DAJ?n|p|vTUg~|pgRA; zj2tf-3-hG>V5biXN>H095Y^A|J$VuX?ju^t-6le)iUxSu=Z^*Zyi?_1pLg*j+iYcL z7;WdNpWa1C(R)GkPI)y3wJLO9?*~rd1FvYJKnCi*_+G!PBp>LQUGr1cq6USqhq9Z2s6SxH`uuB0A>*0gU=sHW_9o0%$;@n8Hop0uY=A{=aL6lhu5F+|UBrAL* ziJtn7r;{ck-310DTUT6*qDi9`yE`n6);ScHc*9s_Xa?H)5`)(FB{R^zFN>nSEQ$MJihu#_AUtt-}GStns_~X4JN*Et&+8^MLoHrm;@p z(5yVrGgP?DZoRww+uPa2@+Jj2tA|;T{BIUWHJWZFfnR9FxjqB#KSb*BLCa#(a`R9N zVkfnb>hxt2+OsL7G)Xm4+30|A>bAZr0jwkMIoQvu^(~_myHNcuKpBzbSg!oTjwEiF zEuqr5AiZ+|d3DA5SQ0TGG9r1ImTPKcEMe)~ za@`+3kV^sbnK5`YHu$8@vf^dqJL1KQt}cv|B;L5&O0REGWgb&AY$hJPjE;?S|MjBr zuSxMPu?wB3PaLD()fU(N`fr~zDtVm-oU+Dm4rT4xsN}Sngxuk;Y}za?xD^Bd2%4c= zb`_U}9DY>nni~^6Xe6BNNy;1pCYo6AE(v`%A_FP=s3;d|5JM|HhPKV@B^A3 zZPoJN_Sm#yX^YwOqffmpbIdOfzSh&52qpCvDAD+`*RKx1Q4|uK{)xZ^OsxWJsQ_Cd zz+7zFEKN%Wz--;}QCWaBBF~HH2?Y5d9%YT!%>#`>bv4%%sY?!|UG#((G(vV`ec@e} z<^@>XkbdC~AYHo|HCWa0O%hnL(Vca$q(@Mjf{b)Ke?gH!dLmMmk;4^}GS$W{s%~w| z#?7gBFnf@=OWYblytJk2Dc?P=Z|f1O_U(b_+Ye-nGIPa^(5)J%#*XqjRRd(>&QO5r znpDmD+r`(?yW$~@n(Yp^G?I4Gl_$2Wa~@%-$qRUrSCT(l z?CM>>>!CRg95#@=}q}6Aj zuskzQ@Iz9Cd-G&~W=3?XVh|42gO`WT)o$~l-8E6O9jFJyp2NeXgjAGeFK&K6FLYXFtm?NT@$`K*fMz|I}d#nZIL=AO&|3z~H zehS;GIHb_YoZ3_vP%N1k#I{P#)u}XSKGThNyed>qhtMkp{=gd2M;JHB9x4T^;x_A< zIaWpJkrhAiLjP|z+Op0`LP6pR>Ay5K?FO#^q0ainmFjlEBod9VAnc&wFrq2aKnv-?0MkN)#z;MHs zz&cCHWR3Eu$yF+#nSfSP){;zu-Vb9&1r0`LY=^N4#>S|Nu z^bol!L^?%YMkKX$Dh{mI33oKDi!cP3!^0h_d^W{{(GD7cVZJ}A_jqsuQr&MkB@_89 z*`nZ!@7c8z1y*K8t1KdnT%}l(Rn)2&v9&#W(JF_A@BSII$|t|!S-9GrI!r?Va>hsn zw{16t5(MoZ=pO|x-P!xx4l&Y8{h#o0YUnMe3YRbZtcTtZn%yc!^ zgp(DpA=kL=HdDF>e#$dk4oOF;okCOM=}1p(>Qz5PE$oaXibOue2!=H5%1B4+Gbnkw^8UDJ?*z_jBle(8swyxo2lOKuF!uGMjBD^ph zMY0OXlLu1Li7wnli6ZG1KEhfp)SOP#pptszOr0oQi{gdys04Rwz>6J!s&qTb}Q<3}i|Fsj?@Nd^}-Qh7$k6*yCRi z-u`7)@L|ji$G>=Ip9IJt*b0rPEb$K=`_w7Is})*hhH~uF#-Iyn@RlxA#FJd&JgFU` z1^x7{5i5Eh8oeX3)E9!bou}Jw6G}P7n;FaSokv2`h7jBOz6*D%ieckc-x@LgP`#3+ zjqeh$(zE^_d+!1tRdw!vClDYiI6*<96^$*nL9K#UQn4l)bfOcD^%h#x^k^ws+oqZb z{%avLL70xCv1*I0wzQ>c)mpS1M2mF-2tm9AEDBa_@VbVG1{FxO%KQC2YwyVb#IiU~sE zd%~@sD??B~rE9=PrO_qHrnjE#S8^^fZqY?J9YeAk6v_H&`0gsp5#z%F-G_N8NX2D8 zw6#JC@@s|t(63c-xK_pCT46t&&!Qn0X_GWr^~Uqj@i-Sg#Sfsxs^Y_zT1Jl}RpEBJBku?m9^O>ConC$^hp*#sR4~ zA9^xBB0nJWSO>B?;4Y_DwbM>nITouAEKLIs{WQ6?+5M=ZrN!1eGa}whu|%br3M+#i ztLJ0>8pGP;6hj43t01VYT7f5nz~o?G*9IgQGH_yaQBm7!=Al(NSyXnpk;84R-RG~B z2MS67L{P^<7Q)Ia2y>O-wId5*M>ou(l&b5b2bGCoBbh6Dl=nE%hT`fO_q?5vJf>eP zS+^qp%;W(pgL?<}t(>{C?r2SPzi6^d7C(5vyA_SyxzqL&KiZubvjy@gahWXSt?h8d z#;9@R3sb(Ni}Z0jCdcypSjo2f-!rG0TOkJ5&;g0EXfd!HBHcuKE|R1ExW_Krww=p{ zPPi~9@7z``YsA8i~7#~ zw8k^Um-9@Bz_>G(jK&(vBD$p`F@Rw9uAg<8#*2hQeiqPP6tH#~Ol#1I8n^NUZ$sP^ z*btRM-Db$D5rwjH00v?(*F@>Q4S%>O=eORNIM;gnfh6QPly%WJykOa-CZHEn6}dN& zl90vz5L*g__+COTr94eD+Y65b#YA``;ozm_*5%>WE{xZR&Q=|3-$8R?2)YdU^i>KWg zeC!T@Pjlm_M1j|EPV0Ez-Or4=z+NPRWACV2Wh|+Ym525lE2{t92 zzM(Y*Ojht5gSRV0jIV%5P!;Fsxi6qM$%((Kg*4j4@T%OOr$A@o8|_M+ZddibwW|TC zi9xo6ehT9pIgn*@aBD!%c9dIN>N{j+N<|uTs33#$tG>~L^ZG`xL3 z=)<;mj;ijkv0je7N^r zN#2{Jy()88ap(i;Uj0P01Wr@`dT?n8koQdyP&Rui_=}Zv*8ds`WXeP>n4r~zfTP>E zU%rcIeU!3*A^3EJ=+!L3L!8 zNppX@Nz$I2dz$Hn?W8I9*ud=CeXVZe2qfv{GAGWx58?SGnG+$!E$$|QCOu>D*v@^b zBz})Y^oez0Vs~Ir++Tw9F=EF1m3V=om5DO?Z*&F2lRisF5vl+DYrng1-+lUx=-guRbljiW&hLBvT+)Mxjf83K=Sw~_c{}A_upRjq zZsqbXXi5HMUU)Q}Te+x(QVT+JCA%fW=&qDSJhh+Sswb<^ZtH@aN;t4qLaG9Z$?zOW zyqQE;$0uqF!F zVrAyuyA256ZIAF=t*@3ZQJPT-f*9P|$L@M&+-Hx~Wcb1+Y6aQ?f^})JnC11RF7$X8 ze0}fGyI_Hw4zs)qLdbAmrcU!R2)zp!z=>bqD{w66&KUE_MxiIUXDiC2fU(p@VR`br`ya z#232qN&W{bqRC;;dw$7O?!^B<``8jlCEb@YW2RedaCdd|EIn?Du|#xgEKxcc?cFVY z+`Avx7iQz#vYS<0D7#rbI)~lr3$HVMPb<(Phx9_cKnKa0Vpg?m=Y)aA0~ZA6_&sF` z*FIE1blI~xCm0QA)MdwYGSM&aDzCNADi?*!!tNE!)-ra04MZLRmpm6V3r1iT@l;6@ zYiiuEbG;<u@xsR)#j z9r|j-PG~F1Q~~UMkV9(+*+K1U`y{v$`S;LRvBYX!vki?9$#r+H_xeepAylBBTty@d zs+c%-(?%;vBD1&iW8XYCexKJ+7I+Qi6y=AWlhKY@Ot#9f$N7kP{%kc(*Vq}0Dxx9V z?X(Z=z)&A0g1h}L4X*sF^}*XmHZUwouv0)xc>l4EiKQqi8-AOw0&*`t;r_JFD>rf_ znL`oOo&}~3xYZ0oUW4(PjB2Cc<*%7)W7Gs$F`r5@Xkdo-9AY%5`P3%W#h&Dp>LM^w z38fbV>HZn0HWO)76JG0H*-ye!u(=|g-3;%Y3{O9Zv!`eoZcNR$kl^mY8-OoD+J;bQ zde=%ZZ4(B3G^Cg5{hLyVdzs$v^D53-Dxu4&5T+~1PCrp?58~24RuO~!eLOxJp#gqU zbE2=G#%B6uTGP82pv^@?Lvc-S(tsarXKIx;2DV`_Wo$7;9cO4DOB7FjIx#A2ZlMrIxt=rM+N+2lbL2$Mq$7sB-T zXc$(`^~t65#_*|+3iFvNkN7{Lmwr*SOP8`xk1_s}@!d^2%quZxONqhlUrLOp-?GO; zTtOt7x4ZB`R(F2Ndj#kkd@+^;JJlAv{}dP9r!hUWiCzl$$rxi|b$?CoMM zk_+7`vi&X&plb|CC?=xqtyVSwA~k?JUuOW1Qk`hQh@3royfbP7{rBJX8`-IUMm_3d zFaL~RJlivXWJVSOag4Qu^c$GzEj7BW1>iO#t1%D`q|hu1-zWR5?!j5v1FisRT^E2{ zpX_t8Yu};qbQM0++WE-tqq|gPh@7h`gPypE+6_k$wCBD=&h%jFfM2a}Z~Y=r(vCw9 zb1xH0pNcMLX>DQJp{$f!qO_aEmQd8V8hdHSmqiG^b(kdNU@CU#tVm&vJ570bt9BoK z)yvh#TB$&9D-M!t-TlKD1%Ng1)-1j4HZ_w+o{k50@DEuBzmuXh-=2$2ZunpD{fn3T z8&5Hgv9s@A+$giq75_cozbO0^-@h0o&bYyyML(j+;Gp}jiBzBq2y(Y70J9viw-lZK z`R`wx_kDS4aI_HyXSd(~_kaK5bWi6Cjim)D=ztp8fgA^IRRCP=O-e~LKCw~9p z5Yc|2h(sPSpwj=Y?_VVCkfH=9$($%^ek&3VE=YtTPbP^_p=j_ApFwb9inT4k$jGX4 z0Dw55JgY`4*R{$8>9{*ctXAY{M2fLm9A0HX+Emi0eKHSH#UcsSs=z)$Ed`*diGw-3 zAR6EfMJ^Nf+Jj0`B*t|XSVFwq(~5Kw&y(W#PQk=UE-BK&QGRs)M%;;Kz(_G7Lh3XYIw<~7D@Ki zu{^<@`&0*7lq6UE^gcH0UG&o8sduvVPp!Is&oPU%Qe~}R&tXs6jnK89;AIt6n_WWk zaXZ)aRH_K}fZ`LU90tCd6GFWTD>hk%J-B6&S(oPn@R%?Eg6&|(uX!<5HR_5{G3&}My5L*;(E;9K zHD4P!K~7WaMtxMkr1pVQ0hVUVD#zZbMG)gMn9tfNAOBWDwaEMCS8!5kH;+ z0XGZKpt*q#6cT16MauHz<6ekhS)pnq$fo0sbgq4bXmPh2dx#mljBXLUX0=HYrD}

;iNHAt5hXA?M3lHuj8_&%5&aP6dpl0AxEAaAqEJor6EK zjAL!I&9HbVA&njGbc0f(_TeTcdDhX2f80IpaCSYuroB7B^IF9iSH0C(?W7KHosEbslg>zL|YgKgKBAB-8xE%NvTfytPwiJQI6hAVunGnA_jIbTw3|{6o?I zsfLg-?Yp>0bP{OR3z`>Ax7mVQY6Gc(c_Il?u#v~W-|{X>SH?s754wM!W?O$L?Z8K7=B6DDs}n@*3vT>K5j2w){`Q+)=G>uIyHs{FX0qc@K?E(>+>c zXtBYaDW;*2$Yz-|21>M+@Pd=Kx#)?Nh0)T%2aMybk&+DnGYWoJ2Y+d8D>q{3ZMk}1 z!LLsRiv`O30%Xz#$F8fRTCPdKAF4;YMX@K&)(-fg!uJTbO$Logs|Rnj?9_l`qJgMy z+qY@p6t!U7R<$XZ@F2jAB>$urqik#43p=ZUYa-?AYAa0+qyE38eUb8|b+bjU`2M(N z+#NQ|uqgyK9OlU}d{lcd;a(7yY{*V;m#s7}T$&9w8cAQBY`=3QfqNbs1gCmwiE_x->@>Wk(7At=zXwo)3+u~*`Mumt^ zjTl=j#hz-pUB3c(I?KpYMV7s0-%)FDbGwa9Xk#g67e$)sxnBuT1 zTRe97XVSFve8~M<=vrflO6kS5C05cBY1zcu2q)V?)0imZi|T2wonj7>Lv!SIx_m*< zuw1D!KP)uj@Q#S2;Wb0j&IeIkT9mX!TekF!mcM{+QXpuBiC~v4E}P%BCv+xxD&=9r zTpBbi3d^f{nyCl1d0ThkRWVQvn~}u=EidSjO683na>)VlWZ$zQiM}s2&iz zI`A<9h1AH46~BWg(*yHpnj08iRLo`tChvGZd1VVZBbk4GEKv|`S>AKvsfqlZPfPU0 zp`w?Q!pW684!Y37oJ^ZoX4Soe!MJ}l^zJDgwHzHOr=+0i7;2Q@GDZSRsatvRKK}jy zan0>N5OGKUW_Y@;wut_lN^XBnJoa~MhV0hkF-alfw5Ri7tbASF8&W3W7uk~uR3Yq? zaQ{vsORSGyW?yWIlx%j_E1r5I@*)FXPbz9wV#xycoiGKtHcXiurkrLe9z0T+O{Q@H zlGQYx(vI=yB2A^~n^gl%Tu3=6S7ijyz#4~>p2XT7Ho!ev3_aP814OoeLKINet)VcN z_Fc#;X-101syxpojnj9(-xz+E7V|wF+D-E_ZR?#pI!lK(sM#SMG99CzuhsFlqAhJF zRp-1F&d^{2o8Cl?LgC)_{JwDo)JQ6`PV(P2NNvsNirGzHLa+*v4)PM8nbPIL4?j$5I4(L|yP z$@7?rGgH?A8X-3v?HYG-M;p|il|I#nG4f~^f7u;Qbm~rG{LCph?wb!}S6MY;sH(~= zw~C4Q7}njJZ?dAoO(WDVY>0*QBz1_YPxk&54)R=WS$`>p)IJ)QdXptY*fUM}lT-al z-5I5_C@Btn?%Yrc-qA1G*m8_$yTjS{lU-i&kvm~u826+%(z`tl@Gn}aTuv2@AZ4^( zroXc%vcMX59gD9v+fCtJFs*QRhM@s&qUA}sn-l{*nZ|}wn$>pejyKFbHAj{1Xg}ON ze_i(Plf8?$zpedJ9hbZ>5-54Ukf#tO;`hw46OA2c9}5xd8A%M73TjYoH=Ri#wxv$X zIE>Xze6C2YZ1Zd}Ic+hWtN?$CpXY-X7Cz}ud)%~EsrY3)ZLixrcyxWxgHrXUNf`;Z z+=(ueSXESL0f=w878Pp%Gomn--e;$~(rm9?qcUp6W8QAN-|qdg4*L17sl|3ztulWV z6JYC{ndLR~lz18ZSqQZxkXdvGvIq3QN~&$J&)Sk4633 z$2!cfTVBMOQm;`N+GOTHrUViL8)Bxhvj`J_-YfhfZypBFX z^D1n=9T2px`*m0S924V81np5T)Rqpo|KP!SsAHd2U215u$b!~y+h?c49kMyGn_Y0g z+>za97Zl{s>0#`p)7BI~B4O`Y_N!={-3x59o5>EmS=h?f*8PD20~mAIXBafWq(R)& z9hi?o;ch+EYl*pCPf{xMGFdO$VRe;;Q~8y3nPN#b5DFZ3ux^z#N0J!RmBj3?*OM%Q zuDhUYB}XY{_(VD{`zI3EhBQoZbw?pTgB6kjtW_|57nsf#`Zm5zNik$bXC-P^N_+)y zgW*uwVyM9=e{Kj^+q!pp8r?{&IU`wgIHbqJA9VmDPz_jXFODR>SD59`QEkU$eO%3v zfC}Mve=&ha3CXK-T0yloVEeQ-sl6pE%ik=mX{3Auav?CT&RM`(9Lq^X%9%B_CDl3a zx7`XK6m8AjOuLyY%DlC1b(`Ohqk2*`CKb~ojX{krfCj*9I)(a8^-DzX;CpFGAz*6C z+vFMqyiJu~4IWAXRt(Rf3nJO(th} zbE(h+<^?JKBjuaDe|oL)1HdF}G9tB?FJocnuwh5gd5W9`O_!-zj4X4Cq1gr?Px{;Em+4dMT?aW#TAUr`6#TZTT#Psno zl(JqQXC}(aX}jTnRFV**~o}?7$6g z>9)1Vu1luMu&x#3mMG9u8Cyx!;+%+*cwqkdi6~|(RMg}dqHff}H@1_Uvm`Gwwp8NT~!4dC4 zg_&k8q`XYCPNy7HPN_Qtm#}*Sf~H?-%+i26Om!u6(^IqR2ze>w(RbD>S zc(m)AcQjhq(&h#?YTZfKCYxI1gqpmdaVxR1JzsjBVBeC?5Q#?+tx$rA6yMqD%WBp> z`B|&UbH6~#Vmm0-xVCfE{VZlTN?H(iD58uA>#=JNxrFYGeMm*8Zlexea#QuW-*ViT z6SDg(MKFf8zcWd4DrJ0e-xp{L4c+9%C~}OjBrIN$7pb7k^o$gw27&RKOzzRCQWyDg zw|TDKH|<1nx<{Mb)8K*TapQT^Wq0a%`XoL|L`ZlzP4)BFndhqeCIi+lXlC0EgyuY+ zo;IZ>2@@bF6`2*4611Y~PuMt_ClIOoerFU9Ybb2#&HD~L6)_Hy@| zL$I7Fc)Girplui&?ryQ*`vYrFb~mIm9PNITjxBSe38rB$kd>;;`bbOLz}iFHH%N4Q z=x0~`2O6;nstF{62=dHg?0X+PBjyH!^%_*30?f%S64L zt`|7_7k`yDn{8t+i!f&d1R1@=KZnY0kQ#egGm$coO}2@J2ndG3B;U@f*oAqBvP#mz zF_9-YXi3=2s))K@Um4%VNKB?R`V;V*E#$+?I)#P6`cocJ<8)Z0I32DC!&;ox!}KDp z=fdz^FbPVs7PEG~QF;#=q^F5d&-bBq7tOF%W-Voyt%IMOgl~V%rll^1=tv5{5Kxlme0+0(^7CJ2fhp~S8hGB8I*vSU<* zH2BKb)ktP~kWZ8w+R1#m!~OBip?Rk!bN^z%Wa}1#GlF*`<$Bp6YZ=Pvwo9|}K(xH| zQ>37lg+|RhFz*0P}E+}9=X{)r<$60t*B`#+* z7}OtKQ!G(eSOqeahB=F)<(!s&OnS@s((3pJuKiou|Fu52`MbnvSG8tGv}M&vvG{vk zwaL{v97lN<%h=W*f7zrhZyq!GsJf(`wY4X<%8YgF%M`3xXg#LaYQ;jzwiV@CHQ*7z zs=tF`<;#Mf>`P~(EpPXfqTwQaYg@tCq|T(lOrry{aTLSW4}=k(ZuW4|YphxVuNFgi zK}q0`SSD}gHhQivr-hNtdP+2T*Z3W_+^MKb*P=Lr_^5oXH>}yyO?T*?rIL^;Va+>M zi_$deV{)VNH6B3ANd8VN;{X7GgSC8-c08siW0G}WZPYT7wbY#qTg+D;I$bPpmQQ^O z^EdMh8W)>oug}rSYCTk{6wYZ}Y05Kx&o6j3#VtqHNLQhTTjAg-HZY8Ia!lXJNH@1z zBi-cp0ZiIR_sFh%(Zxu&sI3jA0{MJHZFNRop=SaAhhSeAVn({)hGxF(l>RC9x>kV4 z2|7gJ8PeiK{NR-@*+F~V2Q(&QuRFxr+Sy)rsFKTHudSkOd+>iS?He4nZ-_R335TgZ&BjFZ@tW*> zmi#6OO~yNI^pyf+iH)xWeUN1%FNn{bEO#Z;ZJ!Bay0P4;z5d<~8KHb(Q;U{Sj_+6} z%iXF!c*|X+JIkF;&Sx!m#UhVGz4 zvR5|VNes40Ef~qZ6_Jam6eAdR%0;qM3cSW}G+l)-M{`sFf@GtP2s2aWV~f0ADo-7$ zR&&Lb$uMaaOJnR41;XRg68SxM#7^1T#ZHMzNsQX)py@|yCb}oHQx0&0BAx7%k#jui zBWKFq3R6`eBq*O%d+@|g_R7k`JJ~C9DIik5rF(njdqYgR&DtwL+E~e(?pfl!ESt7U zHiH^6cl|L;$yzcehbebiiU*AJKZSHe`k+#EXx!`wkM8t9G71^NhbTz!NZTtB@NK@! zJ~YwdJxl6(=0i(!H%dkpUZvATRMOwqE5Ghofl8#yPZKmZYj?i?#fJ3v+xTy3Q)|;2 zl4ak}^!0RD_@L=G0El;?!<#&P*(CZBOt=$j3kf#r;NREA&fIz=88*VuKQG%bOcr^}6W#OI~*v)>!FmmAcs z^#4_2giRj(yuFi2Aymxp>0Rud(+7bXX7AkK?VSTyL)G+7NIQ`{snaaZqhSykV(%Kh3Y9>fqh;dg1IuF=pWd!IHQ4aR|ewdFXC z;eJMRkKT>H^>#!*7q*x4n>(DdR5`tw^)riYt0HGg7YqujL*4W*?O=PfYKf@2UvKGa z>zOdX)ot}Jns#oam4&iKFZ<8)hS*ZKJdkO2joUShDRv#LGTNrx274}dt9gnc+GnEJ zI0id)v3Rx}0_ZXKTj$Mh>yCYq}BpT80D z7{S-HX_?542msU!qA7P$W*lldNV%(uj?mGv46zX(GmL~t64JXa7(4Kccz^s`thdt) z#}HN_sOPnwa^qOg*un&pxzkQ=#J6beXdB|wPfj$>P!}+i;S9-ViMO<*b}yU9WBD%Q zme-$q#6A8c(4pPAtL-JVXW2Y_s$G3hbX(?wN|(rig!9#5owchQ-&+ z0*5uj*c`@Sj`6@9*&@oS@YZTW4h1*B58W}2r)gz8q-z^}yhJCnVAzv`rab+5d>`;CFJhoJ#H_0dt~d(?>9u*4!Jcnk zQXPza0nPl_Wul(VwAAh!eokinjkpz>qlq+HZ-|doMQ134?$67gnEf{?Vxb}?^X(X9bixFWm-ZLhnG=1$C4)5&I5NRqZwbL*`=Dfu`)Xk)TmT|nqGpg zn!<&)h)l-w>W<4_ig=_&U7VqEcbAy1@iAJ%VZNu~5XXKclYyOp9GgF!v(k9rZCbcT)3Qk7DrEolnEAQiUe)2|&w8xug4t1$k*QBpW?5VT%`|09e4~H5 z%c6opQ}8MJADM9= zU}+Ks8rIv8^C>qQPz;J3I%gMH^Ti=;LX7`@BpK*hvge1wPm2(T>GD~+a( z)aMYi(LB*JG4m&d;`{heYr+zyyv#K`fKBmdivYq1KF}7G(Q<$~25f3Hhf%U|2`HLl zf{&XzP1J3Zo1(_?yql*GboPh1X3`Oel>6cByHdVyle>;|e-vD$K-MPmWUcl`!3h&c zPtsyPNg;Ha)}0Am_P((Y4THvCLqbyDVm{6WzQ%mYb6ED*Fv&Ym}N;A{UOzv*$J)U}s&N0l+TAAs^0C>!x74{qxA3uW&SLB_=}TO;^#vTPrmOTKo8HM1D{3@ zTPl6${#((*yIBQ94=1T{Jje6YRG!|Rp@)~=+KC>HBK?0aJzNEcD!wjD4__t5y~Iz3 z9xhPKoG@eH{;b!B_4AP8j2?b>Z%+?9c#6~wVTYHo*daZ9Px0Xr?_Lfw9ZaVGZ|UI| zPTFC5cIw@(j;D#wn}!^4&Nv*_W3fhzIyp@&ER>K{N42ho8~qlXWj=sWk{ ziXM(<6%ajaRO5JF$5ZrhN?V2=4x7-49u6n{e=j|J{nl;i;Zwx8R(>+{@G-^wG0Yga z2lRTMetxAmqlf49@$_&tPtn7#qCDtK4_{JznjS6)Gwn&HPo;;Y;>O|aD~tn2wi)UJ z<4q7Sd3m&tx!bnn5Hlq$Tu(KVFEO~Y^Le~|69LTB z^71euaD`@Og<^suTQ3=8o|-4wi6SYiYPeva(X2{y8;j<`1)GevOacC=-IpqV9CzD( z^WesZ_fU;zdL2E6!hI2OkK&9u8S42axItPoHK%}PKRzuNi3fRc9!ZkOZI@BIUXn9H z`AOb=maUR|uiVFHF)|cU zp*hih#oi_unQ+IOQi=@$LYVC<;#&^B`6ZvN?eXw zJ|KbwSrbaIsEDjPrRu1%NGyCLj4W18+_7ahUlh8p;m)VAxo(g886M0*)A{IS)#aMC zgMwkN;1TS`nY;I3L_Kh(+ZGJwHpY{cc#YBF zVhuoilhSMYyLx?vUSJGQe}65NR=7?0Z}LuNC_o~kkTi52Hk6=AjFMLgcuAK)8cmDS zXj+^`Q&egmO)06Fueud4Gv{^U+Q!@=E238caJ5>v(Sm!nfi-8khs`Le7d(?E?#UkD z+z3wgwe{P?b9S|(B_BzrIp(}97sUw9ETnG4IyjoXVyl;46ERpNlx&jbL}??4Z1kvT zF!*qNUk$P0Ju1lK?p=ZQmJwdYXZn-qDg@5VgRFdudqH}sKYdUbhQV7yPxLNLH7IB_ z#ST4#Qt|P}mYs}ztoR2OvKfV1dp$_HBKqwS2JV`ty+eb7;tz!yYZcm}&}N06AvFA1 z&AEBO4Np<89FV<;UU%4H<#~y|FW_zX0&NEfZa5iSP>uznXfOP6cWSI@)_>@T9eQ|% zsxMfsEKj+9|BhammiVczGH2;v?w2SNpO(u`OXj~X7k~11T8!%u^Y6DHD2cGsyhZ*` z&?laj%zeK)nV%mkUp4liY=46S&TO{%2R5OemB#2(=l3?0 zpfEk(-5FojR1ccQ=b@C%O!qhqVzj-w79fY@5+K*iN?mNKkqR617b1y-Hn)*^;N1?? zV7#Ae`)&hG8Qyxu30Xh=6{SDMszVcIU-x52lE0}64= z5?>_i#R47~>xI3ftrvR1da*$5!M%oWPm9{qs`j)8H=6l-pjkC0t2xuAsX117+szp} zx>VN_juAUP+t^+0e-sV&^n?u)qCp(v>npx)w2pqXxc@4pr{!D6_7i;`se}<_i=)Z> zTsKK6ybrC8zr!S3y|_AgVy>NA$4}XuJooAmYcZG}nex)|jHbsJW)Y--&n{R%cZ=VRCeO|9y z8)srE_$#f;F3zyda!;0Y`*Bc(&eZeu=-JQh>I$9w_Yp}lNb zR1y8yS=oz%p(0+4RH)yv@7U3Z8Clv}`4dYf|?@@*nsXqnpKNiKmuq$%vjB7EcwqrS2?tqyKj z7SdQz)~A$dv3?-0#o+I793LLlYb7-WH&imig|JtEu-l`u58{;>lmYuR;M@b<_hUBT zz)u;GjWoQ8U9K;9d3Im+KzaQrY1`0S+egnNh$eGC61^2(Z-?IE1S(B$>klz{D@&RP zZoJh!9t|n1M2Uwk>5jtg&jhJ#SP6mk7B$aOrU`7CcZ$KBOcO$g7yBgdl;*0op`7f! z+Lm_`Misi9@q8#k`UvBhA*8lL54^qDR&&o-^6Hm$0=+llzLgQOkzoOBg1o^68hV2R zAsd^jCOW%6NDJ%7k;JV=^i#@R$(N_dLx>UIOH zS!ufOGXP(onz~H3Pc8T^k87^dRCunYKuBATzI%q<6y#mBGtrm5Zcp~ zkSKQ?rb)5784lzEBhDNk5OIE6#5r7-bb)Sbo;&f&qR+z`JbkWdFxnjS8RA_^LYkN1 z@u?0X>q+x$P4n5ojZ5h>qD(Wy;&;nLEFw@b(M1!VmMPa$n84@NRtuv?GYc0%z>QSH zlG+UQ?I7io^jc`G!n8Gh!Wiph$iE71nz(G0&A0Idu3hOk*PlVhBhYc3h1?2LBl>k{ zF0BkZ;airvNR(ruS~}CcSceZpR+WXR@f?eDt-RVHHm-!r`@j!ZM%dWz;ZFz~7!NxM z8%uMt!UlB0Pn}M}#-`t9g$=$`I>N?YJ9%Macb=&U>^7rkvhUI3n)nKasKZT$2~Bhr zbGp`i;Wjmkk?&M-{WcW`ea7^6cj+61oLhOO_Ex=s3x+?n91ud|QXc~mMu}TE#+#!w z_uJa7=zRPO2^&*KtN~`XHmICgZT($541HCvecC=~V@aIVwx2AlM_L0VL``48<{U_V z{`XK7B*)vz>dvBEr@YD4L$KRKo!dZR6 zP<;jRMtFA87tDX}|MUfO-pz8S5Vqs$UjAq33l5^x?dc1yCtc*N-|I_#;Gd>1xcA=e zbF%N;@HyxUn)`2GU(o*b%;a9~-a5a#$z9Do9shmw1t)#+AEqxDwFHd#SL+LcUu{oc zu=J&WvA&>w@~7zwE;uC1sqTorU~HjrsNLubE>_BR^aWE7_}{B9$b0dhuP?}b0Xz;0 zK3iXK%kCc-VYjC*xPIK{sxKJ2*S7kC3FRS$ zmA+uyx!qCNwu3$geZl(u{}z40JjCq(QTl>k-qpRn;EKhctG*!5n)TWGf+b(bQsKWw zU(mjvQR7e77d%Ub9n=@(@ALQS3$9)GKS5vc{IlEB7u@%qF8YFh=k-(d1uI|$w=1>( zc1>2;=uTfS|BkG%k<}NxrLPb+Ug7yE`hwA)Rr68X)Vz(pVCXg#o4(+CVZ9fr-W}2x z{P5!L^aU4PmDU#w3q#%L3%0fkG}0F|zU=h{uYR+WzTgd#y}sZDh5k=pU`jcg%FyM1 z>i&Y~4@>I{F3aDJzTlptGa|(%H}Q<_7QD^A<)?6eo}Kgscf9m}`huUonB`8TFBr7opP?^UJ%9W9f-|Vq^acM# zMg{(9`hvQjZ=aL>bx#|lFdv2>Q zxS*tyzTnKk-BH*-2cLt!;J$*tMPG0`V)p+ieZdup?)3#H&HP;T1xtRK(bF<@KYf3} z{k^kP_^;6yH1GBq`hs7QVF&dEukQT!>I+V7{-2;PnDWH-^aWR+(?wtKU0y#`U+@^L z;CA%|KU|&_HoDUn+!4&Y;q$`>TbbXkoP(33-I)uzEjy9A(-*whl%2v^eL=gvVhTH+o%98lw*H^K;5&1(+^O^h{T};g=nI~Bbo=^( zgQ(T?1!KwhPt_L;YT7<0+jPn2pf4D)aqsP(N0@kEW^ylg4JULrxmV`?x6&8v_7Bq+ z7fhKB9`DHhg6EpE6#4Jf7Yw1&ze`_m0|o4mzTjJyF|99nnDxb%lvVI!+AXwX*(8$aUtDf)tf&#L)Z z4(e`4U(i0LYsIE7*gdSbr|R7yeZjs}-RTQ@ej}|f*rYS=oIvPCU+@cSp!5Yrk9mE; zbzkeGFSwp$uP>-mXb1EK{W)+Y#{)Wqsq+Z+JnaPDL?0M$H|!8I$!@M7aJRpfNB#>I z`aJml_W?Xj`v5-9>|h>;$a(7UcZCkc;0K_9402pBLh11rb%{G7KGFF;r-L11^b(BvKu3@6*C`&{9dNhc3_H^+Xa7#eadZoyyY^Wj z#tJY+m*I@i(Q*~(4sKWcCbz=U*UF*584A*ldeSxj{p|#Ji&iyu=3fWe=z{(PHWj3U z=KYCtXWpd6jFUj>TVj&;9jA-6aJJqwkt<5f{0D z(p{ycooTBX_`Rzw(gq2x+1r>icHdKzeRq9?nstzfiz8}w;_|y_d2?NRl)E6w*Jmeg zf6S{cf3nV;wb!^^!hRLm=&x~C&z4b?d+urauERT=405-nM1dRqFwsi& zJu!x3CBAp@%>eNu#f{E$kBuWQK+};HP8kBBX=)pPR*gTd2jZajCEh*x^qP)j)f2t! zd>5HFl2Q3#(gtq$ofkuU-M}5YIn5jmjB#LV6R{e2+&@x1dDZ60d;*Ns2(@~IJ4Vf* zee;xo6lK(5zvu7^tzptf_Az-D+WVwT-icwlJ*mXX@G$aOIUyULYG~p12Tlk^HP5Gk zp~{L?0GA^ffD;1{rH8!~DW7Cs&ujPBX~=mrw9*F64SP|L_KDm*t`l7gl%EeYgb_L7r>;@nn#hv&}atZ)mVn%uc32PL`O(9q1aM9tT~%2Bc( z9}%9L2AuggbhXRnhU?TdN5O-d7F3|QEq2(KV`s0Z6>69cG|82OJY;B1boVt1mAOO9 z61iGdkq`Y5l0yy;l1-6|!n@u9tQ`d<$q5dfF@UhL>re4ZI)#-t9pBz5th&JxODUL5ajq$Q4!VRo;aGZ2?}n7`01IL$CGq9DQ@Otp@I8zt?-1K!zf9; zQ8U!a*)h)p9pFR~Lw=vlOTL0P1Yg z?TB?Sd~PIJHHY%JIFJ!P@smp()-O2WYIfyX}l=EN5e6(MG|e zo?MBBS1B0R8S$|Uu;Dj;qbp0+G&TQl*Fo}}I)_}LXM##OqHi1p-7H%?C^;<0{Ha3W zo5@nSVI3DZRK=gHEMF8%ni)L2IA&ZGzS#X!|Q7!hM zD!5g6DcZD-)L|PGl8cvN9SZ4)`f#0oJ!)BS!@GPT`mkOpFTrPSP`;Ohov$n3%gVPT zxZys)$kE0Zjh2v2S)V1spIfgCj%p5Wuq);{!T8t@ypTvTS5?*MKQ2!>tgCw#hE}mg zaurV&$K@G=*Ab$!Ahb?vZ@da@mfssN!tj?qc0u51IU}|Pn6T)&1#7l)OISy6^RI{y z(X6+G5QE|z+sEU!pNAy$h~zX!%3H@Ckfme7Xco2f?U=1~ZQ>2)#M>*mc$Snj)^qr` zlzz_zMDz;OE2WXKN?ot=3*b{3|Ij0J2K#QhkptQ#?Vw&tA;ZJ0H(nep1UFyBw7~DH zIX`fD^d#*xcux|9&W;g^#c|2y`-5j~&OC$q5fC2g9ZWciW4m^bQ1S2=aA00?z>BzT z-w9HE{rf3)ouvJwYJk^uI+wn-?E-60B3I|q*PE;Nzy4f$yU4&A{jBGwX048dzaHG! zTdq^a`Ge`d(5cqrFBf9_gXu{RhjE)m1GJ!V0lzpS`5PROFd=SQ{ZU6p&fL^`9^rfm zYZ;NIKmVZqeW3nrQ2*8kHJ}eGu5D#miPD zR-DP?!Ueg=Dk*ODby~K$#fNAymEKL&BKOt2y?ZoFwS@w|4!d%lu4eN{cgAdSBL3QC zcXIfmvfXj^(rA3PTtjmoOk>f$!gaEX6Hixz?*~OQ7ec>TBUGT+ds0O3EX5o@h-W8K zeUS6_Qcp|{Uy;)zK3C2kZXp5Z4^~|5Wg5zU&xrM7X1sjOWg=~}SSfq&^pMxG%=T`N zHhhQ%K4c^5ve?Onjs0qe!#Fliwy#&4TaYEGr^zW~k6tF|o7bDv!C;Ejba7bIn^)ha zt{GQEN0v~Wx_$s{a}$5GTMvI18!5`+_L$`XD1f_LrotbQGFdMl%naFSx8ED8E_8DJ znnj2Arj8E3cKYBVUd&6EO*?#RNfe8>L+NpqK#)LM7%NT-W5sD#S_Y}{v0Oh)qO2r7>L}x|l zHL7htQ%ioMpQ-$$j)8u6Iqi>sz;i0kKIgo1zY%G8e?T<;bTt0_qkHk?V}O};Vs0${ zw7XQ7CnN^0J@jC8F>=B#wR!Sc^d`~KL^W~4Sz~ADE#52#8cW?SG2LCf%q|7d`vyyF zmy36@FLm$nZZ$kwK#a@dl{=?1CEuj?Wbb|UhuUc_yYuXOD}0UnwNK3<)qUM3gcYrE zH~6#_`;m5VnC2^8<1SNLqSqmG0}@0txYE)c>LXt)QY3y9EV95NcfmVGZSO|`C-Wv9 zGplwtAM??vYV(pv!|VZR9GxXN_l_j-tWL=NTP1_dOQEY#h;G-Hbh^kO9EUFc78>3k z8I;uOPG()ikf_W{e62D*CmMey8h;5^AMffAtyp|kEdGr9!|%3al!i6fn9Usq z3whjJeBi9ve-Zn-@*&90?wL0iQn$ zA5ot>@iQ|w#;b1l2!6b37EA(;mvH6uUNkWzFB)GH#WA0h70V%Yxem8*bNG5rUA%0uns^jVRQv$63#TSW%5XIBlppo)@q`+{%W((t!Z$l* z{o%wn!w0@0-jM?E;J!r!lsv6D?pH}l!_U>Lotx!$ziBgVs69jVJu!B3hp+j#D>uUf zEq9kcVb7-Kxa)t`}7 zXkSUfcR-M>7679*%IeRb3x9 zojmU5*Y@UuJiDUE9rI;FrY`t1?)~CiMh->KG)6)Cv1Xpgp9rEp09p5eNk#2GaCcD; zz9G+)q5=gH*Vdep%zZ*EYimw3I;-YLl01xv^kU7-Ch5aQlQo9-UG!arBuU)?`cEnv zWASnf$anFSR9`o#R7B6(s?6)9~Y@A`8W%-xl;HmW(Vfs3ORDXygVckb|-ntpc^;0^(9KJiz?o|^F# z=1FE{a>!Qm+(^1sN!2`==Gg4vwvOQ-F;n@RdqupbTYt3%so!czx?h=YB+kWqXuTMl zo`VM@`~Ixu&7P>&eo}2NHpB1YFJodVbvf_uE~iqBW!t9RWK{mmcYN}mmORP3bEI_= zY;ClHy?yFG-X0vY9H~GmY{pCeKi}J-Vg?cE53qq#`;$ znYvAAX*Kr&&z80ZpRTCQLr&*6_la*n0ZM}! zm`Ny63%(XKzAdDq4IWQVmbX4M&}ScAn5{=~3)co0qD}dh+{EF)t$4FsIK2@8Tmwwi ztzMdgCD*~F$EZ_zgYO+dd=D3^SPS&L!rfdJ(_iVUN0Vw#4Uo z?u5THWAR17-ck*L;cAaNO8PbOH`^fLvzL#UiFaEn>$^LB@j4b9yReCCC;iRS+|}gf zqBx2q{w`pFAQMxj|R){mpsO zk=bA*&dU>;kD*%7gQ-OzzKabEAtTOuCeAB}#E0Z5Ua(}|4(U$>kz9jCgj?}2b?BOB zfY_t9G6dHex91Gvsq?b(e5m4hyI~elqN!R^Nl{xyJ3IZ^%;NzV$~R8tN`mGl(1DHd)B~Y;;pE_3W_`j$ei^6E!kF z;{_4xxWx#`SMS=ewP(oxD-|WsUuU?rP-} zU^T-)JUkM*qb*}P&fJPcirow~7*ovIVROg0--TU>xC+IwSQP(Ki-rF(K+v(p8Hvd+ z&d5uCaV}0T&d5uCaYkP9i*vDGoN-;O1-=VMlGaP?qMm8+BS{b;z6OLf418d^FpT9D zq+q1MZ_Pi+h!td(cs!9JL4z;?kkqv2Q3{G>WgugLO4amBxz|PsE0OT{23x1`{whO@ zya4E@xL?$@WEQ)&SD12qc`NM@yc0ZAC*t!=BhZD)wfxEhUBg3T2Z)@d&cREX1!CS^ znk1~bZ71sIP!;#86`OL;>nSXY#J9RuUX0(f=Nk8?FtNgY{Cl5msOuTV4RCi@D8#SW zcRS(NN#Tp(*U|QZQqj%(gD)iFF3_ip@ZftGVOsNxFKC|5mE1MA?N|D_Pe1>qA1=ac zO`VAZmVM4moy&VlDz~m5JV2hdUix7uQ|>%fDC)7*#R#VA!Vh|-R+v*^A@_4i7*0Z0 z0dE`ra313%{;<%V+}g|2c$Eqt7+*Bh2PPGb@BxUY4@@bl_W^Ev^nvL`lYIcQ1A)Y~ zC}O7St7bR4}65jVmkO`pR!s{@)(TKSx~&BE#QG<$;ld|?t7d|I z3^oH0;zI^X^j@`85T!rYLlhAE-i0zy6b!s&glz|tNl$<3$}&Bf2I`V4yUR~|HU5&| zim9Gs>(uN7Et+cJ;nSg-WXvq(jwEUdB2BLZjjjDu?vjYzkoJTAyd;l(jk1Yc<4Rr; zviWPe&C~Fq%8)6-D}zkbz1tS^NMb11G`^^Ynq2M6e4NgUJxZis#6h5~7OLUi-8(m= zs};}HJ!pEI)z7f3QI+&Kjp9Q6qc4qf9_jv=BYc}1#gVy8sBJA-5(ll=@j0`o^(TB zvrTRE-+7^7KY}B^Ifv^5m3Lc#hvR+cX|2!N zgJcu(|A$RCz$6$FZ>M<#B-Ec!q&W-&lWD?DJeW3?Ywj~;>&fF@e97py&8GhZBLqDa zAihl>S2w*~yN@*0x0BmDi(U6T9A5c5W3ifhNGo}=Pfq6V?4BcCN%cfU;_Cp!YIxKW zcMjKWao!EH^4#n%tnN^cZ*W2fbn!QEf<|-fl#HiX?n2#ChtTFd#kK}Ft^un6=b6%* z^uFkPa1`&|&(g-AaRo_Yxu;PpfLer$Y;z8~XobJB;OxDT3=XQYM9Cw(b@JzpD_M2v zi;-mR+^ilblv_f7-ckas5SRr#%~ioj^HjXB-T~cEO|)xY+$vl00KyWgG{s38Ps74t zz>$B@_zDY13=N!7x_VTQAgbZIn5&a0!VCMFFsG0zhoPd&TJp!(?Dhl1?cO4B8Z&px z3ye(Mkz=IUa;va|Cr|8Q7hT$*6M>Q-LQ5c5CmQKei&YbXfN!#1h9XaqaR46~vtEPU zo%d3Gh#G8+IGLfw?eK=EP*qe|oj7BJYrbVCfPa+SD;IAJ8qT3nOz2^M?yt}4*FdFQyR$*pR9H?Fb}!U9kR6xc{U?G<`OjSv z)Z{M;O7frcroor4N0{0iE&q7zz7zRA|2d{&{vy7&4Cn#)-d&}6LeJ4_vKIjef~>h{Qc0XlD2u%BP#~%EgI!|JR?4zUQbH*NTAu;h| z5DhCEmdQ1IPvq`72HRwQPpq4|jI-%+fYY?NwpZ|QkDJ0vd0$a+><Vy_jkH+!HwVI7J+TxgsRt#uI>ycVt`ZEg(3}_aKRu|>xQs+qR1UQr+7_L#lA+%pAH%y zgpm+)oV!rFI93KXUq}S2fNlWRH=ZfbSNdbQIVqOowDWF1+vi zt(ns5&&o7mk} z(rI1Mn{4#rfLG6raQiM^WqM(g)9Bwk0K@I^eixp1Fupx)LBTAo7<0+j)vArYFS}`ojOvc{%XY~(t#_4;O9ZuIlmywvNUYdWi<&A`dP*y{9K}}K00L2~ z1}up8hywExfnb%375IO?Yv$eAiD*wfp7ZF?~{L@qDKm1OD720o_oVuM7gjO%Tev}Klo$t6>f8~d<2SwZBmEu?3; z_xBUq=%xKq$cRPIa_^roJzmy|7{NXDIMNRa%(X1Mnr*pCq>jv6PytQPcty8bzwm9lndO=6BZ;#l9t`x1Ah(uaCHU-;|>P8?84@po;9!c8Wi;_swJ%R?FDo39S0*U3t@st!i zU)8e|nPzFh-xD=2fpWl?Y4rQQ-_<@4uJwWP6xSt6YnO~aUp-%WMt$EGfdk=vx0QNg zHdvDVS~7(d<(iTK%S*ZHypNZo@5JJhgKh(=PzVpseNx33a_RORJ}50%QH3?EcuQ1& zcfH_eWj-~!TZ!1N^ELMbRsaDIq0R5{r`VH037sH+3Wg-GadpMgr<{UZ_7oG;s`Z3( z-O(zaq1T6mtTDz)B_)5lUJ3%9FMZw1W^))_;yRn%-y~Fntf&U}S4GJ7C{J;s2plPg z&|W?y*mB7TrIJ)5TLaAoD*K9d_xSU^aqa4u=^-*p<^Eg|D#?L~cmLVwYit*}Ix$q= ztVnKnGe?mLA=0SGz9CzKB3Fht;}rQcL@E?nuL$rz`5;eVZ30O5x)OJ2Z*CA6GBuX+MP(0yn2N)`ZW5VAsxOjWGD6-o#%?43nNMG z{*MqTRI82*kp@K$3=z>%*EGosoK%(M%>C$&1ajtlo(u*gSw0X8`H(YL_>@@4mp45K z`SMsT{i|5WM>!JmA%d0+v6Bco(*|)tV)C_Ak1or0Z?2}9c3|6~t;$)30(fhXY}Cjv z$;>&{60<>UHVg7ze!tT9l}ziyby%lF7r;n_eX9ftG4m~!?~M|Z(ZGd&C-5+^oG2mx zeIC38&U@tF^>3+oa9OV&^I_ulA`O8|9{lm5H2czar?H(E07J}nj{K@PDeVTzKNb*J zLLxj!1Mz_8IN39~!#hA>Jdx6Ns|H}DhIQBmxfM_Cn-%qg_0yZi%s0(?^RbNnG^aFK z;%|PhH_zJ}&t1ezzWcl0OcY-S6Q-3A;nT-F=-7AN6?WGOVgSl2hT{l)+OR=yBvbGq zssTDK7|^sP;|msHEL6Ejyr!?HbW*cqIg!)qOAez7uU|!*n%nJ#)9Q=f$~wLN+!wPx zJQaS8Yp*2Fp!sQj!}QT}t3D8UPD;sIoc)hv_S}*J&)QTyY3&8(j^+8plqV*dh(Im* zvwAjr!nW)&H`SlNEm=P_R~zg0AV%3sOob{$fRg7-(KL zK!_Okyr&`z@*JThJ4CV+`3OKF{4;6OYk$fEG-P$|u_v&>`DN70)GhO)x9v4ncAi&? zPW9>O_~Aa@_6^`qC+-?PUh6-W)~e&>3QLUQ%uet{?|xUvuBpGviBzrZ-kf%#E81R{Ew zf9_CTx4q~N;E|zH>Y`6_tOe31X=RbUQ5jFuC;5d1Cce_Apj`HWX|eWbdaONy_4TjN zAou_*IDxt!bpImfijD%e6}{b z31uaG@Co{qEQREkJ}JqQ=LnPD@ZtopfGo(;=A@X=wcU1*d}9&Q??ZUGE2X45=(!EjKs z+*{RtiB|*ADNXl!uME(oQ<`p2(FmjeP*CMg)>WcY!sexaZ?yyh=1xr1PTikK{XnDK znw(1+KEh!umD!rTSQ*kqcs9{2C1?BXSx-!C##487c*EcErEX|&WU zl*;%hD3mlIVR`)~)xEk{3TVXXWYEsSkk2kbwb)JvWfULCWFeQQ8*#>NS!iWUG|uI* znMk(V?vyY(U|nHxmij3y@)3u{e#YUcA1hvHrJS7F-AaDSxsS9(%0OcCwcvr=2cxT;;Wjo zRpx9f0;$&M7?kby;D4Nn)r zq#v{Odn{F%N}pj*%q#5a`IQCXJyt3a_LHAm6jWj z_Sy+MR%X%f!aNcyFFK_+moowMV{`=4LSk!31c5CC6E$bh=Nc!C6 zvIRkOezkDv3lw=%8Ilm2a!ZJWBWFLm@1O7>;=W{4Zp|TCgHiZ3;mj%-+qa|U0mWx+6eeE~ z4#t^+>!n1^ep1b`@oJ)4P`o4UR&1Zh>%g96=(kL#fPHSV;N1R|;}2yVE{yXBc8>jb z`rg_F=(&7X2&tkS5~=730xK1*v+cj9CGL(to4%{uzn=z(p<_fEMTIos%8fw0!@$$W z<(?SdA$sAXt=tN3i$*oyyOSwWUsc#wQ%(O>BF!70sz;Pb_^7bbSt`_<)T&-}chHB! zq!WBpwbip4FgzGkNQex0vDp$AP2%Ir8zdsai~}aosQf3=bBTnATTGUqcIoGy`*@uc zdiq#mHW5&f4442LcaUkHGH^C(9m-_qvN17XBe0Nd#-h$?vQ7AAYa=Xpb?CwxJ=q7I`2o320Ju+=g zHD?qt{$SfTn7{H8^HN?cFXbh;q@&wtxn&i_j6a0UMU4UK>xuOe^SoYydfYusg<BIV-;NZ*DgGhASwJ-2v3dy?s2 zfy`@xeT?U)`@tN|VTO}yu@Jq+KtU%rI-Ac&AHPdtLOqqKi*1Eaz?O%oQRa1X;4Aez z7(68==c0FJ?{AVdEzb>9V@BXS-8jlOV==)^f9NG6nvtHU`K}b!G$eeYWj}Xci zFK&x_JyEk$psFv?hhD2$#ORWrInj}G)oY96UUSiV@UWuQ>oc4b*R_rO3j7m0)N`?Z z!|V)WJ&@MHpM6W~VDL}W*jBUj^PLxu^e`2|Fn@p}7j`_%H3Sb#?{69BnZsNcC`a)y z7d6n(_{=EBCb(Jvh?sV3F~u9so!xNR_s*TGRYza+9~|4z4R%I~H#xC3#Up%`d;AHV z#uTQe4d?~hEF8%{jfulX9xwjKH~OM@zI+AvmfGzfKxE#aXx&=1n-17+1lzzgs((5E zG4ynOk4=pW(j*fjR<)~UTJ30MplgIjPmbdW zmRgYH@^YJI>om=D|Ju3O_J$ee4h}^@L(8Lah)phUQ0K?1w!-mZt*{`_Px`(J1w^K6 zM>4C@RKgPmE!X7$A?gs_Kud}ce=8zci6-xr zt8=6evmW&zq7P$d^Vl*s>Iw8=!7CfJW{)_06mz0}Xu-3zu6kqbC`QyJbU*SHW))UMWG zquyq6dGQ(=ANO{Zy3;RLq8VQMCGMj|c=S4<8z#wmSLz|OU+tu4xmDYID|3lSSdyi& zpPK29?Mb&f>HhLF89R@~5Pn1-Jl-_NV(94CG9^q338mT#-=Q{8yK==)g2TvNcDD-R zQfyvmQYnKDk}%f8Jmrg7weGr^-3_zf7E^J|*ulUGx_5rBg>Ed`s*?VdxOB+I<`YDi zFEXpvoLpSrt@i|MR0gzkxY@Xwd?L&Uo3hcT6A@U^WT{LzsOuqbsea%P z+Lxzfp+xN~=QUs8|9G3m@Q8lNx-8bW{=?=mbDZWfN|BhakI zl`vSpqejwwS_i$l5FO%r=GB4(lTs~l&oU^@t4aS>SruEz@T@-nE}y3}-qaoCBGm{@ zPyt~|7y{w0-Lzu#=N4BxRm%cLpQvp2m?-`h^ijLh$r=}_Poy)Pb) zQYkAnB41r2%rb39(BKgmuCqXpK)BHToC51c$A zVL&E}MoQalnY#!yi0^`wvb_smYz$xXP`T8_ReQ; zWp4H+F|bSUuS~kT{!^rlkmjS3V-k0eh9#?&7PHUU<{e6h(rfJUn*1)Wn(zHSkMl|V zJ}-TSn2TCJ)U3bL8-&Gr%Z*4uqvbN1GdUp)4YahKwmoDYe4sT*(*S8Jkw`s{xbH*)g~qAKiiV^ zd*n(1D)y~vj?g1A8S_3X+zD5EN-gRJI8vBsOqv4p@_(fOZH*P6t#qI%K%bSb>08nM z8x5^T$zGBLyn(`nHSINGd9)f^7Ug^t>pEAn1JGu5q5H*#tvd4r{pW{mrt8f0D$fn= z=ttqQqWdV_{g_-)m9q>-X^x@M+Ra^gY?JQL%V!{!N7T3Fmw_FYiNoN}*n4m(5EC&bfdLrULuCbc5-MKWp9;dt)gh+)Vr&%5rW3}eQ5Xn^}pGY)Z z8(kE6C;6v8k>p`_E-(bWX5?P|1$xcN290OR+K$YOU`u)rArlSu-KQug;gFeR+>1E$4_QnYyf)y!B?ifY5B;5tem_}iH( zFw@_znzoANDFmkAZ`Y4?Q;fC~F2sKXf4fGqdi^Nu4mNiKiI+rD2gwP4jzIzGx*by{Hhbr+^W!E@0gH+l4I}Zy#fs2tr7=O>3|pq!zJJ z`niT0V?}chygiQvF}0a@8LH9Tp5;pBEC&&&?r#tw5Gzd82x`eV&0&Ztg|e#o;{Jbn ziRP{te^aCi;LJ8kjVj>X52o9>3$>hq#rGaJbwYu$|1q~%SBQ2M_1od*HMA%>cRg(X z)rtfoS$Fn38gnMpx4laIB}mgIBdHQ7wNhc+7f_6j*(@kW;RD z^;4{av@{KT_bmb^o?MT_cD9nP(Z_ z@q#wEa;6(|l9<>gfB;E5Ry7vcJMmpz{OD-HK*8C_*QUzOZtswz20pEeKb>iVG`EBv z%_}Jz6$if+nixkuX!^w@VeyihlDwKi4WS1<>reNxX=OV6>DE7>9w|Zvta)?~%{D_D zO44c_`_rjowF`zosk_`zzViNb6u11s$$Yi)SiYi~3C z>1>3)qu~T06gH}Z^j}4(3slViAN}dRZc_ls5Xcj4*yJuo#U8uTRnQscN;gFujoA7@ zN_TOXCtrmXZHK}xmP`!L1~Ai>cV(XpTVA7cW<~S`<0Py;BF0%?D`5*p_9ssCMny8Zd$^ZeB1XKTbf1E=P84B8Dhy@@h`pdPTaftVL6yrPF&|R&N~}T zRw?ePdCDjxXmS4S^Ukm@?|R;ux>yL!H>iSW%5(nJz~W}yhc*j3*-Qii7B}&v3wxe-030a$Of}FJM4f-8j`O-aC5?7jFR5HF)0QGnO1)MU#6;0k zzo6E0MCHr&%nhI)VY)!Ed=(*|z8M|DiJFJamo0Qi+85h80(tHdbs@+nySCko*I6E^ zVhIpn!7N++IW<*<3h&lJkYE62w_`QtWnkcm*&_JjEzs&8Ve*^ZVWm5#b5E3y^cG{gf(F+E$1yhwNgDF!(pA8 z2u;i(&6-vK(yUQw?i?FDegm(OS4g5Vqx1XFjC9%LC@$B&XVYJ8MNKDwtRfunD~w^> z;;QNdJ3AFELcXtBoggl&xb7n4IyPeB#S@WWvf%Zqp2c;y>m`LNlZ_?+W+@naF;eFqt!C5%%6|=vFvX-Qt z$J394cE%r+Ii7ap?}sB1UetVAQt+w{=o6IKM?P?mr&>amyPJsZVmG++Cu+Ni=M|h# z0F1HY#oqo*He)YwXoNJ6Kv*@x8XznX&UM38E`u_Ua)X~AeDDT$SD==w+9)3i(1#Bs z8f|g!UnztK+2X5;ko~Vb;d@7V7d3If!C8&TU_*x?V#7by>2Xw>d;X`sO<8KwGa=HX z$Sg%vE1lrxkMkTC7T!!!q*r*O4UfxF1RY(= z6+FYdb^lOyBAN~E@Bo&GhuhC0@B&1{!q-~UK>G}UwuHe7kT5PzIE{du`%dc3S#f*D z%EUzNo6?Lh99uzqy5`hO)r=3S5&^6Dw>~a%qD&I5xgyJiXE%{pb(m!teHz_AGp#xl z&gppE{4TsZ3?Q|;EJVuGs#8OxQIX?9L`#`_t<0+qRh3kSCR;@1S4dAV7Gl|AUMyQg zby(?N#j?e`>9KcTEL)@)FI%J>$re!^N_6=d)!~U_dUbGu-(?^7Rq*HH1G((l>!&yl ze?q3-P(mG|^i#MpBb)cGs+? zxro2V=-*GY7()e~x=c7I!K~@A5Gr@S4xvi-OG1*&-(x9$k#x&0Q8|%&`%=Ap*Igg7 zk9GsuC|;E@NcBIy$xK^m4xKh)kR-1l}RssMLS59KbNSx`E%v^0MyP0;BI{Y zJ%bNSk98U##;42oN-OTcS8nWe1Q%#-9jR2=h3R8&7oU^)N-VVxsfrV8c|k@lq_JOzW8 z8m+)Cd98+-R~i}j1RhAYorf3Is{CA%^m7qhp2WllwkAwQt=`p7X}wO!HMK-;&*Oan z{X`S*{CrHD?kTxiU`hyqlL@=`<`QrkKN?3+DCJIjbA6iW%~gB=Z|YC@m{Ndti|bLx z>cW>Z6qj)8AZ17w;az4-?9VD@Eg3j9OXh)y*F1D z?}Im&SZ>HQ=u|R+dTE@yrH>S~9<`e1LqM?v!a>l>n>_VH z2J#i|6FNd+z1L6S{EVM4CZs})zjXYwBW-rdFmjc*)OsldB?$=$tKyRNxGbN zZT(bqEV^hn+r!@B{HK8&O^$6&+Ab$q(0=ni0N+hVk70T!%X8AIJ{VSav-$REL`?!> zv#&c1loZchy>kqX?U1w!{`O7#Vr#d@kU>jIrO?9I&hL~liIs6mzJ^mZrMLog&O_^l znYT+mTg#O+I_tv`iM{%+8k%}mpQ$proh3D#<`B_O;ieF#s96LhA3g|67%RcueLE9J zv#p_zJ`bjBkbRW^OxWd>&>t$pt(}O2Ro$?0>V$R**Wn`sRjBlNhI}1mE;J(zA65~X zP=r-4Nrmo&gLk6meAzk_MTPvMC^0_h@wQSvmab!VXJaD$&RaL^s||_Dl}bfZL6)a5D{!TiYc&=gZPCcV#K1wa>ci)*MP+=L8?%yGYx>R;n{q1l$nUb!RDXIFi zs}<=7;$bKbMhHRw7=&}>!mG$-_uAbcm%1SSpWYlg;8TBB8-7qm4gK61I^k2MaV2?lS6fkke_7kmP3=Vm zE5aNenA>&=eD0T?zaMj<*N+d0C+{3h-f=s1Ox{NW{t*78js=d?mim2qa2wmJ1#^>$ zQ*_N*?!)rSWC7FUQvA2g#3eERNSeQPg|;fR*;IYf1uT+gk5e@#BZ=1QRr+WCiml4% zl<`evd`lTo0WRbSIOX|NZ&q4iydK%ADC*8p>at@vfAeS{RGN;G|C@4{ky|sd%+pRE zAeY*i)on-0#PW^9>MrXtpXrqez*;=_{hh^bjvcEh{H=bRDhbJ ztzq`^PV=;+{##qaFxqR>)~wW`FgHJM>gqVdgVOx@TNA>Z%-L3R>tbu9Ia@$p z%~^>U@-<-@$%R_bJ7%foOh4CnK*!vaG$5XvvpxTLvDLX&bCY9QBRBN=eeEI*R^6FK ziTT6`0EAi-HJ*SB1I|KQBNwpAKf| z&HDzwxek{(S!=DO`$ugm&gPOmKf#7_xe96JCo%ZAmyOUS{_S;K(eXnPx7~^C8-Q#< zDS-0>LApScJwd!atZ{w5FRt6a6nL~tygJ~6uh zCXoZ#v@L_oi7SAtxOXlP;Ia%`YN4ReZdL^Ls*xe6>>?=c9*fNOwk<$WO`=#>oyE3L zfmN~KtRHRH06~I;L4qO@S}b7-nv01(l-<9$KFP}p$zfLri1#h!x{eYAqsHPP)Z)C! zuJ?1i%AjUOcK9o5AvJ%K_&k&#ucj>S=b$rGqnKeKPPZGfY}ySe8rFa~ItFof9TXYz zYf4t~!ppBG0jtTcZx3flHYkBCTJp@Ps;^#Tteo1n2oaJ~YZ)-#j5H^giehFwzH>s~ zYSioJR^Q)4eCObkyYQJ zK1WGDcPc7{==`D0^Sj0asYg~rku(Q<8%TKC5-`N(OM{z5vQZ5MHa+z-o)+CU!gaAL zGe~yj8vh8Hsx5;W5@#ly7s82}?}RItl@0%Pqh{K_@AqeoLT zkfqOk7pMMnck6Obi3=ii96?N^zSTtP;uFesp^rb*a2D`$4G(;m8YC{OQE1~TBD1*a ztznjN%0l6SM9|WsgZEp zzoXqb&r8_?Yov2$jj5caynNFn$aH$2*?Jkbky_}!u0c@G);50YwIsTarrb>oLXugk z0seW8)%1x?67q``+}*zO>IIRLxt(Z=>UIq{d?|IIhIex)BDEp0FBsH(vP`FQ+M|e8 zJLTCRW(;PjW&CVfkS>hms5SUsAE?{B`=kx@Z%O{5c#}@SOHBTSA>OWnR%PzGi!=hf zs>$S~f|$lwNg#F-ne^USOQgap_^_&{24$}5D%d>cP%Wk71f3Pw&k78$cjj``;9@&Cd!nfnTCrt*Q@|Ai?8SQR8 zS~*&L2F!*>pl1I#ug&nS_DxOGdv2yLO}$();B}}jYpVJ4_Fyf|Db3cl>J++ean%~! zq%##7&zCTU$1z~ti#PfuO(=Fv7V%7u`-eH!!o;+upE!@9!*kD9yk28DUrDdg4&8f*mwTxmX)xOPPzM!e5jPD+t`Ef0#yn=APl=_Cd9k!HFP1h^Or_7m zLQ4P*hJ=}&G#IRJX+m}|_Yfu~bI=eS9L_3SK9+Wb#bTp$z|38-&c^)5EOkq`@;+R5 zpSbG}a#=V!=C^bn!9EK)i(sF$kIDzpWU|EjWOi8}WgJQHaodH)_x?}ae00?|`!TyV z+5CJ~C2pT0*O*}C^q@9m+y8-lEqLgMdweB3dNz6=R|?O6iQlWm3~SW35dg*`TA*k_BCcES_nWfpBCTO9FgtIZLZlePkIr+vlm56JK*m)fS_8n z|4;D>PSHP&lnGh-H1;7II^$L1Dl}8S`Y?@MCJHHSw?Ti|un#`@liq2(e|7$L+<3vc z2=U>N^!GHdklEkBCG)9WJHaLMsoM;y-)!lC>Z?4jL2!MH^v0~ZIQ=_21FS}dAz)qF zKgoZTkMxkcaziHGd?E-WPjn69%%Xbk2Sqw^7|uVbPl)x{w4^Atx?o;O;?&hqf>beG zny2xO6OUgrO&RSTK>f#Jm8D4x1Ch&93#q8FZ0v0p7WIQto|ZlZ*e-XEXTaxPyOuD{M%C$USCT>FIl$e5u&q_3EesZUO+?{)<3L=1Im zlV<1j6?F!uY zCLyLgx)rh|pqA4?z@Yhd2^}&t`_pKu;GOGE5C>eCsJ&LJRP5;R)Mfj!Pgxi()->UL zGS0{`{l{l!Y_N=rqVCEFLr!^#+C42thYsT^GQp=lC$SUiOcr`tn1q>0CXRfGg&lho z$qg7zwr|n3B>#vWP>HebbpRzqR~Rr|oB?0Hls89;N@@)jYGXa`f9cJ3`v&o^WXoLK z=^j+-WYglF+rLnz=1NT|^@o;<@p}#RRy?*c_8orH5!KoK)i94y zmNdQ6>TVNooF6yl0C)B`nXY(~kJ;aih=aSi69~FZgZTHM{;lPo)O&xR+fDsA(|C)v z3yHM-ho$)OB22bwY+NsZrKk)!&vgTyV_=YdZ~jFOsUX;geD|Xf8ZUu0zsw@qx_mbz zYp}U9Lh@)=6hdY0j$tY;az7oe?~#(ZJl;vn*Sdw7P=BYl+IuBLG=SYgMW{>rAve-K z^g28DK`5odEjh;Pl8>B)E}6Vp`mkr^w(XGysk;OzsTy!T5w&JFca~4#N;YGM9-^eS z`*;;MJu1<6M}=I+xjbhEI@hF@5mAr2AFpNr0)}Kq?h(DAmeFpS zg@WK{a!4NMYD03Xa*rbt^%R^GW~|`lN_iO-ZNw4Q);jGJ++&-C7Int22}N^w=Wbf$ z+j%+Pw;{Wk-`3q-L0a0`Z_ULF!tVzx^l+#1uI(e$WNrAgD5DLJt)dNqn2H39j*jHJ zXsuwNV6V{j<0R^(%C{{H?Tm5gN(A}N{)6b?@I2i=W9dt@9kLhB6z!sao&n1y{j)eh z>7P9#H~>Kh3Fa^78NmTlVzn~|g!)(0W3@AG6Fy~j>`M2vnY#r2b8dI`7VMJK`sXs6 zvVL_aPAyBK_-UsA$sCrO`qxiSU5d=L#=4shV-PXY!C5+P3(pq1kT1b(2V|XagCwMb`@Dnr+h%3wKz}z=MdB7bt92L6j|erJuX9 zRGrZM`x|RK8yg^jx<<&IB$EfO)kwFqpLzSg!cY&^M(wHVTbb z+r|TlWN4Xxb+y=L?^kFNnVXd%U4)+!LCf4|rF$*&R85-?uF~EiR0m$0lz|<$Flbul zlKz#fPF}^_Zi!8*teF-;^HEQe<{r7(tC+P*^fCmBQ2BN$RmUuTr@eCv@EEYpQh4nrT7iNT2PMlsAhv{f-&s2UBPnR?Ov#RDIjsT5S z%{hdn%)POX+V~k|ZWs>kS8F)+G^~eg>skzR5D==BCQ#sNjHyZ5OE*)!_H1H=3{M3s z#vCa;s4X$;6d=6(H25Yz>f)lf-AAHDl^$yVTm4ZovD|(ja{EkuE;j>teXiv7L7z(+ z_PKRu*md*ZF&CiqL!pp6ybNYG_xf_-w@*k%5RGXoiw5?=n+Ks*eQwN+f?3}gM-u}c zY>|IgthvDE)ZPctkw5P*nQcePjo)w3683?x6Se6uLKn6+;B$;|>bo=z|!0F+wGo0>>ILu_hz{X!>#3 z9gxWxZ3EK)w#BCXMIbD|r!(3DfX&Et>UI%wr9#dZ22$)=d6v{2`2GjIkt&^^YezV0 zBv$A>AnU1nnDfkbBlx27K8tx}Bc1mIjmSBk?)d@<5D|&$e1`Q)IGnY1$t}CL{UGcg zQ!NbHJs_?}KY!y+V@@a1y_vejsR8rIZj0pW(R6)p*qi4+Ow4QUPW)V$xbvC`oKN7G zh1d7uWiv0I?|ymW+zs|FaXyZ&W!MAEt(qoDQUB5A1*ZWGu=zYn3Z|PUXQFnGUcPA> z*tl!P^Ug-_ov~4go#f<4u=HTm=!Zjx{yHANnfhxRzf8JZil#ZE+L?Gp+3RJskgGKF z#Vl`P1Eg^;pOczrasY&Brzy$D0-EbaSYWY565D&S?2?k`yn|oe=ni>;XrtB^ui{4U zL1#{}0T`e_eLh43wv=;ou_~BBP$NxkFHJ3`jzZO}QC2)RI$0x5^hz7R?tR*N`_-qK zkCf8$E>cRf7ZctK6H!u&C%n6@H1%Q!JVkYX?68p;#u-|v-GFXrYW}bR|L_`it}T7t zfUqsj&x%002j1@^iCb4>Wi4E9ku`e{;(#se zXXgKS|5*M0l!nfh72=|-oVFRs)IaS=Ovxk5OR?1lt!7oArquyfQEJ0bj>+7#cxY-_ z!Q7(6DIW?`W?)lmH0m8f$Gn!9xIgGuqABHH zRUT8yw`hYSo%*Qf2_5rXV&Z<(u8be)pB+ow?n@-&+sgQkGE$chE)-j5TaX~Mx%K?Ji$})y} ziB16=wZ|eT^gJbwF6Ya|Y`U1j`z#sMR6OC6?D2gYF4s|Fx?EC6PA=rAG0rE|rE%^j zEAb^QEm(Tr)B14<^h04Ns3?(Mt#YB*7J(;AW(f&j_ z%}o7Fw@Wyg-Bet#X#D>1KDLwnQ%S+*Dmi$MS_cA9TMyxqAkSx|!YEzUb zcbd9+R5s-J?8JmKDZYp~Ru~OKO>cPakbf2zJe!z2$IcRFsp`}ku)9DYx`o^{(5XrA zcPQBtH8<%y5MU&h>P(j{!XmX}YIDpX*hzVbyZW+=h~=O7t6}$rtx&AsUu)Mcq~)iK zbvWMFnD-e{(vM0~^EK_h@$stOS#4kndT=+ZPdKmYZqbCHsivWG-R?z$nk>}XW9Y4| zq73PT1PP)Jae~{Mki-ZQ?jf<_pNUURZnbRefw3rUid*!yD2CP2HqrMJt~5}KWa@?J z9Z;J=9|yEU45N=RG57e6<($Q6Ccm7VQ&e_R6{ZP8vlm9U@HD-amveed#n^duCD_5c zx=2<1Z{Wwojoyhi6F-l>^#%C(GZ1&+Cv<9OxDOWGSNw0m9adyJK6cgEqvLM97a}78 z#+oBQuoLbxWT zhwWx;dK5H!SI?snFrc?SiDlHWat6hp2e^svTvLc>hvELH2+FOx?|Eg=awU$p$ZXpOi<8mjmou=m{Z8A(yp3Ip z-4*9K)|&oFkO3Jnt=Apsn5Ed&{@BbHD4-<8ewjRGEu#`;7*kxZWz0Dx9fmP6J^8GC z%qvj0|CW6WMSA-f)nP~VQ0Xv;c!zz=5YfPK>O2{Yd}=4e_$|J)#nrqR)THhERDqBD zw05gmXa!*)?1MI9W*@UrFWC5KBllHQBVDXe7-Ok$;=_y9eXn42Suik?Hd$lrg74{>zAl0M02iz zplq2&G9Ue11Cx6k$r+4f%8GSlntCXo#7%+CNJ{k63~vSvqF^j$5Ur?jvY4qC4r7a%l&m;1EM{K$4m}){p#RW2 z@Yleg3>Gu$LRbt`;u^WKn1SNC!}&20Y4!kx|g1`Zb_5H;gEG zHBE)X1Tq#Ti{=#!e|w%zS5 zl9*&Q{SVN0a&g`w`z=+O&iBOcBvbG*d?OklQw8W}+%%si5cYX;`9(%a?esA=Fq&h zg~FkA*XL`&s`-xDL4;$B56ZC#wAH%BA7h+!5Alf_pM2$?F-XQo|PKsNq2-%+DsZH~{!dg3J!rw?b&ef(~90O1sW4!D< z%?RXpymHTlNP`M`S`kWhEO_qaqkI)DihMuRH$#!Z;muS$&`}mblufcNxDT*tmtoKljDf}ymUm3; zxdgzXni{Nv&Usx{LF-qGnTs8qRn2d&RW;$%WB|BIF6NB4afUI9aaUT7;0PA1f)2A> zAq^nK4`}O&HP9XBdR$5};%*L+eriNzh*T);_>?KJw{xui$(tUZm>jErD5lzH_Ua!Df+Q&EWDvB&-N@a`*^OKo_N)I3`>0^G z5w=l>XYNNvu^;(POXhxr6x)w<>_aZGn;yG}aSpSOOybr_niHi=6Ye+af&0+5b*@o+ zq5h_Cs=vKUfke|9jnQJP4a~#sFJ$=_9&V?GeOsNE&lwE=mV9o(kH48ApL@-Xd|3#v za@uB?b;OOPy?o7`xtJ>nceVOzx8E?Ri?2-7vTFPG0h`ScuI5?7Q9<~wH{aE6ANMkr zLNiI%@Gi7T<}u<%^b!s{S1TUOB6Ap}5~#Hsmk>Ro!)?q$p^6u<2Sx?m--=}HFh9CL zy8B=dF(grY1$oj^lo^(1LDZ@|@rU=27;R8WZ26F9-*i|$Tt^NT!{=ZzyVow2Uf*vI zGL0YD|7F@eEHn!O=oq9cZOagyN=;YFmP6Ep?oGdWS#M6#8`fJfbowdWm=V@SPQU29 z_k9s%yo43@?Y~n+{M7s=%qrY#!_6+@I=#BaUZH`s#s#~G3-l(*8;)9jTW3Cj`&r6B z)uOukWiXj=n9&0q2V9Ja_n4zy@m}CUHW7L5Bnx5_G0+`LP+VN}ZP`ww?eW|jxtK*P z%6YVhoid+RWb4B0IH_;Bwhe-%$ppdar~2>$k| zkf+d{X?fmtJzir3vuIS(7Wc_=A1PF1ts-=Tcq>LY++lV7pqt zn>mVn7$Q>@Ss5ZK&n+in=L)+$;~G7B!iA~xqX9P2WMuKdBLKFVe;!9CQeCurc-vjD zcaK_R4FGm*Vf%^7{)@K{z;fYt_GN&m=~W?1jNB81B91?0vZOmIx;}ihw;LP25;Nv@ zJHxL(Vldq^Dn59{x4o&at-MD_ZhJkmutR)dW}4uRP_ zOJ{%kwYog@6E-r>(wq{FF*1LVzrAm`bUe6?Vz8_o&p5j)l>+qC22ZTN0B~;{KP~w=ku-Z}5HI-sxW&2Qn?Fz{EGg0M6W9GfBHd z9PGoDV|-CYZTcl-NJ7}vl=xGApQdplM{1VGaB^EIz`*!OTS%kH@fP5nL z`#y@Tvr7v{<2vNMbkD~sVrYFy|5%BbcDL{F)jc7%?X)!C_9gj|P5A33CcG-iM{u~G zjj-B1yHK>qGbInR|5nqhL9l-4JM6BZcCTCumM<6Sqa{kjmJ-bj9)9 z&jo{*L&r#1q7J>hG;z%)asS2^P?maDYUF;(BnQ*4qv&x@CatK%tIZ942IOb8(l(>5uzwv}XaHJ?|Z4dsSJMsxxMjNHbKto$WH}g^U=p=2 z5P9c5+N*2^w5UL}(*pdHfrNr#9|LIyPm8aEL;D5?8v18{` zhIvhg^XZGo9wZH5O_{wT&r@z<04?y3YCPjp6HI4O*Ur(0%)WS*Nlt0)*DfF}p(eMM zdnVS9Bx_@}O5vkSs;4=jUwY}PxTJ@z_nOxX-@&t<>z(zCBNwixR+8uhwIE_Ck-6|{ zcg=G8Y{J^KKWe%vA#$*Gvp86T} zM>3P?jQWD+2jYU!*1mpmPQKFqL%&2#Z*xz(wEyVS>Ibe=lE&~)?Z`gwhAKqsQNE>|j8p2-jEUfhTA|aa)f*+j4OP2KK_Gk{k&2BRJmwu>G z+7A^$KBx^FTc*0ob>n*YxuecwRz6D_-BW-;LZYSwoK0A>Q?h=jPI27CMn$fud*O=e z=>Zuf&(})~3ogQx;6fdC(9Yi{X@ArTN!LHmAN3lek@FB9V=MVkfqNk!@YQ|)n1W4-BvHLausg5$*6#q zoGbywsSh-C<)9i%_C;)(Xs29HVf{jV?KcTNm_co?vTUTUpyA4FIV;jRANjeL2e(sZ zEDzQP`bi$_NEe!NgpMzCQa#kj!t)xyi(%ol)~Qe#QR!oiQMFNHQ-zikEUD_L<4JRQ zSz7Ssm;*S2LLX1z<2XJ3SkzZgm2!gQsM1t)M*YC0f{>fuR_ck37iW-qJyIKVyR7{f}u^{ z%cZPD%@$ZKYtshT#D1lu4g**)DjHT&_r2U?-JWXBMa=w8ZJ~KICz&0Ebv#H5KZ~(+&V#JRj0o zs`Xx8ED3UxYuuMNq^KHqk0NBdiKqAyoMR|VEQt@k= z+8LzETjxuve3!YkK22w$e;%I$pkf8l5vO9IOh zwF`v5*q-Wvd`SxzML!F|L~&{5iQ1W&d2X~k3!{YWE=-AuSJW8G(Q$*rd1R7oP(rP) zUQsW~{H%ajjhQD#y7xAJP&-mrISO;P=r?pboC``Dc6@Y(x}t+`Ab4cp&(+KkP` zpNNK5=*h^<1)-ud>Z2q(JuNXdnOI|Tlor_U5{%7{(gK!8V$7^Fv&rtZFd>Vi6Urzn zSevW(*p{rd>v>aM?Z{$#-OTgD%wD&sZhW3r5l!7m0B+}pjbWsm79V8|X%%2vnNzWY zG@PJYceMJ;c;_bd)sUjP^C{};rs74z0G*=hOLI!=M|C%*P!n9nDGfY}O^rVVMoKL6 z5%#feVSTO$v&%9WTqjHF3pcyjL!><;R>TA;D^0xyOdqRc9Yi+jeA&pqw3(EGE>Ux@DgS*TVx>hiOW8{8TRI@pY_k<3 zwWc)H?8?5a578_|zoE9Ujsa#S)8%&GhUkGQ=4a_=-3Tk9=Naq+oH;S#uo$;bhBUNA zIMYvI;VllUpDYYVZjDysEa7ty@S!{{t<~(1D>XLT$*%n~L47P9#fBt2OvhGQC}Njg zhSwz^={?$Eii`u7T;})O3v6Hb#9vjbeQzyU9~O z4Ey2~rbB+r2UB#7xz5A;Yw(%p$}M4^4m)%VHKo%}^QW2i=)9}?fNvIRfR!^bn}Ann z<)I%I0EsIC zKnnM~j&OSa-1WS*r)iQ&az0I;xArJ-1ks6?P{T=J~|LK@2jPYOfao zG*fLS)pNV@tpxj{Rw?6(#6*>>#I^eOlKREzA4X|;uuP-oDjTP_rIam^$EH2+HN7{Z z?&ZW*kmSsHul4uRh0UBOwnSZl_@aW5pkm%_8PUoj#(6K3t-E5^RVMQ zZ7Vn0wmlr$;At3pAWeJGw&D)j#)d_-ZOmY1a_ZCQr+8(XJ?$Kn6#DsdAr7;78_tDj zB5%BDEBbGr3-M1%#$NPP97`5taUewB^nnm<(K~u)@)`}8tr?ci+rHZKAap21`9=n$ zu2=a;CsJpg2eJNfO^kbFJ>AynJcuIMG<$hcY`=UB1MSP%FEiC9-AjRJU#E4H8>;0t znQD!zujrfx&T1&v#iPgQ+<}bdHZnipA=$n1A4=&ynw4%kY>%aLWJ9@KbF1+%^shNU z6_rwk;X#z(#IbYG8^(Zp{Cov)>-h7JGW$u`&+I2az7&v$b^@6ce~!b6?>^Z9)%jl$ zJfa_HOf+i#APsI9HNVP4qd!~+;I0O^>5paNGkz5iO9pewj#t7UuSpvs7#sNEUg@(M zw1bT~ORb~vSqE3NeRyPdmM%kmaPiglbVZ7`)%x%_t#(FA3gKwK_@OzR9f@B zRB!eRZ$u{2Z~m+|k1#)NucXT3GXZ|3H#g}`tiyjfrM~(W4>&eduOO~r&v}L6)s`U5ir7IfGu;?nlk5<{y z4qkGU$xmfSkvz*0Jp;|h!P(n&)l^q zjv3&VZ2-$Udtg8JLLBVlnh3JqY>K$`cDwr#G516L8?7v;N$(I|rLgtFLNPxQF4E>eA^?0 z*f93n z_YExtG)_dtUHPOsRio)5LeVF@bA#0iG8m5B&OTx|`sJ@P&qN4wsSNPEQoqaj1l?xckC3v{Q9c(wHT z1(m`H=8Q%u*@MRi9H6H2GTNZe7XgH+Tgw3kY!>@ajCM!l=|@m3SsqUqU-`H3I6=i~ zE5TDgGS1{7lV;7M^ilenz|!isgr~p}lPGZ9)`ahsLKP<4Ur-{N>J8Aexl$E{B9*?M$BlgBZc!4iV4F7uvjtM~y(m@8QUVTW9EF6G#cPK(kuA zRpm~fp})D8Ad(|468nCAh-92@F#jkqf5;wz&zQ`u%8)L?6P|FoL7|oIwfRFdANJJ8 zabCKpOc@Y12)A~+0Ve1ikVuTi`ZEr4$r6syZ=y<;S8p2b=AFPs8&XT7S9)q)yP=`5ZgM2Nto(F{Je$V#Lf$n{PmB$t-B_i}<KeJ$`+12QPJsjztN+LMd3b;z+w3gs40Sh;Qd!GoIoegeM$ zC__0yg4o%%xM0C8&g8Ew|0M-i_b(iOXnOw+7EGQ{-pPw>Ue#*q5YQs+8ZxGB;7Oe} zff;~>8f}`o?&o=$Baxe|Cm&1#ICmQn5G9%cE~W@c{HX85#+giR`04Hk|E{M$ zV!Z5!kmZyvYadgjD37nRFT2QbQr7lHyvl#0hnV;7W+}o@3h5?Ke?~5IR z^M1{%yo17vu7<>d2_EMX_$GSsOLrf9zEQn zyip`K|fz|TX(t>SO zEs}R4A~^cl#O;5=?;AnHS?^2S@Ek6$n7sc@K%oH z3BEe>K4bJ!h@%DgAxV6XLx0hq%7-E*++&O{bJd!7GD_@dr?i%-DqC_iX-Td4oJo82 zU$Sj%{8>^M4H6T-$gE|$O=Km_G;OnX&hn|xTSnT*cl7U7weStvH|lkXN0uihma<(} z9$gWQ4?TG{>7QMrv`QIQD`RV7;_Q%dnH6h=>7QKeIj4e*FDPSkV&YLq29&r&|F~Im zq-X^*&ZIJ}%0y|?lqr$dEY|Ro>AR_?nmYYq0JD;g9^%huPZN>OL_>32KaU(q}pF!Edc{gPOQjdVC-Ip6kTRyQzS*FF%rFh*}1DN!#Bt zKIDQ#ewC*WIK!i*%DGE4)?vQCYhxZt%%sP`JzwXt=W|`~Z9ihW6NnJgP82{>1EMoG z$&I5G#CPOTJ5#(HBuMW+*Zik%hrSYg=-ir)LsrbMw)6d|b{s+a6qw*&`^vuB)`$th&3~0LNoJ46GsbE()w-3 z=TL?}VwI%oZsdE}YE+WJd~L13U<5P*tB#M!AR{1?m-ut&`xn;@?NgLmQe3}}okQQy zK_B+oX$R-eH*39AxiSH&rlQX0&m)-+w#@?Yc5^ND`K7vOB>$i$aSXE6H~-p6%EC8I zN+647migD-suvm4O9QsdObckS7%;umwK!;-7w< z_Oo4od4r}U>K*JFwz}%s^iJ$uyJ+nDaWS%B5RaptQ`KZgz3v9pt1~?m)*;wnkjGDG zOE|z1yq%fBULU+FfxU%-^fPWytb#v)emTkRRZR*Mw?ecvv@FidhvgxhsJWZw$NiDa zIDmfYC_k80R`9J&#s|==qzu^?wFO0ArrO zSf053^b9Z>q2km0N$xCdkNq+Y5A)ooM{?Hbps)Ws@I5Ou*-29EiQ6BQOfaBH@S*F_ zFbBRwC-{82!KV>2_%{!A$W1Ha{`K+lpK?=ZY z?#o1=PdCvC+R;H9qjBc6V}=t@6+i0TeXSbso=m76#*J)-L%Mc)f6dULiM>C-K5hI8 zNd9=I<9Te`dYd#FvD5dpQUYfEl4 z?rTn#W02Ou7g_GxSITy)NFrJs&BC4sLe)+os)KchZQCNZceY=toA}7G;%Q6)?nVi6 zpo}IQU`B5a@1emWHd5o-DYB`V#^GpTGv{Njjqt0Rl~Qw_-;w51q_S`-4bYh9u`0A3 zc2WPND81$X)^*%fC+qCec3|G=(GoNp|Zsu$fJedq}$ty3ZH@(%LASSC2QaK@7PWv(*wD(!vi@@ z?_xVNu08&D?n3}oNyH5m>HxM*bgO~}JbattqlvqNdZ_P0p97=k_%Y-XjMl=su{p|M z>$0`qJ6(tCo%0cMsTrUJyB|t+eYg72?n}b`qOQ^kXf;H}dy3tJfbaP)DHYQSZwep; zfV|P^3n73a!w-9h_d$Ht|C;+C)PA;Zzu!+o-s9Z;$|4>F9cR0Ei6%3il)xQu098bt z4ygWy1Z#EI8xlNjxb*ofmB%Wrp_Vn~91WKyjXsM0*+)6{Tz8$fS<7Lu(*o7%K3ETa z>cjo0?+{V;MLZ!5Bd43Jl@K)1QItT}NQCq3LwA`IwAM|C)%P~L#eIC^G*R8NAu@~X z?ny=jF#${fpsj6hRX5wW0p*26~cEm0|0AhR~7ANP$ z;^e&PvG;Q z%=3)pSs0zCl`B@0%^)$lTq&`ut3L+3!_{>nIiR{`&c+H6gkPNx`K|#m4AoBluE*H| z3FVC1!`{heQ>?LDpF_njSROD1{?od=rFzq-H_&+zWBn8sRgJ^VKA061;0~>^kRKle z{xf|(T}lN~hs3(bYNg(0sn~QHT7tvt<$5#9-gI#6np*m0tgJ=-E27_sTad2pRCm!b z(8A{ZS$FUE{Dsf0(SOMOTi&m^u8`N3b2m4bple^szc&8qo6S*#v7dXBDEgat>(O?B zlsQjQtLVgoZGN65-Mtn9YTmd>A$gn|A427BObC^^KSi3Pk(;;1e~i5+?{Hdhxeq`9 zArlQW%8m=`Lj-1|QhIR&LO+ZGXjU(=Ir-liMprigLO#eMn@EBBzE@ zjBp$mBCP^{K*(l0<-Xy~RJ}=rNR}qtPDG+ByqZb|=^`;vqD%bapoePZ>2j}zB$%>n z7eZjpE%||c5XlO~t3aDb zaeofUp(mm}0Wi9NJUi5{&4FS`zm{uH)>@vXU-Og^A%drj1E$1^wrR1VZF>JopLu4i zXyZ~zpTf0h1cH9e6iMP3WdN0g+pMse3=tLqLGzIXQ5H+tRlinEKIzw_UCSYl^lYYI z6BU+7)Cg&-iV!bLR{h-Z8;m!|?fK1ny^8H2o@9_9LO*c}-l&RLRPQRw{QCEVw$B*|= zn-|(Vzr?75FFgPv^PFVK^5&E9&`lP&yWJsH$MBj5C7X$2>3V%Nd+(tOWT z6O-DjXdWu1pBpip#v%IIk&;X^QSWf@CS>AD{re&%S#wXH@n0&*j=@9O3bSIV1?ATc zm1K`7BTVQQD#?1|iN^FYCE3!{=P1cEiZnC5qAX1XGG@IX$kdPtpVDsL?8n>AyJ@_6 z(bl}+ap`HoOd|mrZ{Nt!kcIxzyhqQKsV7@>%Nq6SVbYX#(QkFqmvLcnm6IYx(_R!t zb6vL4%`odHmxOBw4)%Io)!eN`1ZHt30<*eUml62;8@n}m1zMWG@UCi=J4EB3)5#|+ z$acMKF0idaxuRSx0!`KlhX>tk)6-ZE_LQOa>G2q5#PIP1ndot-R7eh!= zncmBZ-V^NGd-n0t7M3G=+8EDLa#bK=?;He@WY3?z6#a*gAH6l5%%`0 zdx&y)zQVn35q!#xM0o?Ru4mMyHD`t}=3t@L{&FK%D5ef%0;$8r0Z9VX2zWA`uONeI z&cx8c8rmtfr6nDjv&(njKmX;=r>&&A&ib=*fjKD#Q|@~LPtZtz*1!v|Kbs-Ib#9!$ zOcx|5fh;ytIDfj6-~_Ezs=KFJ@1rLeu=!2DDLyk|*YS+`;|5 z3T^Bi9V)c+dd5DIauC}}l{WYn^jL=~?cKOIO)s%7>P>+_cB#@A6qR+*YQ zA40o7ILbJLwnKY{eF*a!JeZ&S=jqM7NXXQko98H{>Ny;f^oSZSQsZ)pC z0j8gv8T6t)1C|zA3X<93Y}$p1yYAM2$vm6Z-IwLZur2#kQ&RA8d@}9E&p(;=((siA zm^|P5(O7f$_PY{dYKoAlH|b_D_H3%xF%0kQUmda-rqV4f%e6CWS#R;9$aC{vS!;7l z@JY;G*e_X^>{F6z@~a%2aO*ZsfMI!Cd^zXPeu;Bx3wII*q!(d?&H<*34s_=PSx&29 zW$3!_9y;UOUeo_bnku%km6mGn(OFHT#<>fR&p4p=DB&!vCQ^l>VwSJh1sX$MdLFBX z^g=(;pd7*pwvnD*e$fH7-#7Kz^OE`$zOTvW_nxAsxfG(MR)v)CRG}Jeo~ zxuYU4+A}oWWuwo(bdR^|Y7v_(fqCV#Y7pi|K;P778alLJBN2MyMNO#@`NBz_wd70= zuia||s+SSis(FPR;X-$K=ebc>SLsiyU2EQ1;aslGSdf(j+N*PNw{Y!TOi@nYT|D@~ zWwNeph`Ttvry>CcM1}C(Ub5g%t@R>}9h_SGGkwacpdJgV8$Vv(b#J`xbu!16d)3Wm zvUt_apk;JFQ`C{-`V&!)?!i+W?Q}cWM{~`Ggz_vh!t~@YOigv8wbrX{_Er7l5J_{p zhDf8z{d5~|sAMyFU1F)Pu~m_WLS&92Re$$yW+>u9q(PCJLbhr}UJ7qUD{`^kFs_pB z0)@cv!FmlCT43BM_WDkLyjm4t$kFhJ0tcMV(A1Po&mmwsK5F0-cC88*qPTg5un7t5MbkZ9)#^T;TWnP#a6H=E#|4KWj!N7^mWkP>8pAQR-?NN9js8Yj z5WXF?_zKiYu z%mXd&i)O!Px*=S_FeUm}9%d{9h42OOeZkjg`p0_3)Y@L+ zg`+>&UAI0DhhlWnJzi#c7DgvZ_ZaIH%SepQP)e*<9Bk!w=oOD9M<>0aEsz;{MeGwZ z&&N1ig^7+rI@7ws-+VwdE#Zy!F6lRu_2$=l1COW`OFxD4Gr}!CIV(C}cP7K07OI8{ z)u7vhPgfaxoAwg7M!jl?U*+pnn{8@QkXzG&K5<{YS-=|(&@GX97Ili;>!)o;6PeT8 zapa`ultyuc>-ncxqj>5mu|~0{NUAi7Uw7-C3L3?M?mY#=QYbDr`U(Abd4sDX-A&}5 zS2FgdY&TYUQAAzFzj$ZXb}E!u0$6cl?%tRDS~1!k^|B9@xkD@zR*OqH-%Zllt3$>L zw-c|WRs7Sfj6qhgYTD<17b0bfG%BLrqSfwL`_Su3+`9va4Lm=Kjxk~?z z(Z8-2BDa&hjk6)}FBCXbIz#m=50P<-yr77!dUHdl+&vjGNUGxg(~`Y7#oZqwD%mv< ziB3l`=oX%-ZQy*12#_2_dh;eI6}Px=t?8B3_H(_H+AhYUUHL1x#3H)FP^|%ZtP0o7 z$NFY(cd2RsH^!E2+US=p@gxRc#5Kv5F+LI(XQI$kbt)&g-NlKqrZF18XKq)DcHMjn z(m4u4fu`@=TOeA$-~TsC8>n}rNC@THZt*J5_jpEFkQo@=-Rv{)0%ZTDXu8n1r8m5f zH~$}d-vU-;vAqvo(X3j1yn+c%F0fc zL)pdB%F<4DJAqf!RJ2U(bivA;EvaZ}*3taG@0$7c{`ThE2;S;{p5J~R_-4M#T-U7i z&RT0`Sf>;4&zFfe)I@Wqi|;)Bfe-ZqyjZW6GrObM!b9{sa)`3Jh7pb|sXyOYKqKVy z_&Q|$-e1nXI0Z#E>-UH=XkVmV(bfjL*%yDoCz#K<*cWHx3Eibjgfm0N@?(>~&@Tq4*|(P+;YAxp;1+lb z8ppYHZ&f4R!X7;3Y)Sm=C`&{&fqs^j*D6mnXe;TxnG_6rrMyy6SaA~YC6MEK#g+emdjbrrApK!nVth+vY# z@rsPOT7*AP&ILn87#raC2+#(21m_ssXH+Zywf(OVClOdT$A0mfmE70Of%6~Sb#rVs z{@7$Q15L)3rfuI|Hct+YxdF()i~}eg12#ch{b-MlA!juav)@5738p~x%cK6?B=iv`t4cNXVzRlmzwy~n6T^TxJOrA*UzQmK-^fFBn0fn?(64H zmKyw~ItcA+SL>klbGK>>pkY)@@Q(*TO==dzHI*#8_hzoxQe%r;57 z+Wgk?6;x!Vh<=C7uM;0QhL(+Mw9T(Spb8#Rn(_x3W~0VhZGNXmX`5f}?M|B?Xby@* z=#y#e^NfbxKVa;Wb#o;s96=Q8C^~u{?RglBL{8 zqm&gz(RtNH2e9cC8}GF9y~J?<1!Rf5fR~f(ml5`uu$7PPd5|AGgQfh&sJ3ecNiS3p zQqvq3vO*_U`eBg=r`%ZiuMtr=R_OHf1sGNbK0}9bSoWW z&d4KJ1Rzq=E7%x%i7L@lDH;^-u`g+FAvUT+CSmL|AD?LKGo-y3yeC;;84r>Mb|l3~ z5l385(>}x3`E%N5;&89_TXTxr|E&3csz?#k@CUWM!O zaeji{FM6dX@mJbs3_O7EVj3D5Q)Ak}7-Xl?nyK#oOjnN0$I4a8)r@}h9E@%{5pQ8S zY>!ewEWb(o!^%UCN|zFsprUHzVx5%6DcY>VuRMiV)`L{+EcA1|RwsPLZMzgqWXrsr zSFzqPLH;%=7?^XTy#DQ_mtenv;0Blr`c@5o)a;#Yt#)i+L_;Ym3f`4-m@t_@6-)_% zuJyVky;es!Na$J}X(almyv+3c2A?#M*i3hGsW#)JTo`KYx#S}>5=4+Bc2v;c2Ulq_@U0Rl9AaaGKY}~ zALu9382Q~qiWw;~ujMdOX`T#Y>~kTv zsoAnlj53K$hh)?{@5R{4 zTUz8BqD>&MKN+~3f0OgICi2=s-zvU_!7qH?UPboWDi~Ylh!xA$ycsjhBYdKFP~`4m z*r(kisRj&CZ{Uqu4N$@MC)pnoa1u+(^bVG1Fo#WI0@4NNS~I&~(R^6uW*^$Q5>KY^ ziES&3<-2XAdPe{2@Jf5{Sn9{YOu^aA1`kR01`h)Iuxqb5*Cp6T4T#0L!9yv&x96<~ zw$FnTPjd_MBsKK~EnNupfwX=BsA1xuWkn1s|Pj=s97TN_Oe;V>vT}@;pBPTKf zVitvMYZHl}@M>yalj-p9@95X42T+?$gj#1+X(Hu(@|lU0GBVVpCeknUS#4i?p`#Z0 z@v1i-({#7@Ce96v>2AA;q_J!p5UHBV$~0E*pKX-d%yT%hsd}FeI@8{BENnSd*d))K zu($%UG)so;hc-~M?lZs@}=O3 zy6r63=7!-Pb82H=(?b~QQ8~nu^}>F=C@+%;JUdM{NbpT_bf@n(CLXQR4Sr(}pX}t) zXf);=M0hRb&GoohoID`;>g4`cUo+q;&)A=snXKNEEBs+_)vNaqzz99(`QEZ7?SfZu zmDxI!*J)@(B))?B^oeExr|JRcrWHyi`_(5B$hc5vGkhzFj1;@%lYaVRmc`)eSTG zsNgqp3}%aUb866bj+!gr<+@3ogoTt46_t2YFc@p&uD}UR&kD1p3uD2TDiSZiP-V5c z7dE|tv1!Qo!E{ylhUSgAxRTX$c$3#{>Z&#LkXx@V$CWH$BGOfZ_)-y61FFBgzE1sw zYq9v0p$0t4hGPgOSJ@SS(-ioHahL`C!seyqZ647K?L4Am_r+C-ej0U<@JxK*C)8D6 zpa4cSo-2v#E(kObC_S}c2e;MATZ~fLY73}l)N%Ub)WjX5Pq@siIrDbj;)yH+!8Eep zR6AF*lA3O%z12WRuANM-Y;`#_V}@B8x;eWek`QW#ZBNZ)Dky24T`FPcbeH#6_Vx2rb&M(bAieoXxHyPS;ER~aeiPfoHn?<~jLPV%#i=m}1Y%^d} zdyasGZ0a(VP(jtT@K-3gDyq(6f00_$H;X9nFh12w({<0qtMjQ1#Jx0C%BR@%XJi{> zovR`}1xrV4P+u|&(g$dbWOFM{8dWbZg~ZrF_lIY2x|e#AM|>g2H~8;SHG%iW@!x3v z8;O7R5yK(=48u?ha$Hgd_ai202**uBfE>5W#hT-ujjPRZvrrXew~T{~WXPYBzcM^c z-)s2ZiqzV8UH^tT1NsxHP_wgNQoxDtZ9?1Ij$!NG`gk0gqAn zqEEpuyy@XhvSF~~h1L^uLBr(8bHR~g=1%M%dy$oQ16iblDW{StgY`B?eqQL{u=Abf zwe~wW-T`didV~irdkPWsPZhrWObEit8)q0aIwU(b9Yn#EwV5RM{Em2(g1(BBrowHg z8?g602v4+lPOg+%mTUN=CF2mF1o#*gmTgb5 zJ~tUGT~3GZmfX%i3Jv~FU4&B=`Rh~gDOR!i*Q;TFveZS5V&zHX{KU^jY{9W^Rmb}6 zTgfXhm~2&R$hVMmDR)*v?#yM`B6U`q3)T%ScBXIFi&<<;M!vlg zmyURzcqq;jiPKB?sZIgf#nQwt@7msdRZ*j(nHA{B8@Uz(A5-Tt$8eM}YhwN5Fa%kso9VkRN0k0r`6Hj?$B;5M0~J6RPz=v0ELSzkf3+@aEqjg>1og2(yF;O0qS_2326 zqyXv>45e^@NBCxd*?0esFBZT@y?QFR`iuBScHd4-Vf1lE(VL_!bx)a=GfArF%eHh` zWkOjholhZWqAfPnysC0FfGJ$be_s64qHX(J5p55A?-Xs(n2iW zUgIh38{Ma1exHKn5X)(@lHVt@94?-PT`ZOipG4HKIS;SAG@9%kRx6mhQp+kEX1DP0 zKuZYe$Ctr{rgyq9>cT79ljG)~F#It*Q3oSr_eI{AVs0>8;t0=lgy%TIr6vp^TFr0D zO&m*gtEJfeoW;JL5fYJ>)xtXLknVUI*n+a+)ZzB2YCLJxNx_M|?51JL` z>{8F7OQP{E#D7D!w!cN00DsQru1ibXEo!&6v?yA*R8rIF*{v-ty^ER1>S_?kc1GCJ z-!%=iwA!)MwSB)CM6WcEU-!*)oXYNAT(f;IyV=>k&u(a~zd$4Rh`XzTZ97L)Q#66R zX+lZrB@;?e|1hC+qIMYvW9M^NI618EYLrj)Qu)A4!M_-bCe=6)q`Lc(epJ z5YT?^2*B2(??9I704!q&(8@XtgQ>77^d6-ss;96wcmNJb1k-|g7LT}sF&$T7zH`M^ zZcbx95<3p~@!njzm|!Hx_r^YrG^K~YNw7m?b~8`mHBl;cG1w^Rj}ntVNMS}3>?pz> zN0=;5Uc>!NN0?I8zMtg?k2GQRHeDn!L}PG+=J8UzEj!r2(q868(a5u??kUC<3_`!D zHr=g1dARULvN32 z<#1g22+61(9tabB%@*xd*gl0I6v#H>?~Bfae+;DA1>3GQE{WA9&~gm|C}$47XN4+x zMJa|c!bFApXgjYzKX63uq`m@q&xOmT9D-MBjZY-M2l>tJt-Zl$X$9!Ulo)=dcwaXH z7u2m)GhbmyTpR#vw3_ff#RL-%RDjlpSr_ zZ63L(mHQxi4Im?9d-uhto^A^56F?G}V^Pd2C>y-$; zgqv30RH@`|$+?Rn)rSkvvv^(Tzej?Vdj*>mgDYt8_|67X4n0S3uJy=M^baa(u^P#O zc);4Z(@vVYT@pozKAt?g5JY0-rHKQO?v~VoRRY2)|43bl^6S>N^0+xKdUhcuNZ5sj z`aGO3*a9ai{|ENl6^(pGjwwsekpMdj#Au*wBzhqy)0O57A8OzJ6fL7#w`4 zdd}a&t!`jMO-Iz`yj7476)u?B%9#_ zyn*poiVIs$imG>A&Qc#<$<~>yB^^H0LSdz9_%(rv-t-G@BNPMNDTP;_rqEK1fe-@7 zN6xdQq%^E)8s1SqPazi2A`7T)r+HSwXKTze;Srjh31s+$_fhC9^{#}p{8b6#v^#{( zLWCu&z+bT7Op4|`t5rO2GjaYHPIH7a9pPb)Fl%DJKhlKNZA+R8Ymrt#FBjttEkgqW z^ZnrjeW)o~0C@!o%+Xi3gOo$}VBYpQq+E@G9!5&G5sKGbqA-da{d{~Kkde#!8yWej z3ACJr0Qxuw1q>34_HZFfPs8}O0~rd zw28AX)VlzkxEF`8Lp~0}>y@a0$j1&&`S=8C@05?D@x3h{ap*YmuT?&N@rkT|VB>I& z!zLu{A|1(Z>nk6-jQT(M7^&ss`hUC2$BYN|B_IDGq@m^GGe{*!J|@>kKDI^AI^|;~ zDHgHE7dUl5CXRcyelqdmj{-6g zJ51D3Cbqy=KIr>w#1&p7g5~D7qeOhsDG~eQge*uU0s|3`s8A`wYW8LBVsQ6rEe6Tl zUBqA)ib2Q)5qS}hQGA(APJez>M?|pwC=m*_uS{s9T7{5kPIJ(pw7eDLDr(ab9kA!F zarWFb&Yru*nYruO`MdC{bK*ab^xdamgXt&VU^t-Q)-cB{E_tO)EJwBZW4J;GBYZ=+ zw*cBF9_dnIWck`*`{?eazEN;d!Q}}qEH^F?D(z_K2rkDz>If{A%xF&&&GZya5^$h4 z6%zG%WV~Pp%qGs?m=4+FG-z}PGj#c%P`B0(Q>LEsq zXjaGF3oXF{mS>fE`zR~{z5>b&Mw_b_8NHrSyT8)RmnBT*5)+aBI#(j>uPzA5?!r~C zt4ySzuI0Z0_~*Kx@I;Ua^%0dQChcR@xQad^0uMwV5v>E0#b+CLo)u3Y1YQydh5#I^ z^*gf#Qs9o+dKG%kU3gO11if2{GGnF|oyybCMO9IOM^sfPTt!uJ8P=OoMvDLcQbz0@ z658!xqe4|db*FadAs-}|83dz z&UA!J9pQ3ExWa^oT3yST;93*6Cj81{=Bz7AnSVU=0_QaI3c^Xk8>zUL1Ox-kD1g-% zS#V`4x|0#RqFsNHipuM(DanpCP2<(nw0SBW;-iI27rE3X4*4RS3!H} z_==gTb`K+2yp+SD6s$AL4=ULv8qJa&c#%&Dt}^50n`-8LTC+m3MO7!_!XFDnTuG@H z0eMpxPfPg1Xncxk;dJU$lHo%ThhZS_u^czZ-&YsR7TpfRpQ`WA)p`|nzpYm}p$RbK z!ZU$s(wGsIE0ZrX!0~YtXn8*Z7;mCXi9j(q_^{u$R)jEuvuu)NP2LX9|8}Dc_Mvx( zet{iM2d=>b985Ew=1i963;tW-K$u@b1G5e{d4%5QB6ZiPGf`kF6{wEI-%e^`GCAne zHPX~dJ$3pMK_HX##fD`;(OywfVB-w#0GT8`mG&_^~!@DXub`hARhP zmU)II%0v(eV6MzU8HLSs2DQS5uR0VqTHg$PO-EZ_W6$gz3Y(40i##DUww(iB!#{Q9@xM6sqe`1A|Ur3~*se_BP z4Y3IAB<|5V02Wu{9nR?=dz^Adzv(I1Dk4Z4WGggSTRpiOwGP0L(stEvmf#(3`Fa}F z7G)dF{2$vOJLmrw2Il|r#WppOS4_n@v{CLf9%-0{NqFu>xIva6Jc5C#OChtD5eZ_4D2)$7FE$rXdz#T2F60;20#%T(}fMaUWp6E09(RCZIM6fQaHbNK8G=`zUV?Ba=*osVOT9)>r9MA16SeDQEZ@B}fI4wmV8JzOa88vYVY}Htb7KBrBCkal8VZRu0if$^As8Pov zF0_nxkLP{FXX2`+z2U$q@G{0dJPN`o0EF*KdCaNu@A6Q%qAokwA;c-SAqiU_Hkr@D z;FQ@Kr!0hb2)P86VbN&(06K98Bmw)#K5@zA^Y(>HS`e3{SQ&6OBLzweX&l1wNV4Ux z&Y0vv>ydvl4OdK345{~5!6RkU!{8CmKo>mncmR)p7$&lYuqTl=^fn7QXd@epY*&p7 z$rJT+4}59K&iM%p5}wE%H4PFAUN>N5%NVSS*zPb!c#0aeb+JWEmJfbYyLm-M!C0h; zm20c%{8&Urzi+r;k)(iArN$wRsI#q!Ltc^8LvhGgLisih3DMJ$5kj{PnsVY0zkh?+ zvueX58ytA#`-6u^exbbn+2E1Ip?G9rCx^Ta#Us8msj{0al9RY3(=Y7aI?sVe?t0A? zkMMM+03La+=OMx)zp{RGpY8UeHDN<29{KSUNBvNRVOmY+L0|F5ah_(vRMU+n8hPG{ zMkf2`2-SQa1V?hlK&V92n>bgWFi?z$9s{b;L@m(xI`@pm08j|(eMaDYDZ59vmh}p; z*g86PrG4_smej;j9E@P&Wz3PeKZ=>L;MoXR_a+OHu;nGe&W19A9k}{IHUjKWHWKXc z+M|gzZZni-^yJwxn!}RLEk8&|Z#%8lm`Dy@S4&KUl~ErfB1*wZk~Nfq)wqgMP%Dt) z^p?@MV=IuL6pTk9aK~04#n}p^I9q{)bg~GA#?GIJOR&DsOnD0S7%tpWe~4!)H`_Mi(yEcKYq<&%%AUko-(&{ z>+Ze2hWHjL$BRK+Y6EY~-YGX;fR0jqj@8&|1(#$)xpyo7HCCmJ0=rirEp_)O9VumG zsEJHtB*R2VQOYZkfHwzwq3Tqo!qTZT_!zV_6Sq~2iA-bU`w>J(W)Hw7e1dt#mJPeH z{*FaE+Z63x7VTqo3h%}6UkCj2^)_0`7ODmBHO0RwxE%eaK7N4tkzi&?$PmmcCX&OP zpGKrAPp#U+Jh70?tnCpQ{2eNPspMJc zQP64(^5HzF6nWLbU+STe`m=Jpj#B2~!XLqFn=$7du)ow1CzF+GOR%li3-*^PJJ&$v zQWI$TDgqeJIVc7zRLQFio%hpUik>3S(v?z65YAsJXY79aOT7#u4JsMOrr#fbsoU_q zjeqOlFSYQ6`uIzs`Ka)#;V+fNMy0P1&#vZ&9`UUaNaXL#4{CiDf z@DxB6zb8)KE1&_aJrHN9hna*;{B)M06EsIwu(Q;8fDZQlHjafk;r*p9lyv`R{iSa1 z7=T|7lLJJcO$m=}f2r|twfIY=V)+-PN)$d)E&l0l82%flC%~pIhG7?fsi9-)XB+MW zFbLTo{!-Z0v5vOk>gQk^F2n2f@t5M71H*YJc=zcqRoF$Vzmh# zQuFSHI7C-vva3S;rCv49JTf#yr9*h89^riyI!onC$oNY|UH7N?OYNDyZ-1!_qgSFy zJyc-!i4W+N>fi2=@*Oka3M>thriSi6d*`Gy7)_F z-XCPjVsD}ZN$gY*5{DaALej~IN1J#Wt}6c-H~BaWuUCQ)_U$j#2jAQBu@3%Hulxhq zX`jP7_)DP#b(W922mGIWH1hH7r(NV@PuQl=`8jA(zcX>Le0)ymLd(b7nFL<UVGbWa3fC z(w2$4>nsz$dJ-}bi@|K7s)N52Bz{05hVz%oJH=fLemb-6{!$ggDZY%q)I1Xr!S*kS zP_WG~p^@rEg#Q2bmx_UzM|HqI>I5v+iqRG(nn{&I7FqoVe zIod>|znVyd{k8j6e03+Z5b&3ZM+)k6{_BK)uKrT#s0#h1s9&Lmi$`_NXNC}OK9;Fv;8kZD`p^kS}2k3&*k8ifa0mxHE{(x|tkoj!6t62pGa7I1#O)Tk zmRl3!wv1-5wqLQZro8&8DrnCjFndBe$^gq4^V~udd9?hiW)7#vW=~Jy%KVb!a0^v zC}%m;$Q~TrJQw?kqDinSANCn!=|y{H@c_BX6S(B~;b|;RQQvsFkrj@Y@wD@|J$t#m z&_AVako5~9)i}&lQhIc=#^LBvR0CTOqt%&K8Wqz0r<3nOQH`7M5$Q=Ek)AyoSmS!g z+hDSIAa-{K)P^)YMPNi`8;kswaZ)p^{?bNP9 zADwIf{)Y$@MiaF@iC2nAyk47lAHg%5Zb|#`$%ReH0WQRw;po?^Ub{Vnejm5(+G0Om zg02oGOZd5ArQu^plyrHSrRmb9$#+h2(&VIS7n-y(7KM=H86hO;w^tk#x-|5dc3e1m z9Qv!K$6Ej|MK=R_-2Skk$Hi{+IDeX^NA^oB1Q1B)0t6`IId|whr5m(Z7TZoaW0a?A+N4LZZ>* z^c>kwKcrH!kuv_9N4wZuvM(%T!y($iemcvW2Y_dh_HzTv``lrI{Oll?XD-V#&y=Tz zo$kUKCE`mh*i%(hU_yOGSXc`}YEH!j}A0ZdM7NI+AbE;F7}t ze!lzUiM9#y1|OC%fS<1u?Ql8 z+#^e0oJp2Wj_?UXV41Hj*=<{~LhM(6E?!(N@NTjb-ZgT-JN3x|mfx7P-0`BffO0V2 zG<=dI2zZ9i3;_L@5hGq5jWxth`qHGZcrih3naI@r-ufKOmwNEO244KQqb+DpMt&i9 zF<~&O!G3ZI*lY1c4ZPSFH*LH)4}+9=@ko9OyvSv?(Jecg&w}vct$5WhZ(%?Q#*2yA zAcNl?D!eFQW}SMcX-&M?wu4hPS1T9Ud^qtUoQpBS3|{o9nQdf?8eqroU;_o?$-z_A z9LLTPD^`h@jMfVcm_XTlp*8L~H`yHbLKv)gk-Qy>72m(K7OWT_z>1of|0R&s5c9W; z*jVv}xn^{bgu`RS1Qju4m(!VhI~#* z|2(|-e1roJ{RQyiko2H}O^y99F9gQ5?lciuFlhSidy{o_){)n=(=4(?+|I00X9xI>AI>pj$z0eQ9U zLzdO7l5|0HSRXm&K}f0;gXU7S0PN>X@D)db-lE}HivEn9Dqatx_`5nmogxVb0l5?c zx#%+*9xcKv2+_frdV$vdwLpHsXin#P)79(&?QiZxb@@kWQP?sM0UOD2lOLKvIl6)8 zs2IE&k0BK`0ECG2i28)OzgWDCaa1_MkK+W(b1zeM$8{l+P;35d&-&IDMXmAr5WccHoeO)aLo; zQEvLYMWWAJ2z{Q}f5=^*M^NB^W?WvTj%vZNm=fhF?9)EKbj$<2ijq*it3?myE$aA3 z-=h9yQB(p6A4j^)u>3Il0t6a(i&`{5TVQ)(%*}H5Mvghzuirt9qK{#<+G8nIRB9x4 z`b(eJ2it4^i1lpcL#=KrtqGG*b8MW7PjQS9^paC+a^@A;ZSDCmw*yqG1sa9r%K?8_ z^5-u?=f!1osn_xm#fQJFV_ppY2yiOiI~Ajh)c+Rzn#xIzJHN*A#V0BCKawR70SysW z3XPSwvAzdyi^h@xbyiP}LKz9wSYia)vd9d=jRJH5hTw}2 zaBK&LpcOqj6osN&_ULixAXb5_rW7OFI z^qV8?Nf*YP*QhK7f*vQsF3D}&dDX8OA>*!Y2=s3(0hsfY--E|p1WG{_tsZw@{>Nq9 z2?7locBh97J2T(I-2)kS1?$ahXp?#|>OjU@bp6KL+5;SKH)W6x>NeiGaJ+SK>UZim z-ZJkq<87nccsuiPJ>E!)LE{Z`ML1abRPq%E4P!(5N=Y81eXWV42U2bv3cc$ktiKZ{ z4cOtpNi0aP%Jqi8`lbUdkJfNz1gTwnI$+yBIlvbE5-85Y0oaxj3fnX@%YQR0Y+F|w zY`X|v`)US&mTwDT+lvehq$fZ0a2?d+FhD{vH%aV}^Qw;0IAJuR6lUl2(a7x#Tv_5a z@44eO+NBQ;Uh~^;DHG-(SvRw7G49*Itw?Z|Q8d68J^sA33K!(pm| z&rE{$gqPwW{H6meif10}2d+w@aIWlTwp0kzfTZRSXA4h8%+|1K17r zF7?*s$PJu7ND;RxN{fz`D-qCu4D!AdEo0-i=h-PnK8NVz8c#AG1?l51k`HoFrU-1= z8LE$a?Wz!IQa2QLzKCGhzd-Cx6!%V3Elspdb`t#*LT$2#Tb~i4XY(|mUZd|w=r)FF zU7Nb;D{TO4BHAsjWZQPPVYlT*sX^-W!<%_UVU!xT8YLUw7I?#e>VKAoH;jbB8_=l@ zZ$NfbK&^Bt*?xB_*?PX^AkeVzW3FDSN@JgX#6%b(&r)(2}+iF8NMFuhZP<_2@!Puk6PFJb(kiWqu`GOz(pR5c~#P zAO*^hAfzDnxEezGpxJ4K=LQMr>nRnTc%jqgfPfCzX%CwouqYJ2Jo%HOJQ!^I)VuBI z%TZZ3yy>cc!~VnW`Y+l&u}Zg2Ce1r)FGX$ox2I~;zuh0Ae|s5$*3-E0{f!sQVviqoM^2hh1OxViX%-o8yd2GTAaYDqQ30SiPjHZ1O zaS#FaM2Fef{U>*>%w@;d2JNTPUt=!W@kiitZ(S5I+hj4bWIS;|nZs#{~w%epUiXpff z;3KqOkA%CHk&ofL&LmC43F>Kt*e;KnJ03NGA^1C{tI-IFldur**!gitCP=mvrqBls zn~n8pPyAgCg&le!3qpRU5N{iN;6MA}Bt}TQKfX-jO@XT>+#|d|V>xI~`+ShALDOaG z?pxpyZbhfWXva&x$({SfZM+Chu}^?$4lQ=eU-NTQgzQoN?B8LhG5eeS*=rvRmY}3Y z3APRMmp}tQbOm-C!FvEY)#?Toq9260wsQijrQ;E(!dMD?W8lp~x|qV-_%U1}AuNf0 zh3}2DZ|9iXzUJ`sRh}}q_+Em4oLLT5i6)easHX_0XQLI>4;QkFCJBYBH6}s|R7*^x zl#!1m!k(PP5D5Gk91FzZbyYKXD*u3T2sJ#xrwApeLWD>Sx#o^X-G@-s2kz&`kRA?b zzA74LBw{l~w^?cypBttqaD6OhcK(@VL#M|`(Nxy5R*#WmZw@d<8P=FcMp$`2h#O|e z-0)w&^F&u!l&bfdAp(C5H|?q6T-KldZUMjEot&Ar%r;*J%?pRh+d1eM%nNJy^*);7 zio=1dzaqSbi!NX|HtdJW51M{aRe z!H9$eE3Y3XjE2WLr)(p4p>aVBjqgQ3&)K*$v*s5l82lnMvGm6C5Wk2z_|aZ}NjQ3` z)sOam6oHJO!4JWDgj;`gl0vTqE~HRXk8nx|CD8tS(CHuwr+T{6!SSDJI{1&&Nz=jW zHyS#y{b+;eVAN<$2OMoXN^>?b#YDEU~0euOA^5OE{y^I3o@;9aZT~h zIA2{B*EB?a0Trz*t~ugdz^c2k-;c|>i4wA3TcaH9D64wn8Al1jtLdUu$B;t0ubbGi zU6=6QJ9O!6{0ANK-_Jq$j^u2yCgOX!mRV<2fji<`0@76j0Lpy7GUP?5>funwk8`mE zilA-F*_wXi)DH|{jC}e$_%vW5?B#ezwZy-wt&SaQLi|B?q0xxfa^!07k=_}=6gOZp zu=hyE`mj=c$KE3y>%%H>hj@*99|5Q7Ic4xVFj>V9sKy1f0@dV5FT2aWbe`|^-P5Ma zcs^Kd=X>39U0_izF?2kN!5_m3CTxVU-19h|r#Zrzj_@!?nDW6+Z=?xZd7aH>!!fwy zx_gZ<8#Ka1d@C~pzNvO&*2pZC?4M|k=7NyKbVpZ7IJ5)IwI<_8`Qh7lemgyVYNm-qjR^S)kP9e{nV z``0X755L%=Fz0<0{79i=_OJ1#yD!wQ-+5oJoJT~jPX?>Yd0#`X;c%|+d0+AP>X4uJ zwR8hpCve`E77HuY(RXs9@saR(mxE4@AcBCLpzx7tCncw-Dz%D9H9Q09;sr`AFT(12P;so75GUrSBBn@!IknYlt4nYr8q zTE2?_S~~}=%1&_K%|`5Mb(EKrKM#?YF8kROpS9on*}U7|OeNa zax}iTgx}QyiXya^o8M3c1`W0H%lVQGs zis&zXKIXm4o$?Y4HL#z}vtM!r30SNxE;%=lV=-^|mdw|P$y2U$7nAil|0}+JGVGI()4(!RL?_*%C5-%h zijIh&`%xkkbYGbe&i_K_knd-61!nk#m^+1@{{@4|W7jl|@GaqaUx?&0(u#hHAdh$v z)3A#9nnSO_X)9-k{4rdigAu;=_!j%~_R}YWJwROBCV!Y8)J2Z z*g$=0A{5nXnTaqT)Mk0@Z1!)F9`Bpu_6pHz;5dW$^QhB_5&xZ}FUi0^8SMz-dzdzAL zq(@szggx3EAzwdx-`x=X1uJ<#_9o~!>@5zU29cftNGnCMv_Q?o)y)D`%;!*2Ov6>w z8jGV4u+W9-0V)-tjwoO=)@p&8;?*pfsW~iAUE~ac5DV1Vl@1G3IX<8T>Qvmc zEl~4u4}QO)_NQOI)!zl#pK4zx-0E~!djb{K`|<-D0M5TJKd`xk6(GBZmew>wZTZG& zdnljbVtY88eqbSXsEO;yi9^?Aes{fImwBT|J#BmFdbzPZ*z1IaaEgo#D&i(>dtf&P z*`Vxo!hAd6!uV+OU>C*^i0-EzD;hSaDFWK^#M9SlgZkxb18sjsK--{RL@xgIFdh`n zZ-@E>@3`5aE*2WgA$`~IXZ5OeajtYDz!?AbwV%uVi-YY@-+kqzg^yl$p@o`us6)G- zO9(xTT;oO$s|IU&SdGRK7eUx0k54u9uz;2rh{GUysJ=nd!yJ4OL=QL1+gzu+=lBD) zMZq)BW_V^#7dIC{KRp~)dr*!2T>h9J0A7EBpWtnw_Nm*QH+zdjd+tnl_F97abB~jUGX6!8{nR=L7qd+EAn#`r zv}6U=8_<&Fy6wlpwY6BXk~;v% zoGzBE8V=_rV5NTi5KWF@Jt2eB`XB~MPb@N{6{{@ zeF;l&1*FsN@?yUtltV!8+=jrjVzxryB{}D!+*K zI7bn*=ZWS6v-K3wux+ej8aa;p6HVC4n`n$!@wh|rBQ?W}gcTRXTNz#72*7RKqPQFK zb=9wtwq&tR$Y3%q{0Rftxti!w+rFq=n8+5DV^*VR;=>(LAesYKdEzQR%jG_Ag;{ah z#sp|kUNAfMQ>3ZxDdV_?HWcaDhces@M1#XtxpWiTD|SJSguZe`S}l*p4V0i5pL32? z%`3R_NJf|@BmVuSnU}*k%CXy_4+;rV-!G*B{T%kT#5_r#My6+P@K=sotEx{B{hVZl zNf5gTB}kLD&5PY7nWE+<9>FV~v-eb+WYNzh$g_{6$5Fm4JeJgWZfbAAk>=dg71D8m zb5p-g;^cmzP~&ra#;G+D3)r)C_8)2Qz;p3B?OALcIXZP9>{)CXk`G3^7x#hmv>li& zm1O(t^5|67h%j&%uLVQ&xv5EVVuKGKlR5&_goWub>XiZdkTQ%zJd?vy=O6$u(QO`5 zPq%WLqMdn2*<3lKOt;x&X&X{+dnSn=4=I!O!@U@D4{a2UAP5MK1S}E{PEEERA&fPL zl<`$hnZnUra^gJYSj}_FN1b5l9+sE=k#?$5cY9fuZkJ$WM}o!*G< zE@n5g)Wot8KdKWi(&v-G(a#vf;RxN!8u+X}3g^YGTX<@!H1$tk8 zZI4qb6Y2lRq3z#WO2)WvJX~M(z5pTTrLGRLzrkuuePX8igL%M`oXPW2hk?o=qpiHD zd>P$O>ZoyED*N2Z+eG^tMtA8x&r7WWh6)9@Ywh#N4$?k_rCis5eG1 zLsGO%nB_o^GL^DW8{k+~s$STK)GRIqVW_C3?Bhw&4r*ynQN5F5I3zSN;pkMal|KNK z<3F!~FX%%{$rKs8+_#U=RJ#K(j?@=H?y+@(JbG&%vp{3seZP;u_Cb|^4^fqpD6w*UJ zSty3z+6A_xcDK?Ggezzh*fbX42i`|{a~N4;B1}#F?Y~Fi3HUN1tTKzvAHy8*{Dn-V zZK2Fe_;U*4OvmRe9e+$}q$8Z;2v0O&D{nmXIsUdmTTvuJ==vori(i7&l-jKw`$ysh zq#Pt^CoK=CdRov$88xe)Y&}+J4^4~Iwejl)Em>_jK=Hb4nHH~drFfl<8|Z9O5&Ok2 zQElR-&`9TgKNx)CZW>0uW*GT8`TY?2YEC70%GcudB40T+*f#796d_HbnhTKrgc8sS zF}#mBJ4n5o=#a0oZTUJ9kE>Y&9sqx#$X9dT=dGe^3!L{k8sFRYuT(xme&gu^AzdUGX<(~o$-ET=p}9n)=LrXKi&1~ScUh4VGn z=1moOu5BYDs`GbKeg-8HkUR!&0v_;~R`PAPV_FBbVS4(xIi{7PHtaF2$DhMtUgk;M zVm-Vay;`TET4@^ysoybE=&|#oP^jQ#U<9mk<|Vt#ch`=fF7#!hOKr);ZK3hE zxG*VBc5Kj|z%B8a_}UuzMxiup5!FmdNtn4+%gkpzD!^G#*_I2e{5_1=^YAC`Kr_(l zqNO9g$nvO?v(RySs`r)kvq&g3>&**;vd$jr&z5^T__ICUE!)n_wjnKje&D20lP}U} zRn{U${)i(gC4@HnW-H8pi>qdJU+g=FtH3TE1x?CkG@MFcXb|qfI@krLiQ;k_?4&BD z5PFgh{MQ!$XluL4Z@^0?aeNYG6UVy}GQ=^>L~@X|dd5VAI38vMv*CO0f-VLyRL1Fj zyom@YUJW;|moU<;0W5%X)s%-&gvar(Dxdj(rY7*lINsQ*9$@$${<{-ePg9*YN42V!h+b$($vLE#HU_HMvLp+;_IrzPfCMF6 z%g^WOFXFl9Tnyf__lMxVb6#`a#P71}+;2zjmwo45ibl}VKi&$q?=(Qpf!(jZDyDts zqu3m2>uemcA;z7ct*@Yn4cc)|{I1;B8P##WInFh4e#8(SPY2o09eSo>qiDx=bECp; zH>c;d;7^Bezd4!y`^^k1LUv&PT@5{wg$-+FI4-dN5}K~&eskrc!|ykT^(->mUl6G> zyV82q)f#8-eVez>)+kn%{}#Wcl#$V#U&L-3~{pskrVfOb77lTF@UA@3cfhP;ytWqY?Hg~EGb{D#su z_CIN{U-X^Aj6vTY%m}9MlaO_QzIQ_l{%6v6p8_27v0g3sAc(qe4@=!PU7v#h_fZVq z*R6x-yIl59taU%P=|FQ(XVpT_PaaVZdfvbN+(6I8ryF|yRVWmg3* z8AQ)q`o+@6sXHQV>;!Hl*a=sSopit!C&W(rjxA2&j5q;yLi$12DHO$jS#@Jz{2u83 zX>gmMVlwy~4LGL-E&ug$%l&>Lc5%Oz<4fj=L9SO4{fZ}|YGPLtf*y3IzIBTgk!N5qC@ZukIv?f_kVF;WoXPB|T zIST#}-mcoD-o-@#R){@r7n=VsvYza*8%^i;j`qNKSI*WllPrfR?wTld%&8h+i5d+E zJRWu6k7zu>gpDYYdmhJgat!<3Oh=gF%f6rG2vdOZSBLdvq&^n77}vmhvQhtqZV>Yb zRtM$F!-YQzxi(oJXd!n1>&f=K%z>so<88xR@OrXY?;DZ(jtR7U8Ud6u2gP8?DtQI= zJh1g-*(eBi1|u>Hx1KBu7D<#9AX{jRrQ}fL$6hYV98{Oe6+dlBKB@>qSA- zZ61JKwUx`QrODp6i&;%Kg_dii<|tH`KWd@bTD%u+?xAHO5EN~6I-kL+cCqzHM+OTj zs14+s4y&56=OoS@^B3`tFFToi!ZyQbfK`pPP~I(~1+aLk@q}%$x|C#k<*Zeaeo?X|I-7~$G^<;@N3HFS8@$M6CB_O-c ze`jp+CS4Cuw~ENpjq3v9MCjJ3mMt zNI^i$8n3jh?Q=cZtep_@VAqsdehZsfPxh2~COiW83A|wn(p3-gJ|IGt8X+OGo^02* zdMd{vlBL8WN&cJyG{nMY%Ub5ZpHse)LG#DYSvosB%n{CVgab0wUQZ@%1d5{Q3|&vw z;}>mQqm2(41PRb?vjWDo`m85g^n5^Sx~(UB@Es#F$CyCNn-D;&=AeM=gacns)(b@l zl9w*)$&#>P7)XR{p5u*ek1`}lR0{|8v~)UN6Lya{yF=Y{yqmlnhR2nt!oJs&oq_Ld zd0B_`WaEz$dm5YPAfJ!^)w(}hUjAj)lReteMP7E?xG#D69O ztS390mm2HIzS->P(Um45Jvv_^?9mSp`pd5;dq0Xy*6fwv!?~X9L!5skIxVU-U})!@ zFf&-8;c2V6@-%dk04pd5pmFHvW-|KWHHW3B93Mc>d%+sqv@J$uxaYE->?QME(0a0) zr>~B96!2e|eZ}7~_NDWm&`5}Ah{pk;LM@-4rgiXo zPyCVhPzOIFwgly*E}jI!Npoq)q0q+8bnwq94_QByfK4hx_7}f;wBE>$3+e2|L+e|c z#X}`xJr7wtG^;Ba-{e^KVL)At{lzbqw*iLnAh4LM*XJ6u^RA2e#ZNl2m`o$Knv2O^ zebwOFR}j$V7oN&3{>&VWNmvhkkHR;8x9^LLrFSdhOxOHUXkSN*D znU4qCVgB)olLoT0U1*@@ID_r}(i|+q9_#&wP z?~=Ev*DX~>g3UyO(_B%CtC%Y)bYMRY1b16JCid9Fxv$|dtfJE&Y2m{Gfb}P=8_N&% z_dVBH9^hq8OgWJbyKd}>Y6>#E;Jz_o@cChG`x73N{pGFNOHteUvEFC`(gC<{@VVYx zKX#ft%t0e)#q~8)A%qUY`Y~UqUFrEr4m#PN^&M>1Dd%-sKQ{hF+sNdy z6Jq2B0GA&1T|ZWMnWKcYtsgroq>%3G$9{Mr>`sW+|A6wXW)nkaozBh;Sf_5=-}PhO zYwY!77b8@2{aBZwv|jnt58vwn6Q{mp2>gF;A7i~zQFuo+#J`&B$I4Mkt8;d27M+1| z5D{k}4o`6gD$#+-vW$g}YMktPz+pkwBV!mL5cU+T@Z1>XDZDs3wP1DkRjGy7p-9Fd z`PXgq1d8KZwyDnQEEeVk-oz>^?-&Yr$VzOGe{Vc|hX0K>BYy5>jcNSOzcn(8@f1xU z!xrU#6~Vg^x^Quy6ta4g9@uwvK9nqmp=f^<<=5Q2q3; zd-7L}nAZpEizXh`kdl9E>Go9Xv_*8l6K5bYotW*`Y0JC?zr*Z^;}Bc*!by`Gwr$0Z zrbBSD!0AI`(^7MHM_Ci@WTgr_pwOly`S-xK=r5l(p5-J&So!Uc6{qv43S5cQt{iDV z1lfXY8^Xd~u?fg5iX{Qc>soG2xDcPgxB1FayP;X!!ib_YtN=R=YqnUj++C5@!xuS)@iuUv_HrE5O2Us{mR9t=Qe*ytZ4M4zmuc! z4ws;2lmbpxVE^nT*7!tx%2%j3v;NgS?>|;PRgjLa(jM=&s_WokHMqVvfT~61(lv$ z6=_WzgEUazowOfU!){OX+bTQO!*wWMSh*kKv7;Zd9@H(5ZQeo8uro1nmIhyTU5PIv ztO?5zWgjf|6gIBJ8UVHj&sQi{M?J9(YkJVe$<{U1)BsMb1lh60Nm284v$LtMl|t3t z)JO;!Mz^<{o5ygny}q<2aOFv$ZDpHtPn0!&98?gPmvsM+P^@}sY&2)*9LWGSIryev ztw0++mgDp+A9wUv25jNb5AwT^{g1r`yOMJ^MzR{7mCD;}mvI0{FZHd3*E7yns7%iN zA@IC1@SJ<~7h}?vTgk^eJu5ePn$6|o?WoL7-)-#2V%8)E4YDvIQd|}3T965|zwaxg zZYnKAatc!O6bYy36&vHj78rZsyW=Tp^B7deo}!k2f46Of8Z)L@gzDUHH#?%-_fO=Y zI@qyJXdq6PN>vnZq3Wf+SxANV%G57c>U-tBlkpXuUOY(qT%ESXv`<3Xbjl<{P$@al z!c=ebm~&0+EoDRO|8vl&#TjfZnz)#$mJ|wZM6+IP0}E3jM+%U(U6GRbT+oDeViYL6BH5 zxNh&$zv7@0D^Iw(@Zr?NuSUGg!t<7}ylApKaJv|9!FJVjl++I~zQY2ewxeR>{QS=9 zy26@}PIhNqDGZDx!X^slb_v4mR%zC?Topg6xt)GFnA>H~adNx&T)3SnhM!fTNN5^x zJIsO%A%fW@7-mO~YM5Off{tF(%+9X3oLB5*b_4j~2{0!wwkAGeYQ;fO#-@jmft&(Y zUg4KD3F^M8t!RVcAjs2)qqlSSMBUTU(Y7O+!Xr8#MC&Qr(~vWE;e1(48Vs*=yO*vr z!uqfr4nhUtZWUJU7c8~iA@|&mriRP`t3|ajzU+Q+aK1*jJi zQ6Qd)hh#wsU_rCq5cW1{CRorv?*n_g3^-2M+a-pfm8tW13-v0Og#?-{KA^wr&+l&L zcSqUZ<)SD^V3CT@cXs*yf&9VR*nq`mbnuA?k=m2j*4c~)oC~^GMpgEWucnfVI zn|U$$5C*mksRqV_pMfpoP!_zU+1QWw9vB-7$al150KR#g@C_C-;;*pJqd>KM9uB_^ zCmRv`X7e;IH6ea00c!HW!;ARM&(nzCH2f+6X43HMe7vLXXOz6Fkg?%*jNnZ}vkdco zxi1CxGEw&NjTeTuTnqWTu~{2E^ZYvk}k$kwV){(rL1_Y_{`bp>9v+zZmZK$BTH`Opr+g&| zuN#&(Nt(d_mB)`JW#W4#K0rhA^Cgt?gZQEDpFTuQPa!Tm2NOm?O~m&enE``GLj{4E zlV1gK!+NS9hEoMGoGOStQTIlH9Q{axy@6b_t5Sgry*4hqi&+R71U9L_0PD6LT(cFN zO0C?rc;@Jz>$9X407K9gj$Q&ItR_;oCQQKx^v4$LfeG;nsAxE5=W3=JF&<16vtfB& zAvOFQr0A$&*J^9RNIMaHxP;BATYpeFStoE~9Ppn8hU^N&Wnyd)Ip)KqNHWk-ewMlo zyh2Zg@X(%|K20rgQOmnv$5Hur0O7?0vk51~g5168B*p|3-XLtV z8enp${^TNl(vP3)xftriad@tNMo4qzr!*SWikE?RYR;LL_!q~6(?JHpCLek|3?3}N z8{Wb`IA%KqzStTJ?#ZNHDF_TM6Y;P0VGi+cre+~v@awPl0S0@bSA)Rd{pdl#sSd=r zhK$6iPe?9ISJUD*1=4x-Ay$?J{l0BgH(a`kG5D!xX^fAW>e57|0fvd$#r0=$& zat`kIDOfJ6rSs_SV*9?}ka(~PvzPKG-S+AG;{AEIoD?Q23@>dj31&!wX8HB&js(3$ zfD`H#J5{_MW|i20X!Y}UIt=JjKSiR$Pp0>HFcFNo0WlQWIO~kiVzRhsBb3qRJwC_m zx^%lW7#gk&(Rt~4)o)Sc4KQsKVP^}xJg7nnL(d*A@=&c8)1Fn+<>G9UW#h9Duzhqm z&oj6Ri@Q_0|KLHzvc#Ul<=lhivG#PvIiuLf4$K{@fdWkG)#)p>m&J5@SH7v`XdytR zxE=hrn-$@ylo@|8x*QyM;0lDgm0RPhjaSYW#6Yay7x-HaTGspN0c(|7ji9q= z&1716a?7B(%vfo4zOp(sv3x`oH+zfq;0>sD*J!>Xm`dw)!R1?dc2TjrNn}3p1(tko zQZuo6qvKpjtR?Xlj;Ae6EzHnXv{df6MBmr>k*eRe-B=CX$r|^X02-7V&CIkgmszP| zkI;UIb8s`@jseH~Yvpad(Sf+*@H6%9Ozn=thARcdTb}Xda-3n-gWZOm0rE-f#vm~*Dpw~Ye=sZ)_5`> zl4`B=I-S@A=Hs7luR*UHZF*e~s{2%RPjjJH4BvXus~3~adeSR20;JXkqr*{a`)f3{ z{#UA^sr98ThFYh)QR_WXnp)X&LDb4)oM>LppKn};XvEpCmCiuswqS^}1p_Q~F~|{$ zY08}-#k8$IB-8oY_=d1AzpA=k=;lDzLF3rT^*JC*u$X!Hmp&g7xtp>kv|{rZSE6S~ z2M3*XLFK8sC8#_cSI4!(mv$KkYkqg2?PJ;{V=fzqhK_ES zx`K1~3nTk44{{Vn`&mhOCOmk^%EQI${_@NW_2*eWEYLVbt|zd9sjFQ$t%xVER{9^Nl*wMu2u6vCZNwjU$Lpy zTH~;JvDvj#b{6Rs+Z)3Ol08kmejm2Ixe1TMmM`6u?=e;{O!@lPEMIbM<%N| zYZ0?V|3RsBsa?M2EMGfj4IZ9OAp{BJcV0mi@Qnsm`LFKOZ;j+zT&|VF0DitzVV{ge z%Ico8Fb(JKM`}1jbC?@k!#k+!E{2!RFKPfTywO@CwBC%0U&NkIuxJ7NXa}wwonLnj z0kk3Zo4*2{?J0C(e7Rq9z)!W6hn!Gghxg?krHE(aO|x@z0cw^#Kk7vIZ__a=bHnavl2*I*5zel5kBLtXhbTIx$gAU$sLkH;*VX!PtxIhgvxpVX6CgP{sS`eddrPkU*E%Ha`ZliL0A^&^9YuG|NX;`Ws_t=eTZ=EG53HZLvgIr zC0=mstib_j^iV+GcnIgWtJ{XP7g=#Gb z?fB7HN30|BO~vDISy#=kk@Z@A%RTE4GlR2!8UQ{hYd_F>0h>ko?#E;ClP8Y9BKwfx z<{%uuD|CIrlh*}^!-3;Jx%-fnCkV&S;g&|u^&3r`<#FIp9EE|^ZjfRTPC%5uH7wdZ zR{YMPV&gYK2z3E*=$1I3&s5^j9~j#0$DylnATe<0a$FoZ^bf+M}75n@c9)%FQK-T&W67@Dwcd6!wkw z6s+NE9^CFzFuxDniSRHOt~;B)NA<7KPS zVxHZ?Q#c?B&{K8%hD`qo081pXSMoGTTxcheDhINZ750t;mx(@7z#^!%W$K+6-_U}t zr%qDw@b2Gv@r)vBRxFK1=FjIg~19wWFTsIpeZgC1Q$sajC2{)-Ov z*Xp9LQ7dcEA1q6PvmS+Ls8*;Cwg&5==jUPS^)b+EpkCkZ)b&cR>jl~yW7v8>C(02+pu(Ozs8(1S$K`}qwZAB*8zc{HwmJcD>O zr7RTV9`(s7Bo>5NW8Zn^ev*3C+)tAGJ8)l3J{xN;9^t=-@DF2%EPa@|;2k|)PU+}A zUj7R6wJy&2+S88dmAa^%5JzqEwNJmSIbVx(&e!@m64diGUt5!Et@E|Jk+3bJ?D^WF z+c5Gl=)%p{&b!?nnKkSWSaPT#FQ)!(_J_$cHU6E0fdMM<>vCtCEE~^4z@D$YjF)P$ zKcvfJTb~;;UzG=Ly)H zv#CBfCy2{;{y1nuiLJWSuN;V(Nb2>#M5qUL0+=af26*7`dq zYxg@RYp1rZ3kAQuCWL}Px#1>jqyHY3a<|o-tZjTl6D!r%PGW7!RFF&KCJ5-s+7zM1 zB~)-R*e7Q>lz@kD9(3O@P~kr3XGcRY*gE{fGe28@ zvrD9kNJK@lkCun|F9y&i8>MYN`=VyDv z&d*K@J3m{+`B~o%n3ZL4e%6bjW+YCr6P$CJ%+I>w;+UVEz^Kg6R==v}XUlNqY~bBi z?s${aDLSgyv#(N$fF@X7Mr6&SAUy>*mql-$L0@J{7%n=a>P>XhXJdXYAsKzd=V7?Lc4uMDr8v2oOuBSRZ*@eCzf-^dTE@gla` z@ZuXOHol4X6kQU}k8#+XHgM^E>6)R0+J365=*3gk3EZ2OAf8Lg)Kr_dnt<64(e@#D zjQmD7^upW{JoD0R1RDl3^*G#{hwD`8Xs)8u0y9_+1TK1s$)iT?rF!{^dmqv zCHRCh{k6FA$8e>DII*4~%kNOl3O>S@Q+P%3)3}Z+uLv>jRKkyw38C<86L&{$^cEq; zWJ!rT#`1*_Q~w#=7h}GPR+QbmdMy*(Y>OpBt@JXhGq!R_wmLWZ6uv4AJc;EGuAz_0 zNnB4ryCde+y%rFjno|Sk+s6`CQYNb9;vx108ikm!bGpCEY|i#l_06p2E){D^JD7eZ>+wfkbuAH9VGQ9moL(Q;~@J1#}-=2@Kw zO6^c(yLxM-dgAw~?W&EiuF%vDHMOe;BHE^!p?d5I(qSKX_8`cXXUl+$_0H*UMy~2JxC*mlmf}iSI|oHp|CWd*_+CBYt#NHca+s}hFe~@aH)rBTf{@wvRym_0 z@n96rdm8ta7=-m`w?|-L%bZq4!CU6oW7WB}r5VO7t_<6msE7uhgJjTRU|+&z{vJch ze9=Edc@iE6aA5?keAnQEp~Ywn-U^J(AET)jAU^(d{zpeo@9JgNh2 z#SDT+>89x5QCiKnf=4L{+E$JXSIX3FvW3W)#nH+GQ#KH)35ESe=K5j@DHit(`?K$f!e);$&3eOfG}= zD|tutTjCtHFfW>6YmeBXNoLD!a`(pHn320EQXPX2IdWS`0%qhkGO1Cpa_8l74c$iW z^6&M?<*>r!HZXEu=Ey~kQ&4ra_Mc`B5zmGlJKuv#kaLj?j;a?#lKH--G8_z(pYq3W ziG<+CFa*d)m5VKMUR84sutzfgwPapol4>~eVq`5NgH2=(BmGQ->8cb)fJ4q`#=85| zIp!g|Ud16&^#RkBz41O~ez^GK$QAq5s?iv z_F$C*@f0nkIUK1y%|<3Rtf_#)xtMr{q8TfD_!3qGlanHpWFs9$uto?wA+s(~)LZ`q zm4Kmpu<|UDBI^R-LdKYYvN1`O^hy)({Y#)qp#1m5lkGv$4`f))`F>3N) z0UrHhGx-X{29_d4XG4QIJxxY;H4;P-VQ0)ih&01a=a0;Dmt5h($_J&qiyw+H6BjPG z$je~>l9(Ual9(>J>e*NHATQ+$ki>i;L=txb&gg36KN;66@ISrLr&v%Nkib83On21h z5zhy}NXIrz(6I+(?*@`t(LxSlt%#+<{ZI+@*`_{TfboU;B(YK; z9<$qrAqW!26d?@qq&wG8^@y{^{nPLy889Fs z(8@}6{3Tn?NQ-AUNrTXu_oh1pv6o{AP02>jbVEX4jK%Wz_|Gxv`PwBEx`g@h786- z%^`C=hByWZhfD!ciWxBX_wiHIeh--JyJevIM~WITb)UoJ1k#jX@J9PTK5m<*$43Gn zuZ)iwUVm*4*7$hs#ltr~o}0`17*;Ri#0(Mt&?x$U?7a(kRmIiEozO&sLU*vBR8eCa zHCVMlYfGwVqCrn;VzJ(WBBqsEtW?uBsn{w6lPJd!pe-tGX-iw$Vzm`5wY(N7p`EFQ%&?{!1^6XuWk48gdzazTePVLy7B6#m+|0PsT@i^} z6h`JNaw9qwf6FEM>~_=fqW7xs(4?V$Y5T z^!SBFG%vNp0Ynl%AirPMd+jI37#6MPY4%)hYJlx0=a69g$@v7d(l_x8cZa)IdQE^< z`i1sPF=HIQH>Dyo#?^{MhYC)AS0j-8LLnOyVixQnm&BW@25KAGZMfGXRV%eJ6{U=g zow;2bt?a|Q*Jtso8s3vH#)Ec{M$Jb5!Z$FkQ8`@OubGPE3t1PdE4I-8K|4O)egSI~ z&Z;L`dyU**w$G&r45&v>*_dbiZ;s?fHD1KoR+bLit!`ihviCG?BgtG zT<4wq86kUUz}-u#Wo7QIV%)gVLkaQi=iHQL~WZ;W^d1-W}+ zMrb%aON;aH=zc_0DK4%#+qeJNi)E{yT@ z=#uo6x-zR|M+VyQF9K-aX2W6S|;j@ao3Ob zmB7Iba4T9fFA2`xeo1f+r`6Bp`Nh?|3%I(cC|I#p@3w^Rw!|98rDMXWUZlR4-s8Dq zv7TUq7K$fi)u=ty7K(PDGS!#cd3sj_k*C?8Yy~WR7;6dLo+ONg>L=K9 zi#yv2FE`%Ak`|NH7n9U?vD8WCN37Pq7QfC7f6Om`;*aDlRo+tN-7I@H(x&pV0kwH; zx3Ou_kNX&#jIXAOhXA^Sl3pm>!+0#T-IKo>YrVb<)*3Po&tfSmu4)6}%}u|AwIVM8 zS~p)sj0?GHJ9FaFe(^DIRk83Cu3FlQt1kG(2XNJWL2Sr17lt~io1wxllML1F{gACO zm7#VdxeVSz##-R0Arlpo4fzTq*F-l<_{Kqe_w3YGCHL}8ADO4#hh&o^RQaXSMsJ?l zimk6FPc6OcKjo?WTZ#Xgr~c&h-SO1zH>UE`fgKg*NA!QpSKt1p=c}*lnaWqcP?Y39 z|2bc+x>`ziAD()+1h5b0sm6hdAye7WOrQAg`00q0{un>KpfK5=h@VQA3l~0cWw#8~ zE8P7s)bg9U8LHM6aok=E6@@#LPkeujpRzpAsfeS7>qD>QA;o}z`L`EGJqZ;2P>#A| zt(gMdKEhWx>R$HT;s#jZemLr-eL3pthdoCX`|H6`-xEhgp_uF*X$Tbx2}AOg%jSuT zT%8>`G+()VQu;Fw+CE1-!QC<~H0{TUg^KvM!i~(yeqNA-6-exQTc^3s%1Z3uy#>Zf zEr|?z2TD*l1$flm<9Ws!{ZU(Yv_%ANu0kjpgWlP>%bjOihoRQ8zv{`=LdnT_E9z*| zy>)|+2$|h0L^}AMXTm)bCR?6|mHac6Z`8j%JC-KCgJz-TTUG3Ky}!HTxsHt;b31CG=tcm)?Po&)TqWzE4epq&=r+9gUntf!}@yYIeT=tRpPkoo# z>53N84Sl=xvDpu=xkJnDN3$P}TGeeF8A~~l-xxh3`(eICKFof&C;4ZZ$HdqoMk_pOZz&HvXH0Q5105r z^uhX((Ff~CMjxynxyW_|$Q)hcKsA!7WG9j?DRiF8v%l+oD)k#rytYi@m~AI^ z`>y|kO3-`loG~X)qI+|sHxIs-eA-{U*z(k<&OZ0&bi}=X@PF}Dt3p{bk-s0&zukP* z>NfHSfhHZ%!#$XL{j&$Rj`2>?{;O8M-&>>NU8c0FW7p?2^;-K6l}XFYeg68Kxy1ih z_vhH{29t89mLjHciOxoM*=V^5&tA+}#Tw6Ghb(!C&J4a^ByZsiEERxY`)-5(B5&cN zgKHOs-ol0{)P+HHoqN8ehnRnY3@0bZaB@cI%dXtrTWXb;_FNKs*-Db=V&Am7MNohf z+7C=cm`6?sea6=l@TL`Eb!1O7zwvH7DK$K~nXGcz(M`zFK6KA}mP%a<$D5V87oITl zk81jN_cbfKU{mv-=jWfJA2#<79G^P(f5NSx=iJ+;ta_NFkLWe^q5juv{{PeaXrlSI zOKCQ`?|pf9vtOI-XaAA`-LoGo4rl+N{$_t;v!8v<5K3P6?E4!e^_h$}t_ium@iUaX zg`k}&d7hu;Mf@x;;%9jgKg)~wSzg4?!fR>z+k8sdZ|D9O9AJLlgcV%((LB{L(eFoO z{9LDUVzn#MV{v;MZ*ETPJ*t(*#yw|jtU33{U;9WfV8+&qJR}8K2$WuhKQxP_d3rD!LB{da{pO)JE+%Naj{FO!4bTF|?Emy1MXW2oHMVp2SRM22r zVg~-`qjq)NIBHj7FxC`z%j-LLC1MKwmJr`2oxf9{v~&#W*sjN5cRdMO8&A557aDMP zoIe&a% zZ;OA|ul&ZzAFAmkzZD$2FYc#V%OI|60EP@8vuE#PJv8ipjp% z@#<2K9qZ|EB-tPPn-Dwx(jRtYF58W4cedpgi`=K`6O!$`pT;LCM;)L}rphh*?w=yJ zeDd&I)?2Q-?z1WIL~D9)5oz7@J|fb;eNz7-((exFDI%@kt%!6z=eQDo{{ZRi+`dhp z@)~o3PI^4hXGe}ME&+AZ+(>gNjpGSW(@+=hI6EEK1FJ&GKFASc;KOuO&E&(VN zPcKh}2cfLcj5+%n*@yShovBDD4A^S!<-?4}B^LCR59b{Pk7IQ`HF@P6^5NzqJ>zTY zd4tG5SigJ7hY$Y(DQ&He5JsR}PnM*7_-92Txuo{7{sH(*e*j$G9{^Y4JCq`venX94 z*}sT*kQWhuhKQ)I0=ny7Ktvp?(A9)G{^hE-2$~cTaS{n)up_SEg^7s!D8$OJV?z%S z@pv+(h={%X17&uJAsXBAC-5*soBbH#{7z&_scB5SyBzYF=nU>vh(q)Gnl9x zFAcuesCBx^jzm@IE2tRY{Qm2t?t5Q2foJ|<3HR$6srRGYdxusLYN}n6e*9>E@5^Q9 zNsypHfBDOrQ?eNnd000kAsF(hpzg>J2z_%DAao)tYF_>@RVPH}Xj1Q=>4sxi4>-OO z!ZA96g9$9xJuNazU{BDjq&l-E_GMJO{iR_no{MFLj9#UU^7jN+JRD`+>usaFnvyHPjdl^f^povpef1E*=@1XNs4u>EZm<;6INvai}^LDqBOmcO6u9+=wIe zDpmU$Ok+ZDvH7XoV$A z4d<0V>_M*@Kx9D$asruVtsruUmZR*qq z>TmAn{pxRv`qSU)4(~^QyOP96fBPF~w>$mqB=U*%Ot3sPnzKIo+hsraujTV`A3=XB z4)wQ}_US91#}4z$l-J)r_x8sjpO^fH_t!`E*QEWuBS#W?k4t2-cD`$d_e)Zgw|PGc z#q;Ps@Jhy5m6+lElG}EpyqyCz#2WmWmTtrQwln_|=nugL=#7 zpQt_lhrRWMhxSf^XLowrXMfN~Z`;Es^{=-j2KUt4p4hG4_V5Ulr)3|YxBce(eVT6Y zN&Po{d9S8V+^ybrwwgY;m)^E3=abRf_LR3@s-AS}UMcg?t+!qA3Bhw-Z@ulVfhq7L zm8FlOx0SX^9O$dJJ##R;t+(Fx6(#ny>-W*y_M3(3wCV=2##lP3FR_`J^(LQ2+*lUp zP)Z&LS@caxOwz%`*SSptkAVq%E09k#1mzn_3f5P*@ZuRhigQ07D{Kk%7uBw4B$f7( zM>il+Nng|&yZie|ar*Ech19mI$UXpC(oo3vI2YxPvsI%wmoLnr!j$pxb=^!lD^xI> zrO$mQ7N2JdXsq#U@}a`u{>3c}t`Lcl(>zz<#^4i*E62Ww%<{eFb&#j!< zGkmru8(KWgziFWla6u{o@Nu}#IL03y8(+zYz2y#lZwQmKz>Z|;qT1-NetbnpNAb31 zchIP|OPjtO-*Zai(5(2-1{~$nV>7l_Vi&1yXT;i(Ymc3mJB0@1zF)~x?@AkexG`g& zc=L=c_kMH8G4<=ouF(i$%`;x$S);E7PaoLEjRYw7dJ~Ip=*R}oK&Fh60%Y8g)Lz_> zHMV|jRR^CC+Zx=kh-`4%BOi*lLU1Z%kQc?9DOVhC1>oXQtsdgy#z9%d@j*Rceug17 zm}m8YxiMoP)f9!$t|g}35 zDtIM@>BX#Y_`w`q`#aSvA8#^NWzzN%1Y*k=5dEgdeo?Y*JD=nY=5YBB*ar6~32twW z-R=up{Y*>tUULxdhf}bXC}(q^&U#9vkRs$pgse-4y;;shRn8na3 z>JLI$0vClR{(Refz2c|2U1%Z0lDPy8>>mI&Cm$cwD-Xix6cA$Z)j{2zrhu_+Wm#Hd z>$(KVLd6=tlvXt&^$5@wUq|t^VK?~v@U+jD##?D(s}5Jv$I_9VrHvV@D4ymiR~1Zydzhj3_0;%`&sRw-dWqyPGz;*%w{E3@3v(H;8y;Tm`{Gu*{8)kKuf zv%Ox;5_Rpwuujw)o-oJhZ?!n1U5Ewz2653@%5sIep&^@Xu%*nrBrWT&x!P5~A_}*MPG0 z9m>{G3OR~gJIiWT{@oS2Vx2_oy}=FYGzv1@q>yNFe&fn@5q? z_8HaY#UBclhtEPiZ!Rf#=9-+Zg{OZ@N4^+KZ$=ovH@Gq5 zSvBTvw0v9Kd-mk}K6+}Qb{&M~+MUKZgk2AV zT|xbCG`|1tF}}4|=jNvcb=&nupQR7++x?Jst<1H+*L$!MH)@RRx_C^OvZH)?C*7}N{M{vDNcFV@(I8dtl|syc1B zuRnfT4$EZXyI==R35ogDBpyc8O^tsK*B(yJB_@+k(t=B@-DzK*7ZJ8vm#?J3#P6ll zAnNYrS~p8@K{X19x&a@Wo;_ynhD6IGOd;Pk<8+mprEJ5pkwmtd098X*S z^L=1eu9$|&v*UbVL2dM_!r48TDE{ng8fON$}#qmu%S3i^2fHZhuv= zuj}Oonwrw0e~+q6O<28C%ClwS>rb$Zaljtgl{@|mkqAnfU*cQm8{LD`gcU7@6?vq` z8ul$CA9h^U=q4%(u>H64bYCDRpC%W7OD=!GjZK<&81>}B;KtR3Ije*EWvo^4)vEjZ zlqiX>wz}5=fT1+^^>b{Eil%+zjK&e~3DrvCPeJ;d6dXHh?dgq!4wC#5Z{>o4(vcg= z>UT}s&(3EL5dSSrM{O}S&G!#WkfdO?BtBVI@L;v>?~h&lyz9J1yCi~>!BDmQf+3uz z;TfxcI;b;)W{RW`+qN@S&=Sl!&Y;{73vRa&ne$!xqTy~yw}X`nRS`dJ3YA{`a#W?7 zQg|`1Y_vB}tfwIIu2p}MuO6<~EkbZ_Axb zP`+O@DYGEM@R-8+mb^5#+;T3>&C)Y{g#`MA)TA@j*(4ccF#;uxL))Zss?*XC3&UrQ zWddvi@?H5ALJUn*Q55get?1x1tGavPSDegeYg2D@(#><*DtK?fJ3-wRh}s057uT}Z zHJ)J03}d@X-%KBT9f`V&poX$u?<;Nibm{SDWCeBNo7yQ=?@JpNdKe8Pj7&di6jg zk8H${A>>?f&1YDjvIj8^gOV!drdYv-Yeq!tzj9|FIwkeWmg?6bmyB5Y_R<32t-p+w zNQ+z(6j3#{)NU&+i*I(HfnkbzFMGuEYX_jP`%d@WGc}^zSVw}pkce`P?}%tiZ$$ww65=m@Im>J_qh|k$G5?1TZYF9o~?c{)?iED z+Nx}6kZl?{vV2xq7{P_a-H0D+VfVx70wTJ#Yfqjuyhh8saqhf`b8}qRbMCx|bK}YF zIX9l%;@qtIV){K+{hmboUTHyB(0B~Xse6AN-L!s;(s%{4@1S=U?>o-ZUq`S(AxoG` z5-dpY>zBR>rXd1ZNF>1*wRf5G`*vjP#7ZriJz0UgT9d5c(5pgLaI;dOni`&o3Sdj} zWY4cjPV2>%BNm=y+wke?Ve!=x5}r<6#-b~XCX#P?~fd|PS3Th(`}wi9xx>Y6n2 z%V+g2h6o?l@hupJX1qV-a0aY?vRDYOGxq~Rf%J56-Rq2rf&Ug8@Ph0`Pd5VKEvhZ= zq}Jp9#7pau76Pikx@Mi(EUD?d!JFB?4drRo^<@>dPK7;t9uuk39#>Hr=agRlc(Q*S zf%t;pmD^1)zD-%zz?{^{73!pm(aAq58C&RzhcTMwHB;5ud{6wG)pli1k-yL9AyUuX z5WddSL5m43T=A2681M(z=h1)0q)L%Dk7h73;cqu1!-QLC)3G)2 zC1`iX``I>Ia>z)?b3rq;De*p0ci6wNQ%i+mpH?u$Jr%u7JMX+viR!wj*^D4Swu=DBuE5EUv0__ zOEjw<iadv<~Rn6}y-gghoy9T5UL_x&Qegyf##uO5!WsEyV8zLh+_p ze3kp=K3%&cMSg{}_y&gSxL4bTrN!SL^|ab4H;8cPVVir*O}r>+98||gsa63U3Qx2? z%fxH<0gP(Gjp_KgFbCmrQG94!!E;q3B+V5(Up2G@Q*}v0SsEhgBQc4-*%|AYtME1r z41CqAVWP2O{*{huDrPXoArs5kH%|Iw1;kgUPNg*t)z&~0_0OPwNIN@o6u{BO@DlD~ zD{I&{YC?j;`b&cI%mkAG-87}Eoqwab*G;6$VnpZi)cA^n=a

8$X7*MUVRxjNOaFU)vI1 zq@Do0rQt=R`kS|5`xF4)&N;04#aCVfTaP9_IdGdI{cj7tCa!-r*#;Jwgxy3!@B1_> zb6LRBebwgj&?Ij7xtqT-;kIvl?fTp8j?DwzwPS2Im-dw^%e`efGa(xbZ9K}=I;JAE zgI|m*bQjhajli4ZzkI+!_89QNmmo8lQ&`3Tfd3egTqJ1I{e}LyLDGqql+Z2dlKi8T zkjww$^ZlR7`?c2ab7S2<-aBgb?wfUxwt%=@flWcJ`q>f8&$FH$PM࣎u(9fZNy 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

mLwz!zrdGYuUIL!WKr?UCwtuSpL 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 z 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 cjd!`^W3B<%jcEK< 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 WcTIW6gYgH%FMZmDe5%=YzWe_s9(nBm literal 0 HcmV?d00001 diff --git a/src/external/lpsolve/build/lp_solve/Makefile b/src/external/lpsolve/build/lp_solve/Makefile new file mode 100644 index 00000000..2b3931c2 --- /dev/null +++ b/src/external/lpsolve/build/lp_solve/Makefile @@ -0,0 +1,25 @@ +LP_SOLVE_CPPFLAGS=$(CPPFLAGS) -I../../headers/include \ + -I$(R_INCLUDE_DIR) \ + -DYY_NEVER_INTERACTIVE \ + -DPARSER_LP -DINVERSE_ACTIVE=INVERSE_LUSOL \ + -DRoleIsExternalInvEngine + +LP_SOLVE_SOURCES=colamd.c lp_MDO.c lp_mipbb.c lp_rlp.c mmio.c commonlib.c \ + lp_MPS.c lp_params.c lp_scale.c lp_SOS.c \ + lp_presolve.c lp_simplex.c yacc_read.c ini.c lp_crash.c \ + lp_price.c lp_utils.c lp_Hash.c lp_lib.c lp_pricePSE.c \ + lp_wlp.c lp_LUSOL.c lp_matrix.c lp_report.c lusol.c \ + myblas.c + +LP_SOLVE_OBJECTS=$(LP_SOLVE_SOURCES:.c=.o) + +liblp_solve.a: $(LP_SOLVE_OBJECTS) + $(AR) rc liblp_solve.a $(LP_SOLVE_OBJECTS) && $(RANLIB) liblp_solve.a + +.c.o: + $(CC) $(CFLAGS) $(CPICFLAGS) $(LP_SOLVE_CPPFLAGS) -c $< -o $@ + +clean: + rm -rf $(LP_SOLVE_OBJECTS) liblp_solve.a + + diff --git a/src/external/lpsolve/build/lp_solve/colamd.c b/src/external/lpsolve/build/lp_solve/colamd.c new file mode 100644 index 00000000..f48c6f56 --- /dev/null +++ b/src/external/lpsolve/build/lp_solve/colamd.c @@ -0,0 +1,3469 @@ +/* ========================================================================== */ +/* === colamd/symamd - a sparse matrix column ordering algorithm ============ */ +/* ========================================================================== */ + +/* + colamd: an approximate minimum degree column ordering algorithm, + for LU factorization of symmetric or unsymmetric matrices, + QR factorization, least squares, interior point methods for + linear programming problems, and other related problems. + + symamd: an approximate minimum degree ordering algorithm for Cholesky + factorization of symmetric matrices. + + Purpose: + + Colamd computes a permutation Q such that the Cholesky factorization of + (AQ)'(AQ) has less fill-in and requires fewer floating point operations + than A'A. This also provides a good ordering for sparse partial + pivoting methods, P(AQ) = LU, where Q is computed prior to numerical + factorization, and P is computed during numerical factorization via + conventional partial pivoting with row interchanges. Colamd is the + column ordering method used in SuperLU, part of the ScaLAPACK library. + It is also available as built-in function in Matlab Version 6, + available from MathWorks, Inc. (http://www.mathworks.com). This + routine can be used in place of colmmd in Matlab. By default, the \ + and / operators in Matlab perform a column ordering (using colmmd + or colamd) prior to LU factorization using sparse partial pivoting, + in the built-in Matlab lu(A) routine. + + Symamd computes a permutation P of a symmetric matrix A such that the + Cholesky factorization of PAP' has less fill-in and requires fewer + floating point operations than A. Symamd constructs a matrix M such + that M'M has the same nonzero pattern of A, and then orders the columns + of M using colmmd. The column ordering of M is then returned as the + row and column ordering P of A. + + Authors: + + The authors of the code itself are Stefan I. Larimore and Timothy A. + Davis (davis@cise.ufl.edu), University of Florida. The algorithm was + developed in collaboration with John Gilbert, Xerox PARC, and Esmond + Ng, Oak Ridge National Laboratory. + + Date: + + May 4, 2001. Version 2.1. + + Acknowledgements: + + This work was supported by the National Science Foundation, under + grants DMS-9504974 and DMS-9803599. + + Notice: + + Copyright (c) 1998-2001 by the University of Florida. + All Rights Reserved. + + THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY + EXPRESSED OR IMPLIED. ANY USE IS AT YOUR OWN RISK. + + Permission is hereby granted to use or copy this program for any + purpose, provided the above notices are retained on all copies. + User documentation of any code that uses this code must cite the + Authors, the Copyright, and "Used by permission." If this code is + accessible from within Matlab, then typing "help colamd" and "help + symamd" must cite the Authors. Permission to modify the code and to + distribute modified code is granted, provided the above notices are + retained, and a notice that the code was modified is included with the + above copyright notice. You must also retain the Availability + information below, of the original version. + + This software is provided free of charge. + + Availability: + + The colamd/symamd library is available at + + http://www.cise.ufl.edu/research/sparse/colamd/ + + This is the http://www.cise.ufl.edu/research/sparse/colamd/colamd.c + file. It requires the colamd.h file. It is required by the colamdmex.c + and symamdmex.c files, for the Matlab interface to colamd and symamd. + + Changes to the colamd library since Version 1.0 and 1.1: + + No bugs were found in version 1.1. These changes merely add new + functionality. + + * added the COLAMD_RECOMMENDED (nnz, n_row, n_col) macro. + + * moved the output statistics, from A, to a separate output argument. + The arguments changed for the C-callable routines. + + * added colamd_report and symamd_report. + + * added a C-callable symamd routine. Formerly, symamd was only + available as a mexFunction from Matlab. + + * added error-checking to symamd. Formerly, it assumed its input + was error-free. + + * added the optional stats and knobs arguments to the symamd mexFunction + + * deleted colamd_help. A help message is still available from + "help colamd" and "help symamd" in Matlab. + + * deleted colamdtree.m and symamdtree.m. Now, colamd.m and symamd.m + also do the elimination tree post-ordering. The Version 1.1 + colamd and symamd mexFunctions, which do not do the post- + ordering, are now visible as colamdmex and symamdmex from + Matlab. Essentialy, the post-ordering is now the default + behavior of colamd.m and symamd.m, to match the behavior of + colmmd and symmmd. The post-ordering is only available in the + Matlab interface, not the C-callable interface. + + * made a slight change to the dense row/column detection in symamd, + to match the stated specifications. + + Changes from Version 2.0 to 2.1: + + * TRUE and FALSE are predefined on some systems, so they are defined + here only if not already defined. + + * web site changed + + * UNIX Makefile modified, to handle the case if "." is not in your path. + +*/ + +/* ========================================================================== */ +/* === Description of user-callable routines ================================ */ +/* ========================================================================== */ + +/* + ---------------------------------------------------------------------------- + colamd_recommended: + ---------------------------------------------------------------------------- + + C syntax: + + #include "colamd.h" + int colamd_recommended (int nnz, int n_row, int n_col) ; + + or as a C macro + + #include "colamd.h" + Alen = COLAMD_RECOMMENDED (int nnz, int n_row, int n_col) ; + + Purpose: + + Returns recommended value of Alen for use by colamd. Returns -1 + if any input argument is negative. The use of this routine + or macro is optional. Note that the macro uses its arguments + more than once, so be careful for side effects, if you pass + expressions as arguments to COLAMD_RECOMMENDED. Not needed for + symamd, which dynamically allocates its own memory. + + Arguments (all input arguments): + + int nnz ; Number of nonzeros in the matrix A. This must + be the same value as p [n_col] in the call to + colamd - otherwise you will get a wrong value + of the recommended memory to use. + + int n_row ; Number of rows in the matrix A. + + int n_col ; Number of columns in the matrix A. + + ---------------------------------------------------------------------------- + colamd_set_defaults: + ---------------------------------------------------------------------------- + + C syntax: + + #include "colamd.h" + colamd_set_defaults (int knobs [COLAMD_KNOBS]) ; + + Purpose: + + Sets the default parameters. The use of this routine is optional. + + Arguments: + + double knobs [COLAMD_KNOBS] ; Output only. + + Colamd: rows with more than (knobs [COLAMD_DENSE_ROW] * n_col) + entries are removed prior to ordering. Columns with more than + (knobs [COLAMD_DENSE_COL] * n_row) entries are removed prior to + ordering, and placed last in the output column ordering. + + Symamd: uses only knobs [COLAMD_DENSE_ROW], which is knobs [0]. + Rows and columns with more than (knobs [COLAMD_DENSE_ROW] * n) + entries are removed prior to ordering, and placed last in the + output ordering. + + COLAMD_DENSE_ROW and COLAMD_DENSE_COL are defined as 0 and 1, + respectively, in colamd.h. Default values of these two knobs + are both 0.5. Currently, only knobs [0] and knobs [1] are + used, but future versions may use more knobs. If so, they will + be properly set to their defaults by the future version of + colamd_set_defaults, so that the code that calls colamd will + not need to change, assuming that you either use + colamd_set_defaults, or pass a (double *) NULL pointer as the + knobs array to colamd or symamd. + + ---------------------------------------------------------------------------- + colamd: + ---------------------------------------------------------------------------- + + C syntax: + + #include "colamd.h" + int colamd (int n_row, int n_col, int Alen, int *A, int *p, + double knobs [COLAMD_KNOBS], int stats [COLAMD_STATS]) ; + + Purpose: + + Computes a column ordering (Q) of A such that P(AQ)=LU or + (AQ)'AQ=LL' have less fill-in and require fewer floating point + operations than factorizing the unpermuted matrix A or A'A, + respectively. + + Returns: + + TRUE (1) if successful, FALSE (0) otherwise. + + Arguments: + + int n_row ; Input argument. + + Number of rows in the matrix A. + Restriction: n_row >= 0. + Colamd returns FALSE if n_row is negative. + + int n_col ; Input argument. + + Number of columns in the matrix A. + Restriction: n_col >= 0. + Colamd returns FALSE if n_col is negative. + + int Alen ; Input argument. + + Restriction (see note): + Alen >= 2*nnz + 6*(n_col+1) + 4*(n_row+1) + n_col + Colamd returns FALSE if these conditions are not met. + + Note: this restriction makes an modest assumption regarding + the size of the two typedef's structures in colamd.h. + We do, however, guarantee that + + Alen >= colamd_recommended (nnz, n_row, n_col) + + or equivalently as a C preprocessor macro: + + Alen >= COLAMD_RECOMMENDED (nnz, n_row, n_col) + + will be sufficient. + + int A [Alen] ; Input argument, undefined on output. + + A is an integer array of size Alen. Alen must be at least as + large as the bare minimum value given above, but this is very + low, and can result in excessive run time. For best + performance, we recommend that Alen be greater than or equal to + colamd_recommended (nnz, n_row, n_col), which adds + nnz/5 to the bare minimum value given above. + + On input, the row indices of the entries in column c of the + matrix are held in A [(p [c]) ... (p [c+1]-1)]. The row indices + in a given column c need not be in ascending order, and + duplicate row indices may be be present. However, colamd will + work a little faster if both of these conditions are met + (Colamd puts the matrix into this format, if it finds that the + the conditions are not met). + + The matrix is 0-based. That is, rows are in the range 0 to + n_row-1, and columns are in the range 0 to n_col-1. Colamd + returns FALSE if any row index is out of range. + + The contents of A are modified during ordering, and are + undefined on output. + + int p [n_col+1] ; Both input and output argument. + + p is an integer array of size n_col+1. On input, it holds the + "pointers" for the column form of the matrix A. Column c of + the matrix A is held in A [(p [c]) ... (p [c+1]-1)]. The first + entry, p [0], must be zero, and p [c] <= p [c+1] must hold + for all c in the range 0 to n_col-1. The value p [n_col] is + thus the total number of entries in the pattern of the matrix A. + Colamd returns FALSE if these conditions are not met. + + On output, if colamd returns TRUE, the array p holds the column + permutation (Q, for P(AQ)=LU or (AQ)'(AQ)=LL'), where p [0] is + the first column index in the new ordering, and p [n_col-1] is + the last. That is, p [k] = j means that column j of A is the + kth pivot column, in AQ, where k is in the range 0 to n_col-1 + (p [0] = j means that column j of A is the first column in AQ). + + If colamd returns FALSE, then no permutation is returned, and + p is undefined on output. + + double knobs [COLAMD_KNOBS] ; Input argument. + + See colamd_set_defaults for a description. + + int stats [COLAMD_STATS] ; Output argument. + + Statistics on the ordering, and error status. + See colamd.h for related definitions. + Colamd returns FALSE if stats is not present. + + stats [0]: number of dense or empty rows ignored. + + stats [1]: number of dense or empty columns ignored (and + ordered last in the output permutation p) + Note that a row can become "empty" if it + contains only "dense" and/or "empty" columns, + and similarly a column can become "empty" if it + only contains "dense" and/or "empty" rows. + + stats [2]: number of garbage collections performed. + This can be excessively high if Alen is close + to the minimum required value. + + stats [3]: status code. < 0 is an error code. + > 1 is a warning or notice. + + 0 OK. Each column of the input matrix contained + row indices in increasing order, with no + duplicates. + + 1 OK, but columns of input matrix were jumbled + (unsorted columns or duplicate entries). Colamd + had to do some extra work to sort the matrix + first and remove duplicate entries, but it + still was able to return a valid permutation + (return value of colamd was TRUE). + + stats [4]: highest numbered column that + is unsorted or has duplicate + entries. + stats [5]: last seen duplicate or + unsorted row index. + stats [6]: number of duplicate or + unsorted row indices. + + -1 A is a null pointer + + -2 p is a null pointer + + -3 n_row is negative + + stats [4]: n_row + + -4 n_col is negative + + stats [4]: n_col + + -5 number of nonzeros in matrix is negative + + stats [4]: number of nonzeros, p [n_col] + + -6 p [0] is nonzero + + stats [4]: p [0] + + -7 A is too small + + stats [4]: required size + stats [5]: actual size (Alen) + + -8 a column has a negative number of entries + + stats [4]: column with < 0 entries + stats [5]: number of entries in col + + -9 a row index is out of bounds + + stats [4]: column with bad row index + stats [5]: bad row index + stats [6]: n_row, # of rows of matrx + + -10 (unused; see symamd.c) + + -999 (unused; see symamd.c) + + Future versions may return more statistics in the stats array. + + Example: + + See http://www.cise.ufl.edu/research/sparse/colamd/example.c + for a complete example. + + To order the columns of a 5-by-4 matrix with 11 nonzero entries in + the following nonzero pattern + + x 0 x 0 + x 0 x x + 0 x x 0 + 0 0 x x + x x 0 0 + + with default knobs and no output statistics, do the following: + + #include "colamd.h" + #define ALEN COLAMD_RECOMMENDED (11, 5, 4) + int A [ALEN] = {1, 2, 5, 3, 5, 1, 2, 3, 4, 2, 4} ; + int p [ ] = {0, 3, 5, 9, 11} ; + int stats [COLAMD_STATS] ; + colamd (5, 4, ALEN, A, p, (double *) NULL, stats) ; + + The permutation is returned in the array p, and A is destroyed. + + ---------------------------------------------------------------------------- + symamd: + ---------------------------------------------------------------------------- + + C syntax: + + #include "colamd.h" + int symamd (int n, int *A, int *p, int *perm, + int knobs [COLAMD_KNOBS], int stats [COLAMD_STATS], + void (*allocate) (size_t, size_t), void (*release) (void *)) ; + + Purpose: + + The symamd routine computes an ordering P of a symmetric sparse + matrix A such that the Cholesky factorization PAP' = LL' remains + sparse. It is based on a column ordering of a matrix M constructed + so that the nonzero pattern of M'M is the same as A. The matrix A + is assumed to be symmetric; only the strictly lower triangular part + is accessed. You must pass your selected memory allocator (usually + calloc/free or mxCalloc/mxFree) to symamd, for it to allocate + memory for the temporary matrix M. + + Returns: + + TRUE (1) if successful, FALSE (0) otherwise. + + Arguments: + + int n ; Input argument. + + Number of rows and columns in the symmetrix matrix A. + Restriction: n >= 0. + Symamd returns FALSE if n is negative. + + int A [nnz] ; Input argument. + + A is an integer array of size nnz, where nnz = p [n]. + + The row indices of the entries in column c of the matrix are + held in A [(p [c]) ... (p [c+1]-1)]. The row indices in a + given column c need not be in ascending order, and duplicate + row indices may be present. However, symamd will run faster + if the columns are in sorted order with no duplicate entries. + + The matrix is 0-based. That is, rows are in the range 0 to + n-1, and columns are in the range 0 to n-1. Symamd + returns FALSE if any row index is out of range. + + The contents of A are not modified. + + int p [n+1] ; Input argument. + + p is an integer array of size n+1. On input, it holds the + "pointers" for the column form of the matrix A. Column c of + the matrix A is held in A [(p [c]) ... (p [c+1]-1)]. The first + entry, p [0], must be zero, and p [c] <= p [c+1] must hold + for all c in the range 0 to n-1. The value p [n] is + thus the total number of entries in the pattern of the matrix A. + Symamd returns FALSE if these conditions are not met. + + The contents of p are not modified. + + int perm [n+1] ; Output argument. + + On output, if symamd returns TRUE, the array perm holds the + permutation P, where perm [0] is the first index in the new + ordering, and perm [n-1] is the last. That is, perm [k] = j + means that row and column j of A is the kth column in PAP', + where k is in the range 0 to n-1 (perm [0] = j means + that row and column j of A are the first row and column in + PAP'). The array is used as a workspace during the ordering, + which is why it must be of length n+1, not just n. + + double knobs [COLAMD_KNOBS] ; Input argument. + + See colamd_set_defaults for a description. + + int stats [COLAMD_STATS] ; Output argument. + + Statistics on the ordering, and error status. + See colamd.h for related definitions. + Symamd returns FALSE if stats is not present. + + stats [0]: number of dense or empty row and columns ignored + (and ordered last in the output permutation + perm). Note that a row/column can become + "empty" if it contains only "dense" and/or + "empty" columns/rows. + + stats [1]: (same as stats [0]) + + stats [2]: number of garbage collections performed. + + stats [3]: status code. < 0 is an error code. + > 1 is a warning or notice. + + 0 OK. Each column of the input matrix contained + row indices in increasing order, with no + duplicates. + + 1 OK, but columns of input matrix were jumbled + (unsorted columns or duplicate entries). Symamd + had to do some extra work to sort the matrix + first and remove duplicate entries, but it + still was able to return a valid permutation + (return value of symamd was TRUE). + + stats [4]: highest numbered column that + is unsorted or has duplicate + entries. + stats [5]: last seen duplicate or + unsorted row index. + stats [6]: number of duplicate or + unsorted row indices. + + -1 A is a null pointer + + -2 p is a null pointer + + -3 (unused, see colamd.c) + + -4 n is negative + + stats [4]: n + + -5 number of nonzeros in matrix is negative + + stats [4]: # of nonzeros (p [n]). + + -6 p [0] is nonzero + + stats [4]: p [0] + + -7 (unused) + + -8 a column has a negative number of entries + + stats [4]: column with < 0 entries + stats [5]: number of entries in col + + -9 a row index is out of bounds + + stats [4]: column with bad row index + stats [5]: bad row index + stats [6]: n_row, # of rows of matrx + + -10 out of memory (unable to allocate temporary + workspace for M or count arrays using the + "allocate" routine passed into symamd). + + -999 internal error. colamd failed to order the + matrix M, when it should have succeeded. This + indicates a bug. If this (and *only* this) + error code occurs, please contact the authors. + Don't contact the authors if you get any other + error code. + + Future versions may return more statistics in the stats array. + + void * (*allocate) (size_t, size_t) + + A pointer to a function providing memory allocation. The + allocated memory must be returned initialized to zero. For a + C application, this argument should normally be a pointer to + calloc. For a Matlab mexFunction, the routine mxCalloc is + passed instead. + + void (*release) (size_t, size_t) + + A pointer to a function that frees memory allocated by the + memory allocation routine above. For a C application, this + argument should normally be a pointer to free. For a Matlab + mexFunction, the routine mxFree is passed instead. + + + ---------------------------------------------------------------------------- + colamd_report: + ---------------------------------------------------------------------------- + + C syntax: + + #include "colamd.h" + colamd_report (int stats [COLAMD_STATS]) ; + + Purpose: + + Prints the error status and statistics recorded in the stats + array on the standard error output (for a standard C routine) + or on the Matlab output (for a mexFunction). + + Arguments: + + int stats [COLAMD_STATS] ; Input only. Statistics from colamd. + + + ---------------------------------------------------------------------------- + symamd_report: + ---------------------------------------------------------------------------- + + C syntax: + + #include "colamd.h" + symamd_report (int stats [COLAMD_STATS]) ; + + Purpose: + + Prints the error status and statistics recorded in the stats + array on the standard error output (for a standard C routine) + or on the Matlab output (for a mexFunction). + + Arguments: + + int stats [COLAMD_STATS] ; Input only. Statistics from symamd. + + +*/ + +/* ========================================================================== */ +/* === Scaffolding code definitions ======================================== */ +/* ========================================================================== */ + +/* Ensure that debugging is turned off: */ +#ifndef NDEBUG +#define NDEBUG +#endif /* NDEBUG */ + +/* + Our "scaffolding code" philosophy: In our opinion, well-written library + code should keep its "debugging" code, and just normally have it turned off + by the compiler so as not to interfere with performance. This serves + several purposes: + + (1) assertions act as comments to the reader, telling you what the code + expects at that point. All assertions will always be true (unless + there really is a bug, of course). + + (2) leaving in the scaffolding code assists anyone who would like to modify + the code, or understand the algorithm (by reading the debugging output, + one can get a glimpse into what the code is doing). + + (3) (gasp!) for actually finding bugs. This code has been heavily tested + and "should" be fully functional and bug-free ... but you never know... + + To enable debugging, comment out the "#define NDEBUG" above. For a Matlab + mexFunction, you will also need to modify mexopts.sh to remove the -DNDEBUG + definition. The code will become outrageously slow when debugging is + enabled. To control the level of debugging output, set an environment + variable D to 0 (little), 1 (some), 2, 3, or 4 (lots). When debugging, + you should see the following message on the standard output: + + colamd: debug version, D = 1 (THIS WILL BE SLOW!) + + or a similar message for symamd. If you don't, then debugging has not + been enabled. + +*/ + +/* ========================================================================== */ +/* === Include files ======================================================== */ +/* ========================================================================== */ + +#include "colamd.h" +#include + +#ifdef MATLAB_MEX_FILE +#include "mex.h" +#include "matrix.h" +#else +#include +#include +#endif /* MATLAB_MEX_FILE */ + +#ifdef FORTIFY +# include "lp_fortify.h" +#endif + + +/* ========================================================================== */ +/* === Definitions ========================================================== */ +/* ========================================================================== */ + +/* Routines are either PUBLIC (user-callable) or PRIVATE (not user-callable) */ +#define PUBLIC +#define PRIVATE static + +#define MAX(a,b) (((a) > (b)) ? (a) : (b)) +#define MIN(a,b) (((a) < (b)) ? (a) : (b)) + +#define ONES_COMPLEMENT(r) (-(r)-1) + +/* -------------------------------------------------------------------------- */ +/* Change for version 2.1: define TRUE and FALSE only if not yet defined */ +/* -------------------------------------------------------------------------- */ + +#ifndef TRUE +#define TRUE (1) +#endif + +#ifndef FALSE +#define FALSE (0) +#endif + +/* -------------------------------------------------------------------------- */ + +#define EMPTY (-1) + +/* Row and column status */ +#define ALIVE (0) +#define DEAD (-1) + +/* Column status */ +#define DEAD_PRINCIPAL (-1) +#define DEAD_NON_PRINCIPAL (-2) + +/* Macros for row and column status update and checking. */ +#define ROW_IS_DEAD(r) ROW_IS_MARKED_DEAD (Row[r].shared2.mark) +#define ROW_IS_MARKED_DEAD(row_mark) (row_mark < ALIVE) +#define ROW_IS_ALIVE(r) (Row [r].shared2.mark >= ALIVE) +#define COL_IS_DEAD(c) (Col [c].start < ALIVE) +#define COL_IS_ALIVE(c) (Col [c].start >= ALIVE) +#define COL_IS_DEAD_PRINCIPAL(c) (Col [c].start == DEAD_PRINCIPAL) +#define KILL_ROW(r) { Row [r].shared2.mark = DEAD ; } +#define KILL_PRINCIPAL_COL(c) { Col [c].start = DEAD_PRINCIPAL ; } +#define KILL_NON_PRINCIPAL_COL(c) { Col [c].start = DEAD_NON_PRINCIPAL ; } + +/* ========================================================================== */ +/* === Colamd reporting mechanism =========================================== */ +/* ========================================================================== */ + +#ifdef MATLAB_MEX_FILE + +/* use mexPrintf in a Matlab mexFunction, for debugging and statistics output */ +#define PRINTF mexPrintf + +/* In Matlab, matrices are 1-based to the user, but 0-based internally */ +#define INDEX(i) ((i)+1) + +#else + +/* Use printf in standard C environment, for debugging and statistics output. */ +/* Output is generated only if debugging is enabled at compile time, or if */ +/* the caller explicitly calls colamd_report or symamd_report. */ +#define PRINTF printf + +/* In C, matrices are 0-based and indices are reported as such in *_report */ +#define INDEX(i) (i) + +#endif /* MATLAB_MEX_FILE */ + +/* ========================================================================== */ +/* === Prototypes of PRIVATE routines ======================================= */ +/* ========================================================================== */ + +PRIVATE int init_rows_cols +( + int n_row, + int n_col, + Colamd_Row Row [], + Colamd_Col Col [], + int A [], + int p [], + int stats [COLAMD_STATS] +) ; + +PRIVATE void init_scoring +( + int n_row, + int n_col, + Colamd_Row Row [], + Colamd_Col Col [], + int A [], + int head [], + double knobs [COLAMD_KNOBS], + int *p_n_row2, + int *p_n_col2, + int *p_max_deg +) ; + +PRIVATE int find_ordering +( + int n_row, + int n_col, + int Alen, + Colamd_Row Row [], + Colamd_Col Col [], + int A [], + int head [], + int n_col2, + int max_deg, + int pfree +) ; + +PRIVATE void order_children +( + int n_col, + Colamd_Col Col [], + int p [] +) ; + +PRIVATE void detect_super_cols +( + +#ifndef NDEBUG + int n_col, + Colamd_Row Row [], +#endif /* NDEBUG */ + + Colamd_Col Col [], + int A [], + int head [], + int row_start, + int row_length +) ; + +PRIVATE int garbage_collection +( + int n_row, + int n_col, + Colamd_Row Row [], + Colamd_Col Col [], + int A [], + int *pfree +) ; + +PRIVATE int clear_mark +( + int n_row, + Colamd_Row Row [] +) ; + +PRIVATE void print_report +( + char *method, + int stats [COLAMD_STATS] +) ; + +/* ========================================================================== */ +/* === Debugging prototypes and definitions ================================= */ +/* ========================================================================== */ + +#ifndef NDEBUG + +/* colamd_debug is the *ONLY* global variable, and is only */ +/* present when debugging */ + +PRIVATE int colamd_debug ; /* debug print level */ + +#define DEBUG0(params) { (void) PRINTF params ; } +#define DEBUG1(params) { if (colamd_debug >= 1) (void) PRINTF params ; } +#define DEBUG2(params) { if (colamd_debug >= 2) (void) PRINTF params ; } +#define DEBUG3(params) { if (colamd_debug >= 3) (void) PRINTF params ; } +#define DEBUG4(params) { if (colamd_debug >= 4) (void) PRINTF params ; } + +#ifdef MATLAB_MEX_FILE +#define ASSERT(expression) (mxAssert ((expression), "")) +#else +#define ASSERT(expression) (assert (expression)) +#endif /* MATLAB_MEX_FILE */ + +PRIVATE void colamd_get_debug /* gets the debug print level from getenv */ +( + char *method +) ; + +PRIVATE void debug_deg_lists +( + int n_row, + int n_col, + Colamd_Row Row [], + Colamd_Col Col [], + int head [], + int min_score, + int should, + int max_deg +) ; + +PRIVATE void debug_mark +( + int n_row, + Colamd_Row Row [], + int tag_mark, + int max_mark +) ; + +PRIVATE void debug_matrix +( + int n_row, + int n_col, + Colamd_Row Row [], + Colamd_Col Col [], + int A [] +) ; + +PRIVATE void debug_structures +( + int n_row, + int n_col, + Colamd_Row Row [], + Colamd_Col Col [], + int A [], + int n_col2 +) ; + +#else /* NDEBUG */ + +/* === No debugging ========================================================= */ + +#define DEBUG0(params) ; +#define DEBUG1(params) ; +#define DEBUG2(params) ; +#define DEBUG3(params) ; +#define DEBUG4(params) ; + +#define ASSERT(expression) ((void) 0) + +#endif /* NDEBUG */ + +/* ========================================================================== */ + + + +/* ========================================================================== */ +/* === USER-CALLABLE ROUTINES: ============================================== */ +/* ========================================================================== */ + + +/* ========================================================================== */ +/* === colamd_recommended =================================================== */ +/* ========================================================================== */ + +/* + The colamd_recommended routine returns the suggested size for Alen. This + value has been determined to provide good balance between the number of + garbage collections and the memory requirements for colamd. If any + argument is negative, a -1 is returned as an error condition. This + function is also available as a macro defined in colamd.h, so that you + can use it for a statically-allocated array size. +*/ + +PUBLIC int colamd_recommended /* returns recommended value of Alen. */ +( + /* === Parameters ======================================================= */ + + int nnz, /* number of nonzeros in A */ + int n_row, /* number of rows in A */ + int n_col /* number of columns in A */ +) +{ + return (COLAMD_RECOMMENDED (nnz, n_row, n_col)) ; +} + + +/* ========================================================================== */ +/* === colamd_set_defaults ================================================== */ +/* ========================================================================== */ + +/* + The colamd_set_defaults routine sets the default values of the user- + controllable parameters for colamd: + + knobs [0] rows with knobs[0]*n_col entries or more are removed + prior to ordering in colamd. Rows and columns with + knobs[0]*n_col entries or more are removed prior to + ordering in symamd and placed last in the output + ordering. + + knobs [1] columns with knobs[1]*n_row entries or more are removed + prior to ordering in colamd, and placed last in the + column permutation. Symamd ignores this knob. + + knobs [2..19] unused, but future versions might use this +*/ + +PUBLIC void colamd_set_defaults +( + /* === Parameters ======================================================= */ + + double knobs [COLAMD_KNOBS] /* knob array */ +) +{ + /* === Local variables ================================================== */ + + int i ; + + if (!knobs) + { + return ; /* no knobs to initialize */ + } + for (i = 0 ; i < COLAMD_KNOBS ; i++) + { + knobs [i] = 0 ; + } + knobs [COLAMD_DENSE_ROW] = 0.5 ; /* ignore rows over 50% dense */ + knobs [COLAMD_DENSE_COL] = 0.5 ; /* ignore columns over 50% dense */ +} + + +/* ========================================================================== */ +/* === symamd =============================================================== */ +/* ========================================================================== */ + +PUBLIC int symamd /* return TRUE if OK, FALSE otherwise */ +( + /* === Parameters ======================================================= */ + + int n, /* number of rows and columns of A */ + int A [], /* row indices of A */ + int p [], /* column pointers of A */ + int perm [], /* output permutation, size n+1 */ + double knobs [COLAMD_KNOBS], /* parameters (uses defaults if NULL) */ + int stats [COLAMD_STATS], /* output statistics and error codes */ + void * (*allocate) (size_t, size_t), + /* pointer to calloc (ANSI C) or */ + /* mxCalloc (for Matlab mexFunction) */ + void (*release) (void *) + /* pointer to free (ANSI C) or */ + /* mxFree (for Matlab mexFunction) */ +) +{ + /* === Local variables ================================================== */ + + int *count ; /* length of each column of M, and col pointer*/ + int *mark ; /* mark array for finding duplicate entries */ + int *M ; /* row indices of matrix M */ + int Mlen ; /* length of M */ + int n_row ; /* number of rows in M */ + int nnz ; /* number of entries in A */ + int i ; /* row index of A */ + int j ; /* column index of A */ + int k ; /* row index of M */ + int mnz ; /* number of nonzeros in M */ + int pp ; /* index into a column of A */ + int last_row ; /* last row seen in the current column */ + int length ; /* number of nonzeros in a column */ + + double cknobs [COLAMD_KNOBS] ; /* knobs for colamd */ + double default_knobs [COLAMD_KNOBS] ; /* default knobs for colamd */ + int cstats [COLAMD_STATS] ; /* colamd stats */ + +#ifndef NDEBUG + colamd_get_debug ("symamd") ; +#endif /* NDEBUG */ + + /* === Check the input arguments ======================================== */ + + if (!stats) + { + DEBUG0 (("symamd: stats not present\n")) ; + return (FALSE) ; + } + for (i = 0 ; i < COLAMD_STATS ; i++) + { + stats [i] = 0 ; + } + stats [COLAMD_STATUS] = COLAMD_OK ; + stats [COLAMD_INFO1] = -1 ; + stats [COLAMD_INFO2] = -1 ; + + if (!A) + { + stats [COLAMD_STATUS] = COLAMD_ERROR_A_not_present ; + DEBUG0 (("symamd: A not present\n")) ; + return (FALSE) ; + } + + if (!p) /* p is not present */ + { + stats [COLAMD_STATUS] = COLAMD_ERROR_p_not_present ; + DEBUG0 (("symamd: p not present\n")) ; + return (FALSE) ; + } + + if (n < 0) /* n must be >= 0 */ + { + stats [COLAMD_STATUS] = COLAMD_ERROR_ncol_negative ; + stats [COLAMD_INFO1] = n ; + DEBUG0 (("symamd: n negative %d\n", n)) ; + return (FALSE) ; + } + + nnz = p [n] ; + if (nnz < 0) /* nnz must be >= 0 */ + { + stats [COLAMD_STATUS] = COLAMD_ERROR_nnz_negative ; + stats [COLAMD_INFO1] = nnz ; + DEBUG0 (("symamd: number of entries negative %d\n", nnz)) ; + return (FALSE) ; + } + + if (p [0] != 0) + { + stats [COLAMD_STATUS] = COLAMD_ERROR_p0_nonzero ; + stats [COLAMD_INFO1] = p [0] ; + DEBUG0 (("symamd: p[0] not zero %d\n", p [0])) ; + return (FALSE) ; + } + + /* === If no knobs, set default knobs =================================== */ + + if (!knobs) + { + colamd_set_defaults (default_knobs) ; + knobs = default_knobs ; + } + + /* === Allocate count and mark ========================================== */ + + count = (int *) ((*allocate) (n+1, sizeof (int))) ; + if (!count) + { + stats [COLAMD_STATUS] = COLAMD_ERROR_out_of_memory ; + DEBUG0 (("symamd: allocate count (size %d) failed\n", n+1)) ; + return (FALSE) ; + } + + mark = (int *) ((*allocate) (n+1, sizeof (int))) ; + if (!mark) + { + stats [COLAMD_STATUS] = COLAMD_ERROR_out_of_memory ; + (*release) ((void *) count) ; + DEBUG0 (("symamd: allocate mark (size %d) failed\n", n+1)) ; + return (FALSE) ; + } + + /* === Compute column counts of M, check if A is valid ================== */ + + stats [COLAMD_INFO3] = 0 ; /* number of duplicate or unsorted row indices*/ + + for (i = 0 ; i < n ; i++) + { + mark [i] = -1 ; + } + + for (j = 0 ; j < n ; j++) + { + last_row = -1 ; + + length = p [j+1] - p [j] ; + if (length < 0) + { + /* column pointers must be non-decreasing */ + stats [COLAMD_STATUS] = COLAMD_ERROR_col_length_negative ; + stats [COLAMD_INFO1] = j ; + stats [COLAMD_INFO2] = length ; + (*release) ((void *) count) ; + (*release) ((void *) mark) ; + DEBUG0 (("symamd: col %d negative length %d\n", j, length)) ; + return (FALSE) ; + } + + for (pp = p [j] ; pp < p [j+1] ; pp++) + { + i = A [pp] ; + if (i < 0 || i >= n) + { + /* row index i, in column j, is out of bounds */ + stats [COLAMD_STATUS] = COLAMD_ERROR_row_index_out_of_bounds ; + stats [COLAMD_INFO1] = j ; + stats [COLAMD_INFO2] = i ; + stats [COLAMD_INFO3] = n ; + (*release) ((void *) count) ; + (*release) ((void *) mark) ; + DEBUG0 (("symamd: row %d col %d out of bounds\n", i, j)) ; + return (FALSE) ; + } + + if (i <= last_row || mark [i] == j) + { + /* row index is unsorted or repeated (or both), thus col */ + /* is jumbled. This is a notice, not an error condition. */ + stats [COLAMD_STATUS] = COLAMD_OK_BUT_JUMBLED ; + stats [COLAMD_INFO1] = j ; + stats [COLAMD_INFO2] = i ; + (stats [COLAMD_INFO3]) ++ ; + DEBUG1 (("symamd: row %d col %d unsorted/duplicate\n", i, j)) ; + } + + if (i > j && mark [i] != j) + { + /* row k of M will contain column indices i and j */ + count [i]++ ; + count [j]++ ; + } + + /* mark the row as having been seen in this column */ + mark [i] = j ; + + last_row = i ; + } + } + + if (stats [COLAMD_STATUS] == COLAMD_OK) + { + /* if there are no duplicate entries, then mark is no longer needed */ + (*release) ((void *) mark) ; + } + + /* === Compute column pointers of M ===================================== */ + + /* use output permutation, perm, for column pointers of M */ + perm [0] = 0 ; + for (j = 1 ; j <= n ; j++) + { + perm [j] = perm [j-1] + count [j-1] ; + } + for (j = 0 ; j < n ; j++) + { + count [j] = perm [j] ; + } + + /* === Construct M ====================================================== */ + + mnz = perm [n] ; + n_row = mnz / 2 ; + Mlen = colamd_recommended (mnz, n_row, n) ; + M = (int *) ((*allocate) (Mlen, sizeof (int))) ; + DEBUG0 (("symamd: M is %d-by-%d with %d entries, Mlen = %d\n", + n_row, n, mnz, Mlen)) ; + + if (!M) + { + stats [COLAMD_STATUS] = COLAMD_ERROR_out_of_memory ; + (*release) ((void *) count) ; + (*release) ((void *) mark) ; + DEBUG0 (("symamd: allocate M (size %d) failed\n", Mlen)) ; + return (FALSE) ; + } + + k = 0 ; + + if (stats [COLAMD_STATUS] == COLAMD_OK) + { + /* Matrix is OK */ + for (j = 0 ; j < n ; j++) + { + ASSERT (p [j+1] - p [j] >= 0) ; + for (pp = p [j] ; pp < p [j+1] ; pp++) + { + i = A [pp] ; + ASSERT (i >= 0 && i < n) ; + if (i > j) + { + /* row k of M contains column indices i and j */ + M [count [i]++] = k ; + M [count [j]++] = k ; + k++ ; + } + } + } + } + else + { + /* Matrix is jumbled. Do not add duplicates to M. Unsorted cols OK. */ + DEBUG0 (("symamd: Duplicates in A.\n")) ; + for (i = 0 ; i < n ; i++) + { + mark [i] = -1 ; + } + for (j = 0 ; j < n ; j++) + { + ASSERT (p [j+1] - p [j] >= 0) ; + for (pp = p [j] ; pp < p [j+1] ; pp++) + { + i = A [pp] ; + ASSERT (i >= 0 && i < n) ; + if (i > j && mark [i] != j) + { + /* row k of M contains column indices i and j */ + M [count [i]++] = k ; + M [count [j]++] = k ; + k++ ; + mark [i] = j ; + } + } + } + (*release) ((void *) mark) ; + } + + /* count and mark no longer needed */ + (*release) ((void *) count) ; + ASSERT (k == n_row) ; + + /* === Adjust the knobs for M =========================================== */ + + for (i = 0 ; i < COLAMD_KNOBS ; i++) + { + cknobs [i] = knobs [i] ; + } + + /* there are no dense rows in M */ + cknobs [COLAMD_DENSE_ROW] = 1.0 ; + + if (n_row != 0 && n < n_row) + { + /* On input, the knob is a fraction of 1..n, the number of rows of A. */ + /* Convert it to a fraction of 1..n_row, of the number of rows of M. */ + cknobs [COLAMD_DENSE_COL] = (knobs [COLAMD_DENSE_ROW] * n) / n_row ; + } + else + { + /* no dense columns in M */ + cknobs [COLAMD_DENSE_COL] = 1.0 ; + } + + DEBUG0 (("symamd: dense col knob for M: %g\n", cknobs [COLAMD_DENSE_COL])) ; + + /* === Order the columns of M =========================================== */ + + if (!colamd (n_row, n, Mlen, M, perm, cknobs, cstats)) + { + /* This "cannot" happen, unless there is a bug in the code. */ + stats [COLAMD_STATUS] = COLAMD_ERROR_internal_error ; + (*release) ((void *) M) ; + DEBUG0 (("symamd: internal error!\n")) ; + return (FALSE) ; + } + + /* Note that the output permutation is now in perm */ + + /* === get the statistics for symamd from colamd ======================== */ + + /* note that a dense column in colamd means a dense row and col in symamd */ + stats [COLAMD_DENSE_ROW] = cstats [COLAMD_DENSE_COL] ; + stats [COLAMD_DENSE_COL] = cstats [COLAMD_DENSE_COL] ; + stats [COLAMD_DEFRAG_COUNT] = cstats [COLAMD_DEFRAG_COUNT] ; + + /* === Free M =========================================================== */ + + (*release) ((void *) M) ; + DEBUG0 (("symamd: done.\n")) ; + return (TRUE) ; + +} + +/* ========================================================================== */ +/* === colamd =============================================================== */ +/* ========================================================================== */ + +/* + The colamd routine computes a column ordering Q of a sparse matrix + A such that the LU factorization P(AQ) = LU remains sparse, where P is + selected via partial pivoting. The routine can also be viewed as + providing a permutation Q such that the Cholesky factorization + (AQ)'(AQ) = LL' remains sparse. +*/ + +PUBLIC int colamd /* returns TRUE if successful, FALSE otherwise*/ +( + /* === Parameters ======================================================= */ + + int n_row, /* number of rows in A */ + int n_col, /* number of columns in A */ + int Alen, /* length of A */ + int A [], /* row indices of A */ + int p [], /* pointers to columns in A */ + double knobs [COLAMD_KNOBS],/* parameters (uses defaults if NULL) */ + int stats [COLAMD_STATS] /* output statistics and error codes */ +) +{ + /* === Local variables ================================================== */ + + int i ; /* loop index */ + int nnz ; /* nonzeros in A */ + int Row_size ; /* size of Row [], in integers */ + int Col_size ; /* size of Col [], in integers */ + int need ; /* minimum required length of A */ + Colamd_Row *Row ; /* pointer into A of Row [0..n_row] array */ + Colamd_Col *Col ; /* pointer into A of Col [0..n_col] array */ + int n_col2 ; /* number of non-dense, non-empty columns */ + int n_row2 ; /* number of non-dense, non-empty rows */ + int ngarbage ; /* number of garbage collections performed */ + int max_deg ; /* maximum row degree */ + double default_knobs [COLAMD_KNOBS] ; /* default knobs array */ + +#ifndef NDEBUG + colamd_get_debug ("colamd") ; +#endif /* NDEBUG */ + + /* === Check the input arguments ======================================== */ + + if (!stats) + { + DEBUG0 (("colamd: stats not present\n")) ; + return (FALSE) ; + } + for (i = 0 ; i < COLAMD_STATS ; i++) + { + stats [i] = 0 ; + } + stats [COLAMD_STATUS] = COLAMD_OK ; + stats [COLAMD_INFO1] = -1 ; + stats [COLAMD_INFO2] = -1 ; + + if (!A) /* A is not present */ + { + stats [COLAMD_STATUS] = COLAMD_ERROR_A_not_present ; + DEBUG0 (("colamd: A not present\n")) ; + return (FALSE) ; + } + + if (!p) /* p is not present */ + { + stats [COLAMD_STATUS] = COLAMD_ERROR_p_not_present ; + DEBUG0 (("colamd: p not present\n")) ; + return (FALSE) ; + } + + if (n_row < 0) /* n_row must be >= 0 */ + { + stats [COLAMD_STATUS] = COLAMD_ERROR_nrow_negative ; + stats [COLAMD_INFO1] = n_row ; + DEBUG0 (("colamd: nrow negative %d\n", n_row)) ; + return (FALSE) ; + } + + if (n_col < 0) /* n_col must be >= 0 */ + { + stats [COLAMD_STATUS] = COLAMD_ERROR_ncol_negative ; + stats [COLAMD_INFO1] = n_col ; + DEBUG0 (("colamd: ncol negative %d\n", n_col)) ; + return (FALSE) ; + } + + nnz = p [n_col] ; + if (nnz < 0) /* nnz must be >= 0 */ + { + stats [COLAMD_STATUS] = COLAMD_ERROR_nnz_negative ; + stats [COLAMD_INFO1] = nnz ; + DEBUG0 (("colamd: number of entries negative %d\n", nnz)) ; + return (FALSE) ; + } + + if (p [0] != 0) + { + stats [COLAMD_STATUS] = COLAMD_ERROR_p0_nonzero ; + stats [COLAMD_INFO1] = p [0] ; + DEBUG0 (("colamd: p[0] not zero %d\n", p [0])) ; + return (FALSE) ; + } + + /* === If no knobs, set default knobs =================================== */ + + if (!knobs) + { + colamd_set_defaults (default_knobs) ; + knobs = default_knobs ; + } + + /* === Allocate the Row and Col arrays from array A ===================== */ + + Col_size = COLAMD_C (n_col) ; + Row_size = COLAMD_R (n_row) ; + need = 2*nnz + n_col + Col_size + Row_size ; + + if (need > Alen) + { + /* not enough space in array A to perform the ordering */ + stats [COLAMD_STATUS] = COLAMD_ERROR_A_too_small ; + stats [COLAMD_INFO1] = need ; + stats [COLAMD_INFO2] = Alen ; + DEBUG0 (("colamd: Need Alen >= %d, given only Alen = %d\n", need,Alen)); + return (FALSE) ; + } + + Alen -= Col_size + Row_size ; + Col = (Colamd_Col *) &A [Alen] ; + Row = (Colamd_Row *) &A [Alen + Col_size] ; + + /* === Construct the row and column data structures ===================== */ + + if (!init_rows_cols (n_row, n_col, Row, Col, A, p, stats)) + { + /* input matrix is invalid */ + DEBUG0 (("colamd: Matrix invalid\n")) ; + return (FALSE) ; + } + + /* === Initialize scores, kill dense rows/columns ======================= */ + + init_scoring (n_row, n_col, Row, Col, A, p, knobs, + &n_row2, &n_col2, &max_deg) ; + + /* === Order the supercolumns =========================================== */ + + ngarbage = find_ordering (n_row, n_col, Alen, Row, Col, A, p, + n_col2, max_deg, 2*nnz) ; + + /* === Order the non-principal columns ================================== */ + + order_children (n_col, Col, p) ; + + /* === Return statistics in stats ======================================= */ + + stats [COLAMD_DENSE_ROW] = n_row - n_row2 ; + stats [COLAMD_DENSE_COL] = n_col - n_col2 ; + stats [COLAMD_DEFRAG_COUNT] = ngarbage ; + DEBUG0 (("colamd: done.\n")) ; + return (TRUE) ; +} + + +/* ========================================================================== */ +/* === colamd_report ======================================================== */ +/* ========================================================================== */ + +PUBLIC void colamd_report +( + int stats [COLAMD_STATS] +) +{ + print_report ("colamd", stats) ; +} + + +/* ========================================================================== */ +/* === symamd_report ======================================================== */ +/* ========================================================================== */ + +PUBLIC void symamd_report +( + int stats [COLAMD_STATS] +) +{ + print_report ("symamd", stats) ; +} + + + +/* ========================================================================== */ +/* === NON-USER-CALLABLE ROUTINES: ========================================== */ +/* ========================================================================== */ + +/* There are no user-callable routines beyond this point in the file */ + + +/* ========================================================================== */ +/* === init_rows_cols ======================================================= */ +/* ========================================================================== */ + +/* + Takes the column form of the matrix in A and creates the row form of the + matrix. Also, row and column attributes are stored in the Col and Row + structs. If the columns are un-sorted or contain duplicate row indices, + this routine will also sort and remove duplicate row indices from the + column form of the matrix. Returns FALSE if the matrix is invalid, + TRUE otherwise. Not user-callable. +*/ + +PRIVATE int init_rows_cols /* returns TRUE if OK, or FALSE otherwise */ +( + /* === Parameters ======================================================= */ + + int n_row, /* number of rows of A */ + int n_col, /* number of columns of A */ + Colamd_Row Row [], /* of size n_row+1 */ + Colamd_Col Col [], /* of size n_col+1 */ + int A [], /* row indices of A, of size Alen */ + int p [], /* pointers to columns in A, of size n_col+1 */ + int stats [COLAMD_STATS] /* colamd statistics */ +) +{ + /* === Local variables ================================================== */ + + int col ; /* a column index */ + int row ; /* a row index */ + int *cp ; /* a column pointer */ + int *cp_end ; /* a pointer to the end of a column */ + int *rp ; /* a row pointer */ + int *rp_end ; /* a pointer to the end of a row */ + int last_row ; /* previous row */ + + /* === Initialize columns, and check column pointers ==================== */ + + for (col = 0 ; col < n_col ; col++) + { + Col [col].start = p [col] ; + Col [col].length = p [col+1] - p [col] ; + + if (Col [col].length < 0) + { + /* column pointers must be non-decreasing */ + stats [COLAMD_STATUS] = COLAMD_ERROR_col_length_negative ; + stats [COLAMD_INFO1] = col ; + stats [COLAMD_INFO2] = Col [col].length ; + DEBUG0 (("colamd: col %d length %d < 0\n", col, Col [col].length)) ; + return (FALSE) ; + } + + Col [col].shared1.thickness = 1 ; + Col [col].shared2.score = 0 ; + Col [col].shared3.prev = EMPTY ; + Col [col].shared4.degree_next = EMPTY ; + } + + /* p [0..n_col] no longer needed, used as "head" in subsequent routines */ + + /* === Scan columns, compute row degrees, and check row indices ========= */ + + stats [COLAMD_INFO3] = 0 ; /* number of duplicate or unsorted row indices*/ + + for (row = 0 ; row < n_row ; row++) + { + Row [row].length = 0 ; + Row [row].shared2.mark = -1 ; + } + + for (col = 0 ; col < n_col ; col++) + { + last_row = -1 ; + + cp = &A [p [col]] ; + cp_end = &A [p [col+1]] ; + + while (cp < cp_end) + { + row = *cp++ ; + + /* make sure row indices within range */ + if (row < 0 || row >= n_row) + { + stats [COLAMD_STATUS] = COLAMD_ERROR_row_index_out_of_bounds ; + stats [COLAMD_INFO1] = col ; + stats [COLAMD_INFO2] = row ; + stats [COLAMD_INFO3] = n_row ; + DEBUG0 (("colamd: row %d col %d out of bounds\n", row, col)) ; + return (FALSE) ; + } + + if (row <= last_row || Row [row].shared2.mark == col) + { + /* row index are unsorted or repeated (or both), thus col */ + /* is jumbled. This is a notice, not an error condition. */ + stats [COLAMD_STATUS] = COLAMD_OK_BUT_JUMBLED ; + stats [COLAMD_INFO1] = col ; + stats [COLAMD_INFO2] = row ; + (stats [COLAMD_INFO3]) ++ ; + DEBUG1 (("colamd: row %d col %d unsorted/duplicate\n",row,col)); + } + + if (Row [row].shared2.mark != col) + { + Row [row].length++ ; + } + else + { + /* this is a repeated entry in the column, */ + /* it will be removed */ + Col [col].length-- ; + } + + /* mark the row as having been seen in this column */ + Row [row].shared2.mark = col ; + + last_row = row ; + } + } + + /* === Compute row pointers ============================================= */ + + /* row form of the matrix starts directly after the column */ + /* form of matrix in A */ + Row [0].start = p [n_col] ; + Row [0].shared1.p = Row [0].start ; + Row [0].shared2.mark = -1 ; + for (row = 1 ; row < n_row ; row++) + { + Row [row].start = Row [row-1].start + Row [row-1].length ; + Row [row].shared1.p = Row [row].start ; + Row [row].shared2.mark = -1 ; + } + + /* === Create row form ================================================== */ + + if (stats [COLAMD_STATUS] == COLAMD_OK_BUT_JUMBLED) + { + /* if cols jumbled, watch for repeated row indices */ + for (col = 0 ; col < n_col ; col++) + { + cp = &A [p [col]] ; + cp_end = &A [p [col+1]] ; + while (cp < cp_end) + { + row = *cp++ ; + if (Row [row].shared2.mark != col) + { + A [(Row [row].shared1.p)++] = col ; + Row [row].shared2.mark = col ; + } + } + } + } + else + { + /* if cols not jumbled, we don't need the mark (this is faster) */ + for (col = 0 ; col < n_col ; col++) + { + cp = &A [p [col]] ; + cp_end = &A [p [col+1]] ; + while (cp < cp_end) + { + A [(Row [*cp++].shared1.p)++] = col ; + } + } + } + + /* === Clear the row marks and set row degrees ========================== */ + + for (row = 0 ; row < n_row ; row++) + { + Row [row].shared2.mark = 0 ; + Row [row].shared1.degree = Row [row].length ; + } + + /* === See if we need to re-create columns ============================== */ + + if (stats [COLAMD_STATUS] == COLAMD_OK_BUT_JUMBLED) + { + DEBUG0 (("colamd: reconstructing column form, matrix jumbled\n")) ; + +#ifndef NDEBUG + /* make sure column lengths are correct */ + for (col = 0 ; col < n_col ; col++) + { + p [col] = Col [col].length ; + } + for (row = 0 ; row < n_row ; row++) + { + rp = &A [Row [row].start] ; + rp_end = rp + Row [row].length ; + while (rp < rp_end) + { + p [*rp++]-- ; + } + } + for (col = 0 ; col < n_col ; col++) + { + ASSERT (p [col] == 0) ; + } + /* now p is all zero (different than when debugging is turned off) */ +#endif /* NDEBUG */ + + /* === Compute col pointers ========================================= */ + + /* col form of the matrix starts at A [0]. */ + /* Note, we may have a gap between the col form and the row */ + /* form if there were duplicate entries, if so, it will be */ + /* removed upon the first garbage collection */ + Col [0].start = 0 ; + p [0] = Col [0].start ; + for (col = 1 ; col < n_col ; col++) + { + /* note that the lengths here are for pruned columns, i.e. */ + /* no duplicate row indices will exist for these columns */ + Col [col].start = Col [col-1].start + Col [col-1].length ; + p [col] = Col [col].start ; + } + + /* === Re-create col form =========================================== */ + + for (row = 0 ; row < n_row ; row++) + { + rp = &A [Row [row].start] ; + rp_end = rp + Row [row].length ; + while (rp < rp_end) + { + A [(p [*rp++])++] = row ; + } + } + } + + /* === Done. Matrix is not (or no longer) jumbled ====================== */ + + return (TRUE) ; +} + + +/* ========================================================================== */ +/* === init_scoring ========================================================= */ +/* ========================================================================== */ + +/* + Kills dense or empty columns and rows, calculates an initial score for + each column, and places all columns in the degree lists. Not user-callable. +*/ + +PRIVATE void init_scoring +( + /* === Parameters ======================================================= */ + + int n_row, /* number of rows of A */ + int n_col, /* number of columns of A */ + Colamd_Row Row [], /* of size n_row+1 */ + Colamd_Col Col [], /* of size n_col+1 */ + int A [], /* column form and row form of A */ + int head [], /* of size n_col+1 */ + double knobs [COLAMD_KNOBS],/* parameters */ + int *p_n_row2, /* number of non-dense, non-empty rows */ + int *p_n_col2, /* number of non-dense, non-empty columns */ + int *p_max_deg /* maximum row degree */ +) +{ + /* === Local variables ================================================== */ + + int c ; /* a column index */ + int r, row ; /* a row index */ + int *cp ; /* a column pointer */ + int deg ; /* degree of a row or column */ + int *cp_end ; /* a pointer to the end of a column */ + int *new_cp ; /* new column pointer */ + int col_length ; /* length of pruned column */ + int score ; /* current column score */ + int n_col2 ; /* number of non-dense, non-empty columns */ + int n_row2 ; /* number of non-dense, non-empty rows */ + int dense_row_count ; /* remove rows with more entries than this */ + int dense_col_count ; /* remove cols with more entries than this */ + int min_score ; /* smallest column score */ + int max_deg ; /* maximum row degree */ + int next_col ; /* Used to add to degree list.*/ + +#ifndef NDEBUG + int debug_count ; /* debug only. */ +#endif /* NDEBUG */ + + /* === Extract knobs ==================================================== */ + + dense_row_count = (int) MAX (0, MIN (knobs [COLAMD_DENSE_ROW] * n_col, n_col)) ; + dense_col_count = (int) MAX (0, MIN (knobs [COLAMD_DENSE_COL] * n_row, n_row)) ; + DEBUG1 (("colamd: densecount: %d %d\n", dense_row_count, dense_col_count)) ; + max_deg = 0 ; + n_col2 = n_col ; + n_row2 = n_row ; + + /* === Kill empty columns =============================================== */ + + /* Put the empty columns at the end in their natural order, so that LU */ + /* factorization can proceed as far as possible. */ + for (c = n_col-1 ; c >= 0 ; c--) + { + deg = Col [c].length ; + if (deg == 0) + { + /* this is a empty column, kill and order it last */ + Col [c].shared2.order = --n_col2 ; + KILL_PRINCIPAL_COL (c) ; + } + } + DEBUG1 (("colamd: null columns killed: %d\n", n_col - n_col2)) ; + + /* === Kill dense columns =============================================== */ + + /* Put the dense columns at the end, in their natural order */ + for (c = n_col-1 ; c >= 0 ; c--) + { + /* skip any dead columns */ + if (COL_IS_DEAD (c)) + { + continue ; + } + deg = Col [c].length ; + if (deg > dense_col_count) + { + /* this is a dense column, kill and order it last */ + Col [c].shared2.order = --n_col2 ; + /* decrement the row degrees */ + cp = &A [Col [c].start] ; + cp_end = cp + Col [c].length ; + while (cp < cp_end) + { + Row [*cp++].shared1.degree-- ; + } + KILL_PRINCIPAL_COL (c) ; + } + } + DEBUG1 (("colamd: Dense and null columns killed: %d\n", n_col - n_col2)) ; + + /* === Kill dense and empty rows ======================================== */ + + for (r = 0 ; r < n_row ; r++) + { + deg = Row [r].shared1.degree ; + ASSERT (deg >= 0 && deg <= n_col) ; + if (deg > dense_row_count || deg == 0) + { + /* kill a dense or empty row */ + KILL_ROW (r) ; + --n_row2 ; + } + else + { + /* keep track of max degree of remaining rows */ + max_deg = MAX (max_deg, deg) ; + } + } + DEBUG1 (("colamd: Dense and null rows killed: %d\n", n_row - n_row2)) ; + + /* === Compute initial column scores ==================================== */ + + /* At this point the row degrees are accurate. They reflect the number */ + /* of "live" (non-dense) columns in each row. No empty rows exist. */ + /* Some "live" columns may contain only dead rows, however. These are */ + /* pruned in the code below. */ + + /* now find the initial matlab score for each column */ + for (c = n_col-1 ; c >= 0 ; c--) + { + /* skip dead column */ + if (COL_IS_DEAD (c)) + { + continue ; + } + score = 0 ; + cp = &A [Col [c].start] ; + new_cp = cp ; + cp_end = cp + Col [c].length ; + while (cp < cp_end) + { + /* get a row */ + row = *cp++ ; + /* skip if dead */ + if (ROW_IS_DEAD (row)) + { + continue ; + } + /* compact the column */ + *new_cp++ = row ; + /* add row's external degree */ + score += Row [row].shared1.degree - 1 ; + /* guard against integer overflow */ + score = MIN (score, n_col) ; + } + /* determine pruned column length */ + col_length = (int) (new_cp - &A [Col [c].start]) ; + if (col_length == 0) + { + /* a newly-made null column (all rows in this col are "dense" */ + /* and have already been killed) */ + DEBUG2 (("Newly null killed: %d\n", c)) ; + Col [c].shared2.order = --n_col2 ; + KILL_PRINCIPAL_COL (c) ; + } + else + { + /* set column length and set score */ + ASSERT (score >= 0) ; + ASSERT (score <= n_col) ; + Col [c].length = col_length ; + Col [c].shared2.score = score ; + } + } + DEBUG1 (("colamd: Dense, null, and newly-null columns killed: %d\n", + n_col-n_col2)) ; + + /* At this point, all empty rows and columns are dead. All live columns */ + /* are "clean" (containing no dead rows) and simplicial (no supercolumns */ + /* yet). Rows may contain dead columns, but all live rows contain at */ + /* least one live column. */ + +#ifndef NDEBUG + debug_structures (n_row, n_col, Row, Col, A, n_col2) ; +#endif /* NDEBUG */ + + /* === Initialize degree lists ========================================== */ + +#ifndef NDEBUG + debug_count = 0 ; +#endif /* NDEBUG */ + + /* clear the hash buckets */ + for (c = 0 ; c <= n_col ; c++) + { + head [c] = EMPTY ; + } + min_score = n_col ; + /* place in reverse order, so low column indices are at the front */ + /* of the lists. This is to encourage natural tie-breaking */ + for (c = n_col-1 ; c >= 0 ; c--) + { + /* only add principal columns to degree lists */ + if (COL_IS_ALIVE (c)) + { + DEBUG4 (("place %d score %d minscore %d ncol %d\n", + c, Col [c].shared2.score, min_score, n_col)) ; + + /* === Add columns score to DList =============================== */ + + score = Col [c].shared2.score ; + + ASSERT (min_score >= 0) ; + ASSERT (min_score <= n_col) ; + ASSERT (score >= 0) ; + ASSERT (score <= n_col) ; + ASSERT (head [score] >= EMPTY) ; + + /* now add this column to dList at proper score location */ + next_col = head [score] ; + Col [c].shared3.prev = EMPTY ; + Col [c].shared4.degree_next = next_col ; + + /* if there already was a column with the same score, set its */ + /* previous pointer to this new column */ + if (next_col != EMPTY) + { + Col [next_col].shared3.prev = c ; + } + head [score] = c ; + + /* see if this score is less than current min */ + min_score = MIN (min_score, score) ; + +#ifndef NDEBUG + debug_count++ ; +#endif /* NDEBUG */ + + } + } + +#ifndef NDEBUG + DEBUG1 (("colamd: Live cols %d out of %d, non-princ: %d\n", + debug_count, n_col, n_col-debug_count)) ; + ASSERT (debug_count == n_col2) ; + debug_deg_lists (n_row, n_col, Row, Col, head, min_score, n_col2, max_deg) ; +#endif /* NDEBUG */ + + /* === Return number of remaining columns, and max row degree =========== */ + + *p_n_col2 = n_col2 ; + *p_n_row2 = n_row2 ; + *p_max_deg = max_deg ; +} + + +/* ========================================================================== */ +/* === find_ordering ======================================================== */ +/* ========================================================================== */ + +/* + Order the principal columns of the supercolumn form of the matrix + (no supercolumns on input). Uses a minimum approximate column minimum + degree ordering method. Not user-callable. +*/ + +PRIVATE int find_ordering /* return the number of garbage collections */ +( + /* === Parameters ======================================================= */ + + int n_row, /* number of rows of A */ + int n_col, /* number of columns of A */ + int Alen, /* size of A, 2*nnz + n_col or larger */ + Colamd_Row Row [], /* of size n_row+1 */ + Colamd_Col Col [], /* of size n_col+1 */ + int A [], /* column form and row form of A */ + int head [], /* of size n_col+1 */ + int n_col2, /* Remaining columns to order */ + int max_deg, /* Maximum row degree */ + int pfree /* index of first free slot (2*nnz on entry) */ +) +{ + /* === Local variables ================================================== */ + + int k ; /* current pivot ordering step */ + int pivot_col ; /* current pivot column */ + int *cp ; /* a column pointer */ + int *rp ; /* a row pointer */ + int pivot_row ; /* current pivot row */ + int *new_cp ; /* modified column pointer */ + int *new_rp ; /* modified row pointer */ + int pivot_row_start ; /* pointer to start of pivot row */ + int pivot_row_degree ; /* number of columns in pivot row */ + int pivot_row_length ; /* number of supercolumns in pivot row */ + int pivot_col_score ; /* score of pivot column */ + int needed_memory ; /* free space needed for pivot row */ + int *cp_end ; /* pointer to the end of a column */ + int *rp_end ; /* pointer to the end of a row */ + int row ; /* a row index */ + int col ; /* a column index */ + int max_score ; /* maximum possible score */ + int cur_score ; /* score of current column */ + unsigned int hash ; /* hash value for supernode detection */ + int head_column ; /* head of hash bucket */ + int first_col ; /* first column in hash bucket */ + int tag_mark ; /* marker value for mark array */ + int row_mark ; /* Row [row].shared2.mark */ + int set_difference ; /* set difference size of row with pivot row */ + int min_score ; /* smallest column score */ + int col_thickness ; /* "thickness" (no. of columns in a supercol) */ + int max_mark ; /* maximum value of tag_mark */ + int pivot_col_thickness ; /* number of columns represented by pivot col */ + int prev_col ; /* Used by Dlist operations. */ + int next_col ; /* Used by Dlist operations. */ + int ngarbage ; /* number of garbage collections performed */ + +#ifndef NDEBUG + int debug_d ; /* debug loop counter */ + int debug_step = 0 ; /* debug loop counter */ +#endif /* NDEBUG */ + + /* === Initialization and clear mark ==================================== */ + + max_mark = INT_MAX - n_col ; /* INT_MAX defined in */ + tag_mark = clear_mark (n_row, Row) ; + min_score = 0 ; + ngarbage = 0 ; + DEBUG1 (("colamd: Ordering, n_col2=%d\n", n_col2)) ; + + /* === Order the columns ================================================ */ + + for (k = 0 ; k < n_col2 ; /* 'k' is incremented below */) + { + +#ifndef NDEBUG + if (debug_step % 100 == 0) + { + DEBUG2 (("\n... Step k: %d out of n_col2: %d\n", k, n_col2)) ; + } + else + { + DEBUG3 (("\n----------Step k: %d out of n_col2: %d\n", k, n_col2)) ; + } + debug_step++ ; + debug_deg_lists (n_row, n_col, Row, Col, head, + min_score, n_col2-k, max_deg) ; + debug_matrix (n_row, n_col, Row, Col, A) ; +#endif /* NDEBUG */ + + /* === Select pivot column, and order it ============================ */ + + /* make sure degree list isn't empty */ + ASSERT (min_score >= 0) ; + ASSERT (min_score <= n_col) ; + ASSERT (head [min_score] >= EMPTY) ; + +#ifndef NDEBUG + for (debug_d = 0 ; debug_d < min_score ; debug_d++) + { + ASSERT (head [debug_d] == EMPTY) ; + } +#endif /* NDEBUG */ + + /* get pivot column from head of minimum degree list */ + while (head [min_score] == EMPTY && min_score < n_col) + { + min_score++ ; + } + pivot_col = head [min_score] ; + ASSERT (pivot_col >= 0 && pivot_col <= n_col) ; + next_col = Col [pivot_col].shared4.degree_next ; + head [min_score] = next_col ; + if (next_col != EMPTY) + { + Col [next_col].shared3.prev = EMPTY ; + } + + ASSERT (COL_IS_ALIVE (pivot_col)) ; + DEBUG3 (("Pivot col: %d\n", pivot_col)) ; + + /* remember score for defrag check */ + pivot_col_score = Col [pivot_col].shared2.score ; + + /* the pivot column is the kth column in the pivot order */ + Col [pivot_col].shared2.order = k ; + + /* increment order count by column thickness */ + pivot_col_thickness = Col [pivot_col].shared1.thickness ; + k += pivot_col_thickness ; + ASSERT (pivot_col_thickness > 0) ; + + /* === Garbage_collection, if necessary ============================= */ + + needed_memory = MIN (pivot_col_score, n_col - k) ; + if (pfree + needed_memory >= Alen) + { + pfree = garbage_collection (n_row, n_col, Row, Col, A, &A [pfree]) ; + ngarbage++ ; + /* after garbage collection we will have enough */ + ASSERT (pfree + needed_memory < Alen) ; + /* garbage collection has wiped out the Row[].shared2.mark array */ + tag_mark = clear_mark (n_row, Row) ; + +#ifndef NDEBUG + debug_matrix (n_row, n_col, Row, Col, A) ; +#endif /* NDEBUG */ + } + + /* === Compute pivot row pattern ==================================== */ + + /* get starting location for this new merged row */ + pivot_row_start = pfree ; + + /* initialize new row counts to zero */ + pivot_row_degree = 0 ; + + /* tag pivot column as having been visited so it isn't included */ + /* in merged pivot row */ + Col [pivot_col].shared1.thickness = -pivot_col_thickness ; + + /* pivot row is the union of all rows in the pivot column pattern */ + cp = &A [Col [pivot_col].start] ; + cp_end = cp + Col [pivot_col].length ; + while (cp < cp_end) + { + /* get a row */ + row = *cp++ ; + DEBUG4 (("Pivot col pattern %d %d\n", ROW_IS_ALIVE (row), row)) ; + /* skip if row is dead */ + if (ROW_IS_DEAD (row)) + { + continue ; + } + rp = &A [Row [row].start] ; + rp_end = rp + Row [row].length ; + while (rp < rp_end) + { + /* get a column */ + col = *rp++ ; + /* add the column, if alive and untagged */ + col_thickness = Col [col].shared1.thickness ; + if (col_thickness > 0 && COL_IS_ALIVE (col)) + { + /* tag column in pivot row */ + Col [col].shared1.thickness = -col_thickness ; + ASSERT (pfree < Alen) ; + /* place column in pivot row */ + A [pfree++] = col ; + pivot_row_degree += col_thickness ; + } + } + } + + /* clear tag on pivot column */ + Col [pivot_col].shared1.thickness = pivot_col_thickness ; + max_deg = MAX (max_deg, pivot_row_degree) ; + +#ifndef NDEBUG + DEBUG3 (("check2\n")) ; + debug_mark (n_row, Row, tag_mark, max_mark) ; +#endif /* NDEBUG */ + + /* === Kill all rows used to construct pivot row ==================== */ + + /* also kill pivot row, temporarily */ + cp = &A [Col [pivot_col].start] ; + cp_end = cp + Col [pivot_col].length ; + while (cp < cp_end) + { + /* may be killing an already dead row */ + row = *cp++ ; + DEBUG3 (("Kill row in pivot col: %d\n", row)) ; + KILL_ROW (row) ; + } + + /* === Select a row index to use as the new pivot row =============== */ + + pivot_row_length = pfree - pivot_row_start ; + if (pivot_row_length > 0) + { + /* pick the "pivot" row arbitrarily (first row in col) */ + pivot_row = A [Col [pivot_col].start] ; + DEBUG3 (("Pivotal row is %d\n", pivot_row)) ; + } + else + { + /* there is no pivot row, since it is of zero length */ + pivot_row = EMPTY ; + ASSERT (pivot_row_length == 0) ; + } + ASSERT (Col [pivot_col].length > 0 || pivot_row_length == 0) ; + + /* === Approximate degree computation =============================== */ + + /* Here begins the computation of the approximate degree. The column */ + /* score is the sum of the pivot row "length", plus the size of the */ + /* set differences of each row in the column minus the pattern of the */ + /* pivot row itself. The column ("thickness") itself is also */ + /* excluded from the column score (we thus use an approximate */ + /* external degree). */ + + /* The time taken by the following code (compute set differences, and */ + /* add them up) is proportional to the size of the data structure */ + /* being scanned - that is, the sum of the sizes of each column in */ + /* the pivot row. Thus, the amortized time to compute a column score */ + /* is proportional to the size of that column (where size, in this */ + /* context, is the column "length", or the number of row indices */ + /* in that column). The number of row indices in a column is */ + /* monotonically non-decreasing, from the length of the original */ + /* column on input to colamd. */ + + /* === Compute set differences ====================================== */ + + DEBUG3 (("** Computing set differences phase. **\n")) ; + + /* pivot row is currently dead - it will be revived later. */ + + DEBUG3 (("Pivot row: ")) ; + /* for each column in pivot row */ + rp = &A [pivot_row_start] ; + rp_end = rp + pivot_row_length ; + while (rp < rp_end) + { + col = *rp++ ; + ASSERT (COL_IS_ALIVE (col) && col != pivot_col) ; + DEBUG3 (("Col: %d\n", col)) ; + + /* clear tags used to construct pivot row pattern */ + col_thickness = -Col [col].shared1.thickness ; + ASSERT (col_thickness > 0) ; + Col [col].shared1.thickness = col_thickness ; + + /* === Remove column from degree list =========================== */ + + cur_score = Col [col].shared2.score ; + prev_col = Col [col].shared3.prev ; + next_col = Col [col].shared4.degree_next ; + ASSERT (cur_score >= 0) ; + ASSERT (cur_score <= n_col) ; + ASSERT (cur_score >= EMPTY) ; + if (prev_col == EMPTY) + { + head [cur_score] = next_col ; + } + else + { + Col [prev_col].shared4.degree_next = next_col ; + } + if (next_col != EMPTY) + { + Col [next_col].shared3.prev = prev_col ; + } + + /* === Scan the column ========================================== */ + + cp = &A [Col [col].start] ; + cp_end = cp + Col [col].length ; + while (cp < cp_end) + { + /* get a row */ + row = *cp++ ; + row_mark = Row [row].shared2.mark ; + /* skip if dead */ + if (ROW_IS_MARKED_DEAD (row_mark)) + { + continue ; + } + ASSERT (row != pivot_row) ; + set_difference = row_mark - tag_mark ; + /* check if the row has been seen yet */ + if (set_difference < 0) + { + ASSERT (Row [row].shared1.degree <= max_deg) ; + set_difference = Row [row].shared1.degree ; + } + /* subtract column thickness from this row's set difference */ + set_difference -= col_thickness ; + ASSERT (set_difference >= 0) ; + /* absorb this row if the set difference becomes zero */ + if (set_difference == 0) + { + DEBUG3 (("aggressive absorption. Row: %d\n", row)) ; + KILL_ROW (row) ; + } + else + { + /* save the new mark */ + Row [row].shared2.mark = set_difference + tag_mark ; + } + } + } + +#ifndef NDEBUG + debug_deg_lists (n_row, n_col, Row, Col, head, + min_score, n_col2-k-pivot_row_degree, max_deg) ; +#endif /* NDEBUG */ + + /* === Add up set differences for each column ======================= */ + + DEBUG3 (("** Adding set differences phase. **\n")) ; + + /* for each column in pivot row */ + rp = &A [pivot_row_start] ; + rp_end = rp + pivot_row_length ; + while (rp < rp_end) + { + /* get a column */ + col = *rp++ ; + ASSERT (COL_IS_ALIVE (col) && col != pivot_col) ; + hash = 0 ; + cur_score = 0 ; + cp = &A [Col [col].start] ; + /* compact the column */ + new_cp = cp ; + cp_end = cp + Col [col].length ; + + DEBUG4 (("Adding set diffs for Col: %d.\n", col)) ; + + while (cp < cp_end) + { + /* get a row */ + row = *cp++ ; + ASSERT(row >= 0 && row < n_row) ; + row_mark = Row [row].shared2.mark ; + /* skip if dead */ + if (ROW_IS_MARKED_DEAD (row_mark)) + { + continue ; + } + ASSERT (row_mark > tag_mark) ; + /* compact the column */ + *new_cp++ = row ; + /* compute hash function */ + hash += row ; + /* add set difference */ + cur_score += row_mark - tag_mark ; + /* integer overflow... */ + cur_score = MIN (cur_score, n_col) ; + } + + /* recompute the column's length */ + Col [col].length = (int) (new_cp - &A [Col [col].start]) ; + + /* === Further mass elimination ================================= */ + + if (Col [col].length == 0) + { + DEBUG4 (("further mass elimination. Col: %d\n", col)) ; + /* nothing left but the pivot row in this column */ + KILL_PRINCIPAL_COL (col) ; + pivot_row_degree -= Col [col].shared1.thickness ; + ASSERT (pivot_row_degree >= 0) ; + /* order it */ + Col [col].shared2.order = k ; + /* increment order count by column thickness */ + k += Col [col].shared1.thickness ; + } + else + { + /* === Prepare for supercolumn detection ==================== */ + + DEBUG4 (("Preparing supercol detection for Col: %d.\n", col)) ; + + /* save score so far */ + Col [col].shared2.score = cur_score ; + + /* add column to hash table, for supercolumn detection */ + hash %= n_col + 1 ; + + DEBUG4 ((" Hash = %d, n_col = %d.\n", hash, n_col)) ; + ASSERT (hash <= n_col) ; + + head_column = head [hash] ; + if (head_column > EMPTY) + { + /* degree list "hash" is non-empty, use prev (shared3) of */ + /* first column in degree list as head of hash bucket */ + first_col = Col [head_column].shared3.headhash ; + Col [head_column].shared3.headhash = col ; + } + else + { + /* degree list "hash" is empty, use head as hash bucket */ + first_col = - (head_column + 2) ; + head [hash] = - (col + 2) ; + } + Col [col].shared4.hash_next = first_col ; + + /* save hash function in Col [col].shared3.hash */ + Col [col].shared3.hash = (int) hash ; + ASSERT (COL_IS_ALIVE (col)) ; + } + } + + /* The approximate external column degree is now computed. */ + + /* === Supercolumn detection ======================================== */ + + DEBUG3 (("** Supercolumn detection phase. **\n")) ; + + detect_super_cols ( + +#ifndef NDEBUG + n_col, Row, +#endif /* NDEBUG */ + + Col, A, head, pivot_row_start, pivot_row_length) ; + + /* === Kill the pivotal column ====================================== */ + + KILL_PRINCIPAL_COL (pivot_col) ; + + /* === Clear mark =================================================== */ + + tag_mark += (max_deg + 1) ; + if (tag_mark >= max_mark) + { + DEBUG2 (("clearing tag_mark\n")) ; + tag_mark = clear_mark (n_row, Row) ; + } + +#ifndef NDEBUG + DEBUG3 (("check3\n")) ; + debug_mark (n_row, Row, tag_mark, max_mark) ; +#endif /* NDEBUG */ + + /* === Finalize the new pivot row, and column scores ================ */ + + DEBUG3 (("** Finalize scores phase. **\n")) ; + + /* for each column in pivot row */ + rp = &A [pivot_row_start] ; + /* compact the pivot row */ + new_rp = rp ; + rp_end = rp + pivot_row_length ; + while (rp < rp_end) + { + col = *rp++ ; + /* skip dead columns */ + if (COL_IS_DEAD (col)) + { + continue ; + } + *new_rp++ = col ; + /* add new pivot row to column */ + A [Col [col].start + (Col [col].length++)] = pivot_row ; + + /* retrieve score so far and add on pivot row's degree. */ + /* (we wait until here for this in case the pivot */ + /* row's degree was reduced due to mass elimination). */ + cur_score = Col [col].shared2.score + pivot_row_degree ; + + /* calculate the max possible score as the number of */ + /* external columns minus the 'k' value minus the */ + /* columns thickness */ + max_score = n_col - k - Col [col].shared1.thickness ; + + /* make the score the external degree of the union-of-rows */ + cur_score -= Col [col].shared1.thickness ; + + /* make sure score is less or equal than the max score */ + cur_score = MIN (cur_score, max_score) ; + ASSERT (cur_score >= 0) ; + + /* store updated score */ + Col [col].shared2.score = cur_score ; + + /* === Place column back in degree list ========================= */ + + ASSERT (min_score >= 0) ; + ASSERT (min_score <= n_col) ; + ASSERT (cur_score >= 0) ; + ASSERT (cur_score <= n_col) ; + ASSERT (head [cur_score] >= EMPTY) ; + next_col = head [cur_score] ; + Col [col].shared4.degree_next = next_col ; + Col [col].shared3.prev = EMPTY ; + if (next_col != EMPTY) + { + Col [next_col].shared3.prev = col ; + } + head [cur_score] = col ; + + /* see if this score is less than current min */ + min_score = MIN (min_score, cur_score) ; + + } + +#ifndef NDEBUG + debug_deg_lists (n_row, n_col, Row, Col, head, + min_score, n_col2-k, max_deg) ; +#endif /* NDEBUG */ + + /* === Resurrect the new pivot row ================================== */ + + if (pivot_row_degree > 0) + { + /* update pivot row length to reflect any cols that were killed */ + /* during super-col detection and mass elimination */ + Row [pivot_row].start = pivot_row_start ; + Row [pivot_row].length = (int) (new_rp - &A[pivot_row_start]) ; + Row [pivot_row].shared1.degree = pivot_row_degree ; + Row [pivot_row].shared2.mark = 0 ; + /* pivot row is no longer dead */ + } + } + + /* === All principal columns have now been ordered ====================== */ + + return (ngarbage) ; +} + + +/* ========================================================================== */ +/* === order_children ======================================================= */ +/* ========================================================================== */ + +/* + The find_ordering routine has ordered all of the principal columns (the + representatives of the supercolumns). The non-principal columns have not + yet been ordered. This routine orders those columns by walking up the + parent tree (a column is a child of the column which absorbed it). The + final permutation vector is then placed in p [0 ... n_col-1], with p [0] + being the first column, and p [n_col-1] being the last. It doesn't look + like it at first glance, but be assured that this routine takes time linear + in the number of columns. Although not immediately obvious, the time + taken by this routine is O (n_col), that is, linear in the number of + columns. Not user-callable. +*/ + +PRIVATE void order_children +( + /* === Parameters ======================================================= */ + + int n_col, /* number of columns of A */ + Colamd_Col Col [], /* of size n_col+1 */ + int p [] /* p [0 ... n_col-1] is the column permutation*/ +) +{ + /* === Local variables ================================================== */ + + int i ; /* loop counter for all columns */ + int c ; /* column index */ + int parent ; /* index of column's parent */ + int order ; /* column's order */ + + /* === Order each non-principal column ================================== */ + + for (i = 0 ; i < n_col ; i++) + { + /* find an un-ordered non-principal column */ + ASSERT (COL_IS_DEAD (i)) ; + if (!COL_IS_DEAD_PRINCIPAL (i) && Col [i].shared2.order == EMPTY) + { + parent = i ; + /* once found, find its principal parent */ + do + { + parent = Col [parent].shared1.parent ; + } while (!COL_IS_DEAD_PRINCIPAL (parent)) ; + + /* now, order all un-ordered non-principal columns along path */ + /* to this parent. collapse tree at the same time */ + c = i ; + /* get order of parent */ + order = Col [parent].shared2.order ; + + do + { + ASSERT (Col [c].shared2.order == EMPTY) ; + + /* order this column */ + Col [c].shared2.order = order++ ; + /* collaps tree */ + Col [c].shared1.parent = parent ; + + /* get immediate parent of this column */ + c = Col [c].shared1.parent ; + + /* continue until we hit an ordered column. There are */ + /* guarranteed not to be anymore unordered columns */ + /* above an ordered column */ + } while (Col [c].shared2.order == EMPTY) ; + + /* re-order the super_col parent to largest order for this group */ + Col [parent].shared2.order = order ; + } + } + + /* === Generate the permutation ========================================= */ + + for (c = 0 ; c < n_col ; c++) + { + p [Col [c].shared2.order] = c ; + } +} + + +/* ========================================================================== */ +/* === detect_super_cols ==================================================== */ +/* ========================================================================== */ + +/* + Detects supercolumns by finding matches between columns in the hash buckets. + Check amongst columns in the set A [row_start ... row_start + row_length-1]. + The columns under consideration are currently *not* in the degree lists, + and have already been placed in the hash buckets. + + The hash bucket for columns whose hash function is equal to h is stored + as follows: + + if head [h] is >= 0, then head [h] contains a degree list, so: + + head [h] is the first column in degree bucket h. + Col [head [h]].headhash gives the first column in hash bucket h. + + otherwise, the degree list is empty, and: + + -(head [h] + 2) is the first column in hash bucket h. + + For a column c in a hash bucket, Col [c].shared3.prev is NOT a "previous + column" pointer. Col [c].shared3.hash is used instead as the hash number + for that column. The value of Col [c].shared4.hash_next is the next column + in the same hash bucket. + + Assuming no, or "few" hash collisions, the time taken by this routine is + linear in the sum of the sizes (lengths) of each column whose score has + just been computed in the approximate degree computation. + Not user-callable. +*/ + +PRIVATE void detect_super_cols +( + /* === Parameters ======================================================= */ + +#ifndef NDEBUG + /* these two parameters are only needed when debugging is enabled: */ + int n_col, /* number of columns of A */ + Colamd_Row Row [], /* of size n_row+1 */ +#endif /* NDEBUG */ + + Colamd_Col Col [], /* of size n_col+1 */ + int A [], /* row indices of A */ + int head [], /* head of degree lists and hash buckets */ + int row_start, /* pointer to set of columns to check */ + int row_length /* number of columns to check */ +) +{ + /* === Local variables ================================================== */ + + int hash ; /* hash value for a column */ + int *rp ; /* pointer to a row */ + int c ; /* a column index */ + int super_c ; /* column index of the column to absorb into */ + int *cp1 ; /* column pointer for column super_c */ + int *cp2 ; /* column pointer for column c */ + int length ; /* length of column super_c */ + int prev_c ; /* column preceding c in hash bucket */ + int i ; /* loop counter */ + int *rp_end ; /* pointer to the end of the row */ + int col ; /* a column index in the row to check */ + int head_column ; /* first column in hash bucket or degree list */ + int first_col ; /* first column in hash bucket */ + + /* === Consider each column in the row ================================== */ + + rp = &A [row_start] ; + rp_end = rp + row_length ; + while (rp < rp_end) + { + col = *rp++ ; + if (COL_IS_DEAD (col)) + { + continue ; + } + + /* get hash number for this column */ + hash = Col [col].shared3.hash ; + ASSERT (hash <= n_col) ; + + /* === Get the first column in this hash bucket ===================== */ + + head_column = head [hash] ; + if (head_column > EMPTY) + { + first_col = Col [head_column].shared3.headhash ; + } + else + { + first_col = - (head_column + 2) ; + } + + /* === Consider each column in the hash bucket ====================== */ + + for (super_c = first_col ; super_c != EMPTY ; + super_c = Col [super_c].shared4.hash_next) + { + ASSERT (COL_IS_ALIVE (super_c)) ; + ASSERT (Col [super_c].shared3.hash == hash) ; + length = Col [super_c].length ; + + /* prev_c is the column preceding column c in the hash bucket */ + prev_c = super_c ; + + /* === Compare super_c with all columns after it ================ */ + + for (c = Col [super_c].shared4.hash_next ; + c != EMPTY ; c = Col [c].shared4.hash_next) + { + ASSERT (c != super_c) ; + ASSERT (COL_IS_ALIVE (c)) ; + ASSERT (Col [c].shared3.hash == hash) ; + + /* not identical if lengths or scores are different */ + if (Col [c].length != length || + Col [c].shared2.score != Col [super_c].shared2.score) + { + prev_c = c ; + continue ; + } + + /* compare the two columns */ + cp1 = &A [Col [super_c].start] ; + cp2 = &A [Col [c].start] ; + + for (i = 0 ; i < length ; i++) + { + /* the columns are "clean" (no dead rows) */ + ASSERT (ROW_IS_ALIVE (*cp1)) ; + ASSERT (ROW_IS_ALIVE (*cp2)) ; + /* row indices will same order for both supercols, */ + /* no gather scatter nessasary */ + if (*cp1++ != *cp2++) + { + break ; + } + } + + /* the two columns are different if the for-loop "broke" */ + if (i != length) + { + prev_c = c ; + continue ; + } + + /* === Got it! two columns are identical =================== */ + + ASSERT (Col [c].shared2.score == Col [super_c].shared2.score) ; + + Col [super_c].shared1.thickness += Col [c].shared1.thickness ; + Col [c].shared1.parent = super_c ; + KILL_NON_PRINCIPAL_COL (c) ; + /* order c later, in order_children() */ + Col [c].shared2.order = EMPTY ; + /* remove c from hash bucket */ + Col [prev_c].shared4.hash_next = Col [c].shared4.hash_next ; + } + } + + /* === Empty this hash bucket ======================================= */ + + if (head_column > EMPTY) + { + /* corresponding degree list "hash" is not empty */ + Col [head_column].shared3.headhash = EMPTY ; + } + else + { + /* corresponding degree list "hash" is empty */ + head [hash] = EMPTY ; + } + } +} + + +/* ========================================================================== */ +/* === garbage_collection =================================================== */ +/* ========================================================================== */ + +/* + Defragments and compacts columns and rows in the workspace A. Used when + all avaliable memory has been used while performing row merging. Returns + the index of the first free position in A, after garbage collection. The + time taken by this routine is linear is the size of the array A, which is + itself linear in the number of nonzeros in the input matrix. + Not user-callable. +*/ + +PRIVATE int garbage_collection /* returns the new value of pfree */ +( + /* === Parameters ======================================================= */ + + int n_row, /* number of rows */ + int n_col, /* number of columns */ + Colamd_Row Row [], /* row info */ + Colamd_Col Col [], /* column info */ + int A [], /* A [0 ... Alen-1] holds the matrix */ + int *pfree /* &A [0] ... pfree is in use */ +) +{ + /* === Local variables ================================================== */ + + int *psrc ; /* source pointer */ + int *pdest ; /* destination pointer */ + int j ; /* counter */ + int r ; /* a row index */ + int c ; /* a column index */ + int length ; /* length of a row or column */ + +#ifndef NDEBUG + int debug_rows ; + DEBUG2 (("Defrag..\n")) ; + for (psrc = &A[0] ; psrc < pfree ; psrc++) ASSERT (*psrc >= 0) ; + debug_rows = 0 ; +#endif /* NDEBUG */ + + /* === Defragment the columns =========================================== */ + + pdest = &A[0] ; + for (c = 0 ; c < n_col ; c++) + { + if (COL_IS_ALIVE (c)) + { + psrc = &A [Col [c].start] ; + + /* move and compact the column */ + ASSERT (pdest <= psrc) ; + Col [c].start = (int) (pdest - &A [0]) ; + length = Col [c].length ; + for (j = 0 ; j < length ; j++) + { + r = *psrc++ ; + if (ROW_IS_ALIVE (r)) + { + *pdest++ = r ; + } + } + Col [c].length = (int) (pdest - &A [Col [c].start]) ; + } + } + + /* === Prepare to defragment the rows =================================== */ + + for (r = 0 ; r < n_row ; r++) + { + if (ROW_IS_ALIVE (r)) + { + if (Row [r].length == 0) + { + /* this row is of zero length. cannot compact it, so kill it */ + DEBUG3 (("Defrag row kill\n")) ; + KILL_ROW (r) ; + } + else + { + /* save first column index in Row [r].shared2.first_column */ + psrc = &A [Row [r].start] ; + Row [r].shared2.first_column = *psrc ; + ASSERT (ROW_IS_ALIVE (r)) ; + /* flag the start of the row with the one's complement of row */ + *psrc = ONES_COMPLEMENT (r) ; + +#ifndef NDEBUG + debug_rows++ ; +#endif /* NDEBUG */ + + } + } + } + + /* === Defragment the rows ============================================== */ + + psrc = pdest ; + while (psrc < pfree) + { + /* find a negative number ... the start of a row */ + if (*psrc++ < 0) + { + psrc-- ; + /* get the row index */ + r = ONES_COMPLEMENT (*psrc) ; + ASSERT (r >= 0 && r < n_row) ; + /* restore first column index */ + *psrc = Row [r].shared2.first_column ; + ASSERT (ROW_IS_ALIVE (r)) ; + + /* move and compact the row */ + ASSERT (pdest <= psrc) ; + Row [r].start = (int) (pdest - &A [0]) ; + length = Row [r].length ; + for (j = 0 ; j < length ; j++) + { + c = *psrc++ ; + if (COL_IS_ALIVE (c)) + { + *pdest++ = c ; + } + } + Row [r].length = (int) (pdest - &A [Row [r].start]) ; + +#ifndef NDEBUG + debug_rows-- ; +#endif /* NDEBUG */ + + } + } + /* ensure we found all the rows */ + ASSERT (debug_rows == 0) ; + + /* === Return the new value of pfree ==================================== */ + + return ((int) (pdest - &A [0])) ; +} + + +/* ========================================================================== */ +/* === clear_mark =========================================================== */ +/* ========================================================================== */ + +/* + Clears the Row [].shared2.mark array, and returns the new tag_mark. + Return value is the new tag_mark. Not user-callable. +*/ + +PRIVATE int clear_mark /* return the new value for tag_mark */ +( + /* === Parameters ======================================================= */ + + int n_row, /* number of rows in A */ + Colamd_Row Row [] /* Row [0 ... n_row-1].shared2.mark is set to zero */ +) +{ + /* === Local variables ================================================== */ + + int r ; + + for (r = 0 ; r < n_row ; r++) + { + if (ROW_IS_ALIVE (r)) + { + Row [r].shared2.mark = 0 ; + } + } + return (1) ; +} + + +/* ========================================================================== */ +/* === print_report ========================================================= */ +/* ========================================================================== */ + +PRIVATE void print_report +( + char *method, + int stats [COLAMD_STATS] +) +{ + + int i1, i2, i3 ; + + if (!stats) + { + PRINTF ("%s: No statistics available.\n", method) ; + return ; + } + + i1 = stats [COLAMD_INFO1] ; + i2 = stats [COLAMD_INFO2] ; + i3 = stats [COLAMD_INFO3] ; + + if (stats [COLAMD_STATUS] >= 0) + { + PRINTF ("%s: OK. ", method) ; + } + else + { + PRINTF ("%s: ERROR. ", method) ; + } + + switch (stats [COLAMD_STATUS]) + { + + case COLAMD_OK_BUT_JUMBLED: + + PRINTF ("Matrix has unsorted or duplicate row indices.\n") ; + + PRINTF ("%s: number of duplicate or out-of-order row indices: %d\n", + method, i3) ; + + PRINTF ("%s: last seen duplicate or out-of-order row index: %d\n", + method, INDEX (i2)) ; + + PRINTF ("%s: last seen in column: %d", + method, INDEX (i1)) ; + + /* no break - fall through to next case instead */ + + case COLAMD_OK: + + PRINTF ("\n") ; + + PRINTF ("%s: number of dense or empty rows ignored: %d\n", + method, stats [COLAMD_DENSE_ROW]) ; + + PRINTF ("%s: number of dense or empty columns ignored: %d\n", + method, stats [COLAMD_DENSE_COL]) ; + + PRINTF ("%s: number of garbage collections performed: %d\n", + method, stats [COLAMD_DEFRAG_COUNT]) ; + break ; + + case COLAMD_ERROR_A_not_present: + + PRINTF ("Array A (row indices of matrix) not present.\n") ; + break ; + + case COLAMD_ERROR_p_not_present: + + PRINTF ("Array p (column pointers for matrix) not present.\n") ; + break ; + + case COLAMD_ERROR_nrow_negative: + + PRINTF ("Invalid number of rows (%d).\n", i1) ; + break ; + + case COLAMD_ERROR_ncol_negative: + + PRINTF ("Invalid number of columns (%d).\n", i1) ; + break ; + + case COLAMD_ERROR_nnz_negative: + + PRINTF ("Invalid number of nonzero entries (%d).\n", i1) ; + break ; + + case COLAMD_ERROR_p0_nonzero: + + PRINTF ("Invalid column pointer, p [0] = %d, must be zero.\n", i1) ; + break ; + + case COLAMD_ERROR_A_too_small: + + PRINTF ("Array A too small.\n") ; + PRINTF (" Need Alen >= %d, but given only Alen = %d.\n", + i1, i2) ; + break ; + + case COLAMD_ERROR_col_length_negative: + + PRINTF + ("Column %d has a negative number of nonzero entries (%d).\n", + INDEX (i1), i2) ; + break ; + + case COLAMD_ERROR_row_index_out_of_bounds: + + PRINTF + ("Row index (row %d) out of bounds (%d to %d) in column %d.\n", + INDEX (i2), INDEX (0), INDEX (i3-1), INDEX (i1)) ; + break ; + + case COLAMD_ERROR_out_of_memory: + + PRINTF ("Out of memory.\n") ; + break ; + + case COLAMD_ERROR_internal_error: + + /* if this happens, there is a bug in the code */ + PRINTF + ("Internal error! Please contact authors (davis@cise.ufl.edu).\n") ; + break ; + } +} + + + + +/* ========================================================================== */ +/* === colamd debugging routines ============================================ */ +/* ========================================================================== */ + +/* When debugging is disabled, the remainder of this file is ignored. */ + +#ifndef NDEBUG + + +/* ========================================================================== */ +/* === debug_structures ===================================================== */ +/* ========================================================================== */ + +/* + At this point, all empty rows and columns are dead. All live columns + are "clean" (containing no dead rows) and simplicial (no supercolumns + yet). Rows may contain dead columns, but all live rows contain at + least one live column. +*/ + +PRIVATE void debug_structures +( + /* === Parameters ======================================================= */ + + int n_row, + int n_col, + Colamd_Row Row [], + Colamd_Col Col [], + int A [], + int n_col2 +) +{ + /* === Local variables ================================================== */ + + int i ; + int c ; + int *cp ; + int *cp_end ; + int len ; + int score ; + int r ; + int *rp ; + int *rp_end ; + int deg ; + + /* === Check A, Row, and Col ============================================ */ + + for (c = 0 ; c < n_col ; c++) + { + if (COL_IS_ALIVE (c)) + { + len = Col [c].length ; + score = Col [c].shared2.score ; + DEBUG4 (("initial live col %5d %5d %5d\n", c, len, score)) ; + ASSERT (len > 0) ; + ASSERT (score >= 0) ; + ASSERT (Col [c].shared1.thickness == 1) ; + cp = &A [Col [c].start] ; + cp_end = cp + len ; + while (cp < cp_end) + { + r = *cp++ ; + ASSERT (ROW_IS_ALIVE (r)) ; + } + } + else + { + i = Col [c].shared2.order ; + ASSERT (i >= n_col2 && i < n_col) ; + } + } + + for (r = 0 ; r < n_row ; r++) + { + if (ROW_IS_ALIVE (r)) + { + i = 0 ; + len = Row [r].length ; + deg = Row [r].shared1.degree ; + ASSERT (len > 0) ; + ASSERT (deg > 0) ; + rp = &A [Row [r].start] ; + rp_end = rp + len ; + while (rp < rp_end) + { + c = *rp++ ; + if (COL_IS_ALIVE (c)) + { + i++ ; + } + } + ASSERT (i > 0) ; + } + } +} + + +/* ========================================================================== */ +/* === debug_deg_lists ====================================================== */ +/* ========================================================================== */ + +/* + Prints the contents of the degree lists. Counts the number of columns + in the degree list and compares it to the total it should have. Also + checks the row degrees. +*/ + +PRIVATE void debug_deg_lists +( + /* === Parameters ======================================================= */ + + int n_row, + int n_col, + Colamd_Row Row [], + Colamd_Col Col [], + int head [], + int min_score, + int should, + int max_deg +) +{ + /* === Local variables ================================================== */ + + int deg ; + int col ; + int have ; + int row ; + + /* === Check the degree lists =========================================== */ + + if (n_col > 10000 && colamd_debug <= 0) + { + return ; + } + have = 0 ; + DEBUG4 (("Degree lists: %d\n", min_score)) ; + for (deg = 0 ; deg <= n_col ; deg++) + { + col = head [deg] ; + if (col == EMPTY) + { + continue ; + } + DEBUG4 (("%d:", deg)) ; + while (col != EMPTY) + { + DEBUG4 ((" %d", col)) ; + have += Col [col].shared1.thickness ; + ASSERT (COL_IS_ALIVE (col)) ; + col = Col [col].shared4.degree_next ; + } + DEBUG4 (("\n")) ; + } + DEBUG4 (("should %d have %d\n", should, have)) ; + ASSERT (should == have) ; + + /* === Check the row degrees ============================================ */ + + if (n_row > 10000 && colamd_debug <= 0) + { + return ; + } + for (row = 0 ; row < n_row ; row++) + { + if (ROW_IS_ALIVE (row)) + { + ASSERT (Row [row].shared1.degree <= max_deg) ; + } + } +} + + +/* ========================================================================== */ +/* === debug_mark =========================================================== */ +/* ========================================================================== */ + +/* + Ensures that the tag_mark is less that the maximum and also ensures that + each entry in the mark array is less than the tag mark. +*/ + +PRIVATE void debug_mark +( + /* === Parameters ======================================================= */ + + int n_row, + Colamd_Row Row [], + int tag_mark, + int max_mark +) +{ + /* === Local variables ================================================== */ + + int r ; + + /* === Check the Row marks ============================================== */ + + ASSERT (tag_mark > 0 && tag_mark <= max_mark) ; + if (n_row > 10000 && colamd_debug <= 0) + { + return ; + } + for (r = 0 ; r < n_row ; r++) + { + ASSERT (Row [r].shared2.mark < tag_mark) ; + } +} + + +/* ========================================================================== */ +/* === debug_matrix ========================================================= */ +/* ========================================================================== */ + +/* + Prints out the contents of the columns and the rows. +*/ + +PRIVATE void debug_matrix +( + /* === Parameters ======================================================= */ + + int n_row, + int n_col, + Colamd_Row Row [], + Colamd_Col Col [], + int A [] +) +{ + /* === Local variables ================================================== */ + + int r ; + int c ; + int *rp ; + int *rp_end ; + int *cp ; + int *cp_end ; + + /* === Dump the rows and columns of the matrix ========================== */ + + if (colamd_debug < 3) + { + return ; + } + DEBUG3 (("DUMP MATRIX:\n")) ; + for (r = 0 ; r < n_row ; r++) + { + DEBUG3 (("Row %d alive? %d\n", r, ROW_IS_ALIVE (r))) ; + if (ROW_IS_DEAD (r)) + { + continue ; + } + DEBUG3 (("start %d length %d degree %d\n", + Row [r].start, Row [r].length, Row [r].shared1.degree)) ; + rp = &A [Row [r].start] ; + rp_end = rp + Row [r].length ; + while (rp < rp_end) + { + c = *rp++ ; + DEBUG4 ((" %d col %d\n", COL_IS_ALIVE (c), c)) ; + } + } + + for (c = 0 ; c < n_col ; c++) + { + DEBUG3 (("Col %d alive? %d\n", c, COL_IS_ALIVE (c))) ; + if (COL_IS_DEAD (c)) + { + continue ; + } + DEBUG3 (("start %d length %d shared1 %d shared2 %d\n", + Col [c].start, Col [c].length, + Col [c].shared1.thickness, Col [c].shared2.score)) ; + cp = &A [Col [c].start] ; + cp_end = cp + Col [c].length ; + while (cp < cp_end) + { + r = *cp++ ; + DEBUG4 ((" %d row %d\n", ROW_IS_ALIVE (r), r)) ; + } + } +} + +PRIVATE void colamd_get_debug +( + char *method +) +{ + colamd_debug = 0 ; /* no debug printing */ + + /* get "D" environment variable, which gives the debug printing level */ + if (getenv ("D")) + { + colamd_debug = atoi (getenv ("D")) ; + } + + DEBUG0 (("%s: debug version, D = %d (THIS WILL BE SLOW!)\n", + method, colamd_debug)) ; +} + +#endif /* NDEBUG */ + diff --git a/src/external/lpsolve/build/lp_solve/commonlib.c b/src/external/lpsolve/build/lp_solve/commonlib.c new file mode 100644 index 00000000..c53a7520 --- /dev/null +++ b/src/external/lpsolve/build/lp_solve/commonlib.c @@ -0,0 +1,997 @@ +// Copyright(c) 2016-2018 Kjell Konis . +// Version: 5.5.2.0-17 +// Description: The lpSolveAPI package provides an R interface to 'lp_solve', +// a Mixed Integer Linear Programming (MILP) solver with support for pure +// linear, (mixed) integer/binary, semi-continuous and special ordered sets +// (SOS) models. +// License: LGPL-2 +// Repository: CRAN + +#include + +#if defined INTEGERTIME || defined CLOCKTIME || defined PosixTime +# include +#elif defined EnhTime +# include +#else +# include +#endif + +#include +#include +#ifdef WIN32 +# include /* Used in file search functions */ +#endif +#include +#include +#include +#include +#include "commonlib.h" + +#ifdef FORTIFY +# include "lp_fortify.h" +#endif + +#if defined FPUexception +/* FPU exception masks */ +unsigned int clearFPU() +{ + return( _clearfp() ); +} +unsigned int resetFPU(unsigned int mask) +{ + _clearfp(); + mask = _controlfp( mask, 0xfffff); + return( mask ); +} +unsigned int catchFPU(unsigned int mask) +{ + /* Always call _clearfp before enabling/unmasking a FPU exception */ + unsigned int u = _clearfp(); + + /* Set the new mask by not-and'ing it with the previous settings */ + u = _controlfp(0, 0); + mask = u & ~mask; + mask = _controlfp(mask, _MCW_EM); + + /* Return the previous mask */ + return( u ); +} +#endif + +/* Math operator equivalence function */ +int intpow(int base, int exponent) +{ + int result = 1; + while(exponent > 0) { + result *= base; + exponent--; + } + while(exponent < 0) { + result /= base; + exponent++; + } + return( result ); +} +int mod(int n, int d) +{ + return(n % d); +} + +/* Some string functions */ +void strtoup(char *s) +{ + if(s != NULL) + while (*s) { + *s = toupper(*s); + s++; + } +} +void strtolo(char *s) +{ + if(s != NULL) + while (*s) { + *s = tolower(*s); + s++; + } +} +void strcpyup(char *t, char *s) +{ + if((s != NULL) && (t != NULL)) { + while (*s) { + *t = toupper(*s); + t++; + s++; + } + *t = '\0'; + } +} +void strcpylo(char *t, char *s) +{ + if((s != NULL) && (t != NULL)) { + while (*s) { + *t = tolower(*s); + t++; + s++; + } + *t = '\0'; + } +} + +/* Unix library naming utility function */ +MYBOOL so_stdname(char *stdname, char *descname, int buflen) +{ + char *ptr; + + if((descname == NULL) || (stdname == NULL) || (((int) strlen(descname)) >= buflen - 6)) + return( FALSE ); + + strcpy(stdname, descname); + if((ptr = strrchr(descname, '/')) == NULL) + ptr = descname; + else + ptr++; + stdname[(int) (ptr - descname)] = 0; + if(strncmp(ptr, "lib", 3)) + strcat(stdname, "lib"); + strcat(stdname, ptr); + if(strcmp(stdname + strlen(stdname) - 3, ".so")) + strcat(stdname, ".so"); + return( TRUE ); +} + +/* Return the greatest common divisor of a and b, or -1 if it is + not defined. Return through the pointer arguments the integers + such that gcd(a,b) = c*a + b*d. */ +int gcd(LLONG a, LLONG b, int *c, int *d) +{ + LLONG q,r,t; + int cret,dret,C,D,rval, sgn_a = 1,sgn_b = 1, swap = 0; + + if((a == 0) || (b == 0)) + return( -1 ); + + /* Use local multiplier instances, if necessary */ + if(c == NULL) + c = &cret; + if(d == NULL) + d = &dret; + + /* Normalize so that 0 < a <= b */ + if(a < 0){ + a = -a; + sgn_a = -1; + } + if(b < 0){ + b = -b; + sgn_b = -1; + } + if(b < a){ + t = b; + b = a; + a = t; + swap = 1; + } + + /* Now a <= b and both >= 1. */ + q = b/a; + r = b - a*q; + if(r == 0) { + if(swap){ + *d = 1; + *c = 0; + } + else { + *c = 1; + *d = 0; + } + *c = sgn_a*(*c); + *d = sgn_b*(*d); + return( (int) a ); + } + + rval = gcd(a,r,&C,&D); + if(swap){ + *d = (int) (C-D*q); + *c = D; + } + else { + *d = D; + *c = (int) (C-D*q); + } + *c = sgn_a*(*c); + *d = sgn_b*(*d); + return( rval ); +} + +/* Array search functions */ +int findIndex(int target, int *attributes, int count, int offset) +{ + int focusPos, beginPos, endPos; + int focusAttrib, beginAttrib, endAttrib; + + /* Set starting and ending index offsets */ + beginPos = offset; + endPos = beginPos + count - 1; + if(endPos < beginPos) + return(-1); + + /* Do binary search logic based on a sorted (decending) attribute vector */ + focusPos = (beginPos + endPos) / 2; + beginAttrib = attributes[beginPos]; + focusAttrib = attributes[focusPos]; + endAttrib = attributes[endPos]; + + while(endPos - beginPos > LINEARSEARCH) { + if(beginAttrib == target) { + focusAttrib = beginAttrib; + endPos = beginPos; + } + else if(endAttrib == target) { + focusAttrib = endAttrib; + beginPos = endPos; + } + else if(focusAttrib < target) { + beginPos = focusPos + 1; + beginAttrib = attributes[beginPos]; + focusPos = (beginPos + endPos) / 2; + focusAttrib = attributes[focusPos]; + } + else if(focusAttrib > target) { + endPos = focusPos - 1; + endAttrib = attributes[endPos]; + focusPos = (beginPos + endPos) / 2; + focusAttrib = attributes[focusPos]; + } + else { + beginPos = focusPos; + endPos = focusPos; + } + } + + /* Do linear (unsorted) search logic */ + if(endPos - beginPos <= LINEARSEARCH) { + + /* CPU intensive loop; provide alternative evaluation models */ +#if defined DOFASTMATH + /* Do fast pointer arithmetic */ + int *attptr = attributes + beginPos; + while((beginPos < endPos) && ((*attptr) < target)) { + beginPos++; + attptr++; + } + focusAttrib = (*attptr); +#else + /* Do traditional indexed access */ + focusAttrib = attributes[beginPos]; + while((beginPos < endPos) && (focusAttrib < target)) { + beginPos++; + focusAttrib = attributes[beginPos]; + } +#endif + } + + /* Return the index if a match was found, or signal failure with a -1 */ + if(focusAttrib == target) /* Found; return retrieval index */ + return(beginPos); + else if(focusAttrib > target) /* Not found; last item */ + return(-beginPos); + else if(beginPos > offset+count-1) + return(-(endPos+1)); /* Not found; end of list */ + else + return(-(beginPos+1)); /* Not found; intermediate point */ + +} +int findIndexEx(void *target, void *attributes, int count, int offset, int recsize, findCompare_func findCompare, MYBOOL ascending) +{ + int focusPos, beginPos, endPos, compare, order; + void *focusAttrib, *beginAttrib, *endAttrib; + + /* Set starting and ending index offsets */ + beginPos = offset; + endPos = beginPos + count - 1; + if(endPos < beginPos) + return(-1); + order = (ascending ? -1 : 1); + + /* Do binary search logic based on a sorted attribute vector */ + focusPos = (beginPos + endPos) / 2; + beginAttrib = CMP_ATTRIBUTES(beginPos); + focusAttrib = CMP_ATTRIBUTES(focusPos); + endAttrib = CMP_ATTRIBUTES(endPos); + + compare = 0; + while(endPos - beginPos > LINEARSEARCH) { + if(findCompare(target, beginAttrib) == 0) { + focusAttrib = beginAttrib; + endPos = beginPos; + } + else if(findCompare(target, endAttrib) == 0) { + focusAttrib = endAttrib; + beginPos = endPos; + } + else { + compare = findCompare(target, focusAttrib)*order; + if(compare < 0) { + beginPos = focusPos + 1; + beginAttrib = CMP_ATTRIBUTES(beginPos); + focusPos = (beginPos + endPos) / 2; + focusAttrib = CMP_ATTRIBUTES(focusPos); + } + else if(compare > 0) { + endPos = focusPos - 1; + endAttrib = CMP_ATTRIBUTES(endPos); + focusPos = (beginPos + endPos) / 2; + focusAttrib = CMP_ATTRIBUTES(focusPos); + } + else { + beginPos = focusPos; + endPos = focusPos; + } + } + } + + /* Do linear (unsorted) search logic */ + if(endPos - beginPos <= LINEARSEARCH) { + + /* Do traditional indexed access */ + focusAttrib = CMP_ATTRIBUTES(beginPos); + if(beginPos == endPos) + compare = findCompare(target, focusAttrib)*order; + else + while((beginPos < endPos) && + ((compare = findCompare(target, focusAttrib)*order) < 0)) { + beginPos++; + focusAttrib = CMP_ATTRIBUTES(beginPos); + } + } + + /* Return the index if a match was found, or signal failure with a -1 */ + if(compare == 0) /* Found; return retrieval index */ + return(beginPos); + else if(compare > 0) /* Not found; last item */ + return(-beginPos); + else if(beginPos > offset+count-1) + return(-(endPos+1)); /* Not found; end of list */ + else + return(-(beginPos+1)); /* Not found; intermediate point */ + +} + +/* Simple sorting and searching comparison "operators" */ +int CMP_CALLMODEL compareCHAR(const void *current, const void *candidate) +{ + return( CMP_COMPARE( *(char *) current, *(char *) candidate ) ); +} +int CMP_CALLMODEL compareINT(const void *current, const void *candidate) +{ + return( CMP_COMPARE( *(int *) current, *(int *) candidate ) ); +} +int CMP_CALLMODEL compareREAL(const void *current, const void *candidate) +{ + return( CMP_COMPARE( *(LPSREAL *) current, *(LPSREAL *) candidate ) ); +} + +/* Heap sort function (procedurally based on the Numerical Recipes version, + but expanded and generalized to hande any object with the use of + qsort-style comparison operator). An expanded version is also implemented, + where interchanges are reflected in a caller-initialized integer "tags" list. */ +void hpsort(void *attributes, int count, int offset, int recsize, MYBOOL descending, findCompare_func findCompare) +{ + register int i, j, k, ir, order; + register char *hold, *base; + char *save; + + if(count < 2) + return; + offset -= 1; + attributes = CMP_ATTRIBUTES(offset); + base = CMP_ATTRIBUTES(1); + save = (char *) malloc(recsize); + if(descending) + order = -1; + else + order = 1; + + k = (count >> 1) + 1; + ir = count; + + for(;;) { + if(k > 1) { + MEMCOPY(save, CMP_ATTRIBUTES(--k), recsize); + } + else { + hold = CMP_ATTRIBUTES(ir); + MEMCOPY(save, hold, recsize); + MEMCOPY(hold, base, recsize); + if(--ir == 1) { + MEMCOPY(base, save, recsize); + break; + } + } + + i = k; + j = k << 1; + while(j <= ir) { + hold = CMP_ATTRIBUTES(j); + if( (j < ir) && (findCompare(hold, CMP_ATTRIBUTES(j+1))*order < 0) ) { + hold += recsize; + j++; + } + if(findCompare(save, hold)*order < 0) { + MEMCOPY(CMP_ATTRIBUTES(i), hold, recsize); + i = j; + j <<= 1; + } + else + break; + } + MEMCOPY(CMP_ATTRIBUTES(i), save, recsize); + } + + FREE(save); +} +void hpsortex(void *attributes, int count, int offset, int recsize, MYBOOL descending, findCompare_func findCompare, int *tags) +{ + if(count < 2) + return; + if(tags == NULL) { + hpsort(attributes, count, offset, recsize, descending, findCompare); + return; + } + else { + register int i, j, k, ir, order; + register char *hold, *base; + char *save; + int savetag; + + offset -= 1; + attributes = CMP_ATTRIBUTES(offset); + tags += offset; + base = CMP_ATTRIBUTES(1); + save = (char *) malloc(recsize); + if(descending) + order = -1; + else + order = 1; + + k = (count >> 1) + 1; + ir = count; + + for(;;) { + if(k > 1) { + MEMCOPY(save, CMP_ATTRIBUTES(--k), recsize); + savetag = tags[k]; + } + else { + hold = CMP_ATTRIBUTES(ir); + MEMCOPY(save, hold, recsize); + MEMCOPY(hold, base, recsize); + savetag = tags[ir]; + tags[ir] = tags[1]; + if(--ir == 1) { + MEMCOPY(base, save, recsize); + tags[1] = savetag; + break; + } + } + + i = k; + j = k << 1; + while(j <= ir) { + hold = CMP_ATTRIBUTES(j); + if( (j < ir) && (findCompare(hold, CMP_ATTRIBUTES(j+1))*order < 0) ) { + hold += recsize; + j++; + } + if(findCompare(save, hold)*order < 0) { + MEMCOPY(CMP_ATTRIBUTES(i), hold, recsize); + tags[i] = tags[j]; + i = j; + j <<= 1; + } + else + break; + } + MEMCOPY(CMP_ATTRIBUTES(i), save, recsize); + tags[i] = savetag; + } + + FREE(save); + } +} + +/* This is a "specialized generic" version of C.A.R Hoare's Quick Sort algorithm. + It will handle arrays that are already sorted, and arrays with duplicate keys. + There are two versions here; one extended conventional with optional tag data + for each sortable value, and a version for the QSORTrec format. The QSORTrec + format i.a. includes the ability for to do linked list sorting. If the passed + comparison operator is NULL, the comparison is assumed to be for integers. */ +#define QS_IS_switch LINEARSEARCH /* Threshold for switching to insertion sort */ + +void qsortex_swap(void *attributes, int l, int r, int recsize, + void *tags, int tagsize, char *save, char *savetag) +{ + MEMCOPY(save, CMP_ATTRIBUTES(l), recsize); + MEMCOPY(CMP_ATTRIBUTES(l), CMP_ATTRIBUTES(r), recsize); + MEMCOPY(CMP_ATTRIBUTES(r), save, recsize); + if(tags != NULL) { + MEMCOPY(savetag, CMP_TAGS(l), tagsize); + MEMCOPY(CMP_TAGS(l), CMP_TAGS(r), tagsize); + MEMCOPY(CMP_TAGS(r), savetag, tagsize); + } +} + +int qsortex_sort(void *attributes, int l, int r, int recsize, int sortorder, findCompare_func findCompare, + void *tags, int tagsize, char *save, char *savetag) +{ + register int i, j, nmove = 0; + char *v; + + /* Perform the a fast QuickSort */ + if((r-l) > QS_IS_switch) { + i = (r+l)/2; + + /* Tri-Median Method */ + if(sortorder*findCompare(CMP_ATTRIBUTES(l), CMP_ATTRIBUTES(i)) > 0) + { nmove++; qsortex_swap(attributes, l,i, recsize, tags, tagsize, save, savetag); } + if(sortorder*findCompare(CMP_ATTRIBUTES(l), CMP_ATTRIBUTES(r)) > 0) + { nmove++; qsortex_swap(attributes, l,r, recsize, tags, tagsize, save, savetag); } + if(sortorder*findCompare(CMP_ATTRIBUTES(i), CMP_ATTRIBUTES(r)) > 0) + { nmove++; qsortex_swap(attributes, i,r, recsize, tags, tagsize, save, savetag); } + + j = r-1; + qsortex_swap(attributes, i,j, recsize, tags, tagsize, save, savetag); + i = l; + v = CMP_ATTRIBUTES(j); + for(;;) { + while(sortorder*findCompare(CMP_ATTRIBUTES(++i), v) < 0); + while(sortorder*findCompare(CMP_ATTRIBUTES(--j), v) > 0); + if(j < i) break; + nmove++; qsortex_swap(attributes, i,j, recsize, tags, tagsize, save, savetag); + } + nmove++; qsortex_swap(attributes, i,r-1, recsize, tags, tagsize, save, savetag); + nmove += qsortex_sort(attributes, l,j, recsize, sortorder, findCompare, tags, tagsize, save, savetag); + nmove += qsortex_sort(attributes, i+1,r, recsize, sortorder, findCompare, tags, tagsize, save, savetag); + } + return( nmove ); +} + +int qsortex_finish(void *attributes, int lo0, int hi0, int recsize, int sortorder, findCompare_func findCompare, + void *tags, int tagsize, char *save, char *savetag) +{ + int i, j, nmove = 0; + + /* This is actually InsertionSort, which is faster for local sorts */ + for(i = lo0+1; i <= hi0; i++) { + + /* Save bottom-most item */ + MEMCOPY(save, CMP_ATTRIBUTES(i), recsize); + if(tags != NULL) + MEMCOPY(savetag, CMP_TAGS(i), tagsize); + + /* Shift down! */ + j = i; + while ((j > lo0) && (sortorder*findCompare(CMP_ATTRIBUTES(j-1), save) > 0)) { + MEMCOPY(CMP_ATTRIBUTES(j), CMP_ATTRIBUTES(j-1), recsize); + if(tags != NULL) + MEMCOPY(CMP_TAGS(j), CMP_TAGS(j-1), tagsize); + j--; + nmove++; + } + + /* Store bottom-most item at the top */ + MEMCOPY(CMP_ATTRIBUTES(j), save, recsize); + if(tags != NULL) + MEMCOPY(CMP_TAGS(j), savetag, tagsize); + } + return( nmove ); +} + +int qsortex(void *attributes, int count, int offset, int recsize, MYBOOL descending, findCompare_func findCompare, void *tags, int tagsize) +{ + int iswaps = 0, sortorder = (descending ? -1 : 1); + char *save = NULL, *savetag = NULL; + + /* Check and initialize to zero-based arrays */ + if(count <= 1) + goto Finish; + attributes = (void *) CMP_ATTRIBUTES(offset); + save = (char *) malloc(recsize); + if((tagsize <= 0) && (tags != NULL)) + tags = NULL; + else if(tags != NULL) { + tags = (void *) CMP_TAGS(offset); + savetag = (char *) malloc(tagsize); + } + count--; + + /* Perform sort */ + iswaps = qsortex_sort(attributes, 0, count, recsize, sortorder, findCompare, tags, tagsize, save, savetag); +#if QS_IS_switch > 0 + iswaps += qsortex_finish(attributes, 0, count, recsize, sortorder, findCompare, tags, tagsize, save, savetag); +#endif + +Finish: + FREE(save); + FREE(savetag); + return( iswaps ); +} + +#undef QS_IS_switch + +/* This is a "specialized generic" version of C.A.R Hoare's Quick Sort algorithm. + It will handle arrays that are already sorted, and arrays with duplicate keys. + The implementation here requires the user to pass a comparison operator and + assumes that the array passed has the QSORTrec format, which i.a. includes + the ability for to do linked list sorting. If the passed comparison operator + is NULL, the comparison is assumed to be for integers. */ +#define QS_IS_switch 4 /* Threshold for switching to insertion sort */ + +void QS_swap(UNIONTYPE QSORTrec a[], int i, int j) +{ + UNIONTYPE QSORTrec T = a[i]; + a[i] = a[j]; + a[j] = T; +} +int QS_addfirst(UNIONTYPE QSORTrec a[], void *mydata) +{ + a[0].pvoid2.ptr = mydata; + return( 0 ); +} +int QS_append(UNIONTYPE QSORTrec a[], int ipos, void *mydata) +{ + if(ipos <= 0) + ipos = QS_addfirst(a, mydata); + else + a[ipos].pvoid2.ptr = mydata; + return( ipos ); +} +void QS_replace(UNIONTYPE QSORTrec a[], int ipos, void *mydata) +{ + a[ipos].pvoid2.ptr = mydata; +} +void QS_insert(UNIONTYPE QSORTrec a[], int ipos, void *mydata, int epos) +{ + for(; epos > ipos; epos--) + a[epos] = a[epos-1]; + a[ipos].pvoid2.ptr = mydata; +} +void QS_delete(UNIONTYPE QSORTrec a[], int ipos, int epos) +{ + for(; epos > ipos; epos--) + a[epos] = a[epos-1]; +} +int QS_sort(UNIONTYPE QSORTrec a[], int l, int r, findCompare_func findCompare) +{ + register int i, j, nmove = 0; + UNIONTYPE QSORTrec v; + + /* Perform the a fast QuickSort */ + if((r-l) > QS_IS_switch) { + i = (r+l)/2; + + /* Tri-Median Method */ + if(findCompare((char *) &a[l], (char *) &a[i]) > 0) + { nmove++; QS_swap(a,l,i); } + if(findCompare((char *) &a[l], (char *) &a[r]) > 0) + { nmove++; QS_swap(a,l,r); } + if(findCompare((char *) &a[i], (char *) &a[r]) > 0) + { nmove++; QS_swap(a,i,r); } + + j = r-1; + QS_swap(a,i,j); + i = l; + v = a[j]; + for(;;) { + while(findCompare((char *) &a[++i], (char *) &v) < 0); + while(findCompare((char *) &a[--j], (char *) &v) > 0); + if(j < i) break; + nmove++; QS_swap (a,i,j); + } + nmove++; QS_swap(a,i,r-1); + nmove += QS_sort(a,l,j,findCompare); + nmove += QS_sort(a,i+1,r,findCompare); + } + return( nmove ); +} +int QS_finish(UNIONTYPE QSORTrec a[], int lo0, int hi0, findCompare_func findCompare) +{ + int i, j, nmove = 0; + UNIONTYPE QSORTrec v; + + /* This is actually InsertionSort, which is faster for local sorts */ + for(i = lo0+1; i <= hi0; i++) { + + /* Save bottom-most item */ + v = a[i]; + + /* Shift down! */ + j = i; + while ((j > lo0) && (findCompare((char *) &a[j-1], (char *) &v) > 0)) { + a[j] = a[j-1]; + j--; + nmove++; + } + + /* Store bottom-most item at the top */ + a[j] = v; + } + return( nmove ); +} +MYBOOL QS_execute(UNIONTYPE QSORTrec a[], int count, findCompare_func findCompare, int *nswaps) +{ + int iswaps = 0; + + /* Check and initialize */ + if(count <= 1) + goto Finish; + count--; + + /* Perform sort */ + iswaps = QS_sort(a, 0, count, findCompare); +#if QS_IS_switch > 0 + iswaps += QS_finish(a, 0, count, findCompare); +#endif + +Finish: + if(nswaps != NULL) + *nswaps = iswaps; + return( TRUE ); +} + + + +/* Simple specialized bubble/insertion sort functions */ +int sortByREAL(int *item, LPSREAL *weight, int size, int offset, MYBOOL unique) +{ + int i, ii, saveI; + LPSREAL saveW; + + for(i = 1; i < size; i++) { + ii = i+offset-1; + while ((ii >= offset) && (weight[ii] >= weight[ii+1])) { + if(weight[ii] == weight[ii+1]) { + if(unique) + return(item[ii]); + } + else { + saveI = item[ii]; + saveW = weight[ii]; + item[ii] = item[ii+1]; + weight[ii] = weight[ii+1]; + item[ii+1] = saveI; + weight[ii+1] = saveW; + } + ii--; + } + } + return(0); +} +int sortByINT(int *item, int *weight, int size, int offset, MYBOOL unique) +{ + int i, ii, saveI; + int saveW; + + for(i = 1; i < size; i++) { + ii = i+offset-1; + while ((ii >= offset) && (weight[ii] >= weight[ii+1])) { + if(weight[ii] == weight[ii+1]) { + if(unique) + return(item[ii]); + } + else { + saveI = item[ii]; + saveW = weight[ii]; + item[ii] = item[ii+1]; + weight[ii] = weight[ii+1]; + item[ii+1] = saveI; + weight[ii+1] = saveW; + } + ii--; + } + } + return(0); +} +LPSREAL sortREALByINT(LPSREAL *item, int *weight, int size, int offset, MYBOOL unique) +{ + int i, ii, saveW; + LPSREAL saveI; + + for(i = 1; i < size; i++) { + ii = i+offset-1; + while ((ii >= offset) && (weight[ii] >= weight[ii+1])) { + if(weight[ii] == weight[ii+1]) { + if(unique) + return(item[ii]); + } + else { + saveI = item[ii]; + saveW = weight[ii]; + item[ii] = item[ii+1]; + weight[ii] = weight[ii+1]; + item[ii+1] = saveI; + weight[ii+1] = saveW; + } + ii--; + } + } + return(0); +} + + +/* Time and message functions */ +double timeNow(void) +{ +#ifdef INTEGERTIME + return((double)time(NULL)); +#elif defined CLOCKTIME + return((double)clock()/CLOCKS_PER_SEC /* CLK_TCK */); +#elif defined PosixTime + struct timespec t; +# if 0 + clock_gettime(CLOCK_REALTIME, &t); + return( (double) t.tv_sec + (double) t.tv_nsec/1.0e9 ); +# else + static double timeBase; + + clock_gettime(CLOCK_MONOTONIC, &t); + if(timeBase == 0) + timeBase = clockNow() - ((double) t.tv_sec + (double) t.tv_nsec/1.0e9); + return( timeBase + (double) t.tv_sec + (double) t.tv_nsec/1.0e9 ); +# endif +#elif defined EnhTime + static LARGE_INTEGER freq; + static double timeBase; + LARGE_INTEGER now; + + QueryPerformanceCounter(&now); + if(timeBase == 0) { + QueryPerformanceFrequency(&freq); + timeBase = clockNow() - (double) now.QuadPart/(double) freq.QuadPart; + } + return( timeBase + (double) now.QuadPart/(double) freq.QuadPart ); +#else + return((double)time(NULL)); +#endif +} + + +/* Miscellaneous reporting functions */ + +/* List a vector of INT values for the given index range */ +void blockWriteINT(FILE *output, char *label, int *myvector, int first, int last) +{ + int i, k = 0; + + fprintf(output, "%s", label); + fprintf(output, "\n"); + for(i = first; i <= last; i++) { + fprintf(output, " %5d", myvector[i]); + k++; + if(k % 12 == 0) { + fprintf(output, "\n"); + k = 0; + } + } + if(k % 12 != 0) + fprintf(output, "\n"); +} + +/* List a vector of MYBOOL values for the given index range */ +void blockWriteBOOL(FILE *output, char *label, MYBOOL *myvector, int first, int last, MYBOOL asRaw) +{ + int i, k = 0; + + fprintf(output, "%s", label); + fprintf(output, "\n"); + for(i = first; i <= last; i++) { + if(asRaw) + fprintf(output, " %1d", myvector[i]); + else + fprintf(output, " %5s", my_boolstr(myvector[i])); + k++; + if(k % 36 == 0) { + fprintf(output, "\n"); + k = 0; + } + } + if(k % 36 != 0) + fprintf(output, "\n"); +} + +/* List a vector of LPSREAL values for the given index range */ +void blockWriteREAL(FILE *output, char *label, LPSREAL *myvector, int first, int last) +{ + int i, k = 0; + + fprintf(output, "%s", label); + fprintf(output, "\n"); + for(i = first; i <= last; i++) { + fprintf(output, " %18g", myvector[i]); + k++; + if(k % 4 == 0) { + fprintf(output, "\n"); + k = 0; + } + } + if(k % 4 != 0) + fprintf(output, "\n"); +} + + +/* CONSOLE vector and matrix printing routines */ +void printvec( int n, LPSREAL *x, int modulo ) +{ + int i; + + if (modulo <= 0) modulo = 5; + for (i = 1; i<=n; i++) { + if(mod(i, modulo) == 1) + printf("\n%2d:%12g", i, x[i]); + else + printf(" %2d:%12g", i, x[i]); + } + if(i % modulo != 0) printf("\n"); +} + + +void printmatUT( int size, int n, LPSREAL *U, int modulo) +{ + int i, ll; + ll = 0; + for(i = 1; i<=n; i++) { + printvec(n-i+1, &U[ll], modulo); + ll += size-i+1; + } +} + + +void printmatSQ( int size, int n, LPSREAL *X, int modulo) +{ + int i, ll; + ll = 0; + for(i = 1; i<=n; i++) { + printvec(n, &X[ll], modulo); + ll += size; + } +} + +/* Miscellaneous file functions */ +#if defined _MSC_VER +/* Check MS versions before 7 */ +#if _MSC_VER < 1300 +# define intptr_t long +#endif + +int fileCount( char *filemask ) +{ + struct _finddata_t c_file; + intptr_t hFile; + int count = 0; + + /* Find first .c file in current directory */ + if( (hFile = _findfirst( filemask, &c_file )) == -1L ) + ; + /* Iterate over all matching names */ + else { + while( _findnext( hFile, &c_file ) == 0 ) + count++; + _findclose( hFile ); + } + return( count ); +} +MYBOOL fileSearchPath( char *envvar, char *searchfile, char *foundpath ) +{ + char pathbuffer[_MAX_PATH]; + + _searchenv( searchfile, envvar, pathbuffer ); + if(pathbuffer[0] == '\0') + return( FALSE ); + else { + if(foundpath != NULL) + strcpy(foundpath, pathbuffer); + return( TRUE ); + } +} +#endif diff --git a/src/external/lpsolve/build/lp_solve/ini.c b/src/external/lpsolve/build/lp_solve/ini.c new file mode 100644 index 00000000..c157b9c8 --- /dev/null +++ b/src/external/lpsolve/build/lp_solve/ini.c @@ -0,0 +1,85 @@ +// Copyright(c) 2016-2018 Kjell Konis . +// Version: 5.5.2.0-17 +// Description: The lpSolveAPI package provides an R interface to 'lp_solve', +// a Mixed Integer Linear Programming (MILP) solver with support for pure +// linear, (mixed) integer/binary, semi-continuous and special ordered sets +// (SOS) models. +// License: LGPL-2 +// Repository: CRAN + +#include +#include +#include + +#include "lp_lib.h" + +#include "ini.h" + +FILE *ini_create(char *filename) +{ + FILE *fp; + + fp = fopen(filename, "w"); + + return(fp); +} + +FILE *ini_open(char *filename) +{ + FILE *fp; + + fp = fopen(filename, "r"); + + return(fp); +} + +void ini_writecomment(FILE *fp, char *comment) +{ + fprintf(fp, "; %s\n", comment); +} + +void ini_writeheader(FILE *fp, char *header, int addnewline) +{ + if((addnewline) && (ftell(fp) > 0)) + fputs("\n", fp); + fprintf(fp, "[%s]\n", header); +} + +void ini_writedata(FILE *fp, char *name, char *data) +{ + if(name != NULL) + fprintf(fp, "%s=%s\n", name, data); + else + fprintf(fp, "%s\n", data); +} + +int ini_readdata(FILE *fp, char *data, int szdata, int withcomment) +{ + int l; + char *ptr; + + if(fgets(data, szdata, fp) == NULL) + return(0); + + if(!withcomment) { + ptr = strchr(data, ';'); + if(ptr != NULL) + *ptr = 0; + } + + l = (int) strlen(data); + while((l > 0) && (isspace(data[l - 1]))) + l--; + data[l] = 0; + if((l >= 2) && (data[0] == '[') && (data[l - 1] == ']')) { + memcpy(data, data + 1, l - 2); + data[l - 2] = 0; + return(1); + } + return(2); +} + +void ini_close(FILE *fp) +{ + fclose(fp); +} diff --git a/src/external/lpsolve/build/lp_solve/liblp_solve.a b/src/external/lpsolve/build/lp_solve/liblp_solve.a new file mode 100644 index 0000000000000000000000000000000000000000..99d8be7f2b12f6f8e291b21c75dc5525b89d6d8f GIT binary patch literal 721588 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